-- MySQL dump 10.13  Distrib 5.6.45, for Linux (x86_64)
--
-- Host: localhost    Database: erpgloba_pos
-- ------------------------------------------------------
-- Server version	5.6.45

/*!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 utf8 */;
/*!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 `ospos_app_config`
--

DROP TABLE IF EXISTS `ospos_app_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_app_config` (
  `key` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_app_config`
--

LOCK TABLES `ospos_app_config` WRITE;
/*!40000 ALTER TABLE `ospos_app_config` DISABLE KEYS */;
INSERT INTO `ospos_app_config` VALUES ('address','Paradise avenue'),('company','Test Company Ltd'),('currency_side','0'),('currency_symbol',''),('custom10_name',''),('custom1_name','ECAL'),('custom2_name',''),('custom3_name',''),('custom4_name',''),('custom5_name',''),('custom6_name',''),('custom7_name',''),('custom8_name',''),('custom9_name',''),('default_tax_1_name','VAT'),('default_tax_1_rate','9'),('default_tax_2_name','STT'),('default_tax_2_rate','6'),('default_tax_rate','8'),('email','support@ebusinesspacific.com'),('fax',''),('language','en'),('phone','007'),('print_after_sale','print_after_sale'),('recv_invoice_format','$CO'),('return_policy','All goods dispatched at purchasers risk. All goods remain the property of Tebara Prime Cuts unless fully paid.'),('sales_invoice_format','$CO'),('tax_included','tax_included'),('timezone','Etc/GMT-12'),('website','');
/*!40000 ALTER TABLE `ospos_app_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_customers`
--

DROP TABLE IF EXISTS `ospos_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_customers` (
  `person_id` int(10) NOT NULL,
  `account_number` varchar(255) DEFAULT NULL,
  `taxable` int(1) NOT NULL DEFAULT '1',
  `deleted` int(1) NOT NULL DEFAULT '0',
  UNIQUE KEY `account_number` (`account_number`),
  KEY `person_id` (`person_id`),
  CONSTRAINT `ospos_customers_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_customers`
--

LOCK TABLES `ospos_customers` WRITE;
/*!40000 ALTER TABLE `ospos_customers` DISABLE KEYS */;
INSERT INTO `ospos_customers` VALUES (5,NULL,1,0);
/*!40000 ALTER TABLE `ospos_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_employees`
--

DROP TABLE IF EXISTS `ospos_employees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_employees` (
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `person_id` int(10) NOT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  UNIQUE KEY `username` (`username`),
  KEY `person_id` (`person_id`),
  CONSTRAINT `ospos_employees_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_employees`
--

LOCK TABLES `ospos_employees` WRITE;
/*!40000 ALTER TABLE `ospos_employees` DISABLE KEYS */;
INSERT INTO `ospos_employees` VALUES ('aiyub','cb19aa1ecff43e7212fb8fccb9f55b5e',3,0),('aslam','ca6cc1819af00e45c4a772c495dcb216',1,0),('mskhan','2150d7e171dc341fdda71c37e10267eb',4,0),('tebara','32f655bf7367316d606a9daea861da96',2,0);
/*!40000 ALTER TABLE `ospos_employees` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_giftcards`
--

DROP TABLE IF EXISTS `ospos_giftcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_giftcards` (
  `record_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `giftcard_id` int(11) NOT NULL AUTO_INCREMENT,
  `giftcard_number` varchar(25) COLLATE utf8_unicode_ci NOT NULL,
  `value` decimal(15,2) NOT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  `person_id` int(11) NOT NULL,
  PRIMARY KEY (`giftcard_id`),
  UNIQUE KEY `giftcard_number` (`giftcard_number`),
  KEY `ospos_giftcards_ibfk_1` (`person_id`),
  CONSTRAINT `ospos_giftcards_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_giftcards`
--

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

--
-- Table structure for table `ospos_grants`
--

DROP TABLE IF EXISTS `ospos_grants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_grants` (
  `permission_id` varchar(255) NOT NULL,
  `person_id` int(10) NOT NULL,
  PRIMARY KEY (`permission_id`,`person_id`),
  KEY `ospos_grants_ibfk_2` (`person_id`),
  CONSTRAINT `ospos_grants_ibfk_1` FOREIGN KEY (`permission_id`) REFERENCES `ospos_permissions` (`permission_id`),
  CONSTRAINT `ospos_grants_ibfk_2` FOREIGN KEY (`person_id`) REFERENCES `ospos_employees` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_grants`
--

LOCK TABLES `ospos_grants` WRITE;
/*!40000 ALTER TABLE `ospos_grants` DISABLE KEYS */;
INSERT INTO `ospos_grants` VALUES ('config',1),('customers',1),('employees',1),('giftcards',1),('items',1),('items_stock',1),('items_Suva Retail',1),('item_kits',1),('receivings',1),('reports',1),('reports_categories',1),('reports_customers',1),('reports_discounts',1),('reports_employees',1),('reports_inventory',1),('reports_items',1),('reports_payments',1),('reports_receivings',1),('reports_sales',1),('reports_suppliers',1),('reports_taxes',1),('sales',1),('suppliers',1),('customers',2),('items',2),('items_Suva Retail',2),('receivings',2),('reports',2),('reports_categories',2),('reports_customers',2),('reports_discounts',2),('reports_employees',2),('reports_inventory',2),('reports_items',2),('reports_payments',2),('reports_receivings',2),('reports_sales',2),('reports_suppliers',2),('reports_taxes',2),('sales',2),('customers',3),('items',3),('items_Suva Retail',3),('item_kits',3),('receivings',3),('reports',3),('reports_categories',3),('reports_customers',3),('reports_discounts',3),('reports_employees',3),('reports_inventory',3),('reports_items',3),('reports_payments',3),('reports_receivings',3),('reports_sales',3),('reports_suppliers',3),('reports_taxes',3),('sales',3),('customers',4),('giftcards',4),('items',4),('items_stock',4),('items_Suva Retail',4),('item_kits',4),('receivings',4),('reports',4),('reports_categories',4),('reports_customers',4),('reports_discounts',4),('reports_employees',4),('reports_inventory',4),('reports_items',4),('reports_payments',4),('reports_receivings',4),('reports_sales',4),('reports_suppliers',4),('reports_taxes',4),('sales',4),('suppliers',4);
/*!40000 ALTER TABLE `ospos_grants` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_inventory`
--

DROP TABLE IF EXISTS `ospos_inventory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_inventory` (
  `trans_id` int(11) NOT NULL AUTO_INCREMENT,
  `trans_items` int(11) NOT NULL DEFAULT '0',
  `trans_user` int(11) NOT NULL DEFAULT '0',
  `trans_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `trans_comment` text NOT NULL,
  `trans_location` int(11) NOT NULL,
  `trans_inventory` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`trans_id`),
  KEY `trans_items` (`trans_items`),
  KEY `trans_user` (`trans_user`),
  KEY `trans_location` (`trans_location`),
  CONSTRAINT `ospos_inventory_ibfk_1` FOREIGN KEY (`trans_items`) REFERENCES `ospos_items` (`item_id`),
  CONSTRAINT `ospos_inventory_ibfk_2` FOREIGN KEY (`trans_user`) REFERENCES `ospos_employees` (`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2578 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_inventory`
--

LOCK TABLES `ospos_inventory` WRITE;
/*!40000 ALTER TABLE `ospos_inventory` DISABLE KEYS */;
INSERT INTO `ospos_inventory` VALUES (1,1,1,'2017-07-24 19:39:32','Manual Edit of Quantity',2,50),(2,1,1,'2017-07-24 19:41:55','POS 1',2,0),(3,3,1,'2017-07-24 20:49:19','Manual Edit of Quantity',2,5),(4,4,1,'2017-07-24 20:52:26','Manual Edit of Quantity',2,10),(5,5,1,'2017-07-24 20:54:36','Manual Edit of Quantity',2,10),(6,6,1,'2017-07-24 20:56:15','Manual Edit of Quantity',2,10),(7,7,1,'2017-07-24 20:58:56','Manual Edit of Quantity',2,20),(8,8,1,'2017-07-24 21:00:09','Manual Edit of Quantity',2,20),(9,9,1,'2017-07-24 21:01:13','Manual Edit of Quantity',2,20),(10,10,1,'2017-07-24 21:05:52','Manual Edit of Quantity',2,20),(11,11,1,'2017-07-24 21:07:07','Manual Edit of Quantity',2,20),(12,12,1,'2017-07-24 21:08:04','Manual Edit of Quantity',2,20),(13,13,1,'2017-07-24 21:09:38','Manual Edit of Quantity',2,20),(14,14,1,'2017-07-24 21:12:12','Manual Edit of Quantity',2,20),(15,15,1,'2017-07-24 21:13:16','Manual Edit of Quantity',2,20),(16,16,1,'2017-07-24 21:15:07','Manual Edit of Quantity',2,20),(17,17,1,'2017-07-24 21:15:57','Manual Edit of Quantity',2,20),(18,18,1,'2017-07-24 21:17:08','Manual Edit of Quantity',2,20),(19,19,1,'2017-07-24 21:18:07','Manual Edit of Quantity',2,20),(20,20,1,'2017-07-24 21:19:05','Manual Edit of Quantity',2,20),(21,21,1,'2017-07-24 21:20:23','Manual Edit of Quantity',2,20),(22,22,1,'2017-07-24 21:21:32','Manual Edit of Quantity',2,20),(23,23,1,'2017-07-24 21:23:54','Manual Edit of Quantity',2,20),(24,24,1,'2017-07-24 21:24:50','Manual Edit of Quantity',2,20),(25,25,1,'2017-07-24 21:25:43','Manual Edit of Quantity',2,20),(26,26,1,'2017-07-24 21:26:21','Manual Edit of Quantity',2,20),(27,27,1,'2017-07-24 21:26:57','Manual Edit of Quantity',2,20),(28,28,1,'2017-07-24 21:27:53','Manual Edit of Quantity',2,20),(29,29,1,'2017-07-24 21:28:46','Manual Edit of Quantity',2,20),(30,30,1,'2017-07-24 21:29:25','Manual Edit of Quantity',2,20),(31,31,1,'2017-07-24 21:29:57','Manual Edit of Quantity',2,20),(32,32,1,'2017-07-24 21:30:55','Manual Edit of Quantity',2,20),(33,33,1,'2017-07-24 21:32:04','Manual Edit of Quantity',2,20),(34,34,1,'2017-07-24 21:32:42','Manual Edit of Quantity',2,20),(35,35,1,'2017-07-24 21:33:25','Manual Edit of Quantity',2,20),(36,36,1,'2017-07-24 21:34:07','Manual Edit of Quantity',2,20),(37,37,1,'2017-07-24 21:35:12','Manual Edit of Quantity',2,20),(38,38,1,'2017-07-24 21:36:44','Manual Edit of Quantity',2,20),(39,1,1,'2017-07-24 21:53:26','POS 2',2,0),(40,1,1,'2017-07-24 22:43:19','POS 3',2,0),(41,4,1,'2017-07-24 23:24:28','POS 4',2,0),(42,11,1,'2017-07-24 23:33:54','POS 5',2,0),(43,11,1,'2017-07-24 23:34:36','POS 6',2,0),(44,27,1,'2017-07-25 04:29:45','POS 8',2,0),(45,27,1,'2017-07-25 04:31:45','POS 9',2,0),(46,35,1,'2017-07-25 04:36:46','POS 10',2,0),(47,3,1,'2017-07-25 21:20:32','Manual Edit of Quantity',2,-5),(48,4,1,'2017-07-25 21:28:20','Manual Edit of Quantity',2,-6),(49,4,1,'2017-07-25 21:35:45','Manual Edit of Quantity',2,0),(50,5,1,'2017-07-25 21:40:02','Manual Edit of Quantity',2,-3),(51,3,1,'2017-07-25 21:44:12','Manual Edit of Quantity',2,51),(52,3,1,'2017-07-25 21:48:28','Manual Edit of Quantity',2,0),(53,3,1,'2017-07-25 21:49:43','Manual Edit of Quantity',2,0),(54,4,1,'2017-07-25 21:57:44','Manual Edit of Quantity',2,0),(55,5,1,'2017-07-25 22:11:02','Manual Edit of Quantity',2,0),(56,3,1,'2017-07-25 22:20:26','Manual Edit of Quantity',2,-51),(57,6,1,'2017-07-25 22:21:03','Manual Edit of Quantity',2,-10),(58,7,1,'2017-07-25 22:24:55','Manual Edit of Quantity',2,-15),(59,8,1,'2017-07-25 22:27:31','Manual Edit of Quantity',2,-11),(60,9,1,'2017-07-25 22:40:52','Manual Edit of Quantity',2,-17),(61,10,1,'2017-07-25 22:44:34','Manual Edit of Quantity',2,-9),(62,11,1,'2017-07-25 22:45:16','Manual Edit of Quantity',2,-20),(63,12,1,'2017-07-25 22:47:52','Manual Edit of Quantity',2,149),(64,1,1,'2017-07-25 22:49:40','Manual Edit of Quantity',2,-35),(65,1,1,'2017-07-25 22:50:29','Manual Edit of Quantity',2,-1),(66,13,1,'2017-07-25 22:50:48','Manual Edit of Quantity',2,-20),(67,14,1,'2017-07-25 22:52:20','Manual Edit of Quantity',2,-1),(68,16,1,'2017-07-25 22:53:10','Manual Edit of Quantity',2,-8),(69,17,1,'2017-07-25 23:00:55','Manual Edit of Quantity',2,-20),(70,18,1,'2017-07-25 23:01:25','Manual Edit of Quantity',2,-20),(71,22,1,'2017-07-25 23:03:10','Manual Edit of Quantity',2,-19),(72,23,1,'2017-07-25 23:04:33','Manual Edit of Quantity',2,-14),(73,32,1,'2017-07-25 23:04:54','Manual Edit of Quantity',2,-20),(74,36,1,'2017-07-25 23:05:21','Manual Edit of Quantity',2,-20),(75,15,1,'2017-07-25 23:07:07','Manual Edit of Quantity',2,1),(76,19,1,'2017-07-25 23:15:42','Manual Edit of Quantity',2,-1),(77,20,1,'2017-07-25 23:15:58','Manual Edit of Quantity',2,-20),(78,21,1,'2017-07-25 23:16:14','Manual Edit of Quantity',2,-20),(79,24,1,'2017-07-25 23:17:33','Manual Edit of Quantity',2,-10),(80,25,1,'2017-07-25 23:17:55','Manual Edit of Quantity',2,-20),(81,26,1,'2017-07-25 23:18:10','Manual Edit of Quantity',2,-20),(82,27,1,'2017-07-25 23:19:04','Manual Edit of Quantity',2,-8),(83,28,1,'2017-07-25 23:19:53','Manual Edit of Quantity',2,1),(84,29,1,'2017-07-25 23:20:30','Manual Edit of Quantity',2,-20),(85,24,1,'2017-07-25 23:20:52','Manual Edit of Quantity',2,9),(86,30,1,'2017-07-25 23:21:11','Manual Edit of Quantity',2,-20),(87,31,1,'2017-07-25 23:21:28','Manual Edit of Quantity',2,-20),(88,33,1,'2017-07-25 23:21:52','Manual Edit of Quantity',2,-20),(89,34,1,'2017-07-25 23:22:04','Manual Edit of Quantity',2,-20),(90,35,1,'2017-07-25 23:22:18','Manual Edit of Quantity',2,-20),(91,37,1,'2017-07-25 23:23:18','Manual Edit of Quantity',2,-13),(92,37,1,'2017-07-25 23:24:23','Manual Edit of Quantity',2,30),(93,38,1,'2017-07-25 23:24:51','Manual Edit of Quantity',2,-13),(94,44,1,'2017-07-25 23:39:24','Manual Edit of Quantity',2,7),(95,45,1,'2017-07-25 23:56:05','Manual Edit of Quantity',2,12),(96,46,1,'2017-07-25 23:58:21','Manual Edit of Quantity',2,5),(97,47,1,'2017-07-26 00:00:26','Manual Edit of Quantity',2,16),(98,48,1,'2017-07-26 00:04:59','Manual Edit of Quantity',2,10),(99,49,1,'2017-07-26 00:08:02','Manual Edit of Quantity',2,4),(100,19,1,'2017-07-26 02:55:48','POS 11',2,-4),(101,15,1,'2017-07-26 02:55:48','POS 11',2,-5),(102,22,1,'2017-07-26 02:55:48','POS 11',2,-1),(103,24,1,'2017-07-26 02:55:48','POS 11',2,-9),(104,1,1,'2017-07-26 02:55:48','POS 11',2,-2),(105,34,1,'2017-07-26 03:12:04','Manual Edit of Quantity',2,2),(106,36,1,'2017-07-26 03:15:26','Manual Edit of Quantity',2,2),(107,37,1,'2017-07-26 03:18:24','POS 12',2,-2),(108,24,1,'2017-07-26 03:18:24','POS 12',2,-2),(109,7,1,'2017-07-26 03:18:24','POS 12',2,-1),(110,8,1,'2017-07-26 03:18:24','POS 12',2,-1),(111,36,1,'2017-07-26 03:18:24','POS 12',2,-2),(112,14,1,'2017-07-26 03:18:24','POS 12',2,-1),(113,34,1,'2017-07-26 03:18:24','POS 12',2,-2),(114,12,1,'2017-07-26 03:25:40','POS 13',2,-8),(115,20,1,'2017-07-26 03:55:11','Manual Edit of Quantity',2,2),(116,20,1,'2017-07-26 03:56:54','POS 14',2,-2),(117,20,1,'2017-07-26 03:59:30','Manual Edit of Quantity',2,1),(118,12,1,'2017-07-26 04:18:51','POS 15',2,-3),(119,14,1,'2017-07-26 04:25:17','POS 16',2,-2),(120,19,1,'2017-07-26 04:25:17','POS 16',2,-1),(121,17,1,'2017-07-26 04:27:17','Manual Edit of Quantity',2,2),(122,24,1,'2017-07-26 04:28:26','POS 17',2,-4),(123,17,1,'2017-07-26 04:52:25','POS 18',2,-2),(124,12,1,'2017-07-26 04:52:25','POS 18',2,-14),(125,37,1,'2017-07-26 04:52:25','POS 18',2,-5),(126,14,1,'2017-07-26 04:52:25','POS 18',2,-2),(127,19,1,'2017-07-26 04:52:25','POS 18',2,-1),(128,15,1,'2017-07-26 04:52:25','POS 18',2,-2),(129,24,1,'2017-07-26 04:52:25','POS 18',2,-1),(130,14,1,'2017-07-26 04:53:47','POS 19',2,-3),(131,32,1,'2017-07-26 05:26:21','Manual Edit of Quantity',2,13),(132,50,1,'2017-07-26 05:30:10','Manual Edit of Quantity',2,10),(133,34,1,'2017-07-26 05:31:18','Manual Edit of Quantity',2,10),(134,33,1,'2017-07-26 05:34:49','Manual Edit of Quantity',2,11),(135,51,1,'2017-07-26 05:36:27','Manual Edit of Quantity',2,6),(136,36,1,'2017-07-26 05:39:14','RECV 1',2,4),(137,36,1,'2017-07-26 05:45:36','RECV 2',2,8),(138,36,1,'2017-07-26 05:47:37','Manual Edit of Quantity',2,-6),(139,16,1,'2017-07-26 20:56:14','POS 20',2,-2),(140,37,1,'2017-07-26 20:56:14','POS 20',2,-1),(141,14,1,'2017-07-26 22:02:52','POS 21',2,-2),(142,37,1,'2017-07-26 22:02:52','POS 21',2,-1),(143,37,1,'2017-07-26 22:05:35','POS 22',2,-1),(144,37,1,'2017-07-26 22:22:17','POS 23',2,-1),(145,12,1,'2017-07-26 22:42:49','POS 24',2,-5),(146,47,1,'2017-07-26 22:42:49','POS 24',2,-3),(147,46,1,'2017-07-26 22:42:49','POS 24',2,-1),(148,27,1,'2017-07-26 22:42:49','POS 24',2,-1),(149,23,1,'2017-07-26 23:47:43','POS 25',2,-2),(150,12,1,'2017-07-26 23:47:43','POS 25',2,-3),(151,7,1,'2017-07-26 23:47:43','POS 25',2,-2),(152,16,1,'2017-07-26 23:47:43','POS 25',2,-1),(153,52,1,'2017-07-26 23:48:21','Manual Edit of Quantity',2,4),(154,53,1,'2017-07-26 23:49:25','Manual Edit of Quantity',2,20),(155,52,1,'2017-07-26 23:55:51','POS 26',2,-4),(156,53,1,'2017-07-26 23:55:51','POS 26',2,-2),(157,16,1,'2017-07-27 00:27:24','POS 27',2,-8),(158,37,1,'2017-07-27 00:48:49','POS 28',2,-5),(159,12,1,'2017-07-27 01:51:45','POS 29',2,-3),(160,36,1,'2017-07-27 02:00:07','POS 30',2,-2),(161,14,1,'2017-07-27 02:03:54','POS 31',2,-1),(162,19,1,'2017-07-27 03:10:21','POS 32',2,-2),(163,19,1,'2017-07-27 03:12:22','POS 33',2,-3),(164,37,1,'2017-07-27 03:35:14','Manual Edit of Quantity',2,15),(165,22,1,'2017-07-27 03:36:37','Manual Edit of Quantity',2,5),(166,16,1,'2017-07-27 03:37:40','Manual Edit of Quantity',2,6),(167,7,1,'2017-07-27 03:38:11','Manual Edit of Quantity',2,5),(168,19,1,'2017-07-27 03:39:12','POS 34',2,-4),(169,14,1,'2017-07-27 03:45:23','POS 35',2,-1),(170,16,1,'2017-07-27 03:45:23','POS 35',2,-5),(171,28,1,'2017-07-27 03:48:56','POS 36',2,-2),(172,14,1,'2017-07-27 03:51:54','POS 37',2,-1),(173,14,1,'2017-07-27 04:11:39','POS 38',2,-1),(174,15,1,'2017-07-27 04:35:53','POS 39',2,-1),(175,28,1,'2017-07-27 04:39:15','POS 40',2,-11),(176,28,1,'2017-07-27 04:41:06','Manual Edit of Quantity',2,11),(177,22,1,'2017-07-27 04:42:18','POS 41',2,-1),(178,16,1,'2017-07-27 05:01:25','Manual Edit of Quantity',2,5),(179,12,1,'2017-07-27 21:18:06','POS 42',2,-12),(180,12,1,'2017-07-27 21:33:19','POS 43',2,-12),(181,33,1,'2017-07-27 21:52:30','POS 44',2,-7),(182,15,1,'2017-07-27 21:54:42','POS 45',2,-2),(183,15,1,'2017-07-27 23:04:55','Manual Edit of Quantity',2,5),(184,14,1,'2017-07-27 23:05:28','Manual Edit of Quantity',2,16),(185,1,1,'2017-07-27 23:07:06','Manual Edit of Quantity',2,6),(186,19,1,'2017-07-27 23:07:36','Manual Edit of Quantity',2,11),(187,38,1,'2017-07-27 23:08:00','Manual Edit of Quantity',2,3),(188,16,1,'2017-07-27 23:08:20','Manual Edit of Quantity',2,5),(189,37,1,'2017-07-27 23:09:57','POS 46',2,-15),(190,16,1,'2017-07-27 23:14:44','Manual Edit of Quantity',2,8),(191,16,1,'2017-07-27 23:20:28','POS 47',2,-18),(192,37,1,'2017-07-27 23:25:45','POS 48',2,-2),(193,27,1,'2017-07-27 23:25:45','POS 48',2,-2),(194,14,1,'2017-07-27 23:49:43','POS 49',2,-1),(195,17,1,'2017-07-27 23:51:41','Manual Edit of Quantity',2,6),(196,16,1,'2017-07-28 00:12:54','Manual Edit of Quantity',2,11),(197,37,1,'2017-07-28 00:14:39','POS 50',2,-2),(198,16,1,'2017-07-28 00:14:39','POS 50',2,-3),(199,7,1,'2017-07-28 00:19:58','POS 51',2,-2),(200,37,1,'2017-07-28 00:19:58','POS 51',2,-2),(201,14,1,'2017-07-28 02:45:51','POS 52',2,-1),(202,1,1,'2017-07-28 03:32:37','POS 53',2,-2),(203,7,1,'2017-07-28 03:57:46','POS 54',2,-3),(204,16,1,'2017-07-28 04:10:19','POS 55',2,-1),(205,5,1,'2017-07-28 04:22:38','POS 56',2,-2),(206,7,1,'2017-07-28 04:22:38','POS 56',2,-1),(207,17,1,'2017-07-28 20:16:35','POS 57',2,-3),(208,12,1,'2017-07-28 20:16:35','POS 57',2,-2),(209,12,1,'2017-07-28 20:21:18','POS 58',2,-6),(210,37,1,'2017-07-28 20:21:18','POS 58',2,-5),(211,53,1,'2017-07-28 20:26:09','POS 59',2,-1),(212,15,1,'2017-07-28 20:26:09','POS 59',2,-1),(213,17,1,'2017-07-28 20:30:33','Manual Edit of Quantity',2,27),(214,28,1,'2017-07-28 20:32:29','Manual Edit of Quantity',2,131),(215,28,1,'2017-07-28 20:35:27','POS 60',2,-131),(216,17,1,'2017-07-28 20:35:27','POS 60',2,-27),(217,37,1,'2017-07-28 20:44:51','Manual Edit of Quantity',2,1),(218,37,1,'2017-07-28 20:45:22','POS 61',2,-10),(219,37,1,'2017-07-28 20:48:56','Manual Edit of Quantity',2,20),(220,12,1,'2017-07-28 21:07:38','POS 62',2,-23),(221,44,1,'2017-07-28 21:07:38','POS 62',2,-2),(222,17,1,'2017-07-28 21:07:38','POS 62',2,-2),(223,16,1,'2017-07-28 21:07:38','POS 62',2,-1),(224,27,1,'2017-07-28 21:30:41','POS 63',2,-1),(225,15,1,'2017-07-28 21:30:41','POS 63',2,-1),(226,19,1,'2017-07-28 21:46:02','POS 64',2,-2),(227,14,1,'2017-07-28 21:46:02','POS 64',2,-1),(228,12,1,'2017-07-28 21:54:11','POS 65',2,-3),(229,12,1,'2017-07-28 22:16:59','POS 66',2,-3),(230,7,1,'2017-07-28 22:43:06','Manual Edit of Quantity',2,8),(231,37,1,'2017-07-28 22:44:29','POS 67',2,-3),(232,7,1,'2017-07-28 22:44:29','POS 67',2,-3),(233,16,1,'2017-07-28 22:44:29','POS 67',2,-4),(234,19,1,'2017-07-28 22:52:21','POS 68',2,-1),(235,1,1,'2017-07-28 22:54:34','POS 69',2,-1),(236,17,1,'2017-07-28 23:00:31','Manual Edit of Quantity',2,5),(237,12,1,'2017-07-28 23:01:23','POS 70',2,-3),(238,17,1,'2017-07-28 23:01:23','POS 70',2,-1),(239,12,1,'2017-07-28 23:05:38','Manual Edit of Quantity',2,44),(240,16,1,'2017-07-28 23:06:00','Manual Edit of Quantity',2,14),(241,37,1,'2017-07-28 23:06:23','Manual Edit of Quantity',2,20),(242,12,1,'2017-07-28 23:06:52','POS 71',2,-14),(243,12,1,'2017-07-28 23:08:53','POS 72',2,-8),(244,12,1,'2017-07-28 23:24:30','POS 73',2,-8),(245,12,1,'2017-07-28 23:33:21','POS 74',2,-3),(246,10,1,'2017-07-28 23:37:08','POS 75',2,-1),(247,12,1,'2017-07-28 23:39:44','POS 76',2,-3),(248,37,1,'2017-07-29 00:28:13','POS 77',2,-1),(249,16,1,'2017-07-29 00:28:13','POS 77',2,-1),(250,1,1,'2017-07-29 00:33:43','POS 78',2,-2),(251,15,1,'2017-07-29 01:16:01','POS 79',2,-2),(252,53,1,'2017-07-29 01:16:01','POS 79',2,-1),(253,7,1,'2017-07-29 01:16:01','POS 79',2,-2),(254,14,1,'2017-07-29 01:18:19','POS 80',2,-2),(255,7,1,'2017-07-29 01:18:19','POS 80',2,-1),(256,12,1,'2017-07-29 01:21:42','POS 81',2,-8),(257,14,1,'2017-07-29 01:24:04','POS 82',2,-2),(258,16,1,'2017-07-29 01:24:04','POS 82',2,-1),(259,16,1,'2017-07-29 01:56:53','POS 83',2,-3),(260,53,1,'2017-07-29 01:56:53','POS 83',2,-1),(261,19,1,'2017-07-29 01:59:11','POS 84',2,-4),(262,16,1,'2017-07-29 01:59:11','POS 84',2,-2),(263,14,1,'2017-07-29 02:00:30','POS 85',2,-1),(264,27,1,'2017-07-29 02:04:35','POS 86',2,-1),(265,19,1,'2017-07-29 02:10:21','POS 87',2,-1),(266,7,1,'2017-07-29 02:10:21','POS 87',2,-1),(267,37,1,'2017-07-29 02:11:48','POS 88',2,-10),(268,22,1,'2017-07-29 02:39:17','POS 89',2,-2),(269,16,1,'2017-07-29 02:39:17','POS 89',2,-1),(270,15,1,'2017-07-29 02:40:51','POS 90',2,-2),(271,1,1,'2017-07-29 02:47:51','POS 91',2,-2),(272,4,1,'2017-07-29 02:47:51','POS 91',2,-2),(273,5,1,'2017-07-29 02:47:51','POS 91',2,-1),(274,27,1,'2017-07-29 02:47:51','POS 91',2,-1),(275,28,1,'2017-07-29 02:47:51','POS 91',2,-1),(276,12,1,'2017-07-29 02:59:51','POS 92',2,-3),(277,12,1,'2017-07-30 20:05:13','POS 93',2,-6),(278,15,1,'2017-07-30 20:13:36','POS 94',2,-3),(279,19,1,'2017-07-30 21:33:09','POS 95',2,-2),(280,14,1,'2017-07-30 21:33:09','POS 95',2,-1),(281,37,1,'2017-07-30 21:35:00','POS 96',2,-5),(282,19,1,'2017-07-30 21:39:10','POS 97',2,-2),(283,17,1,'2017-07-30 22:32:11','POS 98',2,-1),(284,28,1,'2017-07-30 22:35:25','POS 99',2,-1),(285,37,1,'2017-07-30 23:07:53','POS 100',2,-7),(286,15,1,'2017-07-31 04:07:35','POS 101',2,-2),(287,19,1,'2017-07-31 04:07:35','POS 101',2,-2),(288,14,1,'2017-07-31 04:26:28','POS 102',2,-1),(289,14,1,'2017-07-31 04:32:19','POS 103',2,-1),(290,12,1,'2017-07-31 21:29:36','POS 104',2,-13),(291,15,1,'2017-07-31 21:37:56','POS 105',2,-7),(292,1,1,'2017-07-31 21:37:56','POS 105',2,-1),(293,15,1,'2017-07-31 22:30:09','Manual Edit of Quantity',2,12),(294,15,1,'2017-07-31 22:36:40','POS 106',2,-1),(295,14,1,'2017-07-31 22:36:40','POS 106',2,-1),(296,47,1,'2017-07-31 22:36:40','POS 106',2,-1),(297,37,1,'2017-07-31 23:57:39','POS 107',2,-1),(298,1,1,'2017-08-01 00:17:39','POS 108',2,-7),(299,1,1,'2017-08-01 00:23:18','Manual Edit of Quantity',2,22),(300,19,1,'2017-08-01 00:23:57','Manual Edit of Quantity',2,24),(301,19,1,'2017-08-01 00:25:19','POS 109',2,-2),(302,48,1,'2017-08-01 00:25:19','POS 109',2,-2),(303,12,1,'2017-08-01 01:18:31','POS 110',2,-3),(304,12,1,'2017-08-01 01:25:40','POS 111',2,-3),(305,24,1,'2017-08-01 02:22:10','POS 112',2,-2),(306,15,1,'2017-08-01 02:22:10','POS 112',2,-3),(307,19,1,'2017-08-01 02:22:10','POS 112',2,-2),(308,19,1,'2017-08-01 02:42:01','POS 113',2,-4),(309,12,1,'2017-08-01 02:50:49','POS 114',2,-5),(310,14,1,'2017-08-01 03:55:00','POS 115',2,-1),(311,7,1,'2017-08-01 03:59:59','POS 116',2,-1),(312,53,1,'2017-08-01 04:04:57','POS 117',2,-2),(313,7,1,'2017-08-01 04:04:57','POS 117',2,-1),(314,12,1,'2017-08-01 04:30:37','POS 118',2,-9),(315,16,1,'2017-08-01 04:50:14','POS 119',2,-1),(316,28,1,'2017-08-01 05:00:21','POS 120',2,-1),(317,28,1,'2017-08-01 05:13:35','POS 121',2,-2),(318,7,1,'2017-08-01 20:34:17','Manual Edit of Quantity',2,8),(319,5,1,'2017-08-01 20:34:37','Manual Edit of Quantity',2,5),(320,4,1,'2017-08-01 20:34:59','Manual Edit of Quantity',2,8),(321,37,1,'2017-08-01 20:35:19','Manual Edit of Quantity',2,10),(322,15,1,'2017-08-01 20:35:43','Manual Edit of Quantity',2,6),(323,14,1,'2017-08-01 20:36:00','Manual Edit of Quantity',2,12),(324,36,1,'2017-08-01 20:37:03','Manual Edit of Quantity',2,8),(325,37,1,'2017-08-01 22:15:57','POS 122',2,0),(326,12,1,'2017-08-01 23:26:57','Manual Edit of Quantity',2,25),(327,12,1,'2017-08-01 23:31:08','POS 123',2,-15),(328,37,1,'2017-08-01 23:31:08','POS 123',2,-15),(329,37,1,'2017-08-01 23:55:44','POS 124',2,-5),(330,37,1,'2017-08-01 23:56:53','Manual Edit of Quantity',2,20),(331,14,1,'2017-08-01 23:57:10','POS 125',2,-2),(332,38,1,'2017-08-01 23:58:51','POS 126',2,-2),(333,15,1,'2017-08-01 23:59:57','POS 127',2,-1),(334,17,1,'2017-08-02 00:01:06','POS 128',2,-1),(335,23,1,'2017-08-02 00:06:13','Manual Edit of Quantity',2,14),(336,23,1,'2017-08-02 00:06:47','POS 129',2,-14),(337,53,1,'2017-08-02 00:13:54','POS 130',2,-4),(338,16,1,'2017-08-02 00:45:57','POS 131',2,-5),(339,7,1,'2017-08-02 00:48:56','POS 132',2,-4),(340,12,1,'2017-08-02 01:03:42','POS 133',2,-14),(341,48,1,'2017-08-02 01:18:05','POS 134',2,-3),(342,15,1,'2017-08-02 01:22:01','POS 135',2,-1),(343,15,1,'2017-08-02 01:43:43','POS 136',2,-3),(344,14,1,'2017-08-02 02:52:48','POS 137',2,-3),(345,19,1,'2017-08-02 03:21:56','POS 138',2,-2),(346,14,1,'2017-08-02 03:21:56','POS 138',2,-1),(347,1,1,'2017-08-02 03:24:14','POS 139',2,-2),(348,12,1,'2017-08-02 03:49:05','POS 140',2,-5),(349,1,1,'2017-08-02 04:07:59','POS 141',2,-2),(350,36,1,'2017-08-02 04:29:18','POS 142',2,-10),(351,28,1,'2017-08-02 04:39:37','POS 143',2,-1),(352,20,1,'2017-08-02 04:43:20','Manual Edit of Quantity',2,4),(353,20,1,'2017-08-02 04:44:24','POS 144',2,-4),(354,53,1,'2017-08-02 05:20:34','POS 145',2,-1),(355,16,1,'2017-08-02 21:47:35','POS 146',2,-2),(356,7,1,'2017-08-02 21:47:35','POS 146',2,-1),(357,37,1,'2017-08-02 22:07:25','POS 147',2,0),(358,19,1,'2017-08-02 23:03:17','POS 148',2,-3),(359,16,1,'2017-08-02 23:10:47','Manual Edit of Quantity',2,5),(360,22,1,'2017-08-02 23:25:43','Manual Edit of Quantity',2,1),(361,22,1,'2017-08-02 23:26:15','POS 149',2,-1),(362,20,1,'2017-08-02 23:57:12','Manual Edit of Quantity',2,4),(363,20,1,'2017-08-02 23:59:50','POS 150',2,-4),(364,27,1,'2017-08-03 00:09:59','POS 151',2,-1),(365,38,1,'2017-08-03 00:09:59','POS 151',2,-1),(366,12,1,'2017-08-03 01:30:22','POS 152',2,-12),(367,37,1,'2017-08-03 01:32:29','POS 153',2,-5),(368,37,1,'2017-08-03 02:05:07','POS 154',2,-1),(369,28,1,'2017-08-03 02:05:07','POS 154',2,-2),(370,12,1,'2017-08-03 02:31:20','POS 155',2,-3),(371,37,1,'2017-08-03 03:22:23','POS 156',2,-1),(372,17,1,'2017-08-03 03:57:04','POS 157',2,-1),(373,37,1,'2017-08-03 05:03:46','POS 158',2,-1),(374,14,1,'2017-08-03 20:17:51','POS 159',2,-1),(375,12,1,'2017-08-03 21:18:33','POS 160',2,-11),(376,12,1,'2017-08-03 21:18:34','Manual Edit of Quantity',2,50),(377,12,1,'2017-08-03 21:31:41','POS 161',2,-2),(378,24,1,'2017-08-03 23:04:29','Manual Edit of Quantity',2,18),(379,15,1,'2017-08-03 23:05:22','POS 162',2,-2),(380,37,1,'2017-08-03 23:05:22','POS 162',2,-1),(381,24,1,'2017-08-03 23:05:22','POS 162',2,-3),(382,53,1,'2017-08-04 00:42:08','POS 163',2,-1),(383,32,1,'2017-08-04 00:51:12','Manual Edit of Quantity',2,4),(384,16,1,'2017-08-04 00:51:52','Manual Edit of Quantity',2,7),(385,14,1,'2017-08-04 00:52:22','Manual Edit of Quantity',2,7),(386,28,1,'2017-08-04 00:52:54','Manual Edit of Quantity',2,8),(387,12,1,'2017-08-04 02:24:06','POS 164',2,-9),(388,37,1,'2017-08-04 02:24:06','POS 164',2,-10),(389,19,1,'2017-08-04 02:34:10','POS 165',2,-2),(390,17,1,'2017-08-04 02:34:10','POS 165',2,-1),(391,16,1,'2017-08-04 03:13:45','POS 166',2,-1),(392,14,1,'2017-08-04 03:56:00','POS 167',2,-1),(393,12,1,'2017-08-04 03:57:24','POS 168',2,-3),(394,28,1,'2017-08-04 04:01:58','POS 169',2,-8),(395,5,1,'2017-08-04 04:01:58','POS 169',2,-5),(396,16,1,'2017-08-04 04:28:26','Manual Edit of Quantity',2,2),(397,12,1,'2017-08-04 04:29:10','POS 170',2,-17),(398,16,1,'2017-08-04 04:29:10','POS 170',2,-13),(399,5,1,'2017-08-04 19:59:02','POS 171',2,-1),(400,15,1,'2017-08-04 19:59:02','POS 171',2,-2),(401,26,1,'2017-08-04 20:12:54','Manual Edit of Quantity',2,3),(402,26,1,'2017-08-04 20:13:59','POS 172',2,-3),(403,14,1,'2017-08-04 20:27:14','POS 173',2,-2),(404,15,1,'2017-08-04 20:28:19','POS 174',2,-2),(405,50,1,'2017-08-04 21:10:25','POS 175',2,-5),(406,12,1,'2017-08-04 21:19:43','Manual Edit of Quantity',2,66),(407,37,1,'2017-08-04 21:21:37','Manual Edit of Quantity',2,30),(408,12,1,'2017-08-04 21:23:36','POS 176',2,-19),(409,37,1,'2017-08-04 21:23:36','POS 176',2,-10),(410,12,1,'2017-08-04 21:28:04','POS 177',2,-6),(411,37,1,'2017-08-04 21:44:04','POS 178',2,-4),(412,33,1,'2017-08-04 21:51:08','Manual Edit of Quantity',2,6),(413,51,1,'2017-08-04 21:51:22','POS 179',2,-2),(414,33,1,'2017-08-04 21:51:22','POS 179',2,-6),(415,19,1,'2017-08-04 21:51:22','POS 179',2,-1),(416,14,1,'2017-08-04 21:53:15','POS 180',2,-3),(417,19,1,'2017-08-04 22:06:36','POS 181',2,-1),(418,15,1,'2017-08-04 22:26:47','POS 182',2,-1),(419,16,1,'2017-08-04 22:37:08','Manual Edit of Quantity',2,10),(420,14,1,'2017-08-04 22:37:44','Manual Edit of Quantity',2,6),(421,15,1,'2017-08-04 22:38:09','Manual Edit of Quantity',2,6),(422,12,1,'2017-08-04 22:38:37','Manual Edit of Quantity',2,22),(423,16,1,'2017-08-04 22:40:47','POS 183',2,-2),(424,53,1,'2017-08-04 22:40:47','POS 183',2,-1),(425,15,1,'2017-08-04 22:40:47','POS 183',2,-1),(426,38,1,'2017-08-04 22:40:47','POS 183',2,-1),(427,15,1,'2017-08-04 22:41:56','POS 184',2,-1),(428,4,1,'2017-08-04 22:43:21','Manual Edit of Quantity',2,8),(429,19,1,'2017-08-04 22:44:36','Manual Edit of Quantity',2,16),(430,5,1,'2017-08-04 22:45:17','Manual Edit of Quantity',2,8),(431,15,1,'2017-08-04 22:46:21','POS 185',2,-3),(432,12,1,'2017-08-04 22:46:21','POS 185',2,-12),(433,8,1,'2017-08-04 22:46:21','POS 185',2,-1),(434,4,1,'2017-08-04 22:46:21','POS 185',2,-8),(435,19,1,'2017-08-04 22:59:27','POS 186',2,-2),(436,15,1,'2017-08-04 22:59:27','POS 186',2,-1),(437,14,1,'2017-08-04 22:59:27','POS 186',2,-2),(438,15,1,'2017-08-04 23:03:02','POS 187',2,-1),(439,37,1,'2017-08-04 23:03:02','POS 187',2,-2),(440,53,1,'2017-08-04 23:18:23','POS 188',2,-2),(441,15,1,'2017-08-04 23:21:04','Manual Edit of Quantity',2,10),(442,37,1,'2017-08-04 23:33:48','POS 189',2,-1),(443,19,1,'2017-08-04 23:36:38','POS 190',2,-1),(444,16,1,'2017-08-04 23:38:59','POS 191',2,-4),(445,12,1,'2017-08-04 23:50:25','POS 192',2,-6),(446,49,1,'2017-08-04 23:53:15','POS 193',2,-1),(447,14,1,'2017-08-04 23:56:14','POS 194',2,-2),(448,19,1,'2017-08-05 00:05:50','POS 195',2,-2),(449,12,1,'2017-08-05 00:16:44','POS 196',2,-16),(450,37,1,'2017-08-05 00:16:44','POS 196',2,-10),(451,37,1,'2017-08-05 00:24:29','POS 197',2,-5),(452,19,1,'2017-08-05 00:37:09','POS 198',2,-2),(453,12,1,'2017-08-05 00:47:53','POS 199',2,-13),(454,37,1,'2017-08-05 00:47:53','POS 199',2,-5),(455,37,1,'2017-08-05 00:50:25','POS 200',2,-20),(456,33,1,'2017-08-05 00:55:57','POS 201',2,-7),(457,37,1,'2017-08-05 00:58:42','Manual Edit of Quantity',2,30),(458,37,1,'2017-08-05 00:59:12','Manual Edit of Quantity',2,15),(459,37,1,'2017-08-05 01:03:00','Manual Edit of Quantity',2,5),(460,14,1,'2017-08-05 01:05:52','POS 202',2,-3),(461,37,1,'2017-08-05 01:10:38','POS 203',2,-2),(462,47,1,'2017-08-05 01:10:38','POS 203',2,-2),(463,48,1,'2017-08-05 01:33:05','POS 204',2,-5),(464,12,1,'2017-08-05 01:33:05','POS 204',2,-3),(465,14,1,'2017-08-05 01:47:51','POS 205',2,-2),(466,5,1,'2017-08-05 01:47:51','POS 205',2,-2),(467,14,1,'2017-08-05 01:49:26','POS 206',2,-2),(468,50,1,'2017-08-05 01:55:25','POS 207',2,-2),(469,16,1,'2017-08-05 02:40:58','POS 208',2,-2),(470,15,1,'2017-08-05 02:43:41','POS 209',2,-2),(471,38,1,'2017-08-05 02:43:41','POS 209',2,-1),(472,1,1,'2017-08-05 03:39:32','POS 210',2,-1),(473,24,1,'2017-08-06 20:40:47','POS 211',2,-5),(474,14,1,'2017-08-06 22:32:38','Manual Edit of Quantity',2,8),(475,16,1,'2017-08-06 22:34:10','Manual Edit of Quantity',2,11),(476,37,1,'2017-08-06 22:35:08','Manual Edit of Quantity',2,10),(477,16,1,'2017-08-06 23:25:36','POS 212',2,-6),(478,16,1,'2017-08-06 23:32:01','POS 213',2,-3),(479,24,1,'2017-08-07 00:02:23','POS 214',2,-2),(480,17,1,'2017-08-07 00:25:51','POS 215',2,-1),(481,5,1,'2017-08-07 00:49:52','POS 216',2,-3),(482,14,1,'2017-08-07 00:58:34','POS 217',2,-1),(483,38,1,'2017-08-07 02:22:19','POS 218',2,-1),(484,36,1,'2017-08-07 02:22:19','POS 218',2,-1),(485,15,1,'2017-08-07 02:22:19','POS 218',2,-1),(486,24,1,'2017-08-07 04:08:59','POS 219',2,-1),(487,28,1,'2017-08-07 04:40:21','POS 220',2,-1),(488,4,1,'2017-08-07 04:55:00','POS 221',2,0),(489,37,1,'2017-08-07 05:03:42','POS 222',2,-5),(490,16,1,'2017-08-07 21:18:23','POS 223',2,-2),(491,37,1,'2017-08-07 21:33:25','POS 224',2,-5),(492,20,1,'2017-08-07 22:04:49','Manual Edit of Quantity',2,5),(493,20,1,'2017-08-07 22:06:37','POS 225',2,-5),(494,19,1,'2017-08-07 22:06:37','POS 225',2,-2),(495,12,1,'2017-08-07 22:28:46','POS 226',2,-12),(496,16,1,'2017-08-07 23:17:58','POS 227',2,-1),(497,15,1,'2017-08-07 23:17:58','POS 227',2,-1),(498,7,1,'2017-08-07 23:17:58','POS 227',2,-2),(499,37,1,'2017-08-07 23:17:58','POS 227',2,-1),(500,16,1,'2017-08-07 23:20:00','Manual Edit of Quantity',2,9),(501,14,1,'2017-08-08 00:00:17','POS 228',2,-1),(502,46,1,'2017-08-08 00:00:17','POS 228',2,-1),(503,7,1,'2017-08-08 00:00:17','POS 228',2,-1),(504,54,1,'2017-08-08 00:29:54','Manual Edit of Quantity',2,1000),(505,37,1,'2017-08-08 00:52:18','POS 229',2,-5),(506,55,1,'2017-08-08 00:56:26','Manual Edit of Quantity',2,10),(507,14,1,'2017-08-08 01:18:01','POS 230',2,-2),(508,56,1,'2017-08-08 01:37:36','Manual Edit of Quantity',2,10),(509,28,1,'2017-08-08 02:32:24','Manual Edit of Quantity',2,110),(510,28,1,'2017-08-08 02:32:50','Manual Edit of Quantity',2,-100),(511,28,1,'2017-08-08 02:39:43','POS 231',2,-10),(512,14,1,'2017-08-08 02:49:29','POS 232',2,-1),(513,48,1,'2017-08-08 03:29:03','POS 233',2,-2),(514,53,1,'2017-08-08 03:32:02','POS 234',2,-2),(515,17,1,'2017-08-08 03:54:33','POS 235',2,-1),(516,37,1,'2017-08-08 03:55:58','POS 236',2,-2),(517,53,1,'2017-08-08 03:57:07','POS 237',2,0),(518,30,1,'2017-08-08 04:03:01','Manual Edit of Quantity',2,3),(519,30,1,'2017-08-08 04:04:10','POS 238',2,-3),(520,16,1,'2017-08-08 04:08:29','POS 239',2,-2),(521,28,1,'2017-08-08 04:10:46','POS 240',2,-1),(522,57,1,'2017-08-08 04:32:18','Manual Edit of Quantity',2,10),(523,15,1,'2017-08-08 04:36:37','POS 241',2,-1),(524,12,1,'2017-08-08 04:38:11','POS 242',2,-3),(525,15,1,'2017-08-08 04:52:12','POS 243',2,-2),(526,53,1,'2017-08-08 05:33:08','POS 244',2,-1),(527,24,1,'2017-08-08 05:33:08','POS 244',2,-3),(528,17,1,'2017-08-08 20:31:07','Manual Edit of Quantity',2,3),(529,17,1,'2017-08-08 20:32:07','POS 245',2,-3),(530,26,1,'2017-08-08 20:33:28','Manual Edit of Quantity',2,3),(531,26,1,'2017-08-08 20:34:20','POS 246',2,-3),(532,17,1,'2017-08-08 22:22:23','Manual Edit of Quantity',2,2),(533,27,1,'2017-08-08 22:23:22','POS 247',2,-4),(534,17,1,'2017-08-08 22:23:22','POS 247',2,-2),(535,37,1,'2017-08-08 22:23:22','POS 247',2,-2),(536,7,1,'2017-08-08 22:48:29','Manual Edit of Quantity',2,5),(537,14,1,'2017-08-08 22:49:21','Manual Edit of Quantity',2,7),(538,17,1,'2017-08-08 22:49:53','Manual Edit of Quantity',2,7),(539,12,1,'2017-08-08 22:50:48','Manual Edit of Quantity',2,45),(540,15,1,'2017-08-08 23:10:44','Manual Edit of Quantity',2,10),(541,48,1,'2017-08-08 23:38:07','POS 248',2,-3),(542,14,1,'2017-08-08 23:38:07','POS 248',2,-3),(543,53,1,'2017-08-09 00:26:29','POS 249',2,-1),(544,54,1,'2017-08-09 00:26:29','POS 249',2,-1),(545,28,1,'2017-08-09 00:50:15','Manual Edit of Quantity',2,54),(546,28,1,'2017-08-09 00:51:43','POS 250',2,-54),(547,37,1,'2017-08-09 00:51:43','POS 250',2,-5),(548,37,1,'2017-08-09 00:53:32','Manual Edit of Quantity',2,5),(549,14,1,'2017-08-09 01:31:41','POS 251',2,-2),(550,54,1,'2017-08-09 01:31:41','POS 251',2,-1),(551,1,1,'2017-08-09 01:38:24','POS 252',2,-2),(552,54,1,'2017-08-09 01:38:24','POS 252',2,-1),(553,14,1,'2017-08-09 02:59:24','POS 253',2,-3),(554,54,1,'2017-08-09 02:59:24','POS 253',2,-1),(555,16,1,'2017-08-09 03:19:50','POS 254',2,-5),(556,54,1,'2017-08-09 03:19:50','POS 254',2,-2),(557,16,1,'2017-08-09 04:20:32','POS 255',2,-2),(558,54,1,'2017-08-09 04:20:32','POS 255',2,-1),(559,14,1,'2017-08-09 04:45:54','POS 256',2,-2),(560,54,1,'2017-08-09 04:45:54','POS 256',2,-1),(561,1,1,'2017-08-09 20:18:58','POS 257',2,-6),(562,54,1,'2017-08-09 20:18:58','POS 257',2,-1),(563,5,1,'2017-08-09 21:40:14','Manual Edit of Quantity',2,8),(564,5,1,'2017-08-09 21:40:46','POS 258',2,-8),(565,17,1,'2017-08-09 23:35:16','POS 259',2,-1),(566,54,1,'2017-08-09 23:35:16','POS 259',2,-2),(567,37,1,'2017-08-09 23:35:16','POS 259',2,-1),(568,12,1,'2017-08-09 23:37:23','POS 260',2,-11),(569,54,1,'2017-08-09 23:37:23','POS 260',2,-4),(570,53,1,'2017-08-09 23:56:33','POS 261',2,-2),(571,37,1,'2017-08-09 23:56:33','POS 261',2,-1),(572,19,1,'2017-08-09 23:56:33','POS 261',2,-2),(573,54,1,'2017-08-09 23:56:33','POS 261',2,-3),(574,12,1,'2017-08-10 00:00:27','POS 262',2,-6),(575,54,1,'2017-08-10 00:00:27','POS 262',2,-1),(576,15,1,'2017-08-10 00:01:40','POS 263',2,-2),(577,54,1,'2017-08-10 00:11:55','POS 264',2,-1),(578,24,1,'2017-08-10 00:11:55','POS 264',2,-3),(579,33,1,'2017-08-10 00:13:44','POS 265',2,-6),(580,33,1,'2017-08-10 00:16:32','Manual Edit of Quantity',2,14),(581,33,1,'2017-08-10 00:17:28','Manual Edit of Quantity',2,-11),(582,14,1,'2017-08-10 00:18:22','Manual Edit of Quantity',2,8),(583,37,1,'2017-08-10 00:19:32','Manual Edit of Quantity',2,20),(584,16,1,'2017-08-10 00:20:12','Manual Edit of Quantity',2,8),(585,33,1,'2017-08-10 00:21:51','Manual Edit of Quantity',2,11),(586,33,1,'2017-08-10 00:22:08','Manual Edit of Quantity',2,-6),(587,15,1,'2017-08-10 01:02:32','POS 266',2,-1),(588,54,1,'2017-08-10 01:02:32','POS 266',2,-1),(589,12,1,'2017-08-10 01:18:01','POS 267',2,-9),(590,54,1,'2017-08-10 01:18:01','POS 267',2,-4),(591,37,1,'2017-08-10 01:18:01','POS 267',2,-3),(592,48,1,'2017-08-10 01:18:01','POS 267',2,-2),(593,12,1,'2017-08-10 01:30:12','POS 268',2,-3),(594,54,1,'2017-08-10 01:30:12','POS 268',2,-2),(595,16,1,'2017-08-10 01:30:12','POS 268',2,-2),(596,37,1,'2017-08-10 01:36:10','POS 269',2,-2),(597,37,1,'2017-08-10 01:37:52','POS 270',2,-10),(598,12,1,'2017-08-10 02:27:20','POS 271',2,-3),(599,24,1,'2017-08-10 02:58:16','Manual Edit of Quantity',2,15),(600,15,1,'2017-08-10 02:59:19','POS 272',2,-1),(601,54,1,'2017-08-10 02:59:19','POS 272',2,-2),(602,24,1,'2017-08-10 02:59:19','POS 272',2,-3),(603,12,1,'2017-08-10 03:19:06','POS 273',2,-3),(604,54,1,'2017-08-10 03:19:06','POS 273',2,-2),(605,37,1,'2017-08-10 03:19:06','POS 273',2,-1),(606,19,1,'2017-08-10 03:34:55','POS 274',2,-1),(607,54,1,'2017-08-10 03:34:55','POS 274',2,-1),(608,14,1,'2017-08-10 03:36:47','POS 275',2,-1),(609,37,1,'2017-08-10 03:40:49','POS 276',2,-1),(610,15,1,'2017-08-10 03:40:49','POS 276',2,-2),(611,54,1,'2017-08-10 03:40:49','POS 276',2,-2),(612,16,1,'2017-08-10 03:46:34','POS 277',2,-2),(613,14,1,'2017-08-10 04:52:06','POS 278',2,-1),(614,16,1,'2017-08-10 05:01:24','POS 279',2,-2),(615,15,1,'2017-08-10 05:04:12','POS 280',2,-1),(616,54,1,'2017-08-10 05:04:12','POS 280',2,-1),(617,16,1,'2017-08-10 20:48:29','Manual Edit of Quantity',2,13),(618,37,1,'2017-08-10 20:49:50','Manual Edit of Quantity',2,25),(619,38,1,'2017-08-10 20:50:37','Manual Edit of Quantity',2,7),(620,19,1,'2017-08-10 20:51:35','Manual Edit of Quantity',2,15),(621,13,1,'2017-08-10 20:52:01','Manual Edit of Quantity',2,26),(622,12,1,'2017-08-10 20:53:48','Manual Edit of Quantity',2,41),(623,29,1,'2017-08-10 21:50:15','Manual Edit of Quantity',2,9),(624,12,1,'2017-08-10 22:30:12','POS 281',2,-12),(625,14,1,'2017-08-10 22:31:54','POS 282',2,-2),(626,16,1,'2017-08-10 22:33:09','POS 283',2,-3),(627,24,1,'2017-08-10 22:35:41','Manual Edit of Quantity',2,11),(628,24,1,'2017-08-10 22:36:28','POS 284',2,-11),(629,37,1,'2017-08-10 22:43:01','POS 285',2,-1),(630,54,1,'2017-08-10 22:43:01','POS 285',2,-1),(631,29,1,'2017-08-10 22:57:21','POS 286',2,-9),(632,19,1,'2017-08-10 23:10:50','POS 287',2,-2),(633,54,1,'2017-08-10 23:10:50','POS 287',2,-1),(634,14,1,'2017-08-10 23:33:29','POS 288',2,-1),(635,54,1,'2017-08-10 23:33:29','POS 288',2,-1),(636,12,1,'2017-08-10 23:46:43','Manual Edit of Quantity',2,43),(637,37,1,'2017-08-10 23:47:20','Manual Edit of Quantity',2,10),(638,12,1,'2017-08-10 23:48:50','POS 289',2,-43),(639,37,1,'2017-08-10 23:48:51','POS 289',2,-10),(640,12,1,'2017-08-10 23:51:03','POS 290',2,-8),(641,12,1,'2017-08-11 00:01:44','POS 291',2,-10),(642,37,1,'2017-08-11 00:01:44','POS 291',2,-10),(643,54,1,'2017-08-11 00:01:44','POS 291',2,-2),(644,16,1,'2017-08-11 01:27:18','POS 292',2,-3),(645,54,1,'2017-08-11 01:27:18','POS 292',2,-1),(646,16,1,'2017-08-11 03:02:49','POS 293',2,-4),(647,35,1,'2017-08-11 03:07:09','Manual Edit of Quantity',2,10),(648,35,1,'2017-08-11 03:08:43','POS 294',2,-10),(649,54,1,'2017-08-11 03:08:43','POS 294',2,-1),(650,37,1,'2017-08-11 03:36:32','POS 295',2,-4),(651,54,1,'2017-08-11 03:36:32','POS 295',2,-1),(652,16,1,'2017-08-11 03:59:34','POS 296',2,-2),(653,54,1,'2017-08-11 03:59:34','POS 296',2,-1),(654,5,1,'2017-08-11 04:16:58','POS 297',2,-3),(655,54,1,'2017-08-11 04:16:58','POS 297',2,-1),(656,14,1,'2017-08-11 04:26:08','POS 298',2,-1),(657,54,1,'2017-08-11 04:26:08','POS 298',2,-1),(658,12,1,'2017-08-11 04:53:01','POS 299',2,-9),(659,54,1,'2017-08-11 04:53:01','POS 299',2,-1),(660,16,1,'2017-08-11 20:02:04','Manual Edit of Quantity',2,10),(661,16,1,'2017-08-11 20:03:06','POS 300',2,-4),(662,54,1,'2017-08-11 20:03:06','POS 300',2,-1),(663,36,1,'2017-08-11 20:14:01','POS 301',2,-2),(664,30,1,'2017-08-11 20:14:01','POS 301',2,-2),(665,8,1,'2017-08-11 20:14:01','POS 301',2,-1),(666,54,1,'2017-08-11 20:14:01','POS 301',2,-1),(667,12,1,'2017-08-11 20:42:29','Manual Edit of Quantity',2,69),(668,37,1,'2017-08-11 20:49:17','Manual Edit of Quantity',2,10),(669,5,1,'2017-08-11 20:50:00','Manual Edit of Quantity',2,8),(670,16,1,'2017-08-11 21:14:06','POS 302',2,-2),(671,54,1,'2017-08-11 21:14:06','POS 302',2,-1),(672,12,1,'2017-08-11 21:54:36','Manual Edit of Quantity',2,45),(673,37,1,'2017-08-11 21:55:24','Manual Edit of Quantity',2,15),(674,12,1,'2017-08-11 21:56:50','POS 303',2,-45),(675,37,1,'2017-08-11 21:56:50','POS 303',2,-1),(676,37,1,'2017-08-11 22:00:41','POS 304',2,-14),(677,14,1,'2017-08-11 22:23:30','POS 305',2,-1),(678,19,1,'2017-08-11 22:23:30','POS 305',2,-2),(679,24,1,'2017-08-11 22:23:30','POS 305',2,-1),(680,38,1,'2017-08-11 22:23:30','POS 305',2,-1),(681,54,1,'2017-08-11 22:23:30','POS 305',2,-3),(682,14,1,'2017-08-11 22:29:07','POS 306',2,-1),(683,4,1,'2017-08-11 22:29:07','POS 306',2,-1),(684,5,1,'2017-08-11 22:29:07','POS 306',2,-1),(685,54,1,'2017-08-11 22:29:07','POS 306',2,-3),(686,12,1,'2017-08-11 22:43:27','POS 307',2,-3),(687,3,1,'2017-08-11 22:43:27','POS 307',2,-1),(688,54,1,'2017-08-11 22:43:27','POS 307',2,-2),(689,19,1,'2017-08-11 22:43:27','POS 307',2,-2),(690,19,1,'2017-08-11 23:07:30','POS 308',2,-2),(691,38,1,'2017-08-11 23:07:30','POS 308',2,-1),(692,54,1,'2017-08-11 23:07:30','POS 308',2,-1),(693,36,1,'2017-08-11 23:09:10','Manual Edit of Quantity',2,3),(694,36,1,'2017-08-11 23:09:50','POS 309',2,-1),(695,36,1,'2017-08-11 23:11:02','POS 310',2,-1),(696,38,1,'2017-08-11 23:11:02','POS 310',2,-1),(697,16,1,'2017-08-11 23:14:25','POS 311',2,-7),(698,54,1,'2017-08-11 23:14:25','POS 311',2,-2),(699,47,1,'2017-08-11 23:16:22','POS 312',2,-2),(700,54,1,'2017-08-11 23:16:22','POS 312',2,-1),(701,24,1,'2017-08-11 23:19:37','POS 313',2,-4),(702,54,1,'2017-08-11 23:19:37','POS 313',2,-1),(703,28,1,'2017-08-11 23:41:02','POS 314',2,-2),(704,54,1,'2017-08-11 23:41:02','POS 314',2,-2),(705,24,1,'2017-08-11 23:41:02','POS 314',2,-2),(706,15,1,'2017-08-11 23:42:09','POS 315',2,-2),(707,54,1,'2017-08-11 23:42:09','POS 315',2,-1),(708,52,1,'2017-08-11 23:43:46','Manual Edit of Quantity',2,4),(709,52,1,'2017-08-11 23:45:34','POS 316',2,-4),(710,54,1,'2017-08-11 23:45:34','POS 316',2,-1),(711,16,1,'2017-08-11 23:49:43','Manual Edit of Quantity',2,3),(712,16,1,'2017-08-11 23:50:40','POS 317',2,-2),(713,24,1,'2017-08-11 23:50:40','POS 317',2,-3),(714,54,1,'2017-08-11 23:50:40','POS 317',2,-2),(715,14,1,'2017-08-11 23:56:39','POS 318',2,-4),(716,54,1,'2017-08-11 23:56:39','POS 318',2,-1),(717,16,1,'2017-08-12 00:07:21','Manual Edit of Quantity',2,13),(718,12,1,'2017-08-12 00:09:09','POS 319',2,-3),(719,54,1,'2017-08-12 00:09:09','POS 319',2,-1),(720,15,1,'2017-08-12 00:12:14','POS 320',2,-2),(721,54,1,'2017-08-12 00:12:14','POS 320',2,-1),(722,28,1,'2017-08-12 00:23:22','POS 321',2,-4),(723,54,1,'2017-08-12 00:23:22','POS 321',2,-1),(724,46,1,'2017-08-12 00:25:08','POS 322',2,-1),(725,54,1,'2017-08-12 00:25:08','POS 322',2,-1),(726,50,1,'2017-08-12 00:28:50','POS 323',2,-2),(727,54,1,'2017-08-12 00:28:50','POS 323',2,-1),(728,37,1,'2017-08-12 00:34:40','POS 324',2,-1),(729,38,1,'2017-08-12 00:34:40','POS 324',2,-1),(730,54,1,'2017-08-12 00:34:40','POS 324',2,-2),(731,12,1,'2017-08-12 00:46:53','POS 325',2,-3),(732,14,1,'2017-08-12 00:49:02','POS 326',2,-2),(733,54,1,'2017-08-12 00:49:02','POS 326',2,-1),(734,16,1,'2017-08-12 00:51:45','POS 327',2,-3),(735,12,1,'2017-08-12 00:56:47','POS 328',2,-16),(736,37,1,'2017-08-12 00:56:47','POS 328',2,-10),(737,54,1,'2017-08-12 00:56:47','POS 328',2,-4),(738,16,1,'2017-08-12 01:00:49','POS 329',2,-3),(739,15,1,'2017-08-12 01:00:49','POS 329',2,-1),(740,54,1,'2017-08-12 01:00:49','POS 329',2,-2),(741,37,1,'2017-08-12 01:02:20','POS 330',2,-1),(742,7,1,'2017-08-12 01:07:28','POS 331',2,-2),(743,44,1,'2017-08-12 01:07:28','POS 331',2,-2),(744,37,1,'2017-08-12 01:07:28','POS 331',2,-2),(745,54,1,'2017-08-12 01:07:28','POS 331',2,-3),(746,28,1,'2017-08-12 01:08:58','Manual Edit of Quantity',2,7),(747,28,1,'2017-08-12 01:09:51','POS 332',2,-8),(748,54,1,'2017-08-12 01:09:51','POS 332',2,-1),(749,12,1,'2017-08-12 01:33:02','POS 333',2,-3),(750,54,1,'2017-08-12 01:33:02','POS 333',2,-1),(751,28,1,'2017-08-12 01:54:04','POS 334',2,-1),(752,54,1,'2017-08-12 01:54:04','POS 334',2,-1),(753,19,1,'2017-08-12 01:57:49','POS 335',2,-3),(754,12,1,'2017-08-12 01:57:49','POS 335',2,-3),(755,24,1,'2017-08-12 01:57:49','POS 335',2,-2),(756,54,1,'2017-08-12 01:57:49','POS 335',2,-3),(757,16,1,'2017-08-12 02:02:36','POS 336',2,-1),(758,15,1,'2017-08-12 02:02:36','POS 336',2,-2),(759,55,1,'2017-08-12 02:02:36','POS 336',2,-1),(760,54,1,'2017-08-12 02:02:36','POS 336',2,-3),(761,14,1,'2017-08-12 02:19:04','POS 337',2,-2),(762,54,1,'2017-08-12 02:19:04','POS 337',2,-1),(763,12,1,'2017-08-12 02:26:24','POS 338',2,-2),(764,5,1,'2017-08-12 02:26:24','POS 338',2,-2),(765,7,1,'2017-08-12 02:26:25','POS 338',2,-2),(766,54,1,'2017-08-12 02:26:25','POS 338',2,-3),(767,37,1,'2017-08-12 02:29:09','POS 339',2,-1),(768,14,1,'2017-08-12 02:29:09','POS 339',2,-1),(769,54,1,'2017-08-12 02:29:09','POS 339',2,-2),(770,12,1,'2017-08-12 03:17:13','POS 340',2,-6),(771,37,1,'2017-08-12 03:17:13','POS 340',2,-6),(772,54,1,'2017-08-12 03:17:13','POS 340',2,-3),(773,12,1,'2017-08-12 03:21:21','POS 341',2,-3),(774,54,1,'2017-08-12 03:21:21','POS 341',2,-1),(775,15,1,'2017-08-13 20:06:26','POS 342',2,-1),(776,54,1,'2017-08-13 20:06:26','POS 342',2,-1),(777,16,1,'2017-08-14 01:11:04','POS 343',2,-3),(778,37,1,'2017-08-14 01:11:04','POS 343',2,-3),(779,12,1,'2017-08-14 01:11:04','POS 343',2,-3),(780,54,1,'2017-08-14 01:11:04','POS 343',2,-3),(781,36,1,'2017-08-14 03:36:35','Manual Edit of Quantity',2,1),(782,5,1,'2017-08-14 03:38:08','POS 344',2,-1),(783,19,1,'2017-08-14 03:38:08','POS 344',2,-3),(784,36,1,'2017-08-14 03:38:08','POS 344',2,-1),(785,54,1,'2017-08-14 03:38:08','POS 344',2,-3),(786,36,1,'2017-08-14 04:08:12','Manual Edit of Quantity',2,1),(787,36,1,'2017-08-14 04:10:11','POS 345',2,-1),(788,14,1,'2017-08-14 05:01:42','POS 346',2,-1),(789,54,1,'2017-08-14 05:01:42','POS 346',2,-1),(790,28,1,'2017-08-14 20:26:12','Manual Edit of Quantity',2,10),(791,28,1,'2017-08-14 20:34:15','POS 347',2,-10),(792,36,1,'2017-08-14 23:07:08','Manual Edit of Quantity',2,10),(793,36,1,'2017-08-14 23:07:38','POS 348',2,-10),(794,12,1,'2017-08-14 23:12:15','Manual Edit of Quantity',2,23),(795,12,1,'2017-08-14 23:12:47','POS 349',2,-23),(796,54,1,'2017-08-14 23:13:54','POS 350',2,-8),(797,7,1,'2017-08-14 23:35:24','Manual Edit of Quantity',2,8),(798,7,1,'2017-08-14 23:36:04','POS 351',2,-3),(799,54,1,'2017-08-14 23:36:04','POS 351',2,-1),(800,37,1,'2017-08-15 00:13:59','POS 352',2,-5),(801,20,1,'2017-08-15 00:40:57','Manual Edit of Quantity',2,2),(802,20,1,'2017-08-15 00:42:52','POS 353',2,-2),(803,4,1,'2017-08-15 00:42:52','POS 353',2,0),(804,54,1,'2017-08-15 00:42:52','POS 353',2,-2),(805,5,1,'2017-08-15 00:51:50','POS 354',2,-2),(806,24,1,'2017-08-15 00:51:50','POS 354',2,-1),(807,54,1,'2017-08-15 00:51:50','POS 354',2,-2),(808,14,1,'2017-08-15 01:24:11','Manual Edit of Quantity',2,14),(809,28,1,'2017-08-15 01:24:54','Manual Edit of Quantity',2,11),(810,15,1,'2017-08-15 01:44:54','Manual Edit of Quantity',2,17),(811,37,1,'2017-08-15 01:46:35','Manual Edit of Quantity',2,10),(812,14,1,'2017-08-15 01:54:12','POS 355',2,-4),(813,37,1,'2017-08-15 01:54:12','POS 355',2,-4),(814,54,1,'2017-08-15 01:54:12','POS 355',2,-2),(815,52,1,'2017-08-15 02:08:00','Manual Edit of Quantity',2,3),(816,52,1,'2017-08-15 02:09:09','POS 356',2,-3),(817,54,1,'2017-08-15 02:09:09','POS 356',2,-1),(818,16,1,'2017-08-15 03:33:16','Manual Edit of Quantity',2,1),(819,37,1,'2017-08-15 03:42:18','POS 357',2,-2),(820,54,1,'2017-08-15 03:42:18','POS 357',2,-1),(821,12,1,'2017-08-15 03:50:47','POS 358',2,-5),(822,54,1,'2017-08-15 03:50:47','POS 358',2,-2),(823,33,1,'2017-08-15 04:15:00','Manual Edit of Quantity',2,30),(824,33,1,'2017-08-15 04:17:08','POS 359',2,-30),(825,12,1,'2017-08-15 04:25:02','POS 360',2,-3),(826,54,1,'2017-08-15 04:25:02','POS 360',2,-1),(827,1,1,'2017-08-15 04:33:32','POS 361',2,-1),(828,5,1,'2017-08-15 04:33:32','POS 361',2,-1),(829,22,1,'2017-08-15 04:33:32','POS 361',2,-2),(830,37,1,'2017-08-15 04:33:32','POS 361',2,-1),(831,12,1,'2017-08-15 04:37:37','POS 362',2,-3),(832,14,1,'2017-08-15 05:03:41','POS 363',2,-3),(833,54,1,'2017-08-15 05:03:41','POS 363',2,-1),(834,36,1,'2017-08-15 20:04:48','Manual Edit of Quantity',2,3),(835,36,1,'2017-08-15 20:05:11','POS 364',2,-1),(836,38,1,'2017-08-15 21:12:09','Manual Edit of Quantity',2,6),(837,37,1,'2017-08-15 21:13:08','Manual Edit of Quantity',2,20),(838,7,1,'2017-08-15 21:17:26','Manual Edit of Quantity',2,6),(839,16,1,'2017-08-15 21:18:36','POS 365',2,-3),(840,54,1,'2017-08-15 21:18:36','POS 365',2,-1),(841,16,1,'2017-08-15 21:52:33','POS 366',2,-2),(842,15,1,'2017-08-15 22:56:17','POS 367',2,-2),(843,54,1,'2017-08-15 22:56:17','POS 367',2,-1),(844,14,1,'2017-08-15 23:19:18','POS 368',2,-2),(845,54,1,'2017-08-15 23:19:18','POS 368',2,-1),(846,38,1,'2017-08-15 23:21:44','Manual Edit of Quantity',2,75),(847,38,1,'2017-08-15 23:23:06','POS 369',2,-25),(848,38,1,'2017-08-15 23:24:30','POS 370',2,-25),(849,38,1,'2017-08-15 23:25:54','POS 371',2,-25),(850,16,1,'2017-08-15 23:28:15','Manual Edit of Quantity',2,6),(851,14,1,'2017-08-15 23:29:58','Manual Edit of Quantity',2,13),(852,16,1,'2017-08-15 23:31:28','POS 372',2,-2),(853,54,1,'2017-08-15 23:31:28','POS 372',2,-1),(854,20,1,'2017-08-15 23:41:15','Manual Edit of Quantity',2,1),(855,20,1,'2017-08-15 23:42:58','POS 373',2,-1),(856,37,1,'2017-08-15 23:42:58','POS 373',2,-1),(857,54,1,'2017-08-15 23:42:58','POS 373',2,-2),(858,37,1,'2017-08-15 23:44:55','Manual Edit of Quantity',2,5),(859,37,1,'2017-08-15 23:46:35','POS 374',2,-2),(860,54,1,'2017-08-15 23:46:35','POS 374',2,-1),(861,37,1,'2017-08-15 23:48:07','POS 375',2,-3),(862,54,1,'2017-08-15 23:48:07','POS 375',2,-2),(863,17,1,'2017-08-16 00:51:07','POS 376',2,-1),(864,37,1,'2017-08-16 00:52:58','POS 377',2,-5),(865,24,1,'2017-08-16 01:05:44','POS 378',2,-1),(866,54,1,'2017-08-16 01:05:44','POS 378',2,-1),(867,12,1,'2017-08-16 01:09:27','POS 379',2,-6),(868,37,1,'2017-08-16 01:09:27','POS 379',2,-5),(869,54,1,'2017-08-16 01:09:27','POS 379',2,-2),(870,19,1,'2017-08-16 01:11:07','POS 380',2,-4),(871,54,1,'2017-08-16 01:11:07','POS 380',2,-1),(872,12,1,'2017-08-16 01:39:07','POS 381',2,-3),(873,15,1,'2017-08-16 01:39:07','POS 381',2,-1),(874,54,1,'2017-08-16 01:39:07','POS 381',2,-2),(875,19,1,'2017-08-16 01:45:01','POS 382',2,-2),(876,54,1,'2017-08-16 01:45:01','POS 382',2,-1),(877,20,1,'2017-08-16 02:46:59','Manual Edit of Quantity',2,3),(878,20,1,'2017-08-16 02:48:55','POS 383',2,-3),(879,1,1,'2017-08-16 02:48:55','POS 383',2,-4),(880,54,1,'2017-08-16 02:48:55','POS 383',2,-3),(881,14,1,'2017-08-16 03:08:52','POS 384',2,-1),(882,54,1,'2017-08-16 03:08:52','POS 384',2,-1),(883,24,1,'2017-08-16 03:46:35','Manual Edit of Quantity',2,15),(884,27,1,'2017-08-16 03:49:03','Manual Edit of Quantity',2,10),(885,27,1,'2017-08-16 03:50:08','Manual Edit of Quantity',2,-10),(886,16,1,'2017-08-16 04:15:35','POS 385',2,-4),(887,54,1,'2017-08-16 04:15:35','POS 385',2,-1),(888,38,1,'2017-08-16 04:20:19','POS 386',2,-1),(889,27,1,'2017-08-16 04:31:22','POS 387',2,-1),(890,54,1,'2017-08-16 04:31:22','POS 387',2,-1),(891,37,1,'2017-08-16 04:38:04','POS 388',2,-3),(892,54,1,'2017-08-16 04:38:04','POS 388',2,-1),(893,15,1,'2017-08-16 04:39:40','POS 389',2,-1),(894,54,1,'2017-08-16 04:39:40','POS 389',2,-1),(895,15,1,'2017-08-16 04:42:26','POS 390',2,-2),(896,38,1,'2017-08-16 04:42:26','POS 390',2,-2),(897,54,1,'2017-08-16 04:42:26','POS 390',2,-2),(898,14,1,'2017-08-16 04:47:47','POS 391',2,-3),(899,38,1,'2017-08-16 04:47:47','POS 391',2,-2),(900,54,1,'2017-08-16 04:47:47','POS 391',2,-2),(901,57,1,'2017-08-16 04:58:01','POS 392',2,-1),(902,54,1,'2017-08-16 04:58:01','POS 392',2,-1),(903,16,1,'2017-08-16 20:05:23','POS 393',2,-1),(904,54,1,'2017-08-16 20:05:23','POS 393',2,-1),(905,16,1,'2017-08-16 20:07:28','POS 394',2,-3),(906,16,1,'2017-08-16 20:09:23','Manual Edit of Quantity',2,7),(907,16,1,'2017-08-16 20:39:46','Manual Edit of Quantity',2,6),(908,15,1,'2017-08-16 22:22:33','POS 395',2,-2),(909,54,1,'2017-08-16 22:22:33','POS 395',2,-1),(910,16,1,'2017-08-16 22:39:08','POS 396',2,-1),(911,54,1,'2017-08-16 22:39:08','POS 396',2,-1),(912,34,1,'2017-08-16 22:46:50','POS 397',2,-4),(913,54,1,'2017-08-16 22:46:50','POS 397',2,-1),(914,12,1,'2017-08-16 22:51:38','POS 398',2,-9),(915,37,1,'2017-08-16 22:51:38','POS 398',2,-10),(916,54,1,'2017-08-16 22:51:38','POS 398',2,-3),(917,19,1,'2017-08-16 23:24:28','Manual Edit of Quantity',2,35988),(918,19,1,'2017-08-16 23:25:30','POS 399',2,-30),(919,55,1,'2017-08-16 23:49:52','POS 400',2,-1),(920,49,1,'2017-08-16 23:49:52','POS 400',2,-1),(921,54,1,'2017-08-16 23:49:52','POS 400',2,-1),(922,37,1,'2017-08-17 00:44:36','Manual Edit of Quantity',2,5),(923,37,1,'2017-08-17 00:48:53','POS 401',2,-1),(924,14,1,'2017-08-17 00:48:53','POS 401',2,-2),(925,28,1,'2017-08-17 00:48:53','POS 401',2,-2),(926,54,1,'2017-08-17 00:48:53','POS 401',2,-3),(927,16,1,'2017-08-17 00:56:48','POS 402',2,-2),(928,54,1,'2017-08-17 00:56:48','POS 402',2,-1),(929,13,1,'2017-08-17 01:40:36','Manual Edit of Quantity',2,-22),(930,38,1,'2017-08-17 01:42:59','POS 403',2,-2),(931,54,1,'2017-08-17 01:42:59','POS 403',2,-2),(932,13,1,'2017-08-17 01:42:59','POS 403',2,-4),(933,14,1,'2017-08-17 01:59:04','POS 404',2,-2),(934,54,1,'2017-08-17 01:59:04','POS 404',2,-1),(935,14,1,'2017-08-17 02:00:09','POS 405',2,-2),(936,54,1,'2017-08-17 02:00:09','POS 405',2,-1),(937,24,1,'2017-08-17 02:01:25','POS 406',2,-2),(938,54,1,'2017-08-17 02:01:25','POS 406',2,-1),(939,14,1,'2017-08-17 02:02:31','POS 407',2,-2),(940,54,1,'2017-08-17 02:02:31','POS 407',2,-1),(941,12,1,'2017-08-17 02:11:12','POS 408',2,-3),(942,37,1,'2017-08-17 02:12:13','POS 409',2,-1),(943,54,1,'2017-08-17 03:07:01','POS 410',2,-1),(944,7,1,'2017-08-17 03:07:01','POS 410',2,-2),(945,14,1,'2017-08-17 03:24:24','POS 411',2,-2),(946,54,1,'2017-08-17 03:24:24','POS 411',2,-1),(947,9,1,'2017-08-17 03:25:51','POS 412',2,-1),(948,32,1,'2017-08-17 03:40:12','Manual Edit of Quantity',2,28),(949,32,1,'2017-08-17 03:40:55','POS 413',2,-28),(950,54,1,'2017-08-17 03:40:55','POS 413',2,-6),(951,24,1,'2017-08-17 04:15:00','Manual Edit of Quantity',2,9),(952,24,1,'2017-08-17 04:16:09','POS 414',2,-9),(953,54,1,'2017-08-17 04:16:09','POS 414',2,-2),(954,15,1,'2017-08-17 04:38:53','POS 415',2,-1),(955,54,1,'2017-08-17 04:38:53','POS 415',2,-1),(956,24,1,'2017-08-17 04:41:53','POS 416',2,-1),(957,24,1,'2017-08-17 04:43:22','POS 417',2,-1),(958,54,1,'2017-08-17 04:43:22','POS 417',2,-1),(959,14,1,'2017-08-17 04:45:32','POS 418',2,-2),(960,54,1,'2017-08-17 04:45:32','POS 418',2,-1),(961,12,1,'2017-08-17 04:46:39','POS 419',2,-3),(962,54,1,'2017-08-17 04:46:39','POS 419',2,-1),(963,14,1,'2017-08-17 04:56:16','Manual Edit of Quantity',2,6),(964,15,1,'2017-08-17 04:58:01','POS 420',2,-2),(965,54,1,'2017-08-17 04:58:01','POS 420',2,-1),(966,14,1,'2017-08-17 05:01:39','Manual Edit of Quantity',2,2),(967,20,1,'2017-08-17 20:19:19','Manual Edit of Quantity',2,2),(968,20,1,'2017-08-17 20:20:31','POS 421',2,-3),(969,54,1,'2017-08-17 20:20:32','POS 421',2,-2),(970,16,1,'2017-08-17 20:26:41','Manual Edit of Quantity',2,6),(971,16,1,'2017-08-17 20:27:53','POS 422',2,-5),(972,54,1,'2017-08-17 20:27:53','POS 422',2,-1),(973,16,1,'2017-08-17 20:31:18','Manual Edit of Quantity',2,6),(974,12,1,'2017-08-17 20:35:55','Manual Edit of Quantity',2,44),(975,20,1,'2017-08-17 21:00:12','Manual Edit of Quantity',2,19),(976,12,1,'2017-08-17 21:02:18','POS 423',2,-3),(977,20,1,'2017-08-17 21:02:18','POS 423',2,-3),(978,16,1,'2017-08-17 21:02:18','POS 423',2,-1),(979,54,1,'2017-08-17 21:02:18','POS 423',2,-3),(980,15,1,'2017-08-17 21:03:53','Manual Edit of Quantity',2,13),(981,37,1,'2017-08-17 21:25:14','Manual Edit of Quantity',2,5),(982,37,1,'2017-08-17 21:26:30','POS 424',2,-5),(983,15,1,'2017-08-17 22:17:46','POS 425',2,-1),(984,37,1,'2017-08-17 22:17:46','POS 425',2,-1),(985,54,1,'2017-08-17 22:17:46','POS 425',2,-1),(986,12,1,'2017-08-17 22:45:09','POS 426',2,-6),(987,37,1,'2017-08-17 22:45:09','POS 426',2,-3),(988,54,1,'2017-08-17 22:45:09','POS 426',2,-2),(989,12,1,'2017-08-17 23:17:01','POS 427',2,-6),(990,24,1,'2017-08-17 23:17:01','POS 427',2,-2),(991,54,1,'2017-08-17 23:17:01','POS 427',2,-2),(992,23,1,'2017-08-17 23:19:06','Manual Edit of Quantity',2,3),(993,19,1,'2017-08-17 23:21:25','POS 428',2,-1),(994,16,1,'2017-08-17 23:21:25','POS 428',2,-1),(995,54,1,'2017-08-17 23:21:25','POS 428',2,-2),(996,15,1,'2017-08-17 23:22:35','POS 429',2,-1),(997,54,1,'2017-08-17 23:22:35','POS 429',2,-1),(998,24,1,'2017-08-17 23:30:44','POS 430',2,-2),(999,55,1,'2017-08-17 23:30:44','POS 430',2,-1),(1000,23,1,'2017-08-17 23:30:44','POS 430',2,-3),(1001,54,1,'2017-08-17 23:30:44','POS 430',2,-2),(1002,24,1,'2017-08-17 23:39:17','POS 431',2,-1),(1003,23,1,'2017-08-17 23:39:17','POS 431',2,-2),(1004,54,1,'2017-08-17 23:39:17','POS 431',2,-2),(1005,37,1,'2017-08-18 00:00:30','POS 432',2,-2),(1006,14,1,'2017-08-18 00:00:30','POS 432',2,-6),(1007,54,1,'2017-08-18 00:00:30','POS 432',2,-2),(1008,20,1,'2017-08-18 00:08:52','POS 433',2,-1),(1009,54,1,'2017-08-18 00:08:52','POS 433',2,-1),(1010,14,1,'2017-08-18 00:14:53','Manual Edit of Quantity',2,14),(1011,37,1,'2017-08-18 00:16:41','POS 434',2,-1),(1012,14,1,'2017-08-18 00:21:24','POS 435',2,-2),(1013,54,1,'2017-08-18 00:21:24','POS 435',2,-1),(1014,33,1,'2017-08-18 00:28:41','Manual Edit of Quantity',2,3),(1015,33,1,'2017-08-18 00:31:57','POS 436',2,-3),(1016,7,1,'2017-08-18 00:31:57','POS 436',2,-2),(1017,14,1,'2017-08-18 00:31:57','POS 436',2,-2),(1018,54,1,'2017-08-18 00:31:57','POS 436',2,-3),(1019,16,1,'2017-08-18 00:52:09','POS 437',2,-1),(1020,54,1,'2017-08-18 00:52:09','POS 437',2,-1),(1021,20,1,'2017-08-18 00:54:10','POS 438',2,-1),(1022,54,1,'2017-08-18 00:54:10','POS 438',2,-1),(1023,16,1,'2017-08-18 01:28:36','POS 439',2,-3),(1024,54,1,'2017-08-18 01:28:36','POS 439',2,-1),(1025,12,1,'2017-08-18 01:49:29','POS 440',2,-3),(1026,54,1,'2017-08-18 01:49:29','POS 440',2,-1),(1027,20,1,'2017-08-18 02:05:38','POS 441',2,-5),(1028,54,1,'2017-08-18 02:05:38','POS 441',2,-2),(1029,14,1,'2017-08-18 02:07:18','POS 442',2,-2),(1030,54,1,'2017-08-18 02:07:18','POS 442',2,-1),(1031,20,1,'2017-08-18 02:09:10','POS 443',2,-1),(1032,37,1,'2017-08-18 02:17:16','Manual Edit of Quantity',2,10),(1033,37,1,'2017-08-18 02:22:20','POS 444',2,-2),(1034,54,1,'2017-08-18 02:22:20','POS 444',2,-2),(1035,20,1,'2017-08-18 02:25:47','Manual Edit of Quantity',2,12),(1036,12,1,'2017-08-18 02:37:26','POS 445',2,-3),(1037,54,1,'2017-08-18 02:37:26','POS 445',2,-1),(1038,12,1,'2017-08-18 02:51:18','POS 446',2,-3),(1039,54,1,'2017-08-18 02:51:18','POS 446',2,-1),(1040,37,1,'2017-08-18 02:53:04','POS 447',2,-1),(1041,54,1,'2017-08-18 02:53:04','POS 447',2,-1),(1042,14,1,'2017-08-18 03:01:45','POS 448',2,-2),(1043,54,1,'2017-08-18 03:01:45','POS 448',2,-1),(1044,37,1,'2017-08-18 03:04:03','POS 449',2,-1),(1045,54,1,'2017-08-18 03:04:03','POS 449',2,-1),(1046,14,1,'2017-08-18 03:09:05','POS 450',2,-1),(1047,20,1,'2017-08-18 03:09:05','POS 450',2,-2),(1048,54,1,'2017-08-18 03:09:05','POS 450',2,-2),(1049,12,1,'2017-08-18 03:19:28','Manual Edit of Quantity',2,23),(1050,12,1,'2017-08-18 03:29:40','POS 451',2,-23),(1051,26,1,'2017-08-18 03:57:53','Manual Edit of Quantity',2,3),(1052,26,1,'2017-08-18 04:03:21','POS 452',2,-3),(1053,20,1,'2017-08-18 04:03:21','POS 452',2,-3),(1054,16,1,'2017-08-18 04:03:21','POS 452',2,-2),(1055,14,1,'2017-08-18 04:03:21','POS 452',2,-2),(1056,54,1,'2017-08-18 04:03:21','POS 452',2,-4),(1057,7,1,'2017-08-18 04:13:46','POS 453',2,-2),(1058,54,1,'2017-08-18 04:13:46','POS 453',2,-1),(1059,54,1,'2017-08-18 04:23:26','POS 454',2,-1),(1060,12,1,'2017-08-18 04:30:47','POS 455',2,-3),(1061,54,1,'2017-08-18 04:30:47','POS 455',2,-2),(1062,28,1,'2017-08-18 04:36:18','POS 456',2,-2),(1063,14,1,'2017-08-18 04:41:30','POS 457',2,-1),(1064,54,1,'2017-08-18 04:41:30','POS 457',2,-1),(1065,16,1,'2017-08-18 04:44:13','POS 458',2,-1),(1066,54,1,'2017-08-18 04:44:13','POS 458',2,-1),(1067,16,1,'2017-08-18 04:57:20','POS 459',2,-2),(1068,54,1,'2017-08-18 04:57:20','POS 459',2,-1),(1069,30,1,'2017-08-18 19:51:38','Manual Edit of Quantity',2,6),(1070,38,1,'2017-08-18 19:52:53','POS 460',2,-2),(1071,30,1,'2017-08-18 19:52:53','POS 460',2,-4),(1072,54,1,'2017-08-18 19:52:53','POS 460',2,-1),(1073,12,1,'2017-08-18 19:57:16','POS 461',2,-5),(1074,54,1,'2017-08-18 19:57:16','POS 461',2,-2),(1075,16,1,'2017-08-18 20:07:37','POS 462',2,-2),(1076,54,1,'2017-08-18 20:07:37','POS 462',2,-1),(1077,12,1,'2017-08-18 20:11:51','Manual Edit of Quantity',2,47),(1078,14,1,'2017-08-18 20:12:21','Manual Edit of Quantity',2,6),(1079,16,1,'2017-08-18 20:17:24','Manual Edit of Quantity',2,10),(1080,20,1,'2017-08-18 20:35:41','POS 463',2,-2),(1081,54,1,'2017-08-18 20:35:41','POS 463',2,-1),(1082,15,1,'2017-08-18 20:41:16','POS 464',2,-1),(1083,16,1,'2017-08-18 20:41:16','POS 464',2,-1),(1084,20,1,'2017-08-18 20:41:16','POS 464',2,-1),(1085,54,1,'2017-08-18 20:41:16','POS 464',2,-3),(1086,50,1,'2017-08-18 22:07:30','POS 465',2,-4),(1087,54,1,'2017-08-18 22:07:31','POS 465',2,-1),(1088,16,1,'2017-08-18 22:08:50','POS 466',2,-8),(1089,12,1,'2017-08-18 22:20:22','POS 467',2,-3),(1090,15,1,'2017-08-18 22:20:22','POS 467',2,-1),(1091,54,1,'2017-08-18 22:20:22','POS 467',2,-2),(1092,25,1,'2017-08-18 22:26:34','POS 468',2,-2),(1093,54,1,'2017-08-18 22:26:34','POS 468',2,-1),(1094,20,1,'2017-08-18 22:46:42','POS 469',2,-1),(1095,24,1,'2017-08-18 22:46:42','POS 469',2,0),(1096,37,1,'2017-08-18 22:46:42','POS 469',2,0),(1097,54,1,'2017-08-18 22:46:42','POS 469',2,-3),(1098,12,1,'2017-08-18 22:55:03','POS 470',2,-3),(1099,54,1,'2017-08-18 22:55:03','POS 470',2,-1),(1100,14,1,'2017-08-18 23:00:05','POS 471',2,-5),(1101,37,1,'2017-08-18 23:00:05','POS 471',2,-3),(1102,54,1,'2017-08-18 23:00:05','POS 471',2,-2),(1103,37,1,'2017-08-18 23:02:37','Manual Edit of Quantity',2,15),(1104,16,1,'2017-08-18 23:03:14','Manual Edit of Quantity',2,4),(1105,12,1,'2017-08-18 23:04:42','POS 472',2,-3),(1106,37,1,'2017-08-18 23:04:42','POS 472',2,-2),(1107,54,1,'2017-08-18 23:04:42','POS 472',2,-2),(1108,48,1,'2017-08-18 23:04:42','POS 472',2,-1),(1109,16,1,'2017-08-18 23:10:43','Manual Edit of Quantity',2,15),(1110,14,1,'2017-08-18 23:11:52','POS 473',2,-3),(1111,37,1,'2017-08-18 23:11:52','POS 473',2,-1),(1112,16,1,'2017-08-18 23:11:52','POS 473',2,-6),(1113,54,1,'2017-08-18 23:11:53','POS 473',2,-5),(1114,14,1,'2017-08-18 23:13:24','POS 474',2,-1),(1115,54,1,'2017-08-18 23:13:24','POS 474',2,-1),(1116,20,1,'2017-08-18 23:15:06','Manual Edit of Quantity',2,9),(1117,7,1,'2017-08-18 23:16:10','Manual Edit of Quantity',2,8),(1118,24,1,'2017-08-18 23:16:47','POS 475',2,-2),(1119,5,1,'2017-08-18 23:23:43','POS 476',2,-1),(1120,36,1,'2017-08-18 23:23:43','POS 476',2,-1),(1121,16,1,'2017-08-18 23:23:43','POS 476',2,0),(1122,54,1,'2017-08-18 23:23:43','POS 476',2,-3),(1123,5,1,'2017-08-18 23:26:32','Manual Edit of Quantity',2,8),(1124,14,1,'2017-08-18 23:32:47','Manual Edit of Quantity',2,4),(1125,24,1,'2017-08-18 23:34:29','POS 477',2,-2),(1126,54,1,'2017-08-18 23:34:29','POS 477',2,-1),(1127,7,1,'2017-08-18 23:43:42','POS 478',2,-1),(1128,54,1,'2017-08-18 23:43:42','POS 478',2,-1),(1129,24,1,'2017-08-18 23:57:01','Manual Edit of Quantity',2,5),(1130,16,1,'2017-08-19 00:11:44','POS 479',2,-1),(1131,37,1,'2017-08-19 00:11:44','POS 479',2,-1),(1132,4,1,'2017-08-19 00:11:44','POS 479',2,-2),(1133,54,1,'2017-08-19 00:11:44','POS 479',2,-3),(1134,20,1,'2017-08-19 00:16:47','POS 480',2,-2),(1135,7,1,'2017-08-19 00:16:47','POS 480',2,-1),(1136,56,1,'2017-08-19 00:16:47','POS 480',2,-1),(1137,54,1,'2017-08-19 00:16:47','POS 480',2,-3),(1138,13,1,'2017-08-19 00:38:16','Manual Edit of Quantity',2,10),(1139,37,1,'2017-08-19 00:38:53','Manual Edit of Quantity',2,5),(1140,12,1,'2017-08-19 00:39:31','POS 481',2,-3),(1141,54,1,'2017-08-19 00:39:31','POS 481',2,-1),(1142,20,1,'2017-08-19 00:41:33','POS 482',2,-2),(1143,54,1,'2017-08-19 00:41:33','POS 482',2,-1),(1144,15,1,'2017-08-19 00:55:33','POS 483',2,-2),(1145,14,1,'2017-08-19 00:55:33','POS 483',2,-1),(1146,54,1,'2017-08-19 00:55:33','POS 483',2,-3),(1147,14,1,'2017-08-19 01:02:35','POS 484',2,-1),(1148,15,1,'2017-08-19 01:02:35','POS 484',2,-2),(1149,50,1,'2017-08-19 01:02:35','POS 484',2,-3),(1150,15,1,'2017-08-19 01:05:34','POS 485',2,-2),(1151,24,1,'2017-08-19 01:05:34','POS 485',2,-2),(1152,50,1,'2017-08-19 01:05:34','POS 485',2,-1),(1153,20,1,'2017-08-19 01:07:11','POS 486',2,-3),(1154,54,1,'2017-08-19 01:07:11','POS 486',2,-1),(1155,15,1,'2017-08-19 01:13:25','POS 487',2,-1),(1156,54,1,'2017-08-19 01:13:25','POS 487',2,-1),(1157,15,1,'2017-08-19 01:18:03','Manual Edit of Quantity',2,17),(1158,15,1,'2017-08-19 01:22:42','POS 488',2,-1),(1159,37,1,'2017-08-19 01:22:42','POS 488',2,-1),(1160,54,1,'2017-08-19 01:22:42','POS 488',2,-2),(1161,7,1,'2017-08-19 01:22:42','POS 488',2,-1),(1162,28,1,'2017-08-19 01:24:29','POS 489',2,-1),(1163,54,1,'2017-08-19 01:24:29','POS 489',2,-1),(1164,16,1,'2017-08-19 01:27:48','Manual Edit of Quantity',2,20),(1165,37,1,'2017-08-19 01:28:14','Manual Edit of Quantity',2,10),(1166,16,1,'2017-08-19 01:29:32','POS 490',2,-20),(1167,37,1,'2017-08-19 01:29:32','POS 490',2,-10),(1168,14,1,'2017-08-19 02:21:25','POS 491',2,-3),(1169,54,1,'2017-08-19 02:21:25','POS 491',2,-1),(1170,16,1,'2017-08-19 02:35:52','POS 492',2,-7),(1171,7,1,'2017-08-19 02:35:52','POS 492',2,-3),(1172,37,1,'2017-08-19 02:35:52','POS 492',2,-11),(1173,54,1,'2017-08-19 02:35:52','POS 492',2,-5),(1174,16,1,'2017-08-19 02:41:24','POS 493',2,-3),(1175,37,1,'2017-08-19 02:41:24','POS 493',2,-2),(1176,54,1,'2017-08-19 02:41:24','POS 493',2,-2),(1177,50,1,'2017-08-19 02:50:05','POS 494',2,-3),(1178,54,1,'2017-08-19 02:50:05','POS 494',2,-1),(1179,20,1,'2017-08-19 03:02:51','POS 495',2,-3),(1180,54,1,'2017-08-19 03:02:51','POS 495',2,-1),(1181,14,1,'2017-08-20 23:18:40','Manual Edit of Quantity',2,7),(1182,56,1,'2017-08-20 23:24:59','POS 496',2,-2),(1183,54,1,'2017-08-20 23:24:59','POS 496',2,-1),(1184,20,1,'2017-08-20 23:50:29','POS 497',2,-1),(1185,54,1,'2017-08-20 23:50:29','POS 497',2,-1),(1186,7,1,'2017-08-21 00:37:24','POS 498',2,-1),(1187,5,1,'2017-08-21 00:37:24','POS 498',2,-1),(1188,14,1,'2017-08-21 00:37:24','POS 498',2,-2),(1189,54,1,'2017-08-21 00:37:24','POS 498',2,-3),(1190,14,1,'2017-08-21 01:01:44','POS 499',2,-1),(1191,20,1,'2017-08-21 01:01:44','POS 499',2,-2),(1192,54,1,'2017-08-21 01:01:44','POS 499',2,-2),(1193,50,1,'2017-08-21 01:05:40','POS 500',2,-3),(1194,55,1,'2017-08-21 01:05:40','POS 500',2,-2),(1195,16,1,'2017-08-21 01:12:18','POS 501',2,-1),(1196,7,1,'2017-08-21 01:13:53','POS 502',2,-1),(1197,16,1,'2017-08-21 01:35:08','Manual Edit of Quantity',2,20),(1198,16,1,'2017-08-21 01:36:13','POS 503',2,-20),(1199,37,1,'2017-08-21 01:41:37','POS 504',2,-5),(1200,20,1,'2017-08-21 02:50:07','POS 505',2,-1),(1201,15,1,'2017-08-21 02:50:07','POS 505',2,-1),(1202,54,1,'2017-08-21 02:50:07','POS 505',2,-2),(1203,12,1,'2017-08-21 03:07:17','POS 506',2,-3),(1204,54,1,'2017-08-21 03:07:17','POS 506',2,-1),(1205,28,1,'2017-08-21 03:26:24','POS 507',2,-1),(1206,54,1,'2017-08-21 03:26:24','POS 507',2,-1),(1207,14,1,'2017-08-21 04:07:34','POS 508',2,-2),(1208,54,1,'2017-08-21 04:07:34','POS 508',2,-1),(1209,38,1,'2017-08-21 04:09:43','POS 509',2,-1),(1210,37,1,'2017-08-21 04:47:06','POS 510',2,-1),(1211,54,1,'2017-08-21 04:47:06','POS 510',2,-1),(1212,14,1,'2017-08-21 20:56:51','Manual Edit of Quantity',2,9),(1213,16,1,'2017-08-21 20:57:30','Manual Edit of Quantity',2,5),(1214,20,1,'2017-08-21 20:59:21','Manual Edit of Quantity',2,2),(1215,37,1,'2017-08-21 21:02:09','Manual Edit of Quantity',2,28),(1216,7,1,'2017-08-21 21:02:53','Manual Edit of Quantity',2,8),(1217,28,1,'2017-08-21 22:08:52','Manual Edit of Quantity',2,6),(1218,28,1,'2017-08-21 22:10:02','POS 511',2,-6),(1219,54,1,'2017-08-21 22:10:02','POS 511',2,-1),(1220,16,1,'2017-08-21 22:19:55','POS 512',2,-4),(1221,54,1,'2017-08-21 22:19:55','POS 512',2,-1),(1222,12,1,'2017-08-21 23:13:54','POS 513',2,-16),(1223,54,1,'2017-08-21 23:13:54','POS 513',2,-5),(1224,20,1,'2017-08-21 23:14:59','POS 514',2,-2),(1225,55,1,'2017-08-21 23:22:44','POS 515',2,-1),(1226,54,1,'2017-08-21 23:22:44','POS 515',2,-1),(1227,17,1,'2017-08-21 23:50:55','POS 516',2,-2),(1228,49,1,'2017-08-22 00:41:57','POS 517',2,-1),(1229,54,1,'2017-08-22 00:41:57','POS 517',2,-1),(1230,12,1,'2017-08-22 00:57:35','POS 518',2,-10),(1231,37,1,'2017-08-22 00:57:35','POS 518',2,-5),(1232,54,1,'2017-08-22 00:57:35','POS 518',2,-3),(1233,28,1,'2017-08-22 01:08:26','Manual Edit of Quantity',2,54),(1234,28,1,'2017-08-22 01:08:49','POS 519',2,-54),(1235,14,1,'2017-08-22 03:15:58','POS 520',2,-1),(1236,54,1,'2017-08-22 03:15:58','POS 520',2,-1),(1237,37,1,'2017-08-22 03:17:31','POS 521',2,-1),(1238,54,1,'2017-08-22 03:17:31','POS 521',2,-1),(1239,14,1,'2017-08-22 03:20:08','POS 522',2,-2),(1240,54,1,'2017-08-22 03:20:08','POS 522',2,-1),(1241,15,1,'2017-08-22 03:22:22','POS 523',2,-2),(1242,54,1,'2017-08-22 03:22:22','POS 523',2,-1),(1243,28,1,'2017-08-22 03:48:42','POS 524',2,-4),(1244,37,1,'2017-08-22 03:48:42','POS 524',2,-2),(1245,54,1,'2017-08-22 03:48:42','POS 524',2,-2),(1246,14,1,'2017-08-22 04:02:02','POS 525',2,-2),(1247,7,1,'2017-08-22 04:02:02','POS 525',2,-1),(1248,54,1,'2017-08-22 04:02:02','POS 525',2,-2),(1249,15,1,'2017-08-22 04:28:39','POS 526',2,-1),(1250,54,1,'2017-08-22 04:28:39','POS 526',2,-1),(1251,14,1,'2017-08-22 04:41:40','POS 527',2,-1),(1252,54,1,'2017-08-22 04:41:40','POS 527',2,-2),(1253,28,1,'2017-08-22 04:41:40','POS 527',2,-1),(1254,24,1,'2017-08-22 04:44:14','POS 528',2,0),(1255,54,1,'2017-08-22 04:44:14','POS 528',2,-1),(1256,16,1,'2017-08-22 21:36:03','Manual Edit of Quantity',2,7),(1257,16,1,'2017-08-22 21:41:03','POS 529',2,-6),(1258,54,1,'2017-08-22 21:41:03','POS 529',2,-1),(1259,20,1,'2017-08-22 22:51:53','POS 530',2,-2),(1260,55,1,'2017-08-22 22:51:53','POS 530',2,-1),(1261,54,1,'2017-08-22 22:51:53','POS 530',2,-2),(1262,14,1,'2017-08-22 22:54:48','POS 531',2,-2),(1263,54,1,'2017-08-22 22:54:48','POS 531',2,-1),(1264,20,1,'2017-08-22 23:17:09','POS 532',2,-1),(1265,54,1,'2017-08-22 23:17:09','POS 532',2,-1),(1266,20,1,'2017-08-22 23:25:34','POS 533',2,-2),(1267,54,1,'2017-08-22 23:25:34','POS 533',2,-1),(1268,20,1,'2017-08-22 23:30:53','Manual Edit of Quantity',2,17),(1269,20,1,'2017-08-22 23:34:25','POS 534',2,-2),(1270,54,1,'2017-08-22 23:34:25','POS 534',2,-1),(1271,37,1,'2017-08-23 00:50:02','POS 535',2,-5),(1272,14,1,'2017-08-23 00:50:02','POS 535',2,-4),(1273,54,1,'2017-08-23 00:50:02','POS 535',2,-2),(1274,14,1,'2017-08-23 01:51:55','POS 536',2,-2),(1275,32,1,'2017-08-23 02:00:07','Manual Edit of Quantity',2,1),(1276,32,1,'2017-08-23 02:01:00','POS 537',2,-17),(1277,54,1,'2017-08-23 02:01:01','POS 537',2,-4),(1278,14,1,'2017-08-23 02:13:52','Manual Edit of Quantity',2,3),(1279,12,1,'2017-08-23 02:14:57','POS 538',2,-3),(1280,54,1,'2017-08-23 02:14:57','POS 538',2,-1),(1281,14,1,'2017-08-23 02:16:14','Manual Edit of Quantity',2,5),(1282,14,1,'2017-08-23 02:17:35','POS 539',2,-1),(1283,38,1,'2017-08-23 02:17:35','POS 539',2,-1),(1284,20,1,'2017-08-23 02:17:35','POS 539',2,-1),(1285,54,1,'2017-08-23 02:17:35','POS 539',2,-2),(1286,37,1,'2017-08-23 02:24:41','Manual Edit of Quantity',2,10),(1287,14,1,'2017-08-23 02:43:43','POS 540',2,-2),(1288,54,1,'2017-08-23 02:43:43','POS 540',2,-1),(1289,1,1,'2017-08-23 03:38:18','POS 541',2,-2),(1290,54,1,'2017-08-23 03:38:18','POS 541',2,-1),(1291,14,1,'2017-08-23 03:57:43','POS 542',2,-1),(1292,54,1,'2017-08-23 03:57:43','POS 542',2,-1),(1293,14,1,'2017-08-23 03:59:24','POS 543',2,0),(1294,16,1,'2017-08-23 04:01:03','POS 544',2,-1),(1295,54,1,'2017-08-23 04:01:03','POS 544',2,-1),(1296,14,1,'2017-08-23 04:07:42','POS 545',2,-2),(1297,54,1,'2017-08-23 04:07:42','POS 545',2,-1),(1298,20,1,'2017-08-23 04:46:41','POS 546',2,-2),(1299,54,1,'2017-08-23 04:46:41','POS 546',2,-1),(1300,14,1,'2017-08-23 20:26:52','POS 547',2,-2),(1301,15,1,'2017-08-23 20:26:52','POS 547',2,-2),(1302,20,1,'2017-08-23 20:52:34','POS 548',2,-1),(1303,55,1,'2017-08-23 20:52:34','POS 548',2,-1),(1304,38,1,'2017-08-23 20:52:34','POS 548',2,-2),(1305,54,1,'2017-08-23 20:52:34','POS 548',2,-1),(1306,37,1,'2017-08-23 21:08:08','POS 549',2,-2),(1307,54,1,'2017-08-23 21:08:08','POS 549',2,-1),(1308,14,1,'2017-08-23 21:17:33','Manual Edit of Quantity',2,11),(1309,16,1,'2017-08-23 21:18:40','Manual Edit of Quantity',2,4),(1310,24,1,'2017-08-23 21:35:20','Manual Edit of Quantity',2,14),(1311,28,1,'2017-08-23 21:35:41','Manual Edit of Quantity',2,13),(1312,15,1,'2017-08-23 22:16:46','POS 550',2,-1),(1313,54,1,'2017-08-23 22:16:46','POS 550',2,-1),(1314,14,1,'2017-08-23 22:33:02','POS 551',2,-2),(1315,55,1,'2017-08-23 22:38:11','POS 552',2,-1),(1316,54,1,'2017-08-23 22:38:11','POS 552',2,-1),(1317,7,1,'2017-08-23 22:50:14','POS 553',2,-1),(1318,16,1,'2017-08-23 22:50:14','POS 553',2,-2),(1319,54,1,'2017-08-23 22:50:14','POS 553',2,-1),(1320,14,1,'2017-08-23 22:56:40','POS 554',2,-4),(1321,5,1,'2017-08-23 22:56:40','POS 554',2,-1),(1322,57,1,'2017-08-23 22:56:40','POS 554',2,-1),(1323,54,1,'2017-08-23 22:56:40','POS 554',2,-1),(1324,12,1,'2017-08-23 22:59:27','POS 555',2,-2),(1325,54,1,'2017-08-23 22:59:27','POS 555',2,-1),(1326,16,1,'2017-08-23 23:12:50','Manual Edit of Quantity',2,20),(1327,16,1,'2017-08-23 23:13:19','POS 556',2,-20),(1328,14,1,'2017-08-24 00:38:29','POS 557',2,-2),(1329,54,1,'2017-08-24 00:38:29','POS 557',2,-1),(1330,37,1,'2017-08-24 01:11:21','POS 558',2,-1),(1331,54,1,'2017-08-24 01:11:21','POS 558',2,-1),(1332,16,1,'2017-08-24 01:13:43','POS 559',2,-2),(1333,38,1,'2017-08-24 01:13:43','POS 559',2,-4),(1334,54,1,'2017-08-24 01:13:43','POS 559',2,-1),(1335,16,1,'2017-08-24 01:25:35','POS 560',2,-2),(1336,37,1,'2017-08-24 01:25:35','POS 560',2,-2),(1337,54,1,'2017-08-24 01:25:35','POS 560',2,-2),(1338,16,1,'2017-08-24 01:30:17','POS 561',2,-1),(1339,16,1,'2017-08-24 01:31:56','Manual Edit of Quantity',2,12),(1340,14,1,'2017-08-24 01:32:28','Manual Edit of Quantity',2,13),(1341,1,1,'2017-08-24 01:41:13','Manual Edit of Quantity',2,24),(1342,37,1,'2017-08-24 01:43:11','Manual Edit of Quantity',2,30),(1343,1,1,'2017-08-24 01:43:27','POS 562',2,-30),(1344,37,1,'2017-08-24 01:43:27','POS 562',2,-30),(1345,12,1,'2017-08-24 01:45:22','Manual Edit of Quantity',2,6),(1346,12,1,'2017-08-24 01:46:13','POS 563',2,-6),(1347,1,1,'2017-08-24 01:49:16','Manual Edit of Quantity',2,22),(1348,14,1,'2017-08-24 03:07:50','POS 564',2,-1),(1349,54,1,'2017-08-24 03:07:50','POS 564',2,-1),(1350,37,1,'2017-08-24 03:09:25','POS 565',2,-1),(1351,54,1,'2017-08-24 03:09:25','POS 565',2,-1),(1352,14,1,'2017-08-24 03:12:03','POS 566',2,-1),(1353,54,1,'2017-08-24 03:12:03','POS 566',2,-1),(1354,15,1,'2017-08-24 04:09:53','POS 567',2,-1),(1355,54,1,'2017-08-24 04:09:53','POS 567',2,-1),(1356,14,1,'2017-08-24 04:24:59','POS 568',2,-1),(1357,54,1,'2017-08-24 04:24:59','POS 568',2,-1),(1358,37,1,'2017-08-24 04:46:36','POS 569',2,-3),(1359,54,1,'2017-08-24 04:46:36','POS 569',2,-3),(1360,24,1,'2017-08-24 05:00:58','POS 570',2,-2),(1361,54,1,'2017-08-24 05:00:58','POS 570',2,-1),(1362,24,1,'2017-08-24 20:32:39','POS 571',2,-6),(1363,37,1,'2017-08-24 20:32:39','POS 571',2,-4),(1364,54,1,'2017-08-24 20:32:39','POS 571',2,-2),(1365,37,1,'2017-08-24 20:36:03','Manual Edit of Quantity',2,30),(1366,38,1,'2017-08-24 20:36:45','Manual Edit of Quantity',2,14),(1367,12,1,'2017-08-24 20:37:55','Manual Edit of Quantity',2,21),(1368,52,1,'2017-08-24 23:03:35','Manual Edit of Quantity',2,46),(1369,52,1,'2017-08-24 23:05:06','POS 572',2,-46),(1370,57,1,'2017-08-24 23:11:18','POS 573',2,-2),(1371,37,1,'2017-08-24 23:40:53','POS 574',2,-1),(1372,54,1,'2017-08-24 23:40:53','POS 574',2,-1),(1373,16,1,'2017-08-25 00:39:31','Manual Edit of Quantity',2,30),(1374,16,1,'2017-08-25 00:40:48','POS 575',2,-30),(1375,24,1,'2017-08-25 00:45:07','POS 576',2,-2),(1376,16,1,'2017-08-25 00:45:07','POS 576',2,-2),(1377,54,1,'2017-08-25 00:45:07','POS 576',2,-2),(1378,16,1,'2017-08-25 00:59:12','POS 577',2,-4),(1379,54,1,'2017-08-25 00:59:12','POS 577',2,-1),(1380,55,1,'2017-08-25 01:25:31','POS 578',2,-1),(1381,54,1,'2017-08-25 01:25:31','POS 578',2,-1),(1382,12,1,'2017-08-25 01:29:06','POS 579',2,-3),(1383,12,1,'2017-08-25 02:11:06','POS 580',2,-22),(1384,37,1,'2017-08-25 02:11:06','POS 580',2,-15),(1385,37,1,'2017-08-25 02:31:40','Manual Edit of Quantity',2,25),(1386,14,1,'2017-08-25 02:37:25','POS 581',2,-1),(1387,20,1,'2017-08-25 02:37:25','POS 581',2,-1),(1388,54,1,'2017-08-25 02:37:25','POS 581',2,-2),(1389,16,1,'2017-08-25 03:24:25','POS 582',2,-1),(1390,54,1,'2017-08-25 03:24:25','POS 582',2,-1),(1391,32,1,'2017-08-25 03:35:10','Manual Edit of Quantity',2,38),(1392,32,1,'2017-08-25 03:36:39','POS 583',2,-38),(1393,54,1,'2017-08-25 03:36:39','POS 583',2,-7),(1394,13,1,'2017-08-25 03:42:21','POS 584',2,-3),(1395,54,1,'2017-08-25 03:42:21','POS 584',2,-1),(1396,52,1,'2017-08-25 03:45:39','Manual Edit of Quantity',2,9),(1397,52,1,'2017-08-25 03:46:48','POS 585',2,-9),(1398,12,1,'2017-08-25 04:04:07','POS 586',2,-3),(1399,54,1,'2017-08-25 04:04:07','POS 586',2,-1),(1400,37,1,'2017-08-25 04:29:38','POS 587',2,-1),(1401,15,1,'2017-08-25 04:29:38','POS 587',2,-1),(1402,20,1,'2017-08-25 04:29:38','POS 587',2,-2),(1403,54,1,'2017-08-25 04:29:38','POS 587',2,-1),(1404,14,1,'2017-08-25 05:02:10','POS 588',2,-1),(1405,54,1,'2017-08-25 05:02:10','POS 588',2,-1),(1406,15,1,'2017-08-25 05:03:57','POS 589',2,-2),(1407,54,1,'2017-08-25 05:03:57','POS 589',2,-1),(1408,16,1,'2017-08-25 05:08:54','POS 590',2,-2),(1409,54,1,'2017-08-25 05:08:54','POS 590',2,-1),(1410,50,1,'2017-08-25 06:16:01','Manual Edit of Quantity',2,44),(1411,37,1,'2017-08-25 06:16:37','Manual Edit of Quantity',2,10),(1412,37,1,'2017-08-25 06:18:15','POS 591',2,-10),(1413,50,1,'2017-08-25 06:20:58','POS 592',2,-30),(1414,16,1,'2017-08-25 20:36:29','Manual Edit of Quantity',2,3),(1415,16,1,'2017-08-25 20:37:04','POS 593',2,-3),(1416,54,1,'2017-08-25 20:37:04','POS 593',2,-1),(1417,16,1,'2017-08-25 20:49:09','Manual Edit of Quantity',2,11),(1418,15,1,'2017-08-25 20:55:14','Manual Edit of Quantity',2,7),(1419,28,1,'2017-08-25 21:09:06','POS 594',2,-4),(1420,54,1,'2017-08-25 21:09:06','POS 594',2,-1),(1421,17,1,'2017-08-25 21:27:51','POS 595',2,-1),(1422,54,1,'2017-08-25 21:27:51','POS 595',2,-1),(1423,12,1,'2017-08-25 21:36:19','POS 596',2,-8),(1424,37,1,'2017-08-25 21:36:19','POS 596',2,-4),(1425,54,1,'2017-08-25 21:36:19','POS 596',2,-4),(1426,14,1,'2017-08-25 22:21:47','POS 597',2,-5),(1427,54,1,'2017-08-25 22:21:47','POS 597',2,-2),(1428,14,1,'2017-08-25 22:28:34','POS 598',2,-1),(1429,16,1,'2017-08-25 22:28:34','POS 598',2,-2),(1430,54,1,'2017-08-25 22:28:34','POS 598',2,-2),(1431,16,1,'2017-08-25 22:30:16','POS 599',2,-1),(1432,54,1,'2017-08-25 22:30:16','POS 599',2,-1),(1433,37,1,'2017-08-25 22:36:17','POS 600',2,-1),(1434,54,1,'2017-08-25 22:36:17','POS 600',2,-1),(1435,16,1,'2017-08-25 22:41:15','Manual Edit of Quantity',2,60),(1436,16,1,'2017-08-25 22:42:45','POS 601',2,-60),(1437,14,1,'2017-08-25 22:56:03','Manual Edit of Quantity',2,9),(1438,14,1,'2017-08-25 22:56:58','POS 602',2,-2),(1439,54,1,'2017-08-25 22:56:58','POS 602',2,-1),(1440,12,1,'2017-08-25 23:01:04','POS 603',2,-3),(1441,54,1,'2017-08-25 23:01:04','POS 603',2,-1),(1442,20,1,'2017-08-25 23:02:04','POS 604',2,-1),(1443,54,1,'2017-08-25 23:02:04','POS 604',2,-1),(1444,15,1,'2017-08-25 23:03:36','POS 605',2,-1),(1445,54,1,'2017-08-25 23:03:36','POS 605',2,-1),(1446,12,1,'2017-08-25 23:10:41','Manual Edit of Quantity',2,22),(1447,20,1,'2017-08-25 23:11:15','Manual Edit of Quantity',2,6),(1448,14,1,'2017-08-25 23:41:00','POS 606',2,-1),(1449,54,1,'2017-08-25 23:41:00','POS 606',2,-1),(1450,24,1,'2017-08-25 23:43:03','POS 607',2,-2),(1451,54,1,'2017-08-25 23:43:03','POS 607',2,-1),(1452,14,1,'2017-08-25 23:50:44','POS 608',2,-1),(1453,20,1,'2017-08-25 23:50:44','POS 608',2,-2),(1454,54,1,'2017-08-25 23:50:44','POS 608',2,-2),(1455,14,1,'2017-08-25 23:54:13','Manual Edit of Quantity',2,5),(1456,16,1,'2017-08-25 23:54:48','Manual Edit of Quantity',2,6),(1457,50,1,'2017-08-26 00:22:37','POS 609',2,-2),(1458,54,1,'2017-08-26 00:22:37','POS 609',2,-1),(1459,1,1,'2017-08-26 00:42:30','POS 610',2,-2),(1460,54,1,'2017-08-26 00:42:30','POS 610',2,-1),(1461,37,1,'2017-08-26 00:43:45','POS 611',2,-4),(1462,54,1,'2017-08-26 00:43:45','POS 611',2,-1),(1463,14,1,'2017-08-26 00:49:33','POS 612',2,-3),(1464,54,1,'2017-08-26 00:49:33','POS 612',2,-1),(1465,37,1,'2017-08-26 00:54:31','POS 613',2,-3),(1466,14,1,'2017-08-26 00:54:31','POS 613',2,-6),(1467,54,1,'2017-08-26 00:54:31','POS 613',2,-1),(1468,7,1,'2017-08-26 01:14:36','POS 614',2,-1),(1469,15,1,'2017-08-26 01:14:36','POS 614',2,-1),(1470,48,1,'2017-08-26 01:14:36','POS 614',2,-1),(1471,54,1,'2017-08-26 01:14:36','POS 614',2,-3),(1472,15,1,'2017-08-26 01:16:52','POS 615',2,-1),(1473,16,1,'2017-08-26 01:16:52','POS 615',2,-1),(1474,54,1,'2017-08-26 01:16:52','POS 615',2,-2),(1475,7,1,'2017-08-26 01:18:41','POS 616',2,-1),(1476,24,1,'2017-08-26 01:18:41','POS 616',2,-1),(1477,54,1,'2017-08-26 01:18:41','POS 616',2,-2),(1478,16,1,'2017-08-26 02:22:56','POS 617',2,-1),(1479,14,1,'2017-08-26 02:22:56','POS 617',2,-1),(1480,54,1,'2017-08-26 02:22:56','POS 617',2,-1),(1481,37,1,'2017-08-26 02:35:45','POS 618',2,-1),(1482,20,1,'2017-08-26 02:35:45','POS 618',2,-2),(1483,54,1,'2017-08-26 02:35:45','POS 618',2,-2),(1484,37,1,'2017-08-26 02:56:15','POS 619',2,-3),(1485,20,1,'2017-08-26 02:59:57','POS 620',2,-1),(1486,37,1,'2017-08-26 02:59:57','POS 620',2,-1),(1487,54,1,'2017-08-26 02:59:57','POS 620',2,-2),(1488,16,1,'2017-08-26 03:09:40','Manual Edit of Quantity',2,20),(1489,16,1,'2017-08-26 03:10:23','POS 621',2,-20),(1490,14,1,'2017-08-26 03:40:08','POS 622',2,-2),(1491,54,1,'2017-08-26 03:40:08','POS 622',2,-1),(1492,49,1,'2017-08-27 21:17:03','Manual Edit of Quantity',2,65),(1493,49,1,'2017-08-27 21:18:15','POS 623',2,-66),(1494,33,1,'2017-08-27 21:27:03','Manual Edit of Quantity',2,16),(1495,58,1,'2017-08-27 21:42:57','Manual Edit of Quantity',2,16),(1496,58,1,'2017-08-27 21:45:05','POS 624',2,-16),(1497,14,1,'2017-08-27 22:14:42','Manual Edit of Quantity',2,10),(1498,12,1,'2017-08-27 23:20:37','POS 625',2,-9),(1499,54,1,'2017-08-27 23:20:37','POS 625',2,-3),(1500,14,1,'2017-08-27 23:39:43','POS 626',2,-1),(1501,54,1,'2017-08-27 23:39:43','POS 626',2,-1),(1502,16,1,'2017-08-28 00:24:38','Manual Edit of Quantity',2,20),(1503,12,1,'2017-08-28 00:25:13','Manual Edit of Quantity',2,22),(1504,16,1,'2017-08-28 00:26:50','POS 627',2,-20),(1505,12,1,'2017-08-28 00:26:50','POS 627',2,-22),(1506,28,1,'2017-08-28 00:30:07','Manual Edit of Quantity',2,22),(1507,17,1,'2017-08-28 00:31:24','Manual Edit of Quantity',2,5),(1508,17,1,'2017-08-28 00:32:49','POS 628',2,-5),(1509,28,1,'2017-08-28 00:32:49','POS 628',2,-22),(1510,63,1,'2017-08-28 01:02:06','Manual Edit of Quantity',2,21),(1511,63,1,'2017-08-28 01:06:40','Manual Edit of Quantity',2,-21),(1512,63,1,'2017-08-28 01:15:12','Manual Edit of Quantity',2,9),(1513,75,1,'2017-08-28 01:18:19','POS 629',2,-4),(1514,75,1,'2017-08-28 01:20:04','POS 630',2,-5),(1515,66,1,'2017-08-28 01:26:40','POS 631',2,-4),(1516,67,1,'2017-08-28 01:28:07','POS 632',2,-2),(1517,67,1,'2017-08-28 01:29:21','POS 633',2,-2),(1518,64,1,'2017-08-28 01:31:43','POS 634',2,-20),(1519,50,1,'2017-08-28 02:00:15','Manual Edit of Quantity',2,7),(1520,50,1,'2017-08-28 02:00:50','POS 635',2,-5),(1521,54,1,'2017-08-28 02:00:50','POS 635',2,-1),(1522,26,1,'2017-08-28 02:05:38','Manual Edit of Quantity',2,2),(1523,26,1,'2017-08-28 02:06:24','POS 636',2,-2),(1524,54,1,'2017-08-28 02:06:24','POS 636',2,-1),(1525,12,1,'2017-08-28 03:08:38','POS 637',2,-3),(1526,54,1,'2017-08-28 03:08:38','POS 637',2,-1),(1527,14,1,'2017-08-28 03:19:09','POS 638',2,-2),(1528,54,1,'2017-08-28 03:19:09','POS 638',2,-1),(1529,37,1,'2017-08-28 03:21:24','POS 639',2,-2),(1530,54,1,'2017-08-28 03:21:24','POS 639',2,-1),(1531,37,1,'2017-08-28 03:50:12','POS 640',2,-1),(1532,12,1,'2017-08-28 03:50:12','POS 640',2,-3),(1533,54,1,'2017-08-28 03:50:12','POS 640',2,-2),(1534,76,1,'2017-08-28 21:05:42','Manual Edit of Quantity',2,2),(1535,76,1,'2017-08-28 21:06:55','POS 641',2,-2),(1536,37,1,'2017-08-28 21:21:10','POS 642',2,-1),(1537,7,1,'2017-08-28 22:15:12','POS 643',2,-1),(1538,54,1,'2017-08-28 22:15:12','POS 643',2,-1),(1539,12,1,'2017-08-28 22:26:02','POS 644',2,-3),(1540,54,1,'2017-08-28 22:26:02','POS 644',2,-1),(1541,24,1,'2017-08-28 22:28:27','POS 645',2,-1),(1542,54,1,'2017-08-28 22:28:27','POS 645',2,-1),(1543,12,1,'2017-08-28 22:47:43','POS 646',2,-6),(1544,54,1,'2017-08-28 22:47:43','POS 646',2,-2),(1545,12,1,'2017-08-28 22:49:27','POS 647',2,-3),(1546,54,1,'2017-08-28 22:49:27','POS 647',2,-1),(1547,28,1,'2017-08-28 22:52:10','POS 648',2,-2),(1548,54,1,'2017-08-28 22:52:10','POS 648',2,-1),(1549,37,1,'2017-08-28 23:03:26','POS 649',2,-5),(1550,20,1,'2017-08-29 00:13:09','POS 650',2,-1),(1551,54,1,'2017-08-29 00:13:09','POS 650',2,-1),(1552,36,1,'2017-08-29 00:53:50','Manual Edit of Quantity',2,7),(1553,36,1,'2017-08-29 00:54:23','POS 651',2,-8),(1554,17,1,'2017-08-29 02:05:08','POS 652',2,-2),(1555,54,1,'2017-08-29 02:05:08','POS 652',2,-1),(1556,20,1,'2017-08-29 02:30:13','POS 653',2,-2),(1557,57,1,'2017-08-29 02:30:13','POS 653',2,-1),(1558,54,1,'2017-08-29 02:30:13','POS 653',2,-2),(1559,20,1,'2017-08-29 03:25:25','POS 654',2,-2),(1560,54,1,'2017-08-29 03:25:25','POS 654',2,-1),(1561,28,1,'2017-08-29 03:43:04','POS 655',2,-12),(1562,14,1,'2017-08-29 03:50:39','POS 656',2,-5),(1563,12,1,'2017-08-29 04:17:08','POS 657',2,-6),(1564,54,1,'2017-08-29 04:17:08','POS 657',2,-1),(1565,5,1,'2017-08-29 04:46:12','POS 658',2,-2),(1566,54,1,'2017-08-29 04:46:12','POS 658',2,-1),(1567,16,1,'2017-08-29 20:33:53','POS 659',2,-1),(1568,54,1,'2017-08-29 20:33:53','POS 659',2,-1),(1569,14,1,'2017-08-29 21:05:17','Manual Edit of Quantity',2,14),(1570,46,1,'2017-08-29 21:07:13','POS 660',2,-1),(1571,14,1,'2017-08-29 21:07:13','POS 660',2,-1),(1572,54,1,'2017-08-29 21:07:14','POS 660',2,-2),(1573,12,1,'2017-08-29 21:12:43','Manual Edit of Quantity',2,76),(1574,37,1,'2017-08-29 21:13:56','Manual Edit of Quantity',2,5),(1575,20,1,'2017-08-29 21:46:59','Manual Edit of Quantity',2,5),(1576,20,1,'2017-08-30 00:26:54','POS 661',2,-2),(1577,54,1,'2017-08-30 00:26:54','POS 661',2,-1),(1578,16,1,'2017-08-30 01:24:48','POS 662',2,-1),(1579,14,1,'2017-08-30 01:24:49','POS 662',2,-2),(1580,15,1,'2017-08-30 01:24:49','POS 662',2,-1),(1581,54,1,'2017-08-30 01:24:49','POS 662',2,-1),(1582,14,1,'2017-08-30 01:27:14','POS 663',2,-2),(1583,54,1,'2017-08-30 01:27:14','POS 663',2,-1),(1584,48,1,'2017-08-30 01:28:24','POS 664',2,-1),(1585,20,1,'2017-08-30 01:36:08','POS 665',2,-3),(1586,54,1,'2017-08-30 01:36:08','POS 665',2,-1),(1587,19,1,'2017-08-30 02:30:55','Manual Edit of Quantity',2,-35921),(1588,19,1,'2017-08-30 02:32:20','POS 666',2,-31),(1589,20,1,'2017-08-30 03:02:34','POS 667',2,-2),(1590,54,1,'2017-08-30 03:02:34','POS 667',2,-1),(1591,14,1,'2017-08-30 03:46:46','POS 668',2,-2),(1592,54,1,'2017-08-30 03:46:46','POS 668',2,-1),(1593,15,1,'2017-08-30 04:05:54','POS 669',2,-2),(1594,54,1,'2017-08-30 04:05:54','POS 669',2,-1),(1595,12,1,'2017-08-30 04:11:14','POS 670',2,-15),(1596,14,1,'2017-08-30 04:17:40','POS 671',2,-2),(1597,28,1,'2017-08-30 04:18:53','POS 672',2,-2),(1598,5,1,'2019-04-24 01:51:02','POS 674',2,-1),(1599,50,1,'2019-04-24 01:53:01','POS 675',2,-1),(1600,5,1,'2019-04-25 05:00:59','POS 676',2,-1),(1601,55,1,'2019-04-30 22:39:57','POS 677',2,-1),(1602,3,4,'2019-05-03 07:02:05','POS 678',2,-1),(1603,5,4,'2019-05-03 07:29:46','POS 679',2,-3),(1604,48,1,'2019-05-15 23:47:30','POS 680',2,-1),(1605,52,1,'2019-06-02 16:07:51','POS 681',2,-1),(1606,16,1,'2019-06-13 01:02:41','POS 682',2,-1),(1607,16,1,'2019-06-13 01:04:27','POS 683',2,-1),(1608,63,1,'2019-06-17 00:13:51','POS 684',2,-1),(1609,14,1,'2019-06-19 03:47:48','POS 685',2,-1),(1610,16,1,'2019-06-21 03:07:58','POS 686',2,-1),(1611,45,1,'2019-06-27 04:42:57','POS 687',2,-1),(1612,44,1,'2019-07-15 02:21:24','POS 688',2,-1),(1613,16,1,'2019-07-15 03:00:04','POS 689',2,-1),(1614,44,1,'2019-07-15 04:24:20','POS 690',2,-1),(1615,16,1,'2019-07-15 04:24:45','POS 691',2,-1),(1616,44,1,'2019-07-15 04:25:18','POS 692',2,-1),(1617,19,1,'2019-07-15 04:25:20','POS 693',2,-1),(1618,31,1,'2019-07-15 04:25:41','POS 694',2,-1),(1619,44,1,'2019-07-15 04:26:07','POS 695',2,-1),(1620,31,1,'2019-07-15 04:26:14','POS 696',2,-1),(1621,14,1,'2019-07-15 04:26:36','POS 697',2,-1),(1622,44,1,'2019-07-15 04:26:46','POS 698',2,-1),(1623,3,1,'2019-07-15 04:26:46','POS 698',2,-1),(1624,65,1,'2019-07-15 04:26:46','POS 698',2,-1),(1625,5,1,'2019-07-15 04:26:46','POS 698',2,-1),(1626,20,1,'2019-07-15 04:26:46','POS 698',2,-1),(1627,20,1,'2019-07-15 04:27:17','POS 699',2,-1),(1628,52,1,'2019-07-15 04:27:17','POS 699',2,-1),(1629,65,1,'2019-07-15 04:27:17','POS 699',2,-1),(1630,28,1,'2019-07-15 04:27:26','POS 700',2,-1),(1631,12,1,'2019-07-15 04:28:11','POS 701',2,-1),(1632,14,1,'2019-07-15 04:28:27','POS 702',2,-2),(1633,22,1,'2019-07-15 04:28:27','POS 702',2,-1),(1634,38,1,'2019-07-15 04:28:27','POS 702',2,-1),(1635,3,1,'2019-07-15 04:28:41','POS 703',2,-1),(1636,5,1,'2019-07-15 04:28:59','POS 704',2,-1),(1637,28,1,'2019-07-15 04:28:59','POS 704',2,-1),(1638,52,1,'2019-07-15 04:29:04','POS 705',2,-1),(1639,38,1,'2019-07-15 04:29:40','POS 706',2,-1),(1640,52,1,'2019-07-15 04:30:03','POS 707',2,-1),(1641,5,1,'2019-07-15 04:30:03','POS 707',2,-1),(1642,46,1,'2019-07-15 04:30:11','POS 708',2,-1),(1643,65,1,'2019-07-15 04:30:30','POS 709',2,-1),(1644,53,1,'2019-07-15 04:30:52','POS 710',2,-1),(1645,5,1,'2019-07-15 04:30:52','POS 710',2,-1),(1646,38,1,'2019-07-15 04:31:05','POS 711',2,-1),(1647,16,1,'2019-07-15 04:31:15','POS 712',2,-1),(1648,53,1,'2019-07-15 04:31:15','POS 712',2,-1),(1649,14,1,'2019-07-15 04:31:38','POS 713',2,-1),(1650,58,1,'2019-07-15 04:31:56','POS 714',2,-1),(1651,65,1,'2019-07-15 04:32:02','POS 715',2,-1),(1652,63,1,'2019-07-15 04:32:02','POS 715',2,-1),(1653,53,1,'2019-07-15 04:32:39','POS 716',2,-1),(1654,3,1,'2019-07-15 04:33:00','POS 717',2,-1),(1655,46,1,'2019-07-15 04:33:00','POS 717',2,-1),(1656,53,1,'2019-07-15 04:33:22','POS 718',2,-1),(1657,44,1,'2019-07-15 04:33:22','POS 718',2,-1),(1658,28,1,'2019-07-15 04:33:40','POS 719',2,-1),(1659,33,1,'2019-07-15 04:34:22','POS 720',2,-1),(1660,12,1,'2019-07-15 04:34:27','POS 721',2,-1),(1661,37,1,'2019-07-15 04:34:27','POS 721',2,-1),(1662,65,1,'2019-07-15 04:34:51','POS 722',2,-1),(1663,31,1,'2019-07-15 04:34:51','POS 722',2,-1),(1664,5,1,'2019-07-15 04:35:57','POS 723',2,-1),(1665,1,1,'2019-07-15 04:38:36','POS 724',2,-1),(1666,47,1,'2019-07-15 04:38:46','POS 725',2,-1),(1667,49,1,'2019-07-15 04:38:46','POS 725',2,-1),(1668,12,1,'2019-07-15 04:39:45','POS 726',2,-1),(1669,13,1,'2019-07-15 04:41:50','POS 727',2,-1),(1670,44,1,'2019-07-15 04:41:50','POS 727',2,-3),(1671,65,1,'2019-07-15 04:41:50','POS 727',2,-1),(1672,5,1,'2019-07-15 04:41:50','POS 727',2,-1),(1673,16,1,'2019-07-15 04:41:50','POS 727',2,-1),(1674,28,1,'2019-07-15 04:41:50','POS 727',2,-1),(1675,3,1,'2019-07-15 04:42:22','POS 728',2,-1),(1676,33,1,'2019-07-15 04:42:22','POS 728',2,-1),(1677,24,1,'2019-07-15 04:42:22','POS 728',2,-1),(1678,27,1,'2019-07-15 04:42:22','POS 728',2,-1),(1679,35,1,'2019-07-15 04:42:22','POS 728',2,-1),(1680,37,1,'2019-07-15 04:42:22','POS 728',2,-1),(1681,63,1,'2019-07-15 04:42:22','POS 728',2,-1),(1682,65,1,'2019-07-15 04:42:22','POS 728',2,-1),(1683,46,1,'2019-07-15 04:42:22','POS 728',2,-1),(1684,26,1,'2019-07-15 04:42:22','POS 728',2,-1),(1685,67,1,'2019-07-15 04:42:22','POS 728',2,-1),(1686,44,1,'2019-07-15 04:45:11','POS 729',2,-1),(1687,65,1,'2019-07-15 04:45:11','POS 729',2,-1),(1688,53,1,'2019-07-15 04:45:11','POS 729',2,-3),(1689,52,1,'2019-07-15 04:45:11','POS 729',2,-1),(1690,16,1,'2019-07-15 04:45:11','POS 729',2,-3),(1691,14,1,'2019-07-15 04:45:11','POS 729',2,-1),(1692,3,1,'2019-07-15 04:45:11','POS 729',2,-1),(1693,46,1,'2019-07-15 04:45:11','POS 729',2,-1),(1694,34,1,'2019-07-15 04:45:11','POS 729',2,-1),(1695,31,1,'2019-07-15 04:45:11','POS 729',2,-2),(1696,30,1,'2019-07-15 04:45:11','POS 729',2,-3),(1697,22,1,'2019-07-15 04:45:11','POS 729',2,-2),(1698,28,1,'2019-07-15 04:45:11','POS 729',2,-1),(1699,29,1,'2019-07-15 04:45:11','POS 729',2,-1),(1700,27,1,'2019-07-15 04:45:11','POS 729',2,-1),(1701,54,1,'2019-07-15 04:45:11','POS 729',2,-1),(1702,47,1,'2019-07-15 04:47:35','POS 730',2,-2),(1703,35,1,'2019-07-15 04:47:35','POS 730',2,-2),(1704,37,1,'2019-07-15 04:47:35','POS 730',2,-1),(1705,16,1,'2019-07-15 04:47:35','POS 730',2,-1),(1706,49,1,'2019-07-15 04:47:35','POS 730',2,-1),(1707,48,1,'2019-07-15 04:47:35','POS 730',2,-1),(1708,1,1,'2019-07-15 04:47:35','POS 730',2,-1),(1709,13,1,'2019-07-15 04:47:35','POS 730',2,-1),(1710,46,1,'2019-07-15 04:47:35','POS 730',2,-1),(1711,63,1,'2019-07-15 04:47:35','POS 730',2,-1),(1712,52,1,'2019-07-15 04:47:35','POS 730',2,-8),(1713,28,1,'2019-07-15 04:47:35','POS 730',2,-1),(1714,24,1,'2019-07-15 04:47:35','POS 730',2,-1),(1715,38,1,'2019-07-15 04:47:35','POS 730',2,-1),(1716,65,1,'2019-07-15 04:47:35','POS 730',2,-1),(1717,23,1,'2019-07-15 04:47:35','POS 730',2,-7),(1718,23,1,'2019-07-16 04:20:56','POS 731',2,-1),(1719,16,1,'2019-07-16 22:37:29','POS 732',2,-1),(1720,5,1,'2019-07-18 04:11:15','POS 733',2,-1),(1721,16,1,'2019-07-18 17:42:15','POS 734',2,-1),(1722,16,1,'2019-07-18 19:14:23','POS 735',2,-1),(1723,1,1,'2019-07-20 18:12:24','POS 736',2,-1),(1724,1,1,'2019-07-20 18:13:37','POS 737',2,-5),(1725,1,1,'2019-07-20 18:15:48','POS 738',2,-1),(1726,13,1,'2019-07-20 18:15:48','POS 738',2,-1),(1727,1,1,'2019-07-20 18:20:34','POS 739',2,-1),(1728,13,1,'2019-07-20 18:20:34','POS 739',2,-1),(1729,1,1,'2019-07-20 18:28:21','POS 740',2,-1),(1730,13,1,'2019-07-20 18:28:21','POS 740',2,-1),(1731,1,1,'2019-07-20 18:29:08','POS 741',2,-1),(1732,13,1,'2019-07-20 18:29:08','POS 741',2,-1),(1733,1,1,'2019-07-20 18:35:09','POS 742',2,-1),(1734,13,1,'2019-07-20 18:35:09','POS 742',2,-1),(1735,1,1,'2019-07-20 18:35:18','POS 743',2,-1),(1736,13,1,'2019-07-20 18:35:18','POS 743',2,-1),(1737,1,1,'2019-07-20 18:35:54','POS 744',2,-1),(1738,13,1,'2019-07-20 18:35:54','POS 744',2,-1),(1739,13,1,'2019-07-20 19:20:36','POS 745',2,-1),(1740,1,1,'2019-07-20 19:20:36','POS 745',2,-1),(1741,13,1,'2019-07-20 19:21:19','POS 746',2,-1),(1742,1,1,'2019-07-20 19:21:19','POS 746',2,-1),(1743,1,1,'2019-07-20 19:24:32','POS 747',2,-1),(1744,13,1,'2019-07-20 19:24:32','POS 747',2,-1),(1745,1,1,'2019-07-20 19:26:42','POS 748',2,-1),(1746,13,1,'2019-07-20 19:26:42','POS 748',2,-1),(1747,1,1,'2019-07-20 19:32:12','POS 749',2,-1),(1748,13,1,'2019-07-20 19:32:12','POS 749',2,-1),(1749,1,1,'2019-07-20 20:50:47','POS 750',2,-1),(1750,13,1,'2019-07-20 20:50:47','POS 750',2,-1),(1751,1,1,'2019-07-20 20:52:46','POS 751',2,-1),(1752,13,1,'2019-07-20 20:52:46','POS 751',2,-1),(1753,1,1,'2019-07-20 20:53:03','POS 752',2,-1),(1754,13,1,'2019-07-20 20:53:03','POS 752',2,-1),(1755,1,1,'2019-07-20 20:53:55','POS 753',2,-1),(1756,13,1,'2019-07-20 20:53:55','POS 753',2,-1),(1757,1,1,'2019-07-20 20:55:42','POS 754',2,-1),(1758,13,1,'2019-07-20 20:55:42','POS 754',2,-1),(1759,1,1,'2019-07-21 00:05:37','POS 755',2,-1),(1760,13,1,'2019-07-21 00:05:37','POS 755',2,-1),(1761,1,1,'2019-07-21 00:16:04','POS 756',2,-1),(1762,13,1,'2019-07-21 00:16:04','POS 756',2,-1),(1763,1,1,'2019-07-21 00:19:23','POS 757',2,-1),(1764,13,1,'2019-07-21 00:19:23','POS 757',2,-1),(1765,1,1,'2019-07-21 00:21:14','POS 758',2,-1),(1766,13,1,'2019-07-21 00:21:14','POS 758',2,-1),(1767,1,1,'2019-07-21 00:21:45','POS 759',2,-1),(1768,13,1,'2019-07-21 00:21:45','POS 759',2,-1),(1769,1,1,'2019-07-21 00:26:56','POS 760',2,-1),(1770,13,1,'2019-07-21 00:26:56','POS 760',2,-1),(1771,1,1,'2019-07-21 00:28:00','POS 761',2,-1),(1772,13,1,'2019-07-21 00:28:00','POS 761',2,-1),(1773,1,1,'2019-07-21 00:36:07','POS 762',2,-1),(1774,13,1,'2019-07-21 00:36:07','POS 762',2,-1),(1775,1,1,'2019-07-21 00:37:41','POS 763',2,-1),(1776,13,1,'2019-07-21 00:37:41','POS 763',2,-1),(1777,1,1,'2019-07-21 00:37:54','POS 764',2,-1),(1778,13,1,'2019-07-21 00:37:54','POS 764',2,-1),(1779,1,1,'2019-07-21 00:38:44','POS 765',2,-1),(1780,13,1,'2019-07-21 00:38:44','POS 765',2,-1),(1781,1,1,'2019-07-21 00:41:46','POS 766',2,-1),(1782,13,1,'2019-07-21 00:41:46','POS 766',2,-1),(1783,1,1,'2019-07-21 00:46:42','POS 767',2,-1),(1784,13,1,'2019-07-21 00:46:42','POS 767',2,-1),(1785,1,1,'2019-07-21 01:15:28','POS 768',2,-1),(1786,13,1,'2019-07-21 01:15:28','POS 768',2,-1),(1787,1,1,'2019-07-21 01:16:42','POS 769',2,-1),(1788,13,1,'2019-07-21 01:16:42','POS 769',2,-1),(1789,1,1,'2019-07-21 01:19:17','POS 770',2,-1),(1790,13,1,'2019-07-21 01:19:17','POS 770',2,-1),(1791,1,1,'2019-07-21 01:23:20','POS 771',2,-1),(1792,13,1,'2019-07-21 01:23:20','POS 771',2,-1),(1793,1,1,'2019-07-21 01:23:25','POS 772',2,-1),(1794,13,1,'2019-07-21 01:23:25','POS 772',2,-1),(1795,1,1,'2019-07-21 01:23:41','POS 773',2,-1),(1796,13,1,'2019-07-21 01:23:41','POS 773',2,-1),(1797,1,1,'2019-07-21 01:25:08','POS 774',2,-1),(1798,13,1,'2019-07-21 01:25:08','POS 774',2,-1),(1799,1,1,'2019-07-21 01:25:15','POS 775',2,-1),(1800,13,1,'2019-07-21 01:25:15','POS 775',2,-1),(1801,1,1,'2019-07-21 01:32:15','POS 776',2,-1),(1802,13,1,'2019-07-21 01:32:15','POS 776',2,-1),(1803,1,1,'2019-07-21 01:32:22','POS 777',2,-1),(1804,13,1,'2019-07-21 01:32:22','POS 777',2,-1),(1805,1,1,'2019-07-21 01:32:35','POS 778',2,-1),(1806,13,1,'2019-07-21 01:32:35','POS 778',2,-1),(1807,1,1,'2019-07-21 01:35:15','POS 779',2,-1),(1808,13,1,'2019-07-21 01:35:15','POS 779',2,-1),(1809,1,1,'2019-07-21 01:35:22','POS 780',2,-1),(1810,13,1,'2019-07-21 01:35:22','POS 780',2,-1),(1811,1,1,'2019-07-21 01:36:08','POS 781',2,-1),(1812,13,1,'2019-07-21 01:36:08','POS 781',2,-1),(1813,1,1,'2019-07-21 01:36:15','POS 782',2,-1),(1814,13,1,'2019-07-21 01:36:15','POS 782',2,-1),(1815,1,1,'2019-07-21 01:39:26','POS 783',2,-1),(1816,13,1,'2019-07-21 01:39:26','POS 783',2,-1),(1817,1,1,'2019-07-21 01:39:32','POS 784',2,-1),(1818,13,1,'2019-07-21 01:39:32','POS 784',2,-1),(1819,1,1,'2019-07-21 01:49:30','POS 785',2,-1),(1820,13,1,'2019-07-21 01:49:30','POS 785',2,-1),(1821,1,1,'2019-07-21 01:50:53','POS 786',2,-1),(1822,13,1,'2019-07-21 01:50:53','POS 786',2,-1),(1823,1,1,'2019-07-21 01:57:05','POS 787',2,-1),(1824,13,1,'2019-07-21 01:57:05','POS 787',2,-1),(1825,1,1,'2019-07-21 01:59:14','POS 788',2,-1),(1826,13,1,'2019-07-21 01:59:14','POS 788',2,-1),(1827,1,1,'2019-07-21 02:05:00','POS 789',2,-1),(1828,13,1,'2019-07-21 02:05:00','POS 789',2,-1),(1829,1,1,'2019-07-21 02:06:37','POS 790',2,-1),(1830,13,1,'2019-07-21 02:06:37','POS 790',2,-1),(1831,1,1,'2019-07-21 02:09:13','POS 791',2,-1),(1832,13,1,'2019-07-21 02:09:13','POS 791',2,-1),(1833,1,1,'2019-07-21 02:11:41','POS 792',2,-1),(1834,13,1,'2019-07-21 02:11:41','POS 792',2,-1),(1835,1,1,'2019-07-21 02:13:17','POS 793',2,-1),(1836,13,1,'2019-07-21 02:13:17','POS 793',2,-1),(1837,1,1,'2019-07-21 02:15:13','POS 794',2,-1),(1838,13,1,'2019-07-21 02:15:13','POS 794',2,-1),(1839,1,1,'2019-07-21 02:17:01','POS 795',2,-1),(1840,13,1,'2019-07-21 02:17:01','POS 795',2,-1),(1841,1,1,'2019-07-21 02:19:02','POS 796',2,-1),(1842,13,1,'2019-07-21 02:19:02','POS 796',2,-1),(1843,1,1,'2019-07-21 02:23:52','POS 797',2,-1),(1844,13,1,'2019-07-21 02:23:52','POS 797',2,-1),(1845,1,1,'2019-07-21 02:25:28','POS 798',2,-1),(1846,13,1,'2019-07-21 02:25:28','POS 798',2,-1),(1847,1,1,'2019-07-21 02:25:53','POS 799',2,-1),(1848,13,1,'2019-07-21 02:25:53','POS 799',2,-1),(1849,1,1,'2019-07-21 02:26:28','POS 800',2,-1),(1850,13,1,'2019-07-21 02:26:28','POS 800',2,-1),(1851,1,1,'2019-07-21 04:15:06','POS 801',2,-1),(1852,13,1,'2019-07-21 04:15:06','POS 801',2,-1),(1853,1,1,'2019-07-21 04:15:12','POS 802',2,-1),(1854,13,1,'2019-07-21 04:15:12','POS 802',2,-1),(1855,1,1,'2019-07-21 04:17:33','POS 803',2,-1),(1856,13,1,'2019-07-21 04:17:33','POS 803',2,-1),(1857,1,1,'2019-07-21 04:17:39','POS 804',2,-1),(1858,13,1,'2019-07-21 04:17:39','POS 804',2,-1),(1859,1,1,'2019-07-21 04:19:01','POS 805',2,-1),(1860,13,1,'2019-07-21 04:19:01','POS 805',2,-1),(1861,1,1,'2019-07-21 04:19:08','POS 806',2,-1),(1862,13,1,'2019-07-21 04:19:08','POS 806',2,-1),(1863,1,1,'2019-07-21 04:29:30','POS 807',2,-1),(1864,13,1,'2019-07-21 04:29:30','POS 807',2,-1),(1865,1,1,'2019-07-21 04:30:30','POS 808',2,-1),(1866,13,1,'2019-07-21 04:30:30','POS 808',2,-1),(1867,1,1,'2019-07-21 04:31:45','POS 809',2,-1),(1868,13,1,'2019-07-21 04:31:45','POS 809',2,-1),(1869,1,1,'2019-07-21 04:31:58','POS 810',2,-1),(1870,13,1,'2019-07-21 04:31:58','POS 810',2,-1),(1871,1,1,'2019-07-21 04:34:10','POS 811',2,-1),(1872,13,1,'2019-07-21 04:34:10','POS 811',2,-1),(1873,1,1,'2019-07-21 04:35:15','POS 812',2,-1),(1874,13,1,'2019-07-21 04:35:15','POS 812',2,-1),(1875,1,1,'2019-07-21 04:40:36','POS 813',2,-1),(1876,13,1,'2019-07-21 04:40:36','POS 813',2,-1),(1877,1,1,'2019-07-21 04:44:07','POS 814',2,-1),(1878,13,1,'2019-07-21 04:44:07','POS 814',2,-1),(1879,1,1,'2019-07-21 04:45:24','POS 815',2,-1),(1880,13,1,'2019-07-21 04:45:24','POS 815',2,-1),(1881,1,1,'2019-07-21 04:48:30','POS 816',2,-1),(1882,13,1,'2019-07-21 04:48:30','POS 816',2,-1),(1883,1,1,'2019-07-21 05:08:16','POS 817',2,-1),(1884,13,1,'2019-07-21 05:08:16','POS 817',2,-1),(1885,1,1,'2019-07-21 05:11:27','POS 818',2,-1),(1886,13,1,'2019-07-21 05:11:27','POS 818',2,-1),(1887,1,1,'2019-07-21 05:13:08','POS 819',2,-1),(1888,13,1,'2019-07-21 05:13:08','POS 819',2,-1),(1889,1,1,'2019-07-21 05:17:19','POS 820',2,-1),(1890,13,1,'2019-07-21 05:17:19','POS 820',2,-1),(1891,1,1,'2019-07-21 05:19:58','POS 821',2,-1),(1892,13,1,'2019-07-21 05:19:58','POS 821',2,-1),(1893,1,1,'2019-07-21 05:28:13','POS 822',2,-1),(1894,13,1,'2019-07-21 05:28:13','POS 822',2,-1),(1895,3,1,'2019-07-21 05:29:50','POS 823',2,-1),(1896,5,1,'2019-07-21 05:29:50','POS 823',2,-1),(1897,44,1,'2019-07-21 05:31:38','POS 824',2,-1),(1898,8,1,'2019-07-21 05:31:38','POS 824',2,-1),(1899,9,1,'2019-07-21 05:31:38','POS 824',2,-1),(1900,44,1,'2019-07-21 05:34:21','POS 825',2,-1),(1901,8,1,'2019-07-21 05:34:21','POS 825',2,-1),(1902,9,1,'2019-07-21 05:34:21','POS 825',2,-1),(1903,44,1,'2019-07-21 05:35:01','POS 826',2,-1),(1904,8,1,'2019-07-21 05:35:01','POS 826',2,-1),(1905,9,1,'2019-07-21 05:35:01','POS 826',2,-1),(1906,44,1,'2019-07-21 05:36:43','POS 827',2,-1),(1907,8,1,'2019-07-21 05:36:43','POS 827',2,-1),(1908,9,1,'2019-07-21 05:36:43','POS 827',2,-1),(1909,44,1,'2019-07-21 05:41:36','POS 828',2,-1),(1910,8,1,'2019-07-21 05:41:36','POS 828',2,-1),(1911,9,1,'2019-07-21 05:41:36','POS 828',2,-1),(1912,44,1,'2019-07-21 05:46:26','POS 829',2,-1),(1913,8,1,'2019-07-21 05:46:26','POS 829',2,-1),(1914,9,1,'2019-07-21 05:46:26','POS 829',2,-1),(1915,44,1,'2019-07-21 05:58:27','POS 830',2,-1),(1916,8,1,'2019-07-21 05:58:27','POS 830',2,-1),(1917,9,1,'2019-07-21 05:58:27','POS 830',2,-1),(1918,44,1,'2019-07-21 06:02:03','POS 831',2,-1),(1919,8,1,'2019-07-21 06:02:03','POS 831',2,-1),(1920,9,1,'2019-07-21 06:02:03','POS 831',2,-1),(1921,44,1,'2019-07-21 06:03:20','POS 832',2,-1),(1922,8,1,'2019-07-21 06:03:20','POS 832',2,-1),(1923,9,1,'2019-07-21 06:03:20','POS 832',2,-1),(1924,44,1,'2019-07-21 06:03:59','POS 833',2,-1),(1925,8,1,'2019-07-21 06:03:59','POS 833',2,-1),(1926,9,1,'2019-07-21 06:03:59','POS 833',2,-1),(1927,44,1,'2019-07-21 06:06:07','POS 834',2,-1),(1928,8,1,'2019-07-21 06:06:07','POS 834',2,-1),(1929,9,1,'2019-07-21 06:06:07','POS 834',2,-1),(1930,44,1,'2019-07-21 06:13:49','POS 835',2,-1),(1931,8,1,'2019-07-21 06:13:49','POS 835',2,-1),(1932,9,1,'2019-07-21 06:13:49','POS 835',2,-1),(1933,44,1,'2019-07-21 06:15:00','POS 836',2,-1),(1934,8,1,'2019-07-21 06:15:00','POS 836',2,-1),(1935,9,1,'2019-07-21 06:15:00','POS 836',2,-1),(1936,44,1,'2019-07-21 06:17:23','POS 837',2,-1),(1937,8,1,'2019-07-21 06:17:23','POS 837',2,-1),(1938,9,1,'2019-07-21 06:17:23','POS 837',2,-1),(1939,44,1,'2019-07-21 06:18:09','POS 838',2,-1),(1940,8,1,'2019-07-21 06:18:09','POS 838',2,-1),(1941,9,1,'2019-07-21 06:18:09','POS 838',2,-1),(1942,44,1,'2019-07-21 06:18:50','POS 839',2,-1),(1943,8,1,'2019-07-21 06:18:50','POS 839',2,-1),(1944,9,1,'2019-07-21 06:18:50','POS 839',2,-1),(1945,44,1,'2019-07-21 06:24:27','POS 840',2,-1),(1946,8,1,'2019-07-21 06:24:27','POS 840',2,-1),(1947,9,1,'2019-07-21 06:24:27','POS 840',2,-1),(1948,44,1,'2019-07-21 06:30:16','POS 841',2,-1),(1949,8,1,'2019-07-21 06:30:16','POS 841',2,-1),(1950,9,1,'2019-07-21 06:30:16','POS 841',2,-1),(1951,44,1,'2019-07-21 06:32:22','POS 842',2,-1),(1952,8,1,'2019-07-21 06:32:22','POS 842',2,-1),(1953,9,1,'2019-07-21 06:32:22','POS 842',2,-1),(1954,44,1,'2019-07-21 06:37:31','POS 843',2,-1),(1955,8,1,'2019-07-21 06:37:31','POS 843',2,-1),(1956,9,1,'2019-07-21 06:37:31','POS 843',2,-1),(1957,44,1,'2019-07-21 06:37:35','POS 844',2,-1),(1958,8,1,'2019-07-21 06:37:35','POS 844',2,-1),(1959,9,1,'2019-07-21 06:37:35','POS 844',2,-1),(1960,44,1,'2019-07-21 06:37:38','POS 845',2,-1),(1961,8,1,'2019-07-21 06:37:38','POS 845',2,-1),(1962,9,1,'2019-07-21 06:37:38','POS 845',2,-1),(1963,44,1,'2019-07-21 06:37:41','POS 846',2,-1),(1964,8,1,'2019-07-21 06:37:41','POS 846',2,-1),(1965,9,1,'2019-07-21 06:37:41','POS 846',2,-1),(1966,44,1,'2019-07-21 06:37:45','POS 847',2,-1),(1967,8,1,'2019-07-21 06:37:45','POS 847',2,-1),(1968,9,1,'2019-07-21 06:37:45','POS 847',2,-1),(1969,44,1,'2019-07-21 06:37:48','POS 848',2,-1),(1970,8,1,'2019-07-21 06:37:48','POS 848',2,-1),(1971,9,1,'2019-07-21 06:37:48','POS 848',2,-1),(1972,44,1,'2019-07-21 06:37:52','POS 849',2,-1),(1973,8,1,'2019-07-21 06:37:52','POS 849',2,-1),(1974,9,1,'2019-07-21 06:37:52','POS 849',2,-1),(1975,44,1,'2019-07-21 06:37:55','POS 850',2,-1),(1976,8,1,'2019-07-21 06:37:55','POS 850',2,-1),(1977,9,1,'2019-07-21 06:37:55','POS 850',2,-1),(1978,44,1,'2019-07-21 06:37:59','POS 851',2,-1),(1979,8,1,'2019-07-21 06:37:59','POS 851',2,-1),(1980,9,1,'2019-07-21 06:37:59','POS 851',2,-1),(1981,44,1,'2019-07-21 06:38:02','POS 852',2,-1),(1982,8,1,'2019-07-21 06:38:02','POS 852',2,-1),(1983,9,1,'2019-07-21 06:38:02','POS 852',2,-1),(1984,44,1,'2019-07-21 06:38:06','POS 853',2,-1),(1985,8,1,'2019-07-21 06:38:06','POS 853',2,-1),(1986,9,1,'2019-07-21 06:38:06','POS 853',2,-1),(1987,44,1,'2019-07-21 06:38:09','POS 854',2,-1),(1988,8,1,'2019-07-21 06:38:09','POS 854',2,-1),(1989,9,1,'2019-07-21 06:38:09','POS 854',2,-1),(1990,44,1,'2019-07-21 06:38:12','POS 855',2,-1),(1991,8,1,'2019-07-21 06:38:12','POS 855',2,-1),(1992,9,1,'2019-07-21 06:38:12','POS 855',2,-1),(1993,44,1,'2019-07-21 06:38:16','POS 856',2,-1),(1994,8,1,'2019-07-21 06:38:16','POS 856',2,-1),(1995,9,1,'2019-07-21 06:38:16','POS 856',2,-1),(1996,44,1,'2019-07-21 06:38:19','POS 857',2,-1),(1997,8,1,'2019-07-21 06:38:19','POS 857',2,-1),(1998,9,1,'2019-07-21 06:38:19','POS 857',2,-1),(1999,44,1,'2019-07-21 06:38:23','POS 858',2,-1),(2000,8,1,'2019-07-21 06:38:23','POS 858',2,-1),(2001,9,1,'2019-07-21 06:38:23','POS 858',2,-1),(2002,44,1,'2019-07-21 06:38:26','POS 859',2,-1),(2003,8,1,'2019-07-21 06:38:26','POS 859',2,-1),(2004,9,1,'2019-07-21 06:38:26','POS 859',2,-1),(2005,44,1,'2019-07-21 06:38:41','POS 860',2,-1),(2006,8,1,'2019-07-21 06:38:41','POS 860',2,-1),(2007,9,1,'2019-07-21 06:38:41','POS 860',2,-1),(2008,44,1,'2019-07-21 06:38:45','POS 861',2,-1),(2009,8,1,'2019-07-21 06:38:45','POS 861',2,-1),(2010,9,1,'2019-07-21 06:38:45','POS 861',2,-1),(2011,44,1,'2019-07-21 06:38:48','POS 862',2,-1),(2012,8,1,'2019-07-21 06:38:48','POS 862',2,-1),(2013,9,1,'2019-07-21 06:38:48','POS 862',2,-1),(2014,44,1,'2019-07-21 06:38:52','POS 863',2,-1),(2015,8,1,'2019-07-21 06:38:52','POS 863',2,-1),(2016,9,1,'2019-07-21 06:38:52','POS 863',2,-1),(2017,44,1,'2019-07-21 06:38:55','POS 864',2,-1),(2018,8,1,'2019-07-21 06:38:55','POS 864',2,-1),(2019,9,1,'2019-07-21 06:38:55','POS 864',2,-1),(2020,44,1,'2019-07-21 06:38:59','POS 865',2,-1),(2021,8,1,'2019-07-21 06:38:59','POS 865',2,-1),(2022,9,1,'2019-07-21 06:38:59','POS 865',2,-1),(2023,44,1,'2019-07-21 06:39:02','POS 866',2,-1),(2024,8,1,'2019-07-21 06:39:02','POS 866',2,-1),(2025,9,1,'2019-07-21 06:39:02','POS 866',2,-1),(2026,44,1,'2019-07-21 06:39:05','POS 867',2,-1),(2027,8,1,'2019-07-21 06:39:05','POS 867',2,-1),(2028,9,1,'2019-07-21 06:39:05','POS 867',2,-1),(2029,44,1,'2019-07-21 06:39:09','POS 868',2,-1),(2030,8,1,'2019-07-21 06:39:09','POS 868',2,-1),(2031,9,1,'2019-07-21 06:39:09','POS 868',2,-1),(2032,44,1,'2019-07-21 06:39:12','POS 869',2,-1),(2033,8,1,'2019-07-21 06:39:12','POS 869',2,-1),(2034,9,1,'2019-07-21 06:39:12','POS 869',2,-1),(2035,44,1,'2019-07-21 06:39:16','POS 870',2,-1),(2036,8,1,'2019-07-21 06:39:16','POS 870',2,-1),(2037,9,1,'2019-07-21 06:39:16','POS 870',2,-1),(2038,44,1,'2019-07-21 06:39:31','POS 871',2,-1),(2039,8,1,'2019-07-21 06:39:31','POS 871',2,-1),(2040,9,1,'2019-07-21 06:39:31','POS 871',2,-1),(2041,44,1,'2019-07-21 06:39:34','POS 872',2,-1),(2042,8,1,'2019-07-21 06:39:34','POS 872',2,-1),(2043,9,1,'2019-07-21 06:39:34','POS 872',2,-1),(2044,44,1,'2019-07-21 06:39:38','POS 873',2,-1),(2045,8,1,'2019-07-21 06:39:38','POS 873',2,-1),(2046,9,1,'2019-07-21 06:39:38','POS 873',2,-1),(2047,44,1,'2019-07-21 06:40:25','POS 874',2,-1),(2048,8,1,'2019-07-21 06:40:25','POS 874',2,-1),(2049,9,1,'2019-07-21 06:40:25','POS 874',2,-1),(2050,44,1,'2019-07-21 06:48:43','POS 875',2,-1),(2051,8,1,'2019-07-21 06:48:43','POS 875',2,-1),(2052,9,1,'2019-07-21 06:48:43','POS 875',2,-1),(2053,44,1,'2019-07-21 06:48:49','POS 876',2,-1),(2054,8,1,'2019-07-21 06:48:49','POS 876',2,-1),(2055,9,1,'2019-07-21 06:48:49','POS 876',2,-1),(2056,44,1,'2019-07-21 06:48:54','POS 877',2,-1),(2057,8,1,'2019-07-21 06:48:54','POS 877',2,-1),(2058,9,1,'2019-07-21 06:48:54','POS 877',2,-1),(2059,44,1,'2019-07-21 06:49:00','POS 878',2,-1),(2060,8,1,'2019-07-21 06:49:00','POS 878',2,-1),(2061,9,1,'2019-07-21 06:49:00','POS 878',2,-1),(2062,44,1,'2019-07-21 06:49:06','POS 879',2,-1),(2063,8,1,'2019-07-21 06:49:06','POS 879',2,-1),(2064,9,1,'2019-07-21 06:49:06','POS 879',2,-1),(2065,44,1,'2019-07-21 06:49:12','POS 880',2,-1),(2066,8,1,'2019-07-21 06:49:12','POS 880',2,-1),(2067,9,1,'2019-07-21 06:49:12','POS 880',2,-1),(2068,44,1,'2019-07-21 06:49:17','POS 881',2,-1),(2069,8,1,'2019-07-21 06:49:17','POS 881',2,-1),(2070,9,1,'2019-07-21 06:49:17','POS 881',2,-1),(2071,44,1,'2019-07-21 06:49:22','POS 882',2,-1),(2072,8,1,'2019-07-21 06:49:22','POS 882',2,-1),(2073,9,1,'2019-07-21 06:49:22','POS 882',2,-1),(2074,44,1,'2019-07-21 06:49:28','POS 883',2,-1),(2075,8,1,'2019-07-21 06:49:28','POS 883',2,-1),(2076,9,1,'2019-07-21 06:49:28','POS 883',2,-1),(2077,44,1,'2019-07-21 06:49:33','POS 884',2,-1),(2078,8,1,'2019-07-21 06:49:33','POS 884',2,-1),(2079,9,1,'2019-07-21 06:49:33','POS 884',2,-1),(2080,44,1,'2019-07-21 06:49:39','POS 885',2,-1),(2081,8,1,'2019-07-21 06:49:39','POS 885',2,-1),(2082,9,1,'2019-07-21 06:49:39','POS 885',2,-1),(2083,44,1,'2019-07-21 06:49:48','POS 886',2,-1),(2084,8,1,'2019-07-21 06:49:48','POS 886',2,-1),(2085,9,1,'2019-07-21 06:49:48','POS 886',2,-1),(2086,44,1,'2019-07-21 06:49:53','POS 887',2,-1),(2087,8,1,'2019-07-21 06:49:53','POS 887',2,-1),(2088,9,1,'2019-07-21 06:49:53','POS 887',2,-1),(2089,44,1,'2019-07-21 06:50:00','POS 888',2,-1),(2090,8,1,'2019-07-21 06:50:00','POS 888',2,-1),(2091,9,1,'2019-07-21 06:50:00','POS 888',2,-1),(2092,44,1,'2019-07-21 06:50:14','POS 889',2,-1),(2093,8,1,'2019-07-21 06:50:14','POS 889',2,-1),(2094,9,1,'2019-07-21 06:50:14','POS 889',2,-1),(2095,44,1,'2019-07-21 06:55:42','POS 890',2,-1),(2096,8,1,'2019-07-21 06:55:42','POS 890',2,-1),(2097,9,1,'2019-07-21 06:55:42','POS 890',2,-1),(2098,44,1,'2019-07-21 06:55:48','POS 891',2,-1),(2099,8,1,'2019-07-21 06:55:48','POS 891',2,-1),(2100,9,1,'2019-07-21 06:55:48','POS 891',2,-1),(2101,44,1,'2019-07-21 06:55:53','POS 892',2,-1),(2102,8,1,'2019-07-21 06:55:53','POS 892',2,-1),(2103,9,1,'2019-07-21 06:55:53','POS 892',2,-1),(2104,44,1,'2019-07-21 07:01:18','POS 893',2,-1),(2105,8,1,'2019-07-21 07:01:18','POS 893',2,-1),(2106,9,1,'2019-07-21 07:01:18','POS 893',2,-1),(2107,1,1,'2019-07-21 07:03:15','POS 894',2,-1),(2108,13,1,'2019-07-21 07:03:15','POS 894',2,-1),(2109,1,1,'2019-07-21 17:18:25','POS 895',2,-1),(2110,5,1,'2019-07-21 17:18:25','POS 895',2,-1),(2111,8,1,'2019-07-21 17:18:25','POS 895',2,-1),(2112,9,1,'2019-07-21 17:18:25','POS 895',2,-1),(2113,1,1,'2019-07-21 17:22:49','POS 896',2,-1),(2114,3,1,'2019-07-21 17:22:49','POS 896',2,-1),(2115,8,1,'2019-07-21 17:22:49','POS 896',2,-1),(2116,9,1,'2019-07-21 17:22:49','POS 896',2,-1),(2117,1,1,'2019-07-21 17:26:54','POS 897',2,-1),(2118,8,1,'2019-07-21 17:26:54','POS 897',2,-1),(2119,9,1,'2019-07-21 17:26:54','POS 897',2,-1),(2120,1,1,'2019-07-21 17:34:30','POS 898',2,-1),(2121,8,1,'2019-07-21 17:34:30','POS 898',2,-3),(2122,9,1,'2019-07-21 17:34:30','POS 898',2,-1),(2123,23,1,'2019-07-21 17:34:30','POS 898',2,-1),(2124,4,1,'2019-07-21 17:48:09','POS 899',2,-1),(2125,7,1,'2019-07-21 17:48:09','POS 899',2,-1),(2126,9,1,'2019-07-21 17:48:09','POS 899',2,-1),(2127,5,1,'2019-07-21 17:55:30','POS 900',2,-1),(2128,8,1,'2019-07-21 17:55:30','POS 900',2,-1),(2129,9,1,'2019-07-21 17:55:30','POS 900',2,-1),(2130,9,1,'2019-07-21 17:56:51','POS 901',2,-1),(2131,8,1,'2019-07-21 17:56:51','POS 901',2,-1),(2132,9,1,'2019-07-21 18:03:37','POS 902',2,-1),(2133,8,1,'2019-07-21 18:03:37','POS 902',2,-2),(2134,9,1,'2019-07-21 18:09:27','POS 903',2,-1),(2135,45,1,'2019-07-21 18:09:27','POS 903',2,-1),(2136,47,1,'2019-07-21 18:09:27','POS 903',2,-1),(2137,5,1,'2019-07-21 18:11:44','POS 904',2,-1),(2138,8,1,'2019-07-21 18:11:44','POS 904',2,-1),(2139,9,1,'2019-07-21 18:11:44','POS 904',2,-1),(2140,5,1,'2019-07-21 19:13:52','POS 905',2,-1),(2141,9,1,'2019-07-21 19:13:52','POS 905',2,-1),(2142,7,1,'2019-07-21 19:15:14','POS 906',2,-1),(2143,33,1,'2019-07-21 19:15:14','POS 906',2,-1),(2144,5,1,'2019-07-22 00:30:57','POS 907',2,-2),(2145,6,1,'2019-07-22 00:30:57','POS 907',2,-1),(2146,5,1,'2019-07-22 00:33:12','POS 908',2,-1),(2147,19,1,'2019-07-22 00:33:12','POS 908',2,-2),(2148,48,1,'2019-07-22 00:33:12','POS 908',2,-1),(2149,66,1,'2019-07-22 00:36:56','POS 909',2,-1),(2150,52,1,'2019-07-22 00:36:56','POS 909',2,-1),(2151,8,1,'2019-07-22 15:45:22','POS 910',2,-1),(2152,9,1,'2019-07-22 15:45:22','POS 910',2,-1),(2153,9,1,'2019-07-22 15:58:06','POS 911',2,-1),(2154,15,1,'2019-07-22 15:58:06','POS 911',2,-1),(2155,8,1,'2019-07-22 16:01:35','POS 912',2,-1),(2156,56,1,'2019-07-22 16:01:35','POS 912',2,-1),(2157,56,1,'2019-07-22 16:08:20','POS 913',2,-1),(2158,9,1,'2019-07-22 16:08:20','POS 913',2,-1),(2159,45,1,'2019-07-22 16:09:42','POS 914',2,-1),(2160,48,1,'2019-07-22 16:09:42','POS 914',2,-1),(2161,47,1,'2019-07-22 16:11:55','POS 915',2,-1),(2162,48,1,'2019-07-22 16:11:55','POS 915',2,-1),(2163,48,1,'2019-07-22 16:14:21','POS 916',2,-1),(2164,4,1,'2019-07-22 16:14:21','POS 916',2,-1),(2165,65,1,'2019-07-22 16:16:26','POS 917',2,-1),(2166,47,1,'2019-07-22 16:16:26','POS 917',2,-1),(2167,48,1,'2019-07-22 16:18:14','POS 918',2,-1),(2168,47,1,'2019-07-22 16:18:14','POS 918',2,-1),(2169,58,1,'2019-07-22 16:20:02','POS 919',2,-1),(2170,44,1,'2019-07-22 16:20:02','POS 919',2,-1),(2171,44,1,'2019-07-22 16:26:26','POS 920',2,-1),(2172,45,1,'2019-07-22 16:26:26','POS 920',2,-1),(2173,8,1,'2019-07-22 16:34:55','POS 921',2,-1),(2174,9,1,'2019-07-22 16:34:55','POS 921',2,-1),(2175,8,1,'2019-07-22 16:37:29','POS 922',2,-1),(2176,9,1,'2019-07-22 16:37:29','POS 922',2,-1),(2177,8,1,'2019-07-22 16:57:50','POS 923',2,-1),(2178,47,1,'2019-07-22 16:57:50','POS 923',2,-1),(2179,8,1,'2019-07-22 16:59:40','POS 924',2,-1),(2180,6,1,'2019-07-22 16:59:40','POS 924',2,-1),(2181,48,1,'2019-07-22 17:01:34','POS 925',2,-1),(2182,45,1,'2019-07-22 17:03:25','POS 926',2,-1),(2183,64,1,'2019-07-22 17:04:57','POS 927',2,-1),(2184,5,1,'2019-07-22 17:07:44','POS 928',2,-1),(2185,6,1,'2019-07-22 17:07:44','POS 928',2,-1),(2186,8,1,'2019-07-22 17:11:21','POS 929',2,-1),(2187,5,1,'2019-07-22 17:12:58','POS 930',2,-1),(2188,64,1,'2019-07-22 17:14:31','POS 931',2,-1),(2189,5,1,'2019-07-22 17:14:31','POS 931',2,-1),(2190,8,1,'2019-07-22 17:14:31','POS 931',2,-1),(2191,6,1,'2019-07-22 17:17:30','POS 932',2,-1),(2192,8,1,'2019-07-22 17:17:30','POS 932',2,-1),(2193,45,1,'2019-07-22 17:26:21','POS 933',2,-1),(2194,45,1,'2019-07-22 17:38:39','POS 934',2,-1),(2195,8,1,'2019-07-22 17:38:39','POS 934',2,-1),(2196,5,1,'2019-07-22 18:02:19','POS 935',2,-1),(2197,9,1,'2019-07-22 18:02:19','POS 935',2,-1),(2198,5,1,'2019-07-22 18:16:47','POS 936',2,-1),(2199,5,1,'2019-07-22 18:20:31','POS 937',2,-1),(2200,8,1,'2019-07-22 18:20:31','POS 937',2,-1),(2201,8,1,'2019-07-22 18:24:07','POS 938',2,-1),(2202,9,1,'2019-07-22 18:24:07','POS 938',2,-1),(2203,6,1,'2019-07-22 18:26:17','POS 939',2,-1),(2204,9,1,'2019-07-22 18:26:17','POS 939',2,-1),(2205,5,1,'2019-07-22 18:26:17','POS 939',2,-1),(2206,5,1,'2019-07-22 19:24:50','POS 940',2,-1),(2207,9,1,'2019-07-22 19:24:50','POS 940',2,-1),(2208,5,1,'2019-07-22 19:26:27','POS 941',2,-1),(2209,9,1,'2019-07-22 19:26:27','POS 941',2,-1),(2210,5,1,'2019-07-22 19:27:45','POS 942',2,-1),(2211,8,1,'2019-07-22 19:31:00','POS 943',2,-1),(2212,9,1,'2019-07-22 19:31:00','POS 943',2,-1),(2213,6,1,'2019-07-22 19:32:52','POS 944',2,-1),(2214,9,1,'2019-07-22 19:32:52','POS 944',2,-1),(2215,5,1,'2019-07-22 19:35:09','POS 945',2,-1),(2216,9,1,'2019-07-22 19:35:09','POS 945',2,-1),(2217,5,1,'2019-07-22 19:36:14','POS 946',2,-1),(2218,6,1,'2019-07-22 19:36:14','POS 946',2,-1),(2219,9,1,'2019-07-22 19:43:48','POS 947',2,-1),(2220,9,1,'2019-07-22 19:44:49','POS 948',2,-1),(2221,8,1,'2019-07-22 19:44:49','POS 948',2,-1),(2222,9,1,'2019-07-22 19:45:36','POS 949',2,-1),(2223,8,1,'2019-07-22 19:45:36','POS 949',2,-1),(2224,5,1,'2019-07-22 19:46:25','POS 950',2,-1),(2225,8,1,'2019-07-22 19:46:25','POS 950',2,-1),(2226,5,1,'2019-07-22 22:57:05','POS 951',2,-1),(2227,6,1,'2019-07-22 22:57:05','POS 951',2,-1),(2228,5,1,'2019-07-22 23:01:07','POS 952',2,-1),(2229,6,1,'2019-07-22 23:01:07','POS 952',2,-1),(2230,7,1,'2019-07-22 23:01:07','POS 952',2,-1),(2231,5,1,'2019-07-22 23:05:39','POS 953',2,-1),(2232,5,1,'2019-07-22 23:06:56','POS 954',2,-1),(2233,9,1,'2019-07-22 23:07:49','POS 955',2,-1),(2234,8,1,'2019-07-22 23:11:24','POS 956',2,-1),(2235,9,1,'2019-07-22 23:11:24','POS 956',2,-1),(2236,5,1,'2019-07-22 23:12:33','POS 957',2,-1),(2237,5,1,'2019-07-22 23:29:54','POS 958',2,-1),(2238,7,1,'2019-07-22 23:29:54','POS 958',2,-1),(2239,8,1,'2019-07-22 23:34:32','POS 959',2,-1),(2240,5,1,'2019-07-22 23:36:46','POS 960',2,-1),(2241,9,1,'2019-07-22 23:36:46','POS 960',2,-1),(2242,55,1,'2019-07-23 01:20:44','POS 961',2,-1),(2243,9,1,'2019-07-23 01:20:44','POS 961',2,-1),(2244,8,1,'2019-07-23 01:27:02','POS 962',2,-1),(2245,9,1,'2019-07-23 01:30:35','POS 963',2,-1),(2246,45,1,'2019-07-23 01:30:35','POS 963',2,-1),(2247,5,1,'2019-07-23 01:33:44','POS 964',2,-1),(2248,9,1,'2019-07-23 01:33:44','POS 964',2,-1),(2249,5,1,'2019-07-23 02:34:56','POS 965',2,-1),(2250,9,1,'2019-07-23 02:34:56','POS 965',2,-1),(2251,9,1,'2019-07-23 02:36:35','POS 966',2,-1),(2252,9,1,'2019-07-23 02:38:54','POS 967',2,-1),(2253,18,1,'2019-07-23 02:38:54','POS 967',2,-1),(2254,19,1,'2019-07-23 02:38:54','POS 967',2,-1),(2255,9,1,'2019-07-23 02:41:02','POS 968',2,-1),(2256,5,1,'2019-07-23 02:41:02','POS 968',2,-1),(2257,8,1,'2019-07-23 02:43:11','POS 969',2,-1),(2258,9,1,'2019-07-23 02:44:35','POS 970',2,-1),(2259,9,1,'2019-07-23 02:46:00','POS 971',2,-1),(2260,9,1,'2019-07-23 02:46:48','POS 972',2,-1),(2261,44,1,'2019-07-23 02:46:48','POS 972',2,-1),(2262,44,1,'2019-07-23 02:48:25','POS 973',2,-1),(2263,44,1,'2019-07-23 02:49:29','POS 974',2,-1),(2264,44,1,'2019-07-23 02:51:02','POS 975',2,-1),(2265,5,1,'2019-07-23 02:52:50','POS 976',2,-1),(2266,44,1,'2019-07-23 02:52:50','POS 976',2,-1),(2267,9,1,'2019-07-23 02:57:04','POS 977',2,-1),(2268,22,1,'2019-07-23 02:57:04','POS 977',2,-1),(2269,9,1,'2019-07-23 03:00:30','POS 978',2,-2),(2270,8,1,'2019-07-23 03:02:06','POS 979',2,-1),(2271,8,1,'2019-07-23 03:06:09','POS 980',2,-1),(2272,5,1,'2019-07-23 03:09:31','POS 981',2,-1),(2273,5,1,'2019-07-23 03:12:13','POS 982',2,-1),(2274,9,1,'2019-07-23 03:12:13','POS 982',2,-1),(2275,5,1,'2019-07-23 03:13:20','POS 983',2,-1),(2276,8,1,'2019-07-23 03:13:20','POS 983',2,-1),(2277,9,1,'2019-07-23 03:15:07','POS 984',2,-1),(2278,7,1,'2019-07-23 03:15:07','POS 984',2,-1),(2279,9,1,'2019-07-23 03:16:22','POS 985',2,-1),(2280,9,1,'2019-07-23 03:25:18','POS 986',2,-1),(2281,49,1,'2019-07-23 09:53:11','POS 987',2,-1),(2282,9,1,'2019-07-23 21:35:40','POS 988',2,-1),(2283,8,1,'2019-07-23 21:35:40','POS 988',2,-1),(2284,14,1,'2019-07-23 22:16:09','POS 989',2,-1),(2285,1,1,'2019-07-24 00:55:15','POS 990',2,-1),(2286,5,1,'2019-07-24 00:55:15','POS 990',2,-1),(2287,16,1,'2019-07-24 04:17:01','POS 991',2,-1),(2288,16,1,'2019-07-24 04:18:30','POS 992',2,-1),(2289,44,1,'2019-07-24 04:18:30','POS 992',2,-1),(2290,49,1,'2019-07-25 04:47:20','POS 993',2,-1),(2291,1,1,'2019-07-29 22:12:18','POS 994',2,-1),(2292,5,1,'2019-07-29 22:14:25','POS 995',2,-1),(2293,6,1,'2019-07-29 22:14:25','POS 995',2,-1),(2294,5,1,'2019-07-29 23:53:43','POS 996',2,-1),(2295,6,1,'2019-07-29 23:53:43','POS 996',2,-1),(2296,5,1,'2019-07-30 01:52:51','POS 997',2,-1),(2297,8,1,'2019-07-30 01:52:51','POS 997',2,-1),(2298,5,1,'2019-07-30 01:53:51','POS 998',2,-1),(2299,5,1,'2019-07-30 01:55:07','POS 999',2,-1),(2300,16,1,'2019-07-30 02:36:30','POS 1000',2,-1),(2301,5,1,'2019-07-30 02:36:30','POS 1000',2,-1),(2302,1,1,'2019-07-30 19:35:50','POS 1001',2,-1),(2303,5,1,'2019-07-30 19:35:50','POS 1001',2,-1),(2304,6,1,'2019-07-30 19:36:15','POS 1002',2,-1),(2305,5,1,'2019-07-30 19:36:15','POS 1002',2,-1),(2306,5,1,'2019-07-30 19:41:38','POS 1003',2,-1),(2307,5,1,'2019-07-30 20:11:38','POS 1004',2,-1),(2308,6,1,'2019-07-30 20:11:38','POS 1004',2,-1),(2309,5,1,'2019-07-30 20:12:03','POS 1005',2,-1),(2310,6,1,'2019-07-30 20:12:03','POS 1005',2,-1),(2311,5,1,'2019-07-30 23:08:58','POS 1006',2,-1),(2312,6,1,'2019-07-30 23:08:58','POS 1006',2,-1),(2313,6,1,'2019-07-30 23:10:04','POS 1007',2,-1),(2314,8,1,'2019-07-30 23:10:04','POS 1007',2,-1),(2315,5,1,'2019-07-30 23:12:14','POS 1008',2,-1),(2316,47,1,'2019-07-30 23:24:04','POS 1009',2,-1),(2317,6,1,'2019-07-30 23:24:04','POS 1009',2,-1),(2318,5,1,'2019-07-31 00:22:06','POS 1010',2,-1),(2319,9,1,'2019-07-31 00:22:06','POS 1010',2,-1),(2320,9,1,'2019-07-31 00:24:02','POS 1011',2,-1),(2321,9,1,'2019-07-31 00:29:48','POS 1012',2,-1),(2322,8,1,'2019-07-31 00:29:48','POS 1012',2,-1),(2323,8,1,'2019-07-31 00:32:57','POS 1013',2,-1),(2324,7,1,'2019-07-31 00:35:49','POS 1014',2,-1),(2325,9,1,'2019-07-31 00:35:49','POS 1014',2,-1),(2326,48,1,'2019-07-31 00:45:59','POS 1015',2,-1),(2327,7,1,'2019-07-31 00:50:11','POS 1016',2,-1),(2328,8,1,'2019-07-31 00:57:05','POS 1017',2,-1),(2329,8,1,'2019-07-31 01:05:14','POS 1018',2,-1),(2330,44,1,'2019-07-31 01:05:14','POS 1018',2,-1),(2331,45,1,'2019-07-31 01:05:14','POS 1018',2,-1),(2332,45,1,'2019-07-31 01:06:31','POS 1019',2,-1),(2333,6,1,'2019-07-31 01:25:21','POS 1020',2,-1),(2334,8,1,'2019-07-31 01:25:21','POS 1020',2,-1),(2335,9,1,'2019-07-31 01:25:21','POS 1020',2,-1),(2336,8,1,'2019-07-31 01:31:35','POS 1021',2,1),(2337,9,1,'2019-07-31 01:31:35','POS 1021',2,2),(2338,8,1,'2019-07-31 01:32:23','POS 1022',2,-1),(2339,9,1,'2019-07-31 01:32:23','POS 1022',2,-1),(2340,400,1,'2019-07-31 01:40:28','POS 1023',2,-8),(2341,9,1,'2019-07-31 01:42:30','POS 1024',2,-1),(2342,8,1,'2019-07-31 01:42:30','POS 1024',2,-1),(2343,8,1,'2019-07-31 02:22:29','POS 1025',2,-2),(2344,400,1,'2019-07-31 02:22:29','POS 1025',2,-1),(2345,9,1,'2019-07-31 02:23:51','POS 1026',2,-1),(2346,400,1,'2019-07-31 02:23:51','POS 1026',2,-1),(2347,5,1,'2019-07-31 02:25:23','POS 1027',2,-1),(2348,9,1,'2019-07-31 02:32:00','POS 1028',2,-1),(2349,44,1,'2019-07-31 02:39:50','POS 1029',2,-1),(2350,44,1,'2019-07-31 02:44:00','POS 1030',2,-1),(2351,8,1,'2019-07-31 02:44:00','POS 1030',2,-1),(2352,44,1,'2019-07-31 02:51:14','POS 1031',2,-1),(2353,55,1,'2019-07-31 02:53:41','POS 1032',2,-1),(2354,45,1,'2019-07-31 03:04:05','POS 1033',2,-1),(2355,44,1,'2019-07-31 03:04:05','POS 1033',2,-1),(2356,44,1,'2019-07-31 03:05:31','POS 1034',2,-1),(2357,44,1,'2019-07-31 03:08:12','POS 1035',2,-1),(2358,44,1,'2019-07-31 03:15:59','POS 1036',2,-1),(2359,45,1,'2019-07-31 03:17:40','POS 1037',2,-1),(2360,44,1,'2019-07-31 03:31:26','POS 1038',2,-1),(2361,45,1,'2019-07-31 03:31:26','POS 1038',2,-1),(2362,45,1,'2019-07-31 03:36:16','POS 1039',2,-1),(2363,44,1,'2019-07-31 03:53:12','POS 1040',2,-1),(2364,45,1,'2019-07-31 03:53:12','POS 1040',2,-1),(2365,9,1,'2019-07-31 03:54:55','POS 1041',2,-1),(2366,8,1,'2019-07-31 03:54:55','POS 1041',2,-1),(2367,44,1,'2019-07-31 03:54:55','POS 1041',2,-1),(2368,44,1,'2019-07-31 04:11:23','POS 1042',2,-1),(2369,44,1,'2019-07-31 04:13:39','POS 1043',2,-1),(2370,44,1,'2019-07-31 04:16:40','POS 1044',2,-1),(2371,400,1,'2019-07-31 04:18:56','POS 1045',2,-2),(2372,44,1,'2019-07-31 04:18:56','POS 1045',2,-1),(2373,44,1,'2019-07-31 04:19:27','POS 1046',2,-1),(2374,44,1,'2019-07-31 04:55:54','POS 1047',2,-1),(2375,45,1,'2019-07-31 04:56:54','POS 1048',2,-1),(2376,5,1,'2019-07-31 05:08:35','POS 1049',2,-1),(2377,44,1,'2019-07-31 06:27:51','POS 1050',2,-1),(2378,4,1,'2019-07-31 18:05:04','POS 1051',2,-1),(2379,44,1,'2019-07-31 18:10:17','POS 1052',2,-1),(2380,44,1,'2019-07-31 18:25:42','POS 1053',2,-1),(2381,45,1,'2019-07-31 18:28:06','POS 1054',2,-1),(2382,44,1,'2019-07-31 18:29:58','POS 1055',2,-1),(2383,45,1,'2019-07-31 18:29:58','POS 1055',2,-1),(2384,44,1,'2019-07-31 18:33:17','POS 1056',2,-1),(2385,45,1,'2019-07-31 18:34:25','POS 1057',2,-1),(2386,44,1,'2019-07-31 18:36:06','POS 1058',2,-1),(2387,8,1,'2019-07-31 18:36:51','POS 1059',2,-1),(2388,44,1,'2019-07-31 19:24:20','POS 1060',2,-1),(2389,44,1,'2019-07-31 19:25:57','POS 1061',2,-1),(2390,44,1,'2019-07-31 19:32:59','POS 1062',2,-1),(2391,45,1,'2019-07-31 19:32:59','POS 1062',2,-1),(2392,44,1,'2019-07-31 19:38:28','POS 1063',2,-1),(2393,44,1,'2019-07-31 19:40:03','POS 1064',2,-1),(2394,44,1,'2019-07-31 19:43:50','POS 1065',2,-1),(2395,5,1,'2019-07-31 21:40:59','POS 1066',2,-1),(2396,8,1,'2019-07-31 21:40:59','POS 1066',2,-1),(2397,5,1,'2019-07-31 21:42:41','POS 1067',2,-1),(2398,6,1,'2019-07-31 21:42:41','POS 1067',2,-1),(2399,5,1,'2019-07-31 21:46:44','POS 1068',2,-1),(2400,9,1,'2019-07-31 21:46:44','POS 1068',2,-1),(2401,400,1,'2019-07-31 21:49:01','POS 1069',2,-1),(2402,55,1,'2019-07-31 21:49:01','POS 1069',2,-1),(2403,55,1,'2019-07-31 21:51:22','POS 1070',2,-2),(2404,44,1,'2019-07-31 22:14:46','POS 1071',2,-1),(2405,55,1,'2019-07-31 22:14:46','POS 1071',2,-1),(2406,400,1,'2019-07-31 22:40:02','POS 1072',2,-1),(2407,14,1,'2019-07-31 22:40:02','POS 1072',2,-1),(2408,44,1,'2019-08-01 04:18:57','POS 1073',2,-1),(2409,5,1,'2019-08-01 04:19:23','POS 1074',2,-1),(2410,44,1,'2019-08-02 01:38:36','POS 1075',2,-1),(2411,45,1,'2019-08-02 01:38:36','POS 1075',2,-1),(2412,44,1,'2019-08-02 01:38:55','POS 1076',2,-1),(2413,44,1,'2019-08-03 19:30:41','POS 1077',2,-1),(2414,44,1,'2019-08-03 19:31:01','POS 1078',2,-1),(2415,8,1,'2019-08-03 19:47:55','POS 1079',2,-1),(2416,44,1,'2019-08-03 19:50:43','POS 1080',2,-1),(2417,45,1,'2019-08-03 19:52:04','POS 1081',2,-1),(2418,45,1,'2019-08-03 20:12:47','POS 1082',2,-1),(2419,44,1,'2019-08-03 20:12:47','POS 1082',2,-1),(2420,45,1,'2019-08-03 20:14:08','POS 1083',2,-1),(2421,44,1,'2019-08-03 20:14:08','POS 1083',2,-1),(2422,44,1,'2019-08-03 20:17:11','POS 1084',2,-1),(2423,44,1,'2019-08-03 20:46:29','POS 1085',2,-1),(2424,45,1,'2019-08-03 20:46:29','POS 1085',2,-1),(2425,8,1,'2019-08-03 20:46:29','POS 1085',2,-1),(2426,44,1,'2019-08-03 20:53:06','POS 1086',2,-1),(2427,400,1,'2019-08-03 23:13:38','POS 1087',2,-1),(2428,55,1,'2019-08-03 23:13:38','POS 1087',2,-1),(2429,44,1,'2019-08-03 23:15:59','POS 1088',2,-1),(2430,45,1,'2019-08-03 23:15:59','POS 1088',2,-1),(2431,49,1,'2019-08-03 23:20:26','POS 1089',2,-1),(2432,44,1,'2019-08-03 23:20:26','POS 1089',2,-1),(2433,44,1,'2019-08-03 23:21:38','POS 1090',2,-1),(2434,44,1,'2019-08-03 23:22:51','POS 1091',2,-1),(2435,55,1,'2019-08-03 23:24:00','POS 1092',2,-1),(2436,44,1,'2019-08-04 19:10:18','POS 1093',2,-1),(2437,45,1,'2019-08-04 19:10:18','POS 1093',2,-1),(2438,44,1,'2019-08-04 19:10:31','POS 1094',2,-1),(2439,45,1,'2019-08-04 19:10:31','POS 1094',2,-1),(2440,44,1,'2019-08-04 19:13:41','POS 1095',2,-1),(2441,45,1,'2019-08-04 19:13:41','POS 1095',2,-1),(2442,44,1,'2019-08-04 19:17:16','POS 1096',2,-1),(2443,45,1,'2019-08-04 19:17:16','POS 1096',2,-1),(2444,44,1,'2019-08-04 19:24:38','POS 1097',2,-1),(2445,49,1,'2019-08-04 19:54:59','POS 1098',2,-1),(2446,44,1,'2019-08-04 19:57:37','POS 1099',2,-1),(2447,45,1,'2019-08-04 19:57:37','POS 1099',2,-1),(2448,7,1,'2019-08-04 19:57:37','POS 1099',2,-1),(2449,400,1,'2019-08-04 19:57:37','POS 1099',2,-1),(2450,44,1,'2019-08-05 03:11:37','POS 1100',2,-1),(2451,45,1,'2019-08-05 03:11:37','POS 1100',2,-1),(2452,44,1,'2019-08-05 03:12:18','POS 1101',2,-1),(2453,400,1,'2019-08-05 03:12:18','POS 1101',2,-1),(2454,44,1,'2019-08-05 03:25:40','POS 1102',2,-1),(2455,44,1,'2019-08-05 03:26:29','POS 1103',2,-1),(2456,44,1,'2019-08-05 04:17:28','POS 1104',2,-1),(2457,44,1,'2019-08-05 04:18:36','POS 1105',2,-1),(2458,3,1,'2019-08-05 17:31:29','POS 1106',2,-1),(2459,3,1,'2019-08-05 17:31:50','POS 1107',2,-1),(2460,3,1,'2019-08-05 17:49:21','POS 1108',2,-1),(2461,16,1,'2019-08-06 00:45:38','POS 1109',2,-1),(2462,9,1,'2019-08-06 00:47:39','POS 1110',2,-1),(2463,50,1,'2019-08-06 00:49:19','POS 1111',2,-1),(2464,16,1,'2019-08-06 05:19:06','POS 1112',2,-1),(2465,49,1,'2019-08-06 05:22:32','POS 1113',2,-1),(2466,111,1,'2019-08-21 22:16:23','POS 1114',2,-1),(2467,105,1,'2019-08-21 22:20:20','POS 1115',2,-1),(2468,105,1,'2019-08-21 22:26:08','POS 1116',2,-1),(2469,105,1,'2019-08-21 22:27:24','POS 1117',2,-1),(2470,105,1,'2019-08-21 22:38:43','POS 1118',2,-1),(2471,105,1,'2019-08-21 22:40:38','POS 1119',2,-1),(2472,105,1,'2019-08-21 22:44:04','POS 1120',2,-1),(2473,1,1,'2019-08-21 22:48:40','POS 1121',2,-1),(2474,1,1,'2019-08-21 23:02:33','POS 1122',2,-1),(2475,1,1,'2019-08-21 23:09:40','POS 1123',2,-1),(2476,2,1,'2019-08-21 23:13:33','POS 1124',2,-1),(2477,1,1,'2019-08-22 01:11:50','POS 1125',2,-1),(2478,1,1,'2019-08-22 02:44:48','POS 1126',2,-1),(2479,105,1,'2019-08-22 02:45:10','POS 1127',2,-1),(2480,5,1,'2019-08-22 05:01:01','POS 1128',2,0),(2481,110,1,'2019-08-22 05:41:14','POS 1129',2,-1),(2482,96,1,'2019-08-22 05:42:41','POS 1130',2,-1),(2483,5,1,'2019-08-22 05:44:05','POS 1131',2,-1),(2484,45,1,'2019-08-22 05:56:42','POS 1132',2,-1),(2485,45,1,'2019-08-22 05:57:08','POS 1133',2,-1),(2486,45,1,'2019-08-22 05:58:13','POS 1134',2,-1),(2487,152,1,'2019-08-23 20:35:27','POS 1135',2,-3),(2488,1,1,'2019-08-23 20:51:12','POS 1136',2,-12),(2489,15,1,'2019-08-23 20:51:12','POS 1136',2,-9),(2490,148,1,'2019-08-23 20:53:00','POS 1137',2,-2),(2491,150,1,'2019-08-23 20:58:13','POS 1138',2,-6),(2492,14,1,'2019-08-23 21:05:20','POS 1139',2,-3),(2493,150,1,'2019-08-23 21:11:33','POS 1140',2,-4),(2494,132,1,'2019-08-23 21:13:28','POS 1141',2,-2),(2495,14,1,'2019-08-23 21:57:25','POS 1142',2,-3),(2496,5,1,'2019-08-23 21:57:25','POS 1142',2,-2),(2497,13,1,'2019-08-23 22:01:27','POS 1143',2,-1),(2498,12,1,'2019-08-23 22:01:27','POS 1143',2,-2),(2499,35,1,'2019-08-23 22:01:27','POS 1143',2,-1),(2500,12,1,'2019-08-23 22:03:48','POS 1144',2,-4),(2501,13,1,'2019-08-23 22:03:48','POS 1144',2,-1),(2502,13,1,'2019-08-23 22:08:32','POS 1145',2,-1),(2503,10,1,'2019-08-23 22:10:28','POS 1146',2,-3),(2504,130,1,'2019-08-23 22:13:12','POS 1147',2,-2),(2505,130,1,'2019-08-23 22:13:52','POS 1148',2,-2),(2506,13,1,'2019-08-23 22:18:10','POS 1149',2,-4),(2507,15,1,'2019-08-23 22:26:54','POS 1150',2,-6),(2508,123,1,'2019-08-23 22:26:54','POS 1150',2,-5),(2509,13,1,'2019-08-23 22:32:01','POS 1151',2,-2),(2510,150,1,'2019-08-23 22:36:41','POS 1152',2,-2),(2511,14,1,'2019-08-23 22:38:59','POS 1153',2,-2),(2512,150,1,'2019-08-23 22:41:53','POS 1154',2,-3),(2513,150,1,'2019-08-23 22:42:55','POS 1155',2,-3),(2514,14,1,'2019-08-23 23:13:50','POS 1156',2,-2),(2515,18,1,'2019-08-23 23:13:50','POS 1156',2,-2),(2516,35,1,'2019-08-23 23:13:50','POS 1156',2,-1),(2517,13,1,'2019-08-23 23:19:41','POS 1157',2,-2),(2518,150,1,'2019-08-23 23:24:25','POS 1158',2,-2),(2519,150,1,'2019-08-23 23:25:50','POS 1159',2,-4),(2520,150,1,'2019-08-23 23:38:31','POS 1160',2,-3),(2521,150,1,'2019-08-23 23:43:54','POS 1161',2,-1),(2522,23,1,'2019-08-23 23:48:47','POS 1162',2,-1),(2523,5,1,'2019-08-23 23:53:31','POS 1163',2,-1),(2524,148,1,'2019-08-23 23:53:31','POS 1163',2,-3),(2525,14,1,'2019-08-23 23:53:31','POS 1163',2,-2),(2526,14,1,'2019-08-24 00:08:18','POS 1164',2,-2),(2527,23,1,'2019-08-24 00:08:18','POS 1164',2,0),(2528,15,1,'2019-08-24 00:27:53','POS 1165',2,-16),(2529,18,1,'2019-08-24 00:32:29','POS 1166',2,-2),(2530,35,1,'2019-08-24 00:37:53','POS 1167',2,-1),(2531,92,1,'2019-08-24 00:37:53','POS 1167',2,-1),(2532,35,1,'2019-08-24 00:40:13','POS 1168',2,-2),(2533,10,1,'2019-08-24 00:43:25','POS 1169',2,-12),(2534,14,1,'2019-08-24 00:43:25','POS 1169',2,-1),(2535,35,1,'2019-08-24 00:46:44','POS 1170',2,-1),(2536,35,1,'2019-08-24 00:48:53','POS 1171',2,0),(2537,150,1,'2019-08-24 00:48:53','POS 1171',2,-2),(2538,15,1,'2019-08-24 00:51:10','POS 1172',2,-2),(2539,10,1,'2019-08-24 00:51:10','POS 1172',2,-3),(2540,15,1,'2019-08-24 00:53:50','POS 1173',2,-13),(2541,15,1,'2019-08-24 00:56:11','POS 1174',2,-2),(2542,14,1,'2019-08-24 01:00:22','POS 1175',2,-2),(2543,150,1,'2019-08-24 01:07:49','POS 1176',2,-2),(2544,1,1,'2019-08-25 19:48:27','POS 1177',2,-12),(2545,15,1,'2019-08-25 19:48:27','POS 1177',2,-9),(2546,150,1,'2019-08-25 20:04:34','POS 1178',2,-9),(2547,15,1,'2019-08-25 20:04:34','POS 1178',2,-10),(2548,5,1,'2019-08-25 20:04:34','POS 1178',2,-1),(2549,23,1,'2019-08-25 20:04:34','POS 1178',2,-6),(2550,14,1,'2019-08-25 20:04:34','POS 1178',2,-3),(2551,37,1,'2019-08-25 20:04:34','POS 1178',2,-2),(2552,1,1,'2019-08-25 20:06:26','POS 1179',2,-48),(2553,3,1,'2019-08-25 20:22:20','POS 1180',2,-2),(2554,1,1,'2019-08-25 20:22:20','POS 1180',2,-2),(2555,21,1,'2019-08-25 20:22:20','POS 1180',2,-2),(2556,37,1,'2019-08-25 20:22:20','POS 1180',2,-1),(2557,5,1,'2019-08-25 20:22:20','POS 1180',2,-12),(2558,23,1,'2019-08-25 20:22:20','POS 1180',2,-2),(2559,150,1,'2019-08-25 20:22:20','POS 1180',2,-4),(2560,123,1,'2019-08-25 20:22:20','POS 1180',2,-1),(2561,10,1,'2019-08-25 20:22:20','POS 1180',2,-3),(2562,15,1,'2019-08-25 20:22:20','POS 1180',2,-12),(2563,123,1,'2019-08-25 20:24:01','POS 1181',2,-10),(2564,15,1,'2019-08-25 20:25:09','POS 1182',2,-4),(2565,15,1,'2019-08-25 20:42:00','POS 1183',2,-7),(2566,14,1,'2019-08-25 20:42:00','POS 1183',2,-2),(2567,152,1,'2019-08-25 20:42:00','POS 1183',2,-14),(2568,150,1,'2019-08-25 20:42:00','POS 1183',2,-15),(2569,5,1,'2019-08-25 20:42:00','POS 1183',2,-1),(2570,150,1,'2019-08-25 20:50:47','POS 1184',2,-1),(2571,150,1,'2019-08-25 20:56:28','POS 1185',2,-1),(2572,1,1,'2019-08-25 21:33:07','POS 1186',2,-48),(2573,150,1,'2019-08-25 21:35:34','POS 1187',2,-2),(2574,148,1,'2019-08-25 21:37:06','POS 1188',2,-1),(2575,132,1,'2019-08-25 21:42:03','POS 1189',2,-2),(2576,160,1,'2019-08-25 21:44:02','POS 1190',2,-2),(2577,12,1,'2019-08-25 22:45:47','POS 1191',2,-4);
/*!40000 ALTER TABLE `ospos_inventory` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_item_kit_items`
--

DROP TABLE IF EXISTS `ospos_item_kit_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_item_kit_items` (
  `item_kit_id` int(11) NOT NULL,
  `item_id` int(11) NOT NULL,
  `quantity` decimal(15,2) NOT NULL,
  PRIMARY KEY (`item_kit_id`,`item_id`,`quantity`),
  KEY `ospos_item_kit_items_ibfk_2` (`item_id`),
  CONSTRAINT `ospos_item_kit_items_ibfk_1` FOREIGN KEY (`item_kit_id`) REFERENCES `ospos_item_kits` (`item_kit_id`) ON DELETE CASCADE,
  CONSTRAINT `ospos_item_kit_items_ibfk_2` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_item_kit_items`
--

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

--
-- Table structure for table `ospos_item_kits`
--

DROP TABLE IF EXISTS `ospos_item_kits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_item_kits` (
  `item_kit_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  PRIMARY KEY (`item_kit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_item_kits`
--

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

--
-- Table structure for table `ospos_item_quantities`
--

DROP TABLE IF EXISTS `ospos_item_quantities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_item_quantities` (
  `item_id` int(11) NOT NULL,
  `location_id` int(11) NOT NULL,
  `quantity` decimal(10,3) NOT NULL DEFAULT '0.000',
  PRIMARY KEY (`item_id`,`location_id`),
  KEY `item_id` (`item_id`),
  KEY `location_id` (`location_id`),
  CONSTRAINT `ospos_item_quantities_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`),
  CONSTRAINT `ospos_item_quantities_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `ospos_stock_locations` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_item_quantities`
--

LOCK TABLES `ospos_item_quantities` WRITE;
/*!40000 ALTER TABLE `ospos_item_quantities` DISABLE KEYS */;
INSERT INTO `ospos_item_quantities` VALUES (1,2,-207.006),(2,2,-1.000),(3,2,-13.584),(4,2,1.457),(5,2,-82.385),(6,2,-19.000),(7,2,-2.730),(8,2,-114.978),(9,2,-126.000),(10,2,-9.765),(12,2,44.715),(13,2,-93.758),(14,2,-21.029),(15,2,-84.382),(16,2,-3.368),(17,2,-0.054),(18,2,-5.076),(19,2,6.010),(20,2,4.032),(21,2,-2.000),(22,2,-4.000),(23,2,-15.743),(24,2,3.350),(25,2,-1.700),(26,2,-1.000),(27,2,-1.597),(28,2,-13.458),(29,2,-1.000),(30,2,-3.000),(31,2,-5.000),(32,2,0.000),(33,2,13.000),(34,2,5.620),(35,2,-9.902),(36,2,0.000),(37,2,19.504),(38,2,8.000),(44,2,-141.708),(45,2,-23.000),(46,2,-4.800),(47,2,-0.500),(48,2,-18.000),(49,2,-7.000),(50,2,-2.000),(51,2,3.618),(52,2,-14.000),(53,2,-9.846),(54,2,516.000),(55,2,-9.000),(56,2,5.000),(57,2,5.000),(58,2,-2.000),(63,2,4.500),(64,2,-22.000),(65,2,-10.000),(66,2,-5.300),(67,2,-5.370),(75,2,-8.500),(76,2,0.000),(92,2,-1.000),(96,2,-1.000),(105,2,-7.000),(110,2,-1.000),(111,2,-1.000),(123,2,-16.000),(130,2,-4.000),(132,2,-4.000),(148,2,-6.394),(150,2,-64.000),(152,2,-17.110),(160,2,-2.040),(400,2,-17.000);
/*!40000 ALTER TABLE `ospos_item_quantities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_items`
--

DROP TABLE IF EXISTS `ospos_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_items` (
  `name` varchar(255) NOT NULL,
  `category` varchar(255) NOT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `item_number` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `cost_price` decimal(15,2) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `reorder_level` decimal(15,2) NOT NULL DEFAULT '0.00',
  `receiving_quantity` int(11) NOT NULL DEFAULT '1',
  `item_id` int(10) NOT NULL AUTO_INCREMENT,
  `allow_alt_description` tinyint(1) NOT NULL,
  `is_serialized` tinyint(1) NOT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  `custom1` varchar(25) NOT NULL,
  `custom2` varchar(25) NOT NULL,
  `custom3` varchar(25) NOT NULL,
  `custom4` varchar(25) NOT NULL,
  `custom5` varchar(25) NOT NULL,
  `custom6` varchar(25) NOT NULL,
  `custom7` varchar(25) NOT NULL,
  `custom8` varchar(25) NOT NULL,
  `custom9` varchar(25) NOT NULL,
  `custom10` varchar(25) NOT NULL,
  PRIMARY KEY (`item_id`),
  KEY `ospos_items_ibfk_1` (`supplier_id`)
) ENGINE=InnoDB AUTO_INCREMENT=161 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_items`
--

LOCK TABLES `ospos_items` WRITE;
/*!40000 ALTER TABLE `ospos_items` DISABLE KEYS */;
INSERT INTO `ospos_items` VALUES ('Chicken Thighs KG','All',NULL,'8001','',0.00,8.95,0.00,1,1,0,0,0,'','','','','','','','','',''),('Chicken Leg Qtr KG','All',NULL,'8002','',0.00,8.95,0.00,1,2,0,0,0,'','','','','','','','','',''),('Chicken Wings KG','All',NULL,'8003','',0.00,8.95,0.00,1,3,0,0,0,'','','','','','','','','',''),('Chicken Nibbles KG','All',NULL,'8004','',0.00,9.95,0.00,1,4,0,0,0,'','','','','','','','','',''),('Chicken Drumstick KG','All',NULL,'8005','',0.00,8.95,0.00,1,5,0,0,0,'','','','','','','','','',''),('Chicken Mince KG','All',NULL,'8006','',0.00,13.00,0.00,1,6,0,0,0,'','','','','','','','','',''),('Chicken Liver KG','All',NULL,'8007','',0.00,7.95,0.00,1,7,0,0,0,'','','','','','','','','',''),('Chicken Giblet KG','All',NULL,'8008','',0.00,7.95,0.00,1,8,0,0,0,'','','','','','','','','',''),('Chicken Breast KG','All',NULL,'8009','',0.00,10.95,0.00,1,9,0,0,0,'','','','','','','','','',''),('Lamb Fores KG','All',NULL,'8010','',0.00,20.95,0.00,1,10,0,0,0,'','','','','','','','','',''),('Lamb Chumps KG','All',NULL,'8012','',0.00,17.95,0.00,1,12,0,0,0,'','','','','','','','','',''),('Lamb Chops KG','All',NULL,'8013','',0.00,22.95,0.00,1,13,0,0,0,'','','','','','','','','',''),('Lamb Neck KG','All',NULL,'8014','',0.00,14.95,0.00,1,14,0,0,0,'','','','','','','','','',''),('Lamb BBQ Chops KG','All',NULL,'8015','',0.00,22.95,0.00,1,15,0,0,0,'','','','','','','','','',''),('Boneless Lamb KG','All',NULL,'8016','',0.00,21.95,0.00,1,16,0,0,0,'','','','','','','','','',''),('Boneless Lamb Stirfry Pack','All',NULL,'8017','',0.00,24.95,0.00,1,17,0,0,0,'','','','','','','','','',''),('Lamb Shank KG','All',NULL,'8018','',0.00,19.95,0.00,1,18,0,0,0,'','','','','','','','','',''),('Lamb Shoulder Shank KG','All',NULL,'8019','',0.00,20.95,0.00,1,19,0,0,0,'','','','','','','','','',''),('Lamb Shoulder PCS KG','All',NULL,'8020','',0.00,14.95,0.00,1,20,0,0,0,'','','','','','','','','',''),('Lamb Mince KG','All',NULL,'8021','',0.00,16.95,0.00,1,21,0,0,0,'','','','','','','','','',''),('Kawakawa Kg','All',NULL,'8022','',0.00,16.95,0.00,1,22,0,0,0,'','','','','','','','','',''),('Slice Marlin KG','All',NULL,'8023','',0.00,12.95,0.00,1,23,0,0,0,'','','','','','','','','',''),('Slice Wahoo KG','All',NULL,'8024','',0.00,13.95,0.00,1,24,0,0,0,'','','','','','','','','',''),('Slice Walu KG','All',NULL,'8025','',0.00,17.95,0.00,1,25,0,0,0,'','','','','','','','','',''),('Slice Ogo KG','All',NULL,'8026','',0.00,9.95,0.00,1,26,0,0,0,'','','','','','','','','',''),('Slice Ogo KG','All',NULL,'8027','',0.00,9.95,0.00,1,27,0,0,0,'','','','','','','','','',''),('Marlin Loins KG','All',NULL,'8028','',0.00,18.95,0.00,1,28,0,0,0,'','','','','','','','','',''),('Wahoo Fillets KG','All',NULL,'8029','',0.00,25.95,0.00,1,29,0,0,0,'','','','','','','','','',''),('Mahimahi Fillets KG','All',NULL,'8030','',0.00,25.95,0.00,1,30,0,0,0,'','','','','','','','','',''),('Beef Neck KG','All',NULL,'8031','',0.00,8.95,0.00,1,31,0,0,0,'','','','','','','','','',''),('Local Beef Rump Kg','All',NULL,'8032','',0.00,12.95,0.00,1,32,0,0,0,'','','','','','','','','',''),('Scotch Kg','All',NULL,'8033','',0.00,19.95,0.00,1,33,0,0,0,'','','','','','','','','',''),('Sirloin Kg','All',NULL,'8034','',0.00,19.95,0.00,1,34,0,0,0,'','','','','','','','','',''),('Precooked Lamb Sausage Kg','All',NULL,'8035','',0.00,9.95,0.00,1,35,0,0,0,'','','','','','','','','',''),('Precooked L/Sausage 500g','All',NULL,'8036','',0.00,4.50,0.00,1,36,0,0,0,'','','','','','','','','',''),('Beef Mince KG','All',NULL,'8037','',0.00,9.95,0.00,1,37,0,0,0,'','','','','','','','','',''),('test','All',NULL,'8038','',0.00,0.00,0.00,1,38,0,0,0,'','','','','','','','','',''),('test no vat','All',NULL,'8039','',0.00,0.00,0.00,1,39,0,0,0,'','','','','','','','','',''),('no vat tes','All',NULL,'8040','',0.00,0.00,0.00,1,40,0,0,0,'','','','','','','','','',''),('testing nonvat','All',NULL,'8041','',0.00,0.00,0.00,1,41,0,0,0,'','','','','','','','','',''),('VAT item test','All',NULL,'8042','',0.00,0.00,0.00,1,42,0,0,0,'','','','','','','','','',''),('Lamb Neck Whole KG','All',NULL,'8043','',0.00,13.95,0.00,1,43,0,0,0,'','','','','','','','','',''),('Lamb Curry Pcs','All',NULL,'8044','',0.00,16.95,0.00,1,44,0,0,0,'','','','','','','','','',''),('SUN FISH','All',NULL,'8045','',0.00,8.95,0.00,1,45,0,0,0,'','','','','','','','','',''),('FISH CHUNK','All',NULL,'8046','',0.00,8.95,0.00,1,46,0,0,0,'','','','','','','','','',''),('Walu Fillet','All',NULL,'8047','',0.00,27.95,0.00,1,47,0,0,0,'','','','','','','','','',''),('Beef Short Ribs','All',NULL,'8048','',0.00,11.95,0.00,1,48,0,0,0,'','','','','','','','','',''),('Beef Gravy','All',NULL,'8049','',0.00,10.95,0.00,1,49,0,0,0,'','','','','','','','','',''),('Beef  Local Fillets','All',NULL,'8050','',0.00,29.95,0.00,1,50,0,0,0,'','','','','','','','','',''),('Lamb Bonless Netted','All',NULL,'8051','',0.00,31.50,0.00,1,51,0,0,0,'','','','','','','','','',''),('Beef Sirloin Local','All',NULL,'8052','',0.00,19.95,0.00,1,52,0,0,0,'','','','','','','','','',''),('Lamb Leg','All',NULL,'8053','',0.00,24.95,0.00,1,53,0,0,0,'','','','','','','','','',''),('Beef Cuberoll Imported','All',NULL,'8054','',0.00,49.00,0.00,1,54,0,0,0,'','','','','','','','','',''),('Beef Tenderloin Imported','All',NULL,'8055','',0.00,49.00,0.00,1,55,0,0,0,'','','','','','','','','',''),('Beef Rump Imported','All',NULL,'8056','',0.00,26.00,0.00,1,56,0,0,0,'','','','','','','','','',''),('Beef Bones','All',NULL,'8057','',0.00,2.95,0.00,1,57,0,0,0,'','','','','','','','','',''),('Beef Striploins Imported','All',NULL,'8058','',0.00,39.00,0.00,1,58,0,0,0,'','','','','','','','','',''),('Fish Curry Pcs','All',NULL,'8059','',0.00,11.95,0.00,1,59,0,0,0,'','','','','','','','','',''),('Tuna Loin','All',NULL,'8060','',0.00,23.95,0.00,1,60,0,0,0,'','','','','','','','','',''),('Beef Brsisket','All',NULL,'8061','',0.00,7.95,0.00,1,61,0,0,0,'','','','','','','','','',''),('Lamb Boneless Shortloin','All',NULL,'8062','',0.00,65.00,0.00,1,62,0,0,0,'','','','','','','','','',''),('Lamb Frenched Rack','All',NULL,'8063','',0.00,75.00,0.00,1,63,0,0,0,'','','','','','','','','',''),('Beef  T- Bone','All',NULL,'8064','',0.00,35.00,0.00,1,64,0,0,0,'','','','','','','','','',''),('Goat','All',NULL,'8065','',0.00,19.95,0.00,1,65,0,0,0,'','','','','','','','','',''),('Beef Scotch','All',NULL,'8066','',0.00,19.95,0.00,1,66,0,0,0,'','','','','','','','','',''),('Chicken Curry Pcs','All',NULL,'8067','',0.00,9.95,0.00,1,67,0,0,0,'','','','','','','','','',''),('Slice Fish','All',NULL,'8068','',0.00,9.95,0.00,1,68,0,0,0,'','','','','','','','','',''),('CHICKEN','All',NULL,'8069','',0.00,9.95,0.00,1,69,0,0,0,'','','','','','','','','',''),('Beef Butt','All',NULL,'8070','',0.00,13.95,0.00,1,70,0,0,0,'','','','','','','','','',''),('Beef Shin','All',NULL,'8071','',0.00,13.95,0.00,1,71,0,0,0,'','','','','','','','','',''),('ALBACO TUNA','All',NULL,'8072','',0.00,7.95,0.00,1,72,0,0,0,'','','','','','','','','',''),('FISH MARLIN WHOLE','All',NULL,'8073','',0.00,10.95,0.00,1,73,0,0,0,'','','','','','','','','',''),('Beef Rolled Corned Beef','All',NULL,'8074','',0.00,18.95,0.00,1,74,0,0,0,'','','','','','','','','',''),('Lamb Cutlet','All',NULL,'8075','',0.00,49.00,0.00,1,75,0,0,0,'','','','','','','','','',''),('Sugar','All',NULL,'8076','',0.00,9.95,0.00,1,76,0,0,0,'','','','','','','','','',''),('Lobster Green','All',NULL,'8077','',0.00,49.00,0.00,1,77,0,0,0,'','','','','','','','','',''),('AIYAZ','All',NULL,'8078','',0.00,0.00,0.00,1,78,0,0,0,'','','','','','','','','',''),('Chicken Supreme Boneless','All',NULL,'8079','',0.00,16.95,0.00,1,79,0,0,0,'','','','','','','','','',''),('Beef Topside Local','All',NULL,'8080','',0.00,12.95,0.00,1,80,0,0,0,'','','','','','','','','',''),('Lamb Rack','All',NULL,'8081','',0.00,45.00,0.00,1,81,0,0,0,'','','','','','','','','',''),('Whole Walu','All',NULL,'8082','',0.00,12.95,0.00,1,82,0,0,0,'','','','','','','','','',''),('Crabs','All',NULL,'8083','',0.00,35.00,0.00,1,83,0,0,0,'','','','','','','','','',''),('Beef Meaty Bones','All',NULL,'8084','',0.00,6.95,0.00,1,84,0,0,0,'','','','','','','','','',''),('Almond Milk','All',NULL,'8085','',0.00,9.95,0.00,1,85,0,0,0,'','','','','','','','','',''),('Plate Size Fish','All',NULL,'8086','',0.00,17.95,0.00,1,86,0,0,0,'','','','','','','','','',''),('Beef Diced','All',NULL,'8087','',0.00,13.95,0.00,1,87,0,0,0,'','','','','','','','','',''),('Marshmallows','All',NULL,'8088','',0.00,12.95,0.00,1,88,0,0,0,'','','','','','','','','',''),('Spico Mix','All',NULL,'8089','',0.00,12.95,0.00,1,89,0,0,0,'','','','','','','','','',''),('Lamb Rump','All',NULL,'8090','',0.00,55.00,0.00,1,90,0,0,0,'','','','','','','','','',''),('Beef Chopsyue Strips','All',NULL,'8091','',0.00,14.95,0.00,1,91,0,0,0,'','','','','','','','','',''),('Plastic Bag','All',NULL,'8092','',0.00,0.20,0.00,1,92,0,0,0,'','','','','','','','','',''),('Cartage','All',NULL,'8093','',0.00,0.00,0.00,1,93,0,0,0,'','','','','','','','','',''),('Vegetable Samosa','All',NULL,'8094','',0.00,9.95,0.00,1,94,0,0,0,'','','','','','','','','',''),('Spring Roll','All',NULL,'8095','',0.00,9.95,0.00,1,95,0,0,0,'','','','','','','','','',''),('Prawn Cutlets 31/40','All',NULL,'8096','',0.00,35.00,0.00,1,96,0,0,0,'','','','','','','','','',''),('Mix Vegetables 250grms','All',NULL,'8097','',0.00,1.50,0.00,1,97,0,0,0,'','','','','','','','','',''),('Spicy Lamb Sausage','All',NULL,'8098','',0.00,10.95,0.00,1,98,0,0,0,'','','','','','','','','',''),('Lamb Chops Selected','All',NULL,'8099','',0.00,22.95,0.00,1,99,0,0,0,'','','','','','','','','',''),('Prawn Meat','All',NULL,'8100','',0.00,15.95,0.00,1,100,0,0,0,'','','','','','','','','',''),('Seafood Extender','All',NULL,'8101','',0.00,20.00,0.00,1,101,0,0,0,'','','','','','','','','',''),('Seafood Stick','All',NULL,'8102','',0.00,15.95,0.00,1,102,0,0,0,'','','','','','','','','',''),('Fries','All',NULL,'8103','',0.00,11.95,0.00,1,103,0,0,0,'','','','','','','','','',''),('Rice Milk Natural','All',NULL,'8104','',0.00,0.00,0.00,1,104,0,0,0,'','','','','','','','','',''),('DUCK','All',NULL,'8105','',0.00,0.00,0.00,1,105,0,0,0,'','','','','','','','','',''),('Crest Chic #12','All',NULL,'9416335001062','',0.00,12.95,0.00,1,106,0,0,0,'','','','','','','','','',''),('Crest Chic #15','All',NULL,'9416335001093','',0.00,15.95,0.00,1,107,0,0,0,'','','','','','','','','',''),('Crest Chic #16','All',NULL,'9416335001109','',0.00,16.95,0.00,1,108,0,0,0,'','','','','','','','','',''),('Crest Chic #17','All',NULL,'9416335001116','',0.00,17.95,0.00,1,109,0,0,0,'','','','','','','','','',''),('Crest Chic #18','All',NULL,'9416335001123','',0.00,18.95,0.00,1,110,0,0,0,'','','','','','','','','',''),('Crest Chic #19','All',NULL,'9416335001130','',0.00,16.95,0.00,1,111,0,0,0,'','','','','','','','','',''),('Crest Chic #8','All',NULL,'9416335001024','',0.00,8.95,0.00,1,112,0,0,0,'','','','','','','','','',''),('Crest Chic #9','All',NULL,'9416335001031','',0.00,9.95,0.00,1,113,0,0,0,'','','','','','','','','',''),('Crest Chic feet 1KG','All',NULL,'9416335001505','',0.00,3.99,0.00,1,114,0,0,0,'','','','','','','','','',''),('Crest Chic Giblet 500g','All',NULL,'9416335001482','',0.00,6.95,0.00,1,115,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers 500g','All',NULL,'9416335002212','',0.00,3.29,0.00,1,116,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers chipotle 500g','All',NULL,'9416335002908','',0.00,3.29,0.00,1,117,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers hg 500g','All',NULL,'9416335002267','',0.00,6.29,0.00,1,118,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers hg 500g','All',NULL,'9416335002250','',0.00,3.29,0.00,1,119,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers onion 1kg','All',NULL,'9416335002243','',0.00,6.29,0.00,1,120,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers org 1kg','All',NULL,'9416335002229','',0.00,6.29,0.00,1,121,0,0,0,'','','','','','','','','',''),('Crest Chic Wings 1kg','All',NULL,'9416335003042','',0.00,11.95,0.00,1,122,0,0,0,'','','','','','','','','',''),('Crest chick #14','All',NULL,'9416335001086','',0.00,13.49,0.00,1,123,0,0,0,'','','','','','','','','',''),('Crest chick. mince','All',NULL,'9416335002939','',0.00,6.95,0.00,1,124,0,0,0,'','','','','','','','','',''),('Crest Chicken 10','All',NULL,'9416335001048','',0.00,10.95,0.00,1,125,0,0,0,'','','','','','','','','',''),('Crest Chicken No 11','All',NULL,'9416335001055','',0.00,11.95,0.00,1,126,0,0,0,'','','','','','','','','',''),('Crest Chicken No -13','All',NULL,'9416335001079','',0.00,13.95,0.00,1,127,0,0,0,'','','','','','','','','',''),('Crest Chix No - 22','All',NULL,'9416335001161','',0.00,22.95,0.00,1,128,0,0,0,'','','','','','','','','',''),('Crest Drumstick 1kg','All',NULL,'9416335003028','',0.00,11.95,0.00,1,129,0,0,0,'','','','','','','','','',''),('Crest frankfurters 500g','All',NULL,'9416335001635','',0.00,5.59,0.00,1,130,0,0,0,'','','','','','','','','',''),('Crest Giblet 500g','All',NULL,'9416335001437','',0.00,6.49,0.00,1,131,0,0,0,'','','','','','','','','',''),('Crest Soup Pack 1kg','All',NULL,'9416335001475','',0.00,5.50,0.00,1,132,0,0,0,'','','','','','','','','',''),('Crest Thighs 1kg','All',NULL,'9416335003035','',0.00,11.55,0.00,1,133,0,0,0,'','','','','','','','','',''),('ROOSTER CHICK 15','All',NULL,'9418036000153','',0.00,14.69,0.00,1,134,0,0,0,'','','','','','','','','',''),('ROOSTER CHICK 16','All',NULL,'9418036000160','',0.00,15.29,0.00,1,135,0,0,0,'','','','','','','','','',''),('Rooster chicken 1.9 kg','All',NULL,'9418036000191','',0.00,16.99,0.00,1,136,0,0,0,'','','','','','','','','',''),('Rooster Chicken 18','All',NULL,'9418036000184','',0.00,16.99,0.00,1,137,0,0,0,'','','','','','','','','',''),('Rooster Chix No 10','All',NULL,'9418036000108','',0.00,7.95,0.00,1,138,0,0,0,'','','','','','','','','',''),('rooster giblet 500gm','All',NULL,'9418036001020','',0.00,4.95,0.00,1,139,0,0,0,'','','','','','','','','',''),('rooster liver 500gm','All',NULL,'9418036001013','',0.00,3.45,0.00,1,140,0,0,0,'','','','','','','','','',''),('rooster soup pack 1kg','All',NULL,'9418036000320','',0.00,7.49,0.00,1,141,0,0,0,'','','','','','','','','',''),('ROOSTER VALUE LINE 17 CHICK','All',NULL,'9418036000306','',0.00,14.75,0.00,1,142,0,0,0,'','','','','','','','','',''),('ROOSTER VALUE LINE 20 CHICK','All',NULL,'9418036000337','',0.00,16.95,0.00,1,143,0,0,0,'','','','','','','','','',''),('Roster chick # 17','All',NULL,'9418036000177','',0.00,14.50,0.00,1,144,0,0,0,'','','','','','','','','',''),('Roster chick #12','All',NULL,'9418036000122','',0.00,11.30,0.00,1,145,0,0,0,'','','','','','','','','',''),('Roster chick #13','All',NULL,'9418036000139','',0.00,12.50,0.00,1,146,0,0,0,'','','','','','','','','',''),('Roster chick #14','All',NULL,'9418036000146','',0.00,12.95,0.00,1,147,0,0,0,'','','','','','','','','',''),('Chicken Back','All',NULL,'8148','',0.00,4.95,0.00,1,148,0,0,0,'','','','','','','','','',''),('Chicken Neck','All',NULL,'8149','',0.00,2.95,0.00,1,149,0,0,0,'','','','','','','','','',''),('Fish Offcuts','All',NULL,'','',0.00,2.50,0.00,1,150,0,0,0,'','','','','','','','','',''),('Meat Offcuts','ALL',NULL,'','',0.00,1.50,0.00,1,151,0,0,0,'','','','','','','','','',''),('Fish Heads','All',NULL,'8152','',0.00,0.50,0.00,1,152,0,0,0,'','','','','','','','','',''),('Chicken Patties 600g','All',NULL,'','',0.00,9.95,0.00,1,159,0,0,0,'','','','','','','','','',''),('Lamb Rack Caps','All',NULL,'','',0.00,7.95,0.00,1,160,0,0,0,'','','','','','','','','','');
/*!40000 ALTER TABLE `ospos_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_items1`
--

DROP TABLE IF EXISTS `ospos_items1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_items1` (
  `name` varchar(255) NOT NULL,
  `category` varchar(255) NOT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `item_number` varchar(255) DEFAULT NULL,
  `description` varchar(255) NOT NULL,
  `cost_price` decimal(15,2) NOT NULL,
  `unit_price` decimal(15,2) NOT NULL,
  `reorder_level` decimal(15,2) NOT NULL DEFAULT '0.00',
  `receiving_quantity` int(11) NOT NULL DEFAULT '1',
  `item_id` int(10) NOT NULL AUTO_INCREMENT,
  `allow_alt_description` tinyint(1) NOT NULL,
  `is_serialized` tinyint(1) NOT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  `custom1` varchar(25) NOT NULL,
  `custom2` varchar(25) NOT NULL,
  `custom3` varchar(25) NOT NULL,
  `custom4` varchar(25) NOT NULL,
  `custom5` varchar(25) NOT NULL,
  `custom6` varchar(25) NOT NULL,
  `custom7` varchar(25) NOT NULL,
  `custom8` varchar(25) NOT NULL,
  `custom9` varchar(25) NOT NULL,
  `custom10` varchar(25) NOT NULL,
  PRIMARY KEY (`item_id`),
  UNIQUE KEY `item_number` (`item_number`),
  KEY `ospos_items_ibfk_1` (`supplier_id`)
) ENGINE=InnoDB AUTO_INCREMENT=153 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_items1`
--

LOCK TABLES `ospos_items1` WRITE;
/*!40000 ALTER TABLE `ospos_items1` DISABLE KEYS */;
INSERT INTO `ospos_items1` VALUES ('Chicken Thighs KG','All',NULL,'8001','',0.00,8.95,0.00,1,1,0,0,0,'','','','','','','','','',''),('Chicken Leg Qtr KG','All',NULL,'8002','',0.00,10.95,0.00,1,2,0,0,0,'','','','','','','','','',''),('Chicken Wings KG','All',NULL,'8003','',0.00,7.95,0.00,1,3,0,0,0,'','','','','','','','','',''),('Chicken Nibbles KG','All',NULL,'8004','',0.00,13.95,0.00,1,4,0,0,0,'','','','','','','','','',''),('Chicken Drumstick KG','All',NULL,'8005','',0.00,8.95,0.00,1,5,0,0,0,'','','','','','','','','',''),('Chicken Mince KG','All',NULL,'8006','',0.00,13.00,0.00,1,6,0,0,0,'','','','','','','','','',''),('Chicken Liver KG','All',NULL,'8007','',0.00,7.95,0.00,1,7,0,0,0,'','','','','','','','','',''),('Chicken Giblet KG','All',NULL,'8008','',0.00,5.92,0.00,1,8,0,0,0,'','','','','','','','','',''),('Chicken Breast KG','All',NULL,'8009','',0.00,10.78,0.00,1,9,0,0,0,'','','','','','','','','',''),('Lamb Fores KG','All',NULL,'8010','',0.00,18.95,0.00,1,10,0,0,0,'','','','','','','','','',''),('Lamb Chumps KG','All',NULL,'8011','',0.00,15.95,0.00,1,11,0,0,0,'','','','','','','','','',''),('Lamb Chops KG','All',NULL,'8012','',0.00,19.95,0.00,1,12,0,0,0,'','','','','','','','','',''),('Lamb Neck KG','All',NULL,'8013','',0.00,14.95,0.00,1,13,0,0,0,'','','','','','','','','',''),('Lamb BBQ Chops KG','All',NULL,'8014','',0.00,19.95,0.00,1,14,0,0,0,'','','','','','','','','',''),('Boneless Lamb KG','All',NULL,'8015','',0.00,21.95,0.00,1,15,0,0,0,'','','','','','','','','',''),('Boneless Lamb Stirfry Pack','All',NULL,'8016','',0.00,24.95,0.00,1,16,0,0,0,'','','','','','','','','',''),('Lamb Shank KG','All',NULL,'8017','',0.00,17.95,0.00,1,17,0,0,0,'','','','','','','','','',''),('Lamb Shoulder Shank KG','All',NULL,'8018','',0.00,18.95,0.00,1,18,0,0,0,'','','','','','','','','',''),('Lamb Shoulder PCS KG','All',NULL,'8019','',0.00,14.95,0.00,1,19,0,0,0,'','','','','','','','','',''),('Lamb Mince KG','All',NULL,'8020','',0.00,13.95,0.00,1,20,0,0,0,'','','','','','','','','',''),('Kawakawa Kg','All',NULL,'8021','',0.00,14.95,0.00,1,21,0,0,0,'','','','','','','','','',''),('Slice Marlin KG','All',NULL,'8022','',0.00,12.95,0.00,1,22,0,0,0,'','','','','','','','','',''),('Slice Wahoo KG','All',NULL,'8023','',0.00,13.95,0.00,1,23,0,0,0,'','','','','','','','','',''),('Slice Walu KG','All',NULL,'8024','',0.00,15.95,0.00,1,24,0,0,0,'','','','','','','','','',''),('Slice Ogo KG','All',NULL,'8025','',0.00,9.95,0.00,1,25,0,0,0,'','','','','','','','','',''),('Slice Ogo KG','All',NULL,'8026','',0.00,9.95,0.00,1,26,0,0,0,'','','','','','','','','',''),('Marlin Loins KG','All',NULL,'8027','',0.00,18.95,0.00,1,27,0,0,0,'','','','','','','','','',''),('Wahoo Fillets KG','All',NULL,'8028','',0.00,25.95,0.00,1,28,0,0,0,'','','','','','','','','',''),('Mahimahi Fillets KG','All',NULL,'8029','',0.00,25.95,0.00,1,29,0,0,0,'','','','','','','','','',''),('Beef Neck KG','All',NULL,'8030','',0.00,8.95,0.00,1,30,0,0,0,'','','','','','','','','',''),('Local Beef Rump Kg','All',NULL,'8031','',0.00,11.95,0.00,1,31,0,0,0,'','','','','','','','','',''),('Scotch Kg','All',NULL,'8032','',0.00,17.95,0.00,1,32,0,0,0,'','','','','','','','','',''),('Sirloin Kg','All',NULL,'8033','',0.00,17.95,0.00,1,33,0,0,0,'','','','','','','','','',''),('Precooked Lamb Sausage Kg','All',NULL,'8034','',0.00,7.95,0.00,1,34,0,0,0,'','','','','','','','','',''),('Precooked L/Sausage 500g','All',NULL,'8035','',0.00,4.50,0.00,1,35,0,0,0,'','','','','','','','','',''),('Beef Mince KG','All',NULL,'8036','',0.00,9.95,0.00,1,36,0,0,0,'','','','','','','','','',''),('test','All',NULL,'8037','',0.00,0.00,0.00,1,37,0,0,0,'','','','','','','','','',''),('test no vat','All',NULL,'8038','',0.00,0.00,0.00,1,38,0,0,0,'','','','','','','','','',''),('no vat tes','All',NULL,'8039','',0.00,0.00,0.00,1,39,0,0,0,'','','','','','','','','',''),('testing nonvat','All',NULL,'8040','',0.00,0.00,0.00,1,40,0,0,0,'','','','','','','','','',''),('VAT item test','All',NULL,'8041','',0.00,0.00,0.00,1,41,0,0,0,'','','','','','','','','',''),('Lamb Neck Whole KG','All',NULL,'8042','',0.00,13.95,0.00,1,42,0,0,0,'','','','','','','','','',''),('Lamb Curry Pcs','All',NULL,'8043','',0.00,14.95,0.00,1,43,0,0,0,'','','','','','','','','',''),('SUN FISH','All',NULL,'8044','',0.00,8.95,0.00,1,44,0,0,0,'','','','','','','','','',''),('FISH CHUNK','All',NULL,'8045','',0.00,7.95,0.00,1,45,0,0,0,'','','','','','','','','',''),('Walu Fillet','All',NULL,'8046','',0.00,28.95,0.00,1,46,0,0,0,'','','','','','','','','',''),('Beef Short Ribs','All',NULL,'8047','',0.00,10.95,0.00,1,47,0,0,0,'','','','','','','','','',''),('Beef Gravy','All',NULL,'8048','',0.00,10.95,0.00,1,48,0,0,0,'','','','','','','','','',''),('Beef  Local Fillets','All',NULL,'8049','',0.00,28.00,0.00,1,49,0,0,0,'','','','','','','','','',''),('Lamb Bonless Netted','All',NULL,'8050','',0.00,31.50,0.00,1,50,0,0,0,'','','','','','','','','',''),('Beef Sirloin Local','All',NULL,'8051','',0.00,19.95,0.00,1,51,0,0,0,'','','','','','','','','',''),('Lamb Leg','All',NULL,'8052','',0.00,19.95,0.00,1,52,0,0,0,'','','','','','','','','',''),('Beef Cuberoll Imported','All',NULL,'8053','',0.00,0.00,0.00,1,53,0,0,0,'','','','','','','','','',''),('Beef Tenderloin Imported','All',NULL,'8054','',0.00,0.00,0.00,1,54,0,0,0,'','','','','','','','','',''),('Beef Rump Imported','All',NULL,'8055','',0.00,0.00,0.00,1,55,0,0,0,'','','','','','','','','',''),('Beef Bones','All',NULL,'8056','',0.00,2.00,0.00,1,56,0,0,0,'','','','','','','','','',''),('Beef Striploins Imported','All',NULL,'8057','',0.00,0.00,0.00,1,57,0,0,0,'','','','','','','','','',''),('Fish Curry Pcs','All',NULL,'8058','',0.00,0.00,0.00,1,58,0,0,0,'','','','','','','','','',''),('Tuna Loin','All',NULL,'8059','',0.00,0.00,0.00,1,59,0,0,0,'','','','','','','','','',''),('Beef Brsisket','All',NULL,'8060','',0.00,7.95,0.00,1,60,0,0,0,'','','','','','','','','',''),('Lamb Boneless Shortloin','All',NULL,'8061','',0.00,0.00,0.00,1,61,0,0,0,'','','','','','','','','',''),('Lamb Frenched Rack','All',NULL,'8062','',0.00,0.00,0.00,1,62,0,0,0,'','','','','','','','','',''),('Beef  T- Bone','All',NULL,'8063','',0.00,0.00,0.00,1,63,0,0,0,'','','','','','','','','',''),('Goat','All',NULL,'8064','',0.00,19.95,0.00,1,64,0,0,0,'','','','','','','','','',''),('Beef Scotch','All',NULL,'8065','',0.00,15.00,0.00,1,65,0,0,0,'','','','','','','','','',''),('Chicken Curry Pcs','All',NULL,'8066','',0.00,0.00,0.00,1,66,0,0,0,'','','','','','','','','',''),('Slice Fish','All',NULL,'8067','',0.00,0.00,0.00,1,67,0,0,0,'','','','','','','','','',''),('CHICKEN','All',NULL,'8068','',0.00,0.00,0.00,1,68,0,0,0,'','','','','','','','','',''),('Beef Butt','All',NULL,'8069','',0.00,0.00,0.00,1,69,0,0,0,'','','','','','','','','',''),('Beef Shin','All',NULL,'8070','',0.00,0.00,0.00,1,70,0,0,0,'','','','','','','','','',''),('ALBACO TUNA','All',NULL,'8071','',0.00,0.00,0.00,1,71,0,0,0,'','','','','','','','','',''),('FISH MARLIN WHOLE','All',NULL,'8072','',0.00,0.00,0.00,1,72,0,0,0,'','','','','','','','','',''),('Beef Rolled Corned Beef','All',NULL,'8073','',0.00,18.95,0.00,1,73,0,0,0,'','','','','','','','','',''),('Lamb Cutlet','All',NULL,'8074','',0.00,0.00,0.00,1,74,0,0,0,'','','','','','','','','',''),('Sugar','All',NULL,'8075','',0.00,0.00,0.00,1,75,0,0,0,'','','','','','','','','',''),('Lobster Green','All',NULL,'8076','',0.00,0.00,0.00,1,76,0,0,0,'','','','','','','','','',''),('AIYAZ','All',NULL,'8077','',0.00,0.00,0.00,1,77,0,0,0,'','','','','','','','','',''),('Chicken Supreme Boneless','All',NULL,'8078','',0.00,0.00,0.00,1,78,0,0,0,'','','','','','','','','',''),('Beef Topside Local','All',NULL,'8079','',0.00,0.00,0.00,1,79,0,0,0,'','','','','','','','','',''),('Lamb Rack','All',NULL,'8080','',0.00,0.00,0.00,1,80,0,0,0,'','','','','','','','','',''),('Whole Walu','All',NULL,'8081','',0.00,0.00,0.00,1,81,0,0,0,'','','','','','','','','',''),('Crabs','All',NULL,'8082','',0.00,0.00,0.00,1,82,0,0,0,'','','','','','','','','',''),('Beef Meaty Bones','All',NULL,'8083','',0.00,6.95,0.00,1,83,0,0,0,'','','','','','','','','',''),('Almond Milk','All',NULL,'8084','',0.00,0.00,0.00,1,84,0,0,0,'','','','','','','','','',''),('Plate Size Fish','All',NULL,'8085','',0.00,0.00,0.00,1,85,0,0,0,'','','','','','','','','',''),('Beef Diced','All',NULL,'8086','',0.00,0.00,0.00,1,86,0,0,0,'','','','','','','','','',''),('Marshmallows','All',NULL,'8087','',0.00,0.00,0.00,1,87,0,0,0,'','','','','','','','','',''),('Spico Mix','All',NULL,'8088','',0.00,0.00,0.00,1,88,0,0,0,'','','','','','','','','',''),('Lamb Rump','All',NULL,'8089','',0.00,0.00,0.00,1,89,0,0,0,'','','','','','','','','',''),('Beef Chopsyue Strips','All',NULL,'8090','',0.00,0.00,0.00,1,90,0,0,0,'','','','','','','','','',''),('Plastic Bag','All',NULL,'8091','',0.00,0.10,0.00,1,91,0,0,0,'','','','','','','','','',''),('Cartage','All',NULL,'8092','',0.00,0.00,0.00,1,92,0,0,0,'','','','','','','','','',''),('Vegetable Samosa','All',NULL,'9414118500047','',0.00,9.95,0.00,1,93,0,0,0,'','','','','','','','','',''),('Spring Roll','All',NULL,'9414118500030','',0.00,9.95,0.00,1,94,0,0,0,'','','','','','','','','',''),('Prawn Cutlets 31/40','All',NULL,'8095','',0.00,0.00,0.00,1,95,0,0,0,'','','','','','','','','',''),('Mix Vegetables 250grms','All',NULL,'5410376044013','',0.00,1.50,0.00,1,96,0,0,0,'','','','','','','','','',''),('Spicy Lamb Sausage','All',NULL,'8097','',0.00,0.00,0.00,1,97,0,0,0,'','','','','','','','','',''),('Lamb Chops Selected','All',NULL,'8098','',0.00,0.00,0.00,1,98,0,0,0,'','','','','','','','','',''),('Prawn Meat','All',NULL,'8099','',0.00,0.00,0.00,1,99,0,0,0,'','','','','','','','','',''),('Seafood Extender','All',NULL,'8100','',0.00,0.00,0.00,1,100,0,0,0,'','','','','','','','','',''),('Seafood Stick','All',NULL,'8101','',0.00,0.00,0.00,1,101,0,0,0,'','','','','','','','','',''),('Fries','All',NULL,'8102','',0.00,11.95,0.00,1,102,0,0,0,'','','','','','','','','',''),('Rice Milk Natural','All',NULL,'8103','',0.00,0.00,0.00,1,103,0,0,0,'','','','','','','','','',''),('DUCK','All',NULL,'8104','',0.00,0.00,0.00,1,104,0,0,0,'','','','','','','','','',''),('Crest Chic #12','All',NULL,'9416335001062','',0.00,12.95,0.00,1,105,0,0,0,'','','','','','','','','',''),('Crest Chic #15','All',NULL,'9416335001093','',0.00,15.95,0.00,1,106,0,0,0,'','','','','','','','','',''),('Crest Chic #16','All',NULL,'9416335001109','',0.00,16.95,0.00,1,107,0,0,0,'','','','','','','','','',''),('Crest Chic #17','All',NULL,'9416335001116','',0.00,17.95,0.00,1,108,0,0,0,'','','','','','','','','',''),('Crest Chic #18','All',NULL,'9416335001123','',0.00,18.95,0.00,1,109,0,0,0,'','','','','','','','','',''),('Crest Chic #19','All',NULL,'9416335001130','',0.00,19.95,0.00,1,110,0,0,0,'','','','','','','','','',''),('Crest Chic #8','All',NULL,'9416335001024','',0.00,8.95,0.00,1,111,0,0,0,'','','','','','','','','',''),('Crest Chic #9','All',NULL,'9416335001031','',0.00,9.95,0.00,1,112,0,0,0,'','','','','','','','','',''),('Crest Chic feet 1KG','All',NULL,'9416335001505','',0.00,3.99,0.00,1,113,0,0,0,'','','','','','','','','',''),('Crest Chic Giblet 500g','All',NULL,'9416335001482','',0.00,6.95,0.00,1,114,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers 500g','All',NULL,'9416335002212','',0.00,3.29,0.00,1,115,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers chipotle 500g','All',NULL,'9416335002908','',0.00,3.29,0.00,1,116,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers hg 500g','All',NULL,'9416335002267','',0.00,6.29,0.00,1,117,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers hg 500g','All',NULL,'9416335002250','',0.00,3.29,0.00,1,118,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers onion 1kg','All',NULL,'9416335002243','',0.00,6.29,0.00,1,119,0,0,0,'','','','','','','','','',''),('Crest Chic Sizzlers org 1kg','All',NULL,'9416335002229','',0.00,6.29,0.00,1,120,0,0,0,'','','','','','','','','',''),('Crest Chic Wings 1kg','All',NULL,'9416335003042','',0.00,11.95,0.00,1,121,0,0,0,'','','','','','','','','',''),('Crest chick #14','All',NULL,'9416335001086','',0.00,14.95,0.00,1,122,0,0,0,'','','','','','','','','',''),('Crest chick. mince','All',NULL,'9416335002939','',0.00,6.95,0.00,1,123,0,0,0,'','','','','','','','','',''),('Crest Chicken 10','All',NULL,'9416335001048','',0.00,10.95,0.00,1,124,0,0,0,'','','','','','','','','',''),('Crest Chicken No 11','All',NULL,'9416335001055','',0.00,11.95,0.00,1,125,0,0,0,'','','','','','','','','',''),('Crest Chicken No -13','All',NULL,'9416335001079','',0.00,13.95,0.00,1,126,0,0,0,'','','','','','','','','',''),('Crest Chix No - 22','All',NULL,'9416335001161','',0.00,22.95,0.00,1,127,0,0,0,'','','','','','','','','',''),('Crest Drumstick 1kg','All',NULL,'9416335003028','',0.00,11.95,0.00,1,128,0,0,0,'','','','','','','','','',''),('Crest frankfurters 500g','All',NULL,'9416335001635','',0.00,5.59,0.00,1,129,0,0,0,'','','','','','','','','',''),('Crest Giblet 500g','All',NULL,'9416335001437','',0.00,6.49,0.00,1,130,0,0,0,'','','','','','','','','',''),('Crest Soup Pack 1kg','All',NULL,'9416335001475','',0.00,7.49,0.00,1,131,0,0,0,'','','','','','','','','',''),('Crest Thighs 1kg','All',NULL,'9416335003035','',0.00,11.55,0.00,1,132,0,0,0,'','','','','','','','','',''),('ROOSTER CHICK 15','All',NULL,'9418036000153','',0.00,14.69,0.00,1,133,0,0,0,'','','','','','','','','',''),('ROOSTER CHICK 16','All',NULL,'9418036000160','',0.00,15.29,0.00,1,134,0,0,0,'','','','','','','','','',''),('Rooster chicken 1.9 kg','All',NULL,'9418036000191','',0.00,16.99,0.00,1,135,0,0,0,'','','','','','','','','',''),('Rooster Chicken 18','All',NULL,'9418036000184','',0.00,16.99,0.00,1,136,0,0,0,'','','','','','','','','',''),('Rooster Chix No 10','All',NULL,'9418036000108','',0.00,7.95,0.00,1,137,0,0,0,'','','','','','','','','',''),('rooster giblet 500gm','All',NULL,'9418036001020','',0.00,4.95,0.00,1,138,0,0,0,'','','','','','','','','',''),('rooster liver 500gm','All',NULL,'9418036001013','',0.00,3.45,0.00,1,139,0,0,0,'','','','','','','','','',''),('rooster soup pack 1kg','All',NULL,'9418036000320','',0.00,7.49,0.00,1,140,0,0,0,'','','','','','','','','',''),('ROOSTER VALUE LINE 17 CHICK','All',NULL,'9418036000306','',0.00,14.75,0.00,1,141,0,0,0,'','','','','','','','','',''),('ROOSTER VALUE LINE 20 CHICK','All',NULL,'9418036000337','',0.00,16.95,0.00,1,142,0,0,0,'','','','','','','','','',''),('Roster chick # 17','All',NULL,'9418036000177','',0.00,14.50,0.00,1,143,0,0,0,'','','','','','','','','',''),('Roster chick #12','All',NULL,'9418036000122','',0.00,11.30,0.00,1,144,0,0,0,'','','','','','','','','',''),('Roster chick #13','All',NULL,'9418036000139','',0.00,12.50,0.00,1,145,0,0,0,'','','','','','','','','',''),('Roster chick #14','All',NULL,'9418036000146','',0.00,12.95,0.00,1,146,0,0,0,'','','','','','','','','',''),('Chicken Back','All',NULL,'8148','',0.00,3.95,0.00,1,147,0,0,0,'','','','','','','','','',''),('Chicken Neck','All',NULL,'8149','',0.00,2.95,0.00,1,148,0,0,0,'','','','','','','','','',''),('Fish Offcuts','All',NULL,'','',0.00,2.00,0.00,1,149,0,0,0,'','','','','','','','','',''),('Fish Heads','All',NULL,'8152','',0.00,0.50,0.00,1,151,0,0,0,'','','','','','','','','',''),('Chicken Patties 600g','All',NULL,'9416335002021','',8.00,9.95,0.00,1,152,0,0,0,'','','','','','','','','','');
/*!40000 ALTER TABLE `ospos_items1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_items_taxes`
--

DROP TABLE IF EXISTS `ospos_items_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_items_taxes` (
  `item_id` int(10) NOT NULL,
  `name` varchar(255) NOT NULL,
  `percent` decimal(15,2) NOT NULL,
  PRIMARY KEY (`item_id`,`name`,`percent`),
  CONSTRAINT `ospos_items_taxes_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_items_taxes`
--

LOCK TABLES `ospos_items_taxes` WRITE;
/*!40000 ALTER TABLE `ospos_items_taxes` DISABLE KEYS */;
INSERT INTO `ospos_items_taxes` VALUES (1,'VAT',9.00),(2,'VAT',9.00),(3,'VAT',9.00),(4,'VAT',9.00),(5,'VAT',9.00),(6,'VAT',9.00),(7,'VAT',9.00),(8,'VAT',9.00),(9,'VAT',9.00),(10,'VAT',9.00),(12,'VAT',9.00),(13,'VAT',9.00),(14,'VAT',9.00),(15,'VAT',9.00),(16,'VAT',9.00),(17,'VAT',9.00),(18,'VAT',9.00),(19,'VAT',9.00),(20,'VAT',9.00),(21,'VAT',9.00),(22,'VAT',9.00),(23,'VAT',9.00),(24,'VAT',9.00),(25,'VAT',9.00),(26,'VAT',9.00),(27,'VAT',9.00),(28,'VAT',9.00),(29,'VAT',9.00),(30,'VAT',9.00),(31,'VAT',9.00),(32,'VAT',9.00),(33,'VAT',9.00),(34,'VAT',9.00),(35,'VAT',9.00),(36,'VAT',9.00),(37,'VAT',9.00),(38,'VAT',9.00),(39,'VAT',9.00),(40,'VAT',9.00),(41,'VAT',9.00),(42,'VAT',9.00),(43,'VAT',9.00),(44,'VAT',9.00),(45,'VAT',9.00),(46,'VAT',9.00),(47,'VAT',9.00),(48,'VAT',9.00),(49,'VAT',9.00),(50,'VAT',9.00),(51,'VAT',9.00),(52,'VAT',9.00),(53,'VAT',9.00),(54,'VAT',9.00),(55,'VAT',9.00),(56,'VAT',9.00),(57,'VAT',9.00),(58,'VAT',9.00),(59,'VAT',9.00),(60,'VAT',9.00),(61,'VAT',9.00),(62,'VAT',9.00),(63,'VAT',9.00),(64,'VAT',9.00),(65,'VAT',9.00),(66,'VAT',9.00),(67,'VAT',9.00),(68,'VAT',9.00),(69,'VAT',9.00),(70,'VAT',9.00),(71,'VAT',9.00),(72,'VAT',9.00),(73,'VAT',9.00),(74,'VAT',9.00),(75,'VAT',9.00),(76,'VAT',9.00),(77,'VAT',9.00),(78,'VAT',9.00),(79,'VAT',9.00),(80,'VAT',9.00),(81,'VAT',9.00),(82,'VAT',9.00),(83,'VAT',9.00),(84,'VAT',9.00),(85,'VAT',9.00),(86,'VAT',9.00),(87,'VAT',9.00),(88,'VAT',9.00),(89,'VAT',9.00),(90,'VAT',9.00),(91,'VAT',9.00),(92,'VAT',9.00),(93,'VAT',9.00),(94,'VAT',9.00),(95,'VAT',9.00),(96,'VAT',9.00),(97,'VAT',9.00),(98,'VAT',9.00),(99,'VAT',9.00),(100,'VAT',9.00),(101,'VAT',9.00),(102,'VAT',9.00),(103,'VAT',9.00),(104,'VAT',9.00),(105,'VAT',9.00),(106,'VAT',9.00),(107,'VAT',9.00),(108,'VAT',9.00),(109,'VAT',9.00),(110,'VAT',9.00),(111,'VAT',9.00),(112,'VAT',9.00),(113,'VAT',9.00),(114,'VAT',9.00),(115,'VAT',9.00),(116,'VAT',9.00),(117,'VAT',9.00),(118,'VAT',9.00),(119,'VAT',9.00),(120,'VAT',9.00),(121,'VAT',9.00),(122,'VAT',9.00),(123,'VAT',9.00),(124,'VAT',9.00),(125,'VAT',9.00),(126,'VAT',9.00),(127,'VAT',9.00),(128,'VAT',9.00),(129,'VAT',9.00),(130,'VAT',9.00),(131,'VAT',9.00),(132,'VAT',9.00),(133,'VAT',9.00),(134,'VAT',9.00),(135,'VAT',9.00),(136,'VAT',9.00),(137,'VAT',9.00),(138,'VAT',9.00),(139,'VAT',9.00),(140,'VAT',9.00),(141,'VAT',9.00),(142,'VAT',9.00),(143,'VAT',9.00),(144,'VAT',9.00),(145,'VAT',9.00),(146,'VAT',9.00),(147,'VAT',9.00),(148,'VAT',9.00),(149,'VAT',9.00),(150,'VAT',9.00),(152,'VAT',9.00),(159,'VAT',9.00);
/*!40000 ALTER TABLE `ospos_items_taxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_items_taxes1`
--

DROP TABLE IF EXISTS `ospos_items_taxes1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_items_taxes1` (
  `item_id` int(10) NOT NULL,
  `name` varchar(255) NOT NULL,
  `percent` decimal(15,2) NOT NULL,
  PRIMARY KEY (`item_id`,`name`,`percent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_items_taxes1`
--

LOCK TABLES `ospos_items_taxes1` WRITE;
/*!40000 ALTER TABLE `ospos_items_taxes1` DISABLE KEYS */;
INSERT INTO `ospos_items_taxes1` VALUES (1,'VAT',9.00),(3,'VAT',9.00),(4,'VAT',9.00),(5,'VAT',9.00),(6,'VAT',9.00),(7,'VAT',9.00),(8,'VAT',9.00),(9,'VAT',9.00),(10,'VAT',9.00),(11,'VAT',9.00),(12,'VAT',9.00),(13,'VAT',9.00),(14,'VAT',9.00),(15,'VAT',9.00),(16,'VAT',9.00),(17,'VAT',9.00),(18,'VAT',9.00),(19,'VAT',9.00),(20,'VAT',9.00),(21,'VAT',9.00),(22,'VAT',9.00),(37,'VAT',9.00),(38,'VAT',9.00),(44,'VAT',9.00),(45,'VAT',9.00),(46,'VAT',9.00),(47,'VAT',9.00),(48,'VAT',9.00),(49,'VAT',9.00),(51,'VAT',0.00),(52,'VAT',9.00),(53,'VAT',9.00),(54,'VAT',9.00),(55,'VAT',9.00),(56,'VAT',9.00),(57,'VAT',9.00),(58,'VAT',9.00),(63,'VAT',9.00),(64,'VAT',9.00),(65,'VAT',9.00),(66,'VAT',9.00),(67,'VAT',9.00),(75,'VAT',9.00),(76,'VAT',9.00);
/*!40000 ALTER TABLE `ospos_items_taxes1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_modules`
--

DROP TABLE IF EXISTS `ospos_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_modules` (
  `name_lang_key` varchar(255) NOT NULL,
  `desc_lang_key` varchar(255) NOT NULL,
  `sort` int(10) NOT NULL,
  `module_id` varchar(255) NOT NULL,
  PRIMARY KEY (`module_id`),
  UNIQUE KEY `desc_lang_key` (`desc_lang_key`),
  UNIQUE KEY `name_lang_key` (`name_lang_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_modules`
--

LOCK TABLES `ospos_modules` WRITE;
/*!40000 ALTER TABLE `ospos_modules` DISABLE KEYS */;
INSERT INTO `ospos_modules` VALUES ('module_config','module_config_desc',100,'config'),('module_customers','module_customers_desc',10,'customers'),('module_employees','module_employees_desc',80,'employees'),('module_giftcards','module_giftcards_desc',90,'giftcards'),('module_items','module_items_desc',20,'items'),('module_item_kits','module_item_kits_desc',30,'item_kits'),('module_receivings','module_receivings_desc',60,'receivings'),('module_reports','module_reports_desc',50,'reports'),('module_sales','module_sales_desc',70,'sales'),('module_suppliers','module_suppliers_desc',40,'suppliers');
/*!40000 ALTER TABLE `ospos_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_people`
--

DROP TABLE IF EXISTS `ospos_people`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_people` (
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `phone_number` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `address_1` varchar(255) NOT NULL,
  `address_2` varchar(255) NOT NULL,
  `city` varchar(255) NOT NULL,
  `state` varchar(255) NOT NULL,
  `zip` varchar(255) NOT NULL,
  `country` varchar(255) NOT NULL,
  `comments` text NOT NULL,
  `person_id` int(10) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_people`
--

LOCK TABLES `ospos_people` WRITE;
/*!40000 ALTER TABLE `ospos_people` DISABLE KEYS */;
INSERT INTO `ospos_people` VALUES ('Aslam','Mohammed','','','','','','','','','',1),('tebara','test','','','','','','','','','',2),('Aiyub','Hassan','','','','','','','','','',3),('mskhan','manager','','','','','','','','','',4),('MSKHAN','GROUP','9754343','mskhaninvestments@gmail.com','9miles','','Suva','','','Fiji','',5);
/*!40000 ALTER TABLE `ospos_people` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_permissions`
--

DROP TABLE IF EXISTS `ospos_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_permissions` (
  `permission_id` varchar(255) NOT NULL,
  `module_id` varchar(255) NOT NULL,
  `location_id` int(10) DEFAULT NULL,
  PRIMARY KEY (`permission_id`),
  KEY `module_id` (`module_id`),
  KEY `ospos_permissions_ibfk_2` (`location_id`),
  CONSTRAINT `ospos_permissions_ibfk_1` FOREIGN KEY (`module_id`) REFERENCES `ospos_modules` (`module_id`) ON DELETE CASCADE,
  CONSTRAINT `ospos_permissions_ibfk_2` FOREIGN KEY (`location_id`) REFERENCES `ospos_stock_locations` (`location_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_permissions`
--

LOCK TABLES `ospos_permissions` WRITE;
/*!40000 ALTER TABLE `ospos_permissions` DISABLE KEYS */;
INSERT INTO `ospos_permissions` VALUES ('config','config',NULL),('customers','customers',NULL),('employees','employees',NULL),('giftcards','giftcards',NULL),('items','items',NULL),('items_stock','items',1),('items_Suva Retail','items',2),('item_kits','item_kits',NULL),('receivings','receivings',NULL),('reports','reports',NULL),('reports_categories','reports',NULL),('reports_customers','reports',NULL),('reports_discounts','reports',NULL),('reports_employees','reports',NULL),('reports_inventory','reports',NULL),('reports_items','reports',NULL),('reports_payments','reports',NULL),('reports_receivings','reports',NULL),('reports_sales','reports',NULL),('reports_suppliers','reports',NULL),('reports_taxes','reports',NULL),('sales','sales',NULL),('suppliers','suppliers',NULL);
/*!40000 ALTER TABLE `ospos_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_pricematrix`
--

DROP TABLE IF EXISTS `ospos_pricematrix`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_pricematrix` (
  `salestype` char(2) NOT NULL DEFAULT '',
  `stockid` varchar(20) NOT NULL DEFAULT '',
  `quantitybreak` int(11) NOT NULL DEFAULT '1',
  `price` double NOT NULL DEFAULT '0',
  `currabrev` char(3) NOT NULL DEFAULT '',
  `startdate` date NOT NULL DEFAULT '0000-00-00',
  `enddate` date NOT NULL DEFAULT '9999-12-31'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_pricematrix`
--

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

--
-- Table structure for table `ospos_receivings`
--

DROP TABLE IF EXISTS `ospos_receivings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_receivings` (
  `receiving_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `supplier_id` int(10) DEFAULT NULL,
  `employee_id` int(10) NOT NULL DEFAULT '0',
  `comment` text NOT NULL,
  `receiving_id` int(10) NOT NULL AUTO_INCREMENT,
  `payment_type` varchar(20) DEFAULT NULL,
  `invoice_number` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`receiving_id`),
  UNIQUE KEY `invoice_number` (`invoice_number`),
  KEY `supplier_id` (`supplier_id`),
  KEY `employee_id` (`employee_id`),
  CONSTRAINT `ospos_receivings_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `ospos_employees` (`person_id`),
  CONSTRAINT `ospos_receivings_ibfk_2` FOREIGN KEY (`supplier_id`) REFERENCES `ospos_suppliers` (`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_receivings`
--

LOCK TABLES `ospos_receivings` WRITE;
/*!40000 ALTER TABLE `ospos_receivings` DISABLE KEYS */;
INSERT INTO `ospos_receivings` VALUES ('2017-07-26 05:39:14',NULL,1,'',1,'Cash',NULL),('2017-07-26 05:45:36',NULL,1,'',2,'Cash',NULL);
/*!40000 ALTER TABLE `ospos_receivings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_receivings_items`
--

DROP TABLE IF EXISTS `ospos_receivings_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_receivings_items` (
  `receiving_id` int(10) NOT NULL DEFAULT '0',
  `item_id` int(10) NOT NULL DEFAULT '0',
  `description` varchar(30) DEFAULT NULL,
  `serialnumber` varchar(30) DEFAULT NULL,
  `line` int(3) NOT NULL,
  `quantity_purchased` decimal(15,2) NOT NULL DEFAULT '0.00',
  `item_cost_price` decimal(15,2) NOT NULL,
  `item_unit_price` decimal(15,2) NOT NULL,
  `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
  `item_location` int(11) NOT NULL,
  PRIMARY KEY (`receiving_id`,`item_id`,`line`),
  KEY `item_id` (`item_id`),
  CONSTRAINT `ospos_receivings_items_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`),
  CONSTRAINT `ospos_receivings_items_ibfk_2` FOREIGN KEY (`receiving_id`) REFERENCES `ospos_receivings` (`receiving_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_receivings_items`
--

LOCK TABLES `ospos_receivings_items` WRITE;
/*!40000 ALTER TABLE `ospos_receivings_items` DISABLE KEYS */;
INSERT INTO `ospos_receivings_items` VALUES (1,36,'','',1,2.00,7.00,7.00,0.00,2),(2,36,'','0',1,4.00,7.00,7.00,0.00,2);
/*!40000 ALTER TABLE `ospos_receivings_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_sales`
--

DROP TABLE IF EXISTS `ospos_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales` (
  `sale_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `customer_id` int(10) DEFAULT NULL,
  `employee_id` int(10) NOT NULL DEFAULT '0',
  `comment` text NOT NULL,
  `invoice_number` varchar(32) DEFAULT NULL,
  `sale_id` int(10) NOT NULL AUTO_INCREMENT,
  `payment_type` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`sale_id`),
  UNIQUE KEY `invoice_number` (`invoice_number`),
  KEY `customer_id` (`customer_id`),
  KEY `employee_id` (`employee_id`),
  CONSTRAINT `ospos_sales_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `ospos_employees` (`person_id`),
  CONSTRAINT `ospos_sales_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `ospos_customers` (`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1192 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales`
--

LOCK TABLES `ospos_sales` WRITE;
/*!40000 ALTER TABLE `ospos_sales` DISABLE KEYS */;
INSERT INTO `ospos_sales` VALUES ('2017-07-24 19:41:55',NULL,1,'0',NULL,1,'Cash: $20.00<br />'),('2017-07-24 21:53:26',NULL,1,'0',NULL,2,'Cash: $20.00<br />'),('2017-07-24 22:43:19',NULL,1,'0',NULL,3,'Cash: $20.00<br />'),('2017-07-24 23:24:28',NULL,1,'0',NULL,4,'Cash: $10.00<br />'),('2017-07-24 23:33:54',NULL,1,'testing',NULL,5,'Cash: $10.00<br />'),('2017-07-24 23:34:36',NULL,1,'0',NULL,6,'Cash: $5.00<br />'),('2017-07-25 04:29:45',NULL,1,'0',NULL,8,'Cash: $2.15<br />'),('2017-07-25 04:31:45',NULL,1,'0',NULL,9,'Cash: $10.00<br />'),('2017-07-25 04:36:46',NULL,1,'0',NULL,10,'Cash: $20.00<br />'),('2017-07-26 02:55:48',NULL,1,'0',NULL,11,'Cash: $248.43<br />'),('2017-07-26 03:18:24',NULL,1,'0',NULL,12,'Cash: $127.82<br />'),('2017-07-26 03:25:40',NULL,1,'0',NULL,13,'Cash: $129.65<br />'),('2017-07-26 03:56:53',NULL,1,'0',NULL,14,'Cash: $34.09<br />'),('2017-07-26 04:18:51',NULL,1,'0',NULL,15,'Cash: $51.98<br />'),('2017-07-26 04:25:17',NULL,1,'0',NULL,16,'Cash: $62.86<br />'),('2017-07-26 04:28:26',NULL,1,'0',NULL,17,'Cash: $40.00<br />'),('2017-07-26 04:52:25',NULL,1,'0',NULL,18,'Cash: $374.52<br />'),('2017-07-26 04:53:47',NULL,1,'0',NULL,19,'Cash: $47.94<br />'),('2017-07-26 20:56:14',NULL,1,'0',NULL,20,'Cash: $100.00<br />'),('2017-07-26 22:02:52',NULL,1,'0',NULL,21,'Cash: $34.05<br />'),('2017-07-26 22:05:35',NULL,1,'0',NULL,22,'Cash: $10.12<br />'),('2017-07-26 22:22:17',NULL,1,'0',NULL,23,'Cash: $20.00<br />'),('2017-07-26 22:42:49',NULL,1,'0',NULL,24,'Cash: $143.27<br />'),('2017-07-26 23:47:43',NULL,1,'0',NULL,25,'Cash: $119.57<br />'),('2017-07-26 23:55:51',NULL,1,'0',NULL,26,'Cash: $89.96<br />'),('2017-07-27 00:27:24',NULL,1,'0',NULL,27,'Cash: $148.56<br />'),('2017-07-27 00:48:49',NULL,1,'0',NULL,28,'Cash: $35.00<br />'),('2017-07-27 01:51:45',NULL,1,'0',NULL,29,'Cash: $49.71<br />'),('2017-07-27 02:00:07',NULL,1,'0',NULL,30,'Cash: $19.96<br />'),('2017-07-27 02:03:54',NULL,1,'0',NULL,31,'Cash: $22.64<br />'),('2017-07-27 03:10:21',NULL,1,'0',NULL,32,'Cash: $31.64<br />'),('2017-07-27 03:12:22',NULL,1,'0',NULL,33,'Cash: $45.81<br />'),('2017-07-27 03:39:12',NULL,1,'0',NULL,34,'Cash: $60.58<br />'),('2017-07-27 03:45:23',NULL,1,'0',NULL,35,'Cash: $112.03<br />'),('2017-07-27 03:48:56',NULL,1,'0',NULL,36,'Cash: $9.46<br />'),('2017-07-27 03:51:54',NULL,1,'0',NULL,37,'Cash: $21.25<br />'),('2017-07-27 04:11:39',NULL,1,'0',NULL,38,'Cash: $21.04<br />'),('2017-07-27 04:35:53',NULL,1,'0',NULL,39,'Cash: $11.29<br />'),('2017-07-27 04:39:15',NULL,1,'0',NULL,40,'Cash: $52.47<br />'),('2017-07-27 04:42:18',NULL,1,'0',NULL,41,'Cash: $11.95<br />'),('2017-07-27 21:18:06',NULL,1,'0',NULL,42,'Cash: $191.32<br />'),('2017-07-27 21:33:19',NULL,1,'0',NULL,43,'Cash: $206.53<br />'),('2017-07-27 21:52:30',NULL,1,'0',NULL,44,'Cash: $85.44<br />'),('2017-07-27 21:54:42',NULL,1,'0',NULL,45,'Cash: $25.24<br />'),('2017-07-27 23:09:57',NULL,1,'0',NULL,46,'Cash: $105.00<br />'),('2017-07-27 23:20:28',NULL,1,'0',NULL,47,'Cash: $332.33<br />'),('2017-07-27 23:25:45',NULL,1,'0',NULL,48,'Cash: $23.74<br />'),('2017-07-27 23:49:43',NULL,1,'0',NULL,49,'Cash: $22.54<br />'),('2017-07-28 00:14:39',NULL,1,'0',NULL,50,'Cash: $78.67<br />'),('2017-07-28 00:19:58',NULL,1,'0',NULL,51,'Cash: $27.95<br />'),('2017-07-28 02:45:51',NULL,1,'0',NULL,52,'Cash: $22.79<br />'),('2017-07-28 03:32:37',NULL,1,'0',NULL,53,'Cash: $22.04<br />'),('2017-07-28 03:57:46',NULL,1,'0',NULL,54,'Cash: $30.23<br />'),('2017-07-28 04:10:19',NULL,1,'0',NULL,55,'Cash: $11.21<br />'),('2017-07-28 04:22:38',NULL,1,'0',NULL,56,'Cash: $34.89<br />'),('2017-07-28 20:16:35',NULL,1,'0',NULL,57,'Cash: $85.04<br />'),('2017-07-28 20:21:18',NULL,1,'0',NULL,58,'Cash: $129.58<br />'),('2017-07-28 20:26:09',NULL,1,'0',NULL,59,'Cash: $24.47<br />'),('2017-07-28 20:35:27',NULL,1,'0',NULL,60,'Cash: $1037.77<br />'),('2017-07-28 20:45:22',NULL,1,'0',NULL,61,'Cash: $70.00<br />'),('2017-07-28 21:07:38',NULL,1,'0',NULL,62,'Cash: $486.56<br />'),('2017-07-28 21:30:41',NULL,1,'0',NULL,63,'Cash: $21.37<br />'),('2017-07-28 21:46:02',NULL,1,'0',NULL,64,'Cash: $62.29<br />'),('2017-07-28 21:54:11',NULL,1,'0',NULL,65,'Cash: $47.20<br />'),('2017-07-28 22:16:59',NULL,1,'0',NULL,66,'Cash: $54.20<br />'),('2017-07-28 22:44:28',NULL,1,'0',NULL,67,'Cash: $122.28<br />'),('2017-07-28 22:52:21',NULL,1,'0',NULL,68,'Cash: $23.38<br />'),('2017-07-28 22:54:34',NULL,1,'0',NULL,69,'Cash: $8.25<br />'),('2017-07-28 23:01:23',NULL,1,'0',NULL,70,'Cash: $66.77<br />'),('2017-07-28 23:06:52',NULL,1,'0',NULL,71,'Cash: $229.14<br />'),('2017-07-28 23:08:53',NULL,1,'0',NULL,72,'Cash: $135.34<br />'),('2017-07-28 23:24:30',NULL,1,'0',NULL,73,'Cash: $136.18<br />'),('2017-07-28 23:33:21',NULL,1,'0',NULL,74,'Cash: $43.52<br />'),('2017-07-28 23:37:08',NULL,1,'0',NULL,75,'Cash: $6.50<br />'),('2017-07-28 23:39:44',NULL,1,'0',NULL,76,'Cash: $44.29<br />'),('2017-07-29 00:28:13',NULL,1,'0',NULL,77,'Cash: $23.98<br />'),('2017-07-29 00:33:43',NULL,1,'0',NULL,78,'Cash: $26.20<br />'),('2017-07-29 01:16:01',NULL,1,'0',NULL,79,'Cash: $56.34<br />'),('2017-07-29 01:18:19',NULL,1,'0',NULL,80,'Cash: $40.75<br />'),('2017-07-29 01:21:42',NULL,1,'0',NULL,81,'Cash: $135.14<br />'),('2017-07-29 01:24:04',NULL,1,'0',NULL,82,'Cash: $49.39<br />'),('2017-07-29 01:56:53',NULL,1,'0',NULL,83,'Cash: $65.19<br />'),('2017-07-29 01:59:11',NULL,1,'0',NULL,84,'Cash: $102.99<br />'),('2017-07-29 02:00:30',NULL,1,'0',NULL,85,'Cash: $23.94<br />'),('2017-07-29 02:04:35',NULL,1,'0',NULL,86,'Cash: $6.16<br />'),('2017-07-29 02:10:21',NULL,1,'0',NULL,87,'Cash: $28.68<br />'),('2017-07-29 02:11:48',NULL,1,'0',NULL,88,'Cash: $70.00<br />'),('2017-07-29 02:39:17',NULL,1,'0',NULL,89,'Cash: $46.89<br />'),('2017-07-29 02:40:51',NULL,1,'0',NULL,90,'Cash: $22.90<br />'),('2017-07-29 02:47:51',NULL,1,'0',NULL,91,'Cash: $76.51<br />'),('2017-07-29 02:59:51',NULL,1,'0',NULL,92,'Cash: $48.27<br />'),('2017-07-30 20:05:13',NULL,1,'0',NULL,93,'Cash: $91.94<br />'),('2017-07-30 20:13:36',NULL,1,'0',NULL,94,'Cash: $35.86<br />'),('2017-07-30 21:33:09',NULL,1,'0',NULL,95,'Cash: $39.00<br />'),('2017-07-30 21:35:00',NULL,1,'0',NULL,96,'Cash: $30.00<br />'),('2017-07-30 21:39:10',NULL,1,'0',NULL,97,'Cash: $35.76<br />'),('2017-07-30 22:32:11',NULL,1,'0',NULL,98,'Cash: $12.17<br />'),('2017-07-30 22:35:25',NULL,1,'0',NULL,99,'Cash: $5.86<br />'),('2017-07-30 23:07:53',NULL,1,'0',NULL,100,'Cash: $49.53<br />'),('2017-07-31 04:07:35',NULL,1,'0',NULL,101,'Cash: $44.23<br />'),('2017-07-31 04:26:28',NULL,1,'0',NULL,102,'Cash: $25.59<br />'),('2017-07-31 04:32:19',NULL,1,'0',NULL,103,'Cash: $17.64<br />'),('2017-07-31 21:29:36',NULL,1,'0',NULL,104,'Cash: $206.83<br />'),('2017-07-31 21:37:56',NULL,1,'0',NULL,105,'Cash: $98.40<br />'),('2017-07-31 22:36:40',NULL,1,'0',NULL,106,'Cash: $50.48<br />'),('2017-07-31 23:57:39',NULL,1,'0',NULL,107,'Cash: $7.25<br />'),('2017-08-01 00:17:39',NULL,1,'0',NULL,108,'Cash: $74.03<br />'),('2017-08-01 00:25:19',NULL,1,'0',NULL,109,'Cash: $49.62<br />'),('2017-08-01 01:18:31',NULL,1,'0',NULL,110,'Cash: $54.34<br />'),('2017-08-01 01:25:40',NULL,1,'0',NULL,111,'Cash: $44.19<br />'),('2017-08-01 02:22:10',NULL,1,'0',NULL,112,'Cash: $87.45<br />'),('2017-08-01 02:42:01',NULL,1,'0',NULL,113,'Cash: $64.73<br />'),('2017-08-01 02:50:49',NULL,1,'0',NULL,114,'Cash: $81.44<br />'),('2017-08-01 03:55:00',NULL,1,'0',NULL,115,'Cash: $20.86<br />'),('2017-08-01 03:59:59',NULL,1,'0',NULL,116,'Cash: $15.34<br />'),('2017-08-01 04:04:57',NULL,1,'0',NULL,117,'Cash: $29.73<br />'),('2017-08-01 04:30:37',NULL,1,'0',NULL,118,'Cash: $149.74<br />'),('2017-08-01 04:50:14',NULL,1,'0',NULL,119,'Cash: $20.20<br />'),('2017-08-01 05:00:21',NULL,1,'0',NULL,120,'Cash: $6.80<br />'),('2017-08-01 05:13:35',NULL,1,'0',NULL,121,'Cash: $7.91<br />'),('2017-08-01 22:15:57',NULL,1,'0',NULL,122,'Cash: $2.09<br />'),('2017-08-01 23:31:08',NULL,1,'0',NULL,123,'Cash: $357.62<br />'),('2017-08-01 23:55:44',NULL,1,'0',NULL,124,'Cash: $35.00<br />'),('2017-08-01 23:57:10',NULL,1,'0',NULL,125,'Cash: $42.74<br />'),('2017-08-01 23:58:51',NULL,1,'0',NULL,126,'Cash: $12.00<br />'),('2017-08-01 23:59:57',NULL,1,'0',NULL,127,'Cash: $13.04<br />'),('2017-08-02 00:01:06',NULL,1,'0',NULL,128,'Cash: $18.07<br />'),('2017-08-02 00:06:47',NULL,1,'0',NULL,129,'Cash: $183.94<br />'),('2017-08-02 00:13:54',NULL,1,'0',NULL,130,'Cash: $35.00<br />'),('2017-08-02 00:45:57',NULL,1,'0',NULL,131,'Cash: $98.20<br />'),('2017-08-02 00:48:56',NULL,1,'0',NULL,132,'Cash: $50.62<br />'),('2017-08-02 01:03:42',NULL,1,'0',NULL,133,'Cash: $226.38<br />'),('2017-08-02 01:18:05',NULL,1,'0',NULL,134,'Cash: $31.87<br />'),('2017-08-02 01:22:01',NULL,1,'0',NULL,135,'Cash: $15.20<br />'),('2017-08-02 01:43:43',NULL,1,'0',NULL,136,'Cash: $31.05<br />'),('2017-08-02 02:52:48',NULL,1,'0',NULL,137,'Cash: $44.66<br />'),('2017-08-02 03:21:56',NULL,1,'0',NULL,138,'Cash: $51.47<br />'),('2017-08-02 03:24:14',NULL,1,'0',NULL,139,'Cash: $18.59<br />'),('2017-08-02 03:49:05',NULL,1,'0',NULL,140,'Cash: $77.73<br />'),('2017-08-02 04:07:59',NULL,1,'0',NULL,141,'Cash: $20.33<br />'),('2017-08-02 04:29:18',NULL,1,'0',NULL,142,'Cash: $100.00<br />'),('2017-08-02 04:39:37',NULL,1,'0',NULL,143,'Cash: $4.49<br />'),('2017-08-02 04:44:24',NULL,1,'0',NULL,144,'Cash: $58.11<br />'),('2017-08-02 05:20:34',NULL,1,'0',NULL,145,'Cash: $11.19<br />'),('2017-08-02 21:47:35',NULL,1,'0',NULL,146,'Cash: $52.47<br />'),('2017-08-02 22:07:25',NULL,1,'0',NULL,147,'Cash: $2.09<br />'),('2017-08-02 23:03:17',NULL,1,'0',NULL,148,'Cash: $41.31<br />'),('2017-08-02 23:26:15',NULL,1,'0',NULL,149,'Cash: $14.12<br />'),('2017-08-02 23:59:50',NULL,1,'0',NULL,150,'Cash: $54.00<br />'),('2017-08-03 00:09:59',NULL,1,'0',NULL,151,'Cash: $11.83<br />'),('2017-08-03 01:30:22',NULL,1,'0',NULL,152,'Cash: $196.35<br />'),('2017-08-03 01:32:29',NULL,1,'0',NULL,153,'Cash: $35.00<br />'),('2017-08-03 02:05:07',NULL,1,'0',NULL,154,'Cash: $16.54<br />'),('2017-08-03 02:31:20',NULL,1,'0',NULL,155,'Cash: $46.83<br />'),('2017-08-03 03:22:23',NULL,1,'0',NULL,156,'Cash: $6.86<br />'),('2017-08-03 03:57:04',NULL,1,'0',NULL,157,'Cash: $13.53<br />'),('2017-08-03 05:03:46',NULL,1,'0',NULL,158,'Cash: $5.18<br />'),('2017-08-03 20:17:51',NULL,1,'0',NULL,159,'Cash: $9.38<br />'),('2017-08-03 21:18:33',NULL,1,'0',NULL,160,'Cash: $176.72<br />'),('2017-08-03 21:31:41',NULL,1,'0',NULL,161,'Cash: $40.64<br />'),('2017-08-03 23:05:22',NULL,1,'0',NULL,162,'Cash: $71.44<br />'),('2017-08-04 00:42:08',NULL,1,'0',NULL,163,'Cash: $11.97<br />'),('2017-08-04 02:24:06',NULL,1,'0',NULL,164,'Cash: $220.98<br />'),('2017-08-04 02:34:10',NULL,1,'0',NULL,165,'Cash: $46.45<br />'),('2017-08-04 03:13:45',NULL,1,'0',NULL,166,'Cash: $12.47<br />'),('2017-08-04 03:56:00',NULL,1,'0',NULL,167,'Cash: $24.36<br />'),('2017-08-04 03:57:24',NULL,1,'0',NULL,168,'Cash: $48.74<br />'),('2017-08-04 04:01:58',NULL,1,'0',NULL,169,'Cash: $92.63<br />'),('2017-08-04 04:29:10',NULL,1,'0',NULL,170,'Cash: $523.24<br />'),('2017-08-04 19:59:02',NULL,1,'0',NULL,171,'Cash: $35.46<br />'),('2017-08-04 20:13:59',NULL,1,'0',NULL,172,'Cash: $59.26<br />'),('2017-08-04 20:27:14',NULL,1,'0',NULL,173,'Cash: $30.56<br />'),('2017-08-04 20:28:19',NULL,1,'0',NULL,174,'Cash: $18.41<br />'),('2017-08-04 21:10:25',NULL,1,'0',NULL,175,'Cash: $54.00<br />'),('2017-08-04 21:23:36',NULL,1,'0',NULL,176,'Cash: $385.32<br />'),('2017-08-04 21:28:04',NULL,1,'0',NULL,177,'Cash: $99.60<br />'),('2017-08-04 21:44:04',NULL,1,'0',NULL,178,'Cash: $23.47<br />'),('2017-08-04 21:51:22',NULL,1,'0',NULL,179,'Cash: $157.02<br />'),('2017-08-04 21:53:15',NULL,1,'0',NULL,180,'Cash: $50.65<br />'),('2017-08-04 22:06:36',NULL,1,'0',NULL,181,'Cash: $19.27<br />'),('2017-08-04 22:26:47',NULL,1,'0',NULL,182,'Cash: $14.39<br />'),('2017-08-04 22:40:47',NULL,1,'0',NULL,183,'Cash: $69.09<br />'),('2017-08-04 22:41:56',NULL,1,'0',NULL,184,'Cash: $10.06<br />'),('2017-08-04 22:46:21',NULL,1,'0',NULL,185,'Cash: $337.56<br />'),('2017-08-04 22:59:27',NULL,1,'0',NULL,186,'Cash: $91.43<br />'),('2017-08-04 23:03:02',NULL,1,'0',NULL,187,'Cash: $26.19<br />'),('2017-08-04 23:18:23',NULL,1,'0',NULL,188,'Cash: $13.97<br />'),('2017-08-04 23:33:48',NULL,1,'0',NULL,189,'Cash: $10.05<br />'),('2017-08-04 23:36:38',NULL,1,'0',NULL,190,'Cash: $18.53<br />'),('2017-08-04 23:38:59',NULL,1,'0',NULL,191,'Cash: $73.26<br />'),('2017-08-04 23:50:25',NULL,1,'0',NULL,192,'Cash: $102.47<br />'),('2017-08-04 23:53:15',NULL,1,'0',NULL,193,'Cash: $11.00<br />'),('2017-08-04 23:56:14',NULL,1,'0',NULL,194,'Cash: $37.00<br />'),('2017-08-05 00:05:50',NULL,1,'0',NULL,195,'Cash: $38.09<br />'),('2017-08-05 00:16:44',NULL,1,'0',NULL,196,'Cash: $340.85<br />'),('2017-08-05 00:24:29',NULL,1,'0',NULL,197,'Cash: $34.66<br />'),('2017-08-05 00:37:09',NULL,1,'0',NULL,198,'Cash: $31.29<br />'),('2017-08-05 00:47:53',NULL,1,'0',NULL,199,'Cash: $245.55<br />'),('2017-08-05 00:50:25',NULL,1,'0',NULL,200,'Cash: $136.00<br />'),('2017-08-05 00:55:57',NULL,1,'0',NULL,201,'Cash: $84.06<br />'),('2017-08-05 01:05:52',NULL,1,'0',NULL,202,'Cash: $54.43<br />'),('2017-08-05 01:10:38',NULL,1,'0',NULL,203,'Cash: $26.52<br />'),('2017-08-05 01:33:05',NULL,1,'0',NULL,204,'Cash: $96.58<br />'),('2017-08-05 01:47:51',NULL,1,'0',NULL,205,'Cash: $43.55<br />'),('2017-08-05 01:49:26',NULL,1,'0',NULL,206,'Cash: $26.53<br />'),('2017-08-05 01:55:25',NULL,1,'0',NULL,207,'Cash: $19.78<br />'),('2017-08-05 02:40:58',NULL,1,'0',NULL,208,'Cash: $40.29<br />'),('2017-08-05 02:43:41',NULL,1,'0',NULL,209,'Cash: $29.98<br />'),('2017-08-05 03:39:32',NULL,1,'0',NULL,210,'Cash: $13.37<br />'),('2017-08-06 20:40:47',NULL,1,'0',NULL,211,'Cash: $51.14<br />'),('2017-08-06 23:25:36',NULL,1,'0',NULL,212,'Cash: $112.30<br />'),('2017-08-06 23:32:01',NULL,1,'0',NULL,213,'Cash: $49.35<br />'),('2017-08-07 00:02:23',NULL,1,'0',NULL,214,'Cash: $21.31<br />'),('2017-08-07 00:25:51',NULL,1,'0',NULL,215,'Cash: $13.63<br />'),('2017-08-07 00:49:52',NULL,1,'0',NULL,216,'Cash: $27.40<br />'),('2017-08-07 00:58:34',NULL,1,'0',NULL,217,'Cash: $21.81<br />'),('2017-08-07 02:22:19',NULL,1,'0',NULL,218,'Cash: $25.59<br />'),('2017-08-07 04:08:59',NULL,1,'0',NULL,219,'Cash: $10.83<br />'),('2017-08-07 04:40:21',NULL,1,'0',NULL,220,'Cash: $6.54<br />'),('2017-08-07 04:55:00',NULL,1,'0',NULL,221,'Cash: $5.10<br />'),('2017-08-07 05:03:42',NULL,1,'0',NULL,222,'Cash: $35.00<br />'),('2017-08-07 21:18:23',NULL,1,'0',NULL,223,'Cash: $29.27<br />'),('2017-08-07 21:33:25',NULL,1,'0',NULL,224,'Cash: $30.00<br />'),('2017-08-07 22:06:37',NULL,1,'0',NULL,225,'Cash: $125.41<br />'),('2017-08-07 22:28:46',NULL,1,'0',NULL,226,'Cash: $199.24<br />'),('2017-08-07 23:17:58',NULL,1,'0',NULL,227,'Cash: $69.70<br />'),('2017-08-08 00:00:17',NULL,1,'0',NULL,228,'Cash: $48.98<br />'),('2017-08-08 00:52:18',NULL,1,'0',NULL,229,'Cash: $35.00<br />'),('2017-08-08 01:18:01',NULL,1,'0',NULL,230,'Cash: $27.62<br />'),('2017-08-08 02:39:43',NULL,1,'0',NULL,231,'Cash: $47.52<br />'),('2017-08-08 02:49:28',NULL,1,'0',NULL,232,'Cash: $14.67<br />'),('2017-08-08 03:29:03',NULL,1,'0',NULL,233,'Cash: $15.94<br />'),('2017-08-08 03:32:02',NULL,1,'0',NULL,234,'Cash: $20.20<br />'),('2017-08-08 03:54:33',NULL,1,'0',NULL,235,'Cash: $13.36<br />'),('2017-08-08 03:55:58',NULL,1,'0',NULL,236,'Cash: $12.05<br />'),('2017-08-08 03:57:07',NULL,1,'0',NULL,237,'Cash: $3.86<br />'),('2017-08-08 04:04:10',NULL,1,'0',NULL,238,'Cash: $63.36<br />'),('2017-08-08 04:08:29',NULL,1,'0',NULL,239,'Cash: $31.27<br />'),('2017-08-08 04:10:46',NULL,1,'0',NULL,240,'Cash: $4.47<br />'),('2017-08-08 04:36:37',NULL,1,'0',NULL,241,'Cash: $35.95<br />'),('2017-08-08 04:38:11',NULL,1,'0',NULL,242,'Cash: $49.01<br />'),('2017-08-08 04:52:12',NULL,1,'0',NULL,243,'Cash: $21.57<br />'),('2017-08-08 05:33:08',NULL,1,'0',NULL,244,'Cash: $34.53<br />'),('2017-08-08 20:32:07',NULL,1,'0',NULL,245,'Cash: $50.85<br />'),('2017-08-08 20:34:20',NULL,1,'0',NULL,246,'Cash: $37.37<br />'),('2017-08-08 22:23:22',NULL,1,'0',NULL,247,'Cash: $72.63<br />'),('2017-08-08 23:38:07',NULL,1,'0',NULL,248,'Cash: $88.71<br />'),('2017-08-09 00:26:29',NULL,1,'0',NULL,249,'Cash: $8.35<br />'),('2017-08-09 00:51:43',NULL,1,'0',NULL,250,'Cash: $196.25<br />'),('2017-08-09 01:31:41',NULL,1,'0',NULL,251,'Cash: $29.50<br />'),('2017-08-09 01:38:24',NULL,1,'0',NULL,252,'Cash: $22.45<br />'),('2017-08-09 02:59:24',NULL,1,'0',NULL,253,'Cash: $50.92<br />'),('2017-08-09 03:19:50',NULL,1,'0',NULL,254,'Cash: $97.40<br />'),('2017-08-09 04:20:32',NULL,1,'0',NULL,255,'Cash: $41.32<br />'),('2017-08-09 04:45:54',NULL,1,'0',NULL,256,'Cash: $40.07<br />'),('2017-08-09 20:18:58',NULL,1,'0',NULL,257,'Cash: $65.93<br />'),('2017-08-09 21:40:46',NULL,1,'0',NULL,258,'Cash: $79.13<br />'),('2017-08-09 23:35:16',NULL,1,'0',NULL,259,'Cash: $31.26<br />'),('2017-08-09 23:37:23',NULL,1,'0',NULL,260,'Cash: $183.30<br />'),('2017-08-09 23:56:33',NULL,1,'0',NULL,261,'Cash: $50.09<br />'),('2017-08-10 00:00:27',NULL,1,'0',NULL,262,'Cash: $96.26<br />'),('2017-08-10 00:01:40',NULL,1,'0',NULL,263,'Cash: $25.14<br />'),('2017-08-10 00:11:55',NULL,1,'0',NULL,264,'Cash: $32.76<br />'),('2017-08-10 00:13:44',NULL,1,'0',NULL,265,'Cash: $68.75<br />'),('2017-08-10 01:02:32',NULL,1,'0',NULL,266,'Cash: $17.47<br />'),('2017-08-10 01:18:01',NULL,1,'0',NULL,267,'Cash: $194.31<br />'),('2017-08-10 01:30:12',NULL,1,'0',NULL,268,'Cash: $86.90<br />'),('2017-08-10 01:36:10',NULL,1,'0',NULL,269,'Cash: $16.02<br />'),('2017-08-10 01:37:52',NULL,1,'0',NULL,270,'Cash: $70.00<br />'),('2017-08-10 02:27:20',NULL,1,'0',NULL,271,'Cash: $46.04<br />'),('2017-08-10 02:59:19',NULL,1,'0',NULL,272,'Cash: $48.10<br />'),('2017-08-10 03:19:06',NULL,1,'0',NULL,273,'Cash: $60.90<br />'),('2017-08-10 03:34:54',NULL,1,'0',NULL,274,'Cash: $20.68<br />'),('2017-08-10 03:36:47',NULL,1,'0',NULL,275,'Cash: $17.71<br />'),('2017-08-10 03:40:49',NULL,1,'0',NULL,276,'Cash: $28.99<br />'),('2017-08-10 03:46:34',NULL,1,'0',NULL,277,'Cash: $31.49<br />'),('2017-08-10 04:52:06',NULL,1,'0',NULL,278,'Cash: $12.64<br />'),('2017-08-10 05:01:24',NULL,1,'0',NULL,279,'Cash: $42.62<br />'),('2017-08-10 05:04:12',NULL,1,'0',NULL,280,'Cash: $17.10<br />'),('2017-08-10 22:30:12',NULL,1,'0',NULL,281,'Cash: $196.90<br />'),('2017-08-10 22:31:54',NULL,1,'0',NULL,282,'Cash: $36.54<br />'),('2017-08-10 22:33:09',NULL,1,'0',NULL,283,'Cash: $50.40<br />'),('2017-08-10 22:36:28',NULL,1,'0',NULL,284,'Cash: $105.47<br />'),('2017-08-10 22:43:01',NULL,1,'0',NULL,285,'Cash: $9.27<br />'),('2017-08-10 22:57:21',NULL,1,'0',NULL,286,'Cash: $128.80<br />'),('2017-08-10 23:10:50',NULL,1,'0',NULL,287,'Cash: $30.76<br />'),('2017-08-10 23:33:29',NULL,1,'0',NULL,288,'Cash: $19.74<br />'),('2017-08-10 23:48:50',NULL,1,'0',NULL,289,'Cash: $775.52<br />'),('2017-08-10 23:51:03',NULL,1,'0',NULL,290,'Cash: $132.74<br />'),('2017-08-11 00:01:44',NULL,1,'0',NULL,291,'Cash: $232.23<br />'),('2017-08-11 01:27:18',NULL,1,'0',NULL,292,'Cash: $50.05<br />'),('2017-08-11 03:02:49',NULL,1,'0',NULL,293,'Cash: $73.26<br />'),('2017-08-11 03:08:43',NULL,1,'0',NULL,294,'Cash: $100.10<br />'),('2017-08-11 03:36:32',NULL,1,'0',NULL,295,'Cash: $29.60<br />'),('2017-08-11 03:59:34',NULL,1,'0',NULL,296,'Cash: $29.03<br />'),('2017-08-11 04:16:58',NULL,1,'0',NULL,297,'Cash: $28.40<br />'),('2017-08-11 04:26:08',NULL,1,'0',NULL,298,'Cash: $16.41<br />'),('2017-08-11 04:53:01',NULL,1,'0',NULL,299,'Cash: $145.22<br />'),('2017-08-11 20:03:06',NULL,1,'0',NULL,300,'Cash: $72.36<br />'),('2017-08-11 20:14:01',NULL,1,'0',NULL,301,'Cash: $78.86<br />'),('2017-08-11 21:14:06',NULL,1,'0',NULL,302,'Cash: $41.02<br />'),('2017-08-11 21:56:50',NULL,1,'0',NULL,303,'Cash: $748.84<br />'),('2017-08-11 22:00:41',NULL,1,'0',NULL,304,'Cash: $98.00<br />'),('2017-08-11 22:23:30',NULL,1,'0',NULL,305,'Cash: $57.54<br />'),('2017-08-11 22:29:07',NULL,1,'0',NULL,306,'Cash: $53.54<br />'),('2017-08-11 22:43:27',NULL,1,'0',NULL,307,'Cash: $93.75<br />'),('2017-08-11 23:07:30',NULL,1,'0',NULL,308,'Cash: $28.15<br />'),('2017-08-11 23:09:50',NULL,1,'0',NULL,309,'Cash: $10.00<br />'),('2017-08-11 23:11:02',NULL,1,'0',NULL,310,'Cash: $14.00<br />'),('2017-08-11 23:14:25',NULL,1,'0',NULL,311,'Cash: $129.24<br />'),('2017-08-11 23:16:22',NULL,1,'0',NULL,312,'Cash: $30.00<br />'),('2017-08-11 23:19:37',NULL,1,'0',NULL,313,'Cash: $38.94<br />'),('2017-08-11 23:41:02',NULL,1,'0',NULL,314,'Cash: $30.92<br />'),('2017-08-11 23:42:09',NULL,1,'0',NULL,315,'Cash: $23.91<br />'),('2017-08-11 23:45:34',NULL,1,'0',NULL,316,'Cash: $79.65<br />'),('2017-08-11 23:50:40',NULL,1,'0',NULL,317,'Cash: $63.92<br />'),('2017-08-11 23:56:39',NULL,1,'0',NULL,318,'Cash: $70.35<br />'),('2017-08-12 00:09:09',NULL,1,'0',NULL,319,'Cash: $54.20<br />'),('2017-08-12 00:12:14',NULL,1,'0',NULL,320,'Cash: $27.85<br />'),('2017-08-12 00:23:22',NULL,1,'0',NULL,321,'Cash: $19.94<br />'),('2017-08-12 00:25:08',NULL,1,'0',NULL,322,'Cash: $14.05<br />'),('2017-08-12 00:28:50',NULL,1,'0',NULL,323,'Cash: $23.58<br />'),('2017-08-12 00:34:40',NULL,1,'0',NULL,324,'Cash: $14.32<br />'),('2017-08-12 00:46:53',NULL,1,'0',NULL,325,'Cash: $44.52<br />'),('2017-08-12 00:49:02',NULL,1,'0',NULL,326,'Cash: $29.57<br />'),('2017-08-12 00:51:45',NULL,1,'0',NULL,327,'Cash: $59.98<br />'),('2017-08-12 00:56:47',NULL,1,'0',NULL,328,'Cash: $342.29<br />'),('2017-08-12 01:00:49',NULL,1,'0',NULL,329,'Cash: $69.12<br />'),('2017-08-12 01:02:20',NULL,1,'0',NULL,330,'Cash: $10.19<br />'),('2017-08-12 01:07:28',NULL,1,'0',NULL,331,'Cash: $62.93<br />'),('2017-08-12 01:09:51',NULL,1,'0',NULL,332,'Cash: $39.28<br />'),('2017-08-12 01:33:02',NULL,1,'0',NULL,333,'Cash: $49.48<br />'),('2017-08-12 01:54:04',NULL,1,'0',NULL,334,'Cash: $7.08<br />'),('2017-08-12 01:57:49',NULL,1,'0',NULL,335,'Cash: $110.46<br />'),('2017-08-12 02:02:36',NULL,1,'0',NULL,336,'Cash: $60.22<br />'),('2017-08-12 02:19:03',NULL,1,'0',NULL,337,'Cash: $28.42<br />'),('2017-08-12 02:26:24',NULL,1,'0',NULL,338,'Cash: $83.93<br />'),('2017-08-12 02:29:09',NULL,1,'0',NULL,339,'Cash: $20.85<br />'),('2017-08-12 03:17:13',NULL,1,'0',NULL,340,'Cash: $137.00<br />'),('2017-08-12 03:21:21',NULL,1,'0',NULL,341,'Cash: $44.32<br />'),('2017-08-13 20:06:26',NULL,1,'0',NULL,342,'Cash: $14.96<br />'),('2017-08-14 01:11:04',NULL,1,'0',NULL,343,'Cash: $126.01<br />'),('2017-08-14 03:38:08',NULL,1,'0',NULL,344,'Cash: $69.85<br />'),('2017-08-14 04:10:11',NULL,1,'0',NULL,345,'Cash: $9.00<br />'),('2017-08-14 05:01:42',NULL,1,'0',NULL,346,'Cash: $22.57<br />'),('2017-08-14 20:34:15',NULL,1,'0',NULL,347,'Cash: $49.50<br />'),('2017-08-14 23:07:38',NULL,1,'0',NULL,348,'Cash: $100.00<br />'),('2017-08-14 23:12:47',NULL,1,'0',NULL,349,'Cash: $386.43<br />'),('2017-08-14 23:13:54',NULL,1,'0',NULL,350,'Cash: $0.80<br />'),('2017-08-14 23:36:04',NULL,1,'0',NULL,351,'Cash: $39.85<br />'),('2017-08-15 00:13:59',NULL,1,'0',NULL,352,'Cash: $30.00<br />'),('2017-08-15 00:42:52',NULL,1,'0',NULL,353,'Cash: $30.87<br />'),('2017-08-15 00:51:50',NULL,1,'0',NULL,354,'Cash: $30.13<br />'),('2017-08-15 01:54:12',NULL,1,'0',NULL,355,'Cash: $99.77<br />'),('2017-08-15 02:09:09',NULL,1,'0',NULL,356,'Cash: $59.50<br />'),('2017-08-15 03:42:18',NULL,1,'0',NULL,357,'Cash: $11.13<br />'),('2017-08-15 03:50:47',NULL,1,'0',NULL,358,'Cash: $80.72<br />'),('2017-08-15 04:17:08',NULL,1,'0',NULL,359,'Cash: $376.88<br />'),('2017-08-15 04:25:02',NULL,1,'0',NULL,360,'Cash: $45.12<br />'),('2017-08-15 04:33:32',NULL,1,'0',NULL,361,'Cash: $53.26<br />'),('2017-08-15 04:37:37',NULL,1,'0',NULL,362,'Cash: $40.74<br />'),('2017-08-15 05:03:41',NULL,1,'0',NULL,363,'Cash: $52.43<br />'),('2017-08-15 20:05:11',NULL,1,'0',NULL,364,'Cash: $10.00<br />'),('2017-08-15 21:18:36',NULL,1,'0',NULL,365,'Cash: $61.37<br />'),('2017-08-15 21:52:33',NULL,1,'0',NULL,366,'Cash: $46.03<br />'),('2017-08-15 22:56:17',NULL,1,'0',NULL,367,'Cash: $24.68<br />'),('2017-08-15 23:19:18',NULL,1,'0',NULL,368,'Cash: $32.51<br />'),('2017-08-15 23:23:06',NULL,1,'0',NULL,369,'Cash: $100.00<br />'),('2017-08-15 23:24:30',NULL,1,'0',NULL,370,'Cash: $100.00<br />'),('2017-08-15 23:25:54',NULL,1,'0',NULL,371,'Cash: $100.00<br />'),('2017-08-15 23:31:28',NULL,1,'0',NULL,372,'Cash: $43.98<br />'),('2017-08-15 23:42:58',NULL,1,'0',NULL,373,'Cash: $29.75<br />'),('2017-08-15 23:46:35',NULL,1,'0',NULL,374,'Cash: $14.10<br />'),('2017-08-15 23:48:07',NULL,1,'0',NULL,375,'Cash: $21.20<br />'),('2017-08-16 00:51:07',NULL,1,'0',NULL,376,'Cash: $10.17<br />'),('2017-08-16 00:52:58',NULL,1,'0',NULL,377,'Cash: $35.00<br />'),('2017-08-16 01:05:44',NULL,1,'0',NULL,378,'Cash: $13.93<br />'),('2017-08-16 01:09:27',NULL,1,'0',NULL,379,'Cash: $140.55<br />'),('2017-08-16 01:11:07',NULL,1,'0',NULL,380,'Cash: $63.96<br />'),('2017-08-16 01:39:07',NULL,1,'0',NULL,381,'Cash: $57.96<br />'),('2017-08-16 01:45:01',NULL,1,'0',NULL,382,'Cash: $39.31<br />'),('2017-08-16 02:48:55',NULL,1,'0',NULL,383,'Cash: $93.30<br />'),('2017-08-16 03:08:52',NULL,1,'0',NULL,384,'Cash: $24.43<br />'),('2017-08-16 04:15:35',NULL,1,'0',NULL,385,'Cash: $68.40<br />'),('2017-08-16 04:20:19',NULL,1,'0',NULL,386,'Cash: $4.00<br />'),('2017-08-16 04:31:22',NULL,1,'0',NULL,387,'Cash: $7.11<br />'),('2017-08-16 04:38:04',NULL,1,'0',NULL,388,'Cash: $24.63<br />'),('2017-08-16 04:39:40',NULL,1,'0',NULL,389,'Cash: $16.21<br />'),('2017-08-16 04:42:26',NULL,1,'0',NULL,390,'Cash: $33.73<br />'),('2017-08-16 04:47:47',NULL,1,'0',NULL,391,'Cash: $54.37<br />'),('2017-08-16 04:58:01',NULL,1,'0',NULL,392,'Cash: $15.05<br />'),('2017-08-16 20:05:23',NULL,1,'0',NULL,393,'Cash: $18.60<br />'),('2017-08-16 20:07:28',NULL,1,'0',NULL,394,'Cash: $50.25<br />'),('2017-08-16 22:22:33',NULL,1,'0',NULL,395,'Cash: $20.37<br />'),('2017-08-16 22:39:08',NULL,1,'0',NULL,396,'Cash: $26.07<br />'),('2017-08-16 22:46:50',NULL,1,'0',NULL,397,'Cash: $57.38<br />'),('2017-08-16 22:51:38',NULL,1,'0',NULL,398,'Cash: $224.08<br />'),('2017-08-16 23:25:30',NULL,1,'0',NULL,399,'Cash: $450.00<br />'),('2017-08-16 23:49:52',NULL,1,'0',NULL,400,'Cash: $25.05<br />'),('2017-08-17 00:48:53',NULL,1,'0',NULL,401,'Cash: $46.46<br />'),('2017-08-17 00:56:48',NULL,1,'0',NULL,402,'Cash: $34.55<br />'),('2017-08-17 01:42:59',NULL,1,'0',NULL,403,'Cash: $70.55<br />'),('2017-08-17 01:59:04',NULL,1,'0',NULL,404,'Cash: $28.70<br />'),('2017-08-17 02:00:09',NULL,1,'0',NULL,405,'Cash: $26.39<br />'),('2017-08-17 02:01:25',NULL,1,'0',NULL,406,'Cash: $15.16<br />'),('2017-08-17 02:02:31',NULL,1,'0',NULL,407,'Cash: $29.29<br />'),('2017-08-17 02:11:12',NULL,1,'0',NULL,408,'Cash: $46.89<br />'),('2017-08-17 02:12:13',NULL,1,'0',NULL,409,'Cash: $7.87<br />'),('2017-08-17 03:07:01',NULL,1,'0',NULL,410,'Cash: $26.01<br />'),('2017-08-17 03:24:24',NULL,1,'0',NULL,411,'Cash: $33.46<br />'),('2017-08-17 03:25:51',NULL,1,'0',NULL,412,'Cash: $4.95<br />'),('2017-08-17 03:40:55',NULL,1,'0',NULL,413,'Cash: $194.50<br />'),('2017-08-17 04:16:09',NULL,1,'0',NULL,414,'Cash: $87.76<br />'),('2017-08-17 04:38:53',NULL,1,'0',NULL,415,'Cash: $13.63<br />'),('2017-08-17 04:41:53',NULL,1,'0',NULL,416,'Cash: $7.52<br />'),('2017-08-17 04:43:22',NULL,1,'0',NULL,417,'Cash: $13.05<br />'),('2017-08-17 04:45:32',NULL,1,'0',NULL,418,'Cash: $40.98<br />'),('2017-08-17 04:46:39',NULL,1,'0',NULL,419,'Cash: $54.44<br />'),('2017-08-17 04:58:01',NULL,1,'0',NULL,420,'Cash: $23.47<br />'),('2017-08-17 20:20:31',NULL,1,'0',NULL,421,'Cash: $51.58<br />'),('2017-08-17 20:27:53',NULL,1,'0',NULL,422,'Cash: $93.67<br />'),('2017-08-17 21:02:18',NULL,1,'0',NULL,423,'Cash: $113.60<br />'),('2017-08-17 21:26:30',NULL,1,'0',NULL,424,'Cash: $35.00<br />'),('2017-08-17 22:17:46',NULL,1,'0',NULL,425,'Cash: $17.94<br />'),('2017-08-17 22:45:09',NULL,1,'0',NULL,426,'Cash: $118.21<br />'),('2017-08-17 23:17:01',NULL,1,'0',NULL,427,'Cash: $111.19<br />'),('2017-08-17 23:21:25',NULL,1,'0',NULL,428,'Cash: $38.63<br />'),('2017-08-17 23:22:35',NULL,1,'0',NULL,429,'Cash: $17.37<br />'),('2017-08-17 23:30:44',NULL,1,'0',NULL,430,'Cash: $76.04<br />'),('2017-08-17 23:39:17',NULL,1,'0',NULL,431,'Cash: $35.20<br />'),('2017-08-18 00:00:30',NULL,1,'0',NULL,432,'Cash: $117.59<br />'),('2017-08-18 00:08:52',NULL,1,'0',NULL,433,'Cash: $23.70<br />'),('2017-08-18 00:16:41',NULL,1,'0',NULL,434,'Cash: $6.48<br />'),('2017-08-18 00:21:24',NULL,1,'0',NULL,435,'Cash: $27.93<br />'),('2017-08-18 00:31:57',NULL,1,'0',NULL,436,'Cash: $108.99<br />'),('2017-08-18 00:52:09',NULL,1,'0',NULL,437,'Cash: $14.83<br />'),('2017-08-18 00:54:10',NULL,1,'0',NULL,438,'Cash: $10.07<br />'),('2017-08-18 01:28:36',NULL,1,'0',NULL,439,'Cash: $49.50<br />'),('2017-08-18 01:49:29',NULL,1,'0',NULL,440,'Cash: $43.95<br />'),('2017-08-18 02:05:38',NULL,1,'0',NULL,441,'Cash: $87.72<br />'),('2017-08-18 02:07:18',NULL,1,'0',NULL,442,'Cash: $39.69<br />'),('2017-08-18 02:09:10',NULL,1,'0',NULL,443,'Cash: $10.13<br />'),('2017-08-18 02:22:20',NULL,1,'0',NULL,444,'Cash: $14.69<br />'),('2017-08-18 02:37:26',NULL,1,'0',NULL,445,'Cash: $46.30<br />'),('2017-08-18 02:51:18',NULL,1,'0',NULL,446,'Cash: $49.81<br />'),('2017-08-18 02:53:04',NULL,1,'0',NULL,447,'Cash: $10.21<br />'),('2017-08-18 03:01:45',NULL,1,'0',NULL,448,'Cash: $33.21<br />'),('2017-08-18 03:04:03',NULL,1,'0',NULL,449,'Cash: $9.10<br />'),('2017-08-18 03:09:05',NULL,1,'0',NULL,450,'Cash: $44.52<br />'),('2017-08-18 03:29:40',NULL,1,'0',NULL,451,'Cash: $388.60<br />'),('2017-08-18 04:03:21',NULL,1,'0',NULL,452,'Cash: $160.63<br />'),('2017-08-18 04:13:46',NULL,1,'0',NULL,453,'Cash: $24.10<br />'),('2017-08-18 04:23:26',NULL,1,'0',NULL,454,'Cash: $0.10<br />'),('2017-08-18 04:30:47',NULL,1,'0',NULL,455,'Cash: $45.93<br />'),('2017-08-18 04:36:18',NULL,1,'0',NULL,456,'Cash: $9.40<br />'),('2017-08-18 04:41:30',NULL,1,'0',NULL,457,'Cash: $19.35<br />'),('2017-08-18 04:44:13',NULL,1,'0',NULL,458,'Cash: $17.34<br />'),('2017-08-18 04:57:20',NULL,1,'0',NULL,459,'Cash: $31.66<br />'),('2017-08-18 19:52:53',NULL,1,'0',NULL,460,'Cash: $69.12<br />'),('2017-08-18 19:57:16',NULL,1,'0',NULL,461,'Cash: $92.09<br />'),('2017-08-18 20:07:37',NULL,1,'0',NULL,462,'Cash: $31.33<br />'),('2017-08-18 20:35:41',NULL,1,'0',NULL,463,'Cash: $29.24<br />'),('2017-08-18 20:41:16',NULL,1,'0',NULL,464,'Cash: $64.59<br />'),('2017-08-18 22:07:30',NULL,1,'0',NULL,465,'Cash: $28.74<br />'),('2017-08-18 22:08:50',NULL,1,'0',NULL,466,'Cash: $142.45<br />'),('2017-08-18 22:20:22',NULL,1,'0',NULL,467,'Cash: $67.42<br />'),('2017-08-18 22:26:34',NULL,1,'0',NULL,468,'Cash: $17.95<br />'),('2017-08-18 22:46:42',NULL,1,'0',NULL,469,'Cash: $15.50<br />'),('2017-08-18 22:55:03',NULL,1,'0',NULL,470,'Cash: $48.61<br />'),('2017-08-18 23:00:05',NULL,1,'0',NULL,471,'Cash: $99.38<br />'),('2017-08-18 23:04:42',NULL,1,'0',NULL,472,'Cash: $87.39<br />'),('2017-08-18 23:11:52',NULL,1,'0',NULL,473,'Cash: $155.40<br />'),('2017-08-18 23:13:24',NULL,1,'0',NULL,474,'Cash: $13.02<br />'),('2017-08-18 23:16:47',NULL,1,'0',NULL,475,'Cash: $18.67<br />'),('2017-08-18 23:23:43',NULL,1,'0',NULL,476,'Cash: $29.43<br />'),('2017-08-18 23:34:29',NULL,1,'0',NULL,477,'Cash: $21.57<br />'),('2017-08-18 23:43:42',NULL,1,'0',NULL,478,'Cash: $15.78<br />'),('2017-08-19 00:11:44',NULL,1,'0',NULL,479,'Cash: $53.96<br />'),('2017-08-19 00:16:47',NULL,1,'0',NULL,480,'Cash: $62.23<br />'),('2017-08-19 00:39:31',NULL,1,'0',NULL,481,'Cash: $52.76<br />'),('2017-08-19 00:41:33',NULL,1,'0',NULL,482,'Cash: $35.28<br />'),('2017-08-19 00:55:33',NULL,1,'0',NULL,483,'Cash: $45.90<br />'),('2017-08-19 01:02:35',NULL,1,'0',NULL,484,'Cash: $70.64<br />'),('2017-08-19 01:05:34',NULL,1,'0',NULL,485,'Cash: $58.21<br />'),('2017-08-19 01:07:11',NULL,1,'0',NULL,486,'Cash: $50.00<br />'),('2017-08-19 01:13:25',NULL,1,'0',NULL,487,'Cash: $18.08<br />'),('2017-08-19 01:22:42',NULL,1,'0',NULL,488,'Cash: $29.13<br />'),('2017-08-19 01:24:29',NULL,1,'0',NULL,489,'Cash: $6.02<br />'),('2017-08-19 01:29:32',NULL,1,'0',NULL,490,'Cash: $395.96<br />'),('2017-08-19 02:21:25',NULL,1,'0',NULL,491,'Cash: $46.69<br />'),('2017-08-19 02:35:52',NULL,1,'0',NULL,492,'Cash: $231.59<br />'),('2017-08-19 02:41:24',NULL,1,'0',NULL,493,'Cash: $70.92<br />'),('2017-08-19 02:50:05',NULL,1,'0',NULL,494,'Cash: $20.88<br />'),('2017-08-19 03:02:51',NULL,1,'0',NULL,495,'Cash: $41.94<br />'),('2017-08-20 23:24:59',NULL,1,'0',NULL,496,'Cash: $32.00<br />'),('2017-08-20 23:50:29',NULL,1,'0',NULL,497,'Cash: $14.86<br />'),('2017-08-21 00:37:24',NULL,1,'0',NULL,498,'Cash: $60.03<br />'),('2017-08-21 01:01:44',NULL,1,'0',NULL,499,'Cash: $49.79<br />'),('2017-08-21 01:05:40',NULL,1,'0',NULL,500,'Cash: $45.50<br />'),('2017-08-21 01:12:18',NULL,1,'0',NULL,501,'Cash: $27.27<br />'),('2017-08-21 01:13:53',NULL,1,'0',NULL,502,'Cash: $11.59<br />'),('2017-08-21 01:36:13',NULL,1,'0',NULL,503,'Cash: $340.00<br />'),('2017-08-21 01:41:37',NULL,1,'0',NULL,504,'Cash: $30.00<br />'),('2017-08-21 02:50:07',NULL,1,'0',NULL,505,'Cash: $23.11<br />'),('2017-08-21 03:07:17',NULL,1,'0',NULL,506,'Cash: $55.34<br />'),('2017-08-21 03:26:24',NULL,1,'0',NULL,507,'Cash: $4.17<br />'),('2017-08-21 04:07:34',NULL,1,'0',NULL,508,'Cash: $30.76<br />'),('2017-08-21 04:09:43',NULL,1,'0',NULL,509,'Cash: $4.00<br />'),('2017-08-21 04:47:06',NULL,1,'0',NULL,510,'Cash: $10.01<br />'),('2017-08-21 22:10:02',NULL,1,'0',NULL,511,'Cash: $27.33<br />'),('2017-08-21 22:19:55',NULL,1,'0',NULL,512,'Cash: $74.95<br />'),('2017-08-21 23:13:54',NULL,1,'0',NULL,513,'Cash: $260.00<br />'),('2017-08-21 23:14:59',NULL,1,'0',NULL,514,'Cash: $34.85<br />'),('2017-08-21 23:22:44',NULL,1,'0',NULL,515,'Cash: $14.05<br />'),('2017-08-21 23:50:55',NULL,1,'0',NULL,516,'Cash: $31.56<br />'),('2017-08-22 00:41:57',NULL,1,'0',NULL,517,'Cash: $11.10<br />'),('2017-08-22 00:57:35',NULL,1,'0',NULL,518,'Cash: $196.51<br />'),('2017-08-22 01:08:49',NULL,1,'0',NULL,519,'Cash: $162.60<br />'),('2017-08-22 03:15:58',NULL,1,'0',NULL,520,'Cash: $20.68<br />'),('2017-08-22 03:17:31',NULL,1,'0',NULL,521,'Cash: $6.53<br />'),('2017-08-22 03:20:08',NULL,1,'0',NULL,522,'Cash: $29.64<br />'),('2017-08-22 03:22:22',NULL,1,'0',NULL,523,'Cash: $29.28<br />'),('2017-08-22 03:48:42',NULL,1,'0',NULL,524,'Cash: $31.17<br />'),('2017-08-22 04:02:02',NULL,1,'0',NULL,525,'Cash: $43.97<br />'),('2017-08-22 04:28:39',NULL,1,'0',NULL,526,'Cash: $15.48<br />'),('2017-08-22 04:41:40',NULL,1,'0',NULL,527,'Cash: $22.39<br />'),('2017-08-22 04:44:14',NULL,1,'0',NULL,528,'Cash: $4.94<br />'),('2017-08-22 21:41:03',NULL,1,'0',NULL,529,'Cash: $103.29<br />'),('2017-08-22 22:51:53',NULL,1,'0',NULL,530,'Cash: $43.61<br />'),('2017-08-22 22:54:48',NULL,1,'0',NULL,531,'Cash: $36.50<br />'),('2017-08-22 23:17:09',NULL,1,'0',NULL,532,'Cash: $23.46<br />'),('2017-08-22 23:25:34',NULL,1,'0',NULL,533,'Cash: $31.25<br />'),('2017-08-22 23:34:25',NULL,1,'0',NULL,534,'Cash: $25.02<br />'),('2017-08-23 00:50:02',NULL,1,'0',NULL,535,'Cash: $94.49<br />'),('2017-08-23 01:51:55',NULL,1,'0',NULL,536,'Cash: $32.38<br />'),('2017-08-23 02:01:00',NULL,1,'0',NULL,537,'Cash: $121.50<br />'),('2017-08-23 02:14:57',NULL,1,'0',NULL,538,'Cash: $44.55<br />'),('2017-08-23 02:17:35',NULL,1,'0',NULL,539,'Cash: $30.25<br />'),('2017-08-23 02:43:43',NULL,1,'0',NULL,540,'Cash: $35.31<br />'),('2017-08-23 03:38:18',NULL,1,'0',NULL,541,'Cash: $24.92<br />'),('2017-08-23 03:57:43',NULL,1,'0',NULL,542,'Cash: $17.60<br />'),('2017-08-23 03:59:24',NULL,1,'0',NULL,543,'Cash: $5.60<br />'),('2017-08-23 04:01:02',NULL,1,'0',NULL,544,'Cash: $21.49<br />'),('2017-08-23 04:07:42',NULL,1,'0',NULL,545,'Cash: $31.18<br />'),('2017-08-23 04:46:41',NULL,1,'0',NULL,546,'Cash: $28.51<br />'),('2017-08-23 20:26:52',NULL,1,'0',NULL,547,'Cash: $50.88<br />'),('2017-08-23 20:52:34',NULL,1,'0',NULL,548,'Cash: $40.40<br />'),('2017-08-23 21:08:08',NULL,1,'0',NULL,549,'Cash: $10.05<br />'),('2017-08-23 22:16:46',NULL,1,'0',NULL,550,'Cash: $15.35<br />'),('2017-08-23 22:33:02',NULL,1,'0',NULL,551,'Cash: $42.67<br />'),('2017-08-23 22:38:11',NULL,1,'0',NULL,552,'Cash: $14.05<br />'),('2017-08-23 22:50:14',NULL,1,'0',NULL,553,'Cash: $41.74<br />'),('2017-08-23 22:56:40',NULL,1,'0',NULL,554,'Cash: $87.63<br />'),('2017-08-23 22:59:27',NULL,1,'0',NULL,555,'Cash: $38.69<br />'),('2017-08-23 23:13:19',NULL,1,'0',NULL,556,'Cash: $340.00<br />'),('2017-08-24 00:38:29',NULL,1,'0',NULL,557,'Cash: $40.74<br />'),('2017-08-24 01:11:21',NULL,1,'0',NULL,558,'Cash: $9.72<br />'),('2017-08-24 01:13:43',NULL,1,'0',NULL,559,'Cash: $52.84<br />'),('2017-08-24 01:25:35',NULL,1,'0',NULL,560,'Cash: $50.33<br />'),('2017-08-24 01:30:17',NULL,1,'0',NULL,561,'Cash: $9.95<br />'),('2017-08-24 01:43:27',NULL,1,'0',NULL,562,'Cash: $562.74<br />'),('2017-08-24 01:46:13',NULL,1,'0',NULL,563,'Cash: $92.80<br />'),('2017-08-24 03:07:50',NULL,1,'0',NULL,564,'Cash: $15.64<br />'),('2017-08-24 03:09:25',NULL,1,'0',NULL,565,'Cash: $8.14<br />'),('2017-08-24 03:12:03',NULL,1,'0',NULL,566,'Cash: $19.74<br />'),('2017-08-24 04:09:53',NULL,1,'0',NULL,567,'Cash: $14.29<br />'),('2017-08-24 04:24:59',NULL,1,'0',NULL,568,'Cash: $23.69<br />'),('2017-08-24 04:46:36',NULL,1,'0',NULL,569,'Cash: $22.33<br />'),('2017-08-24 05:00:58',NULL,1,'0',NULL,570,'Cash: $17.13<br />'),('2017-08-24 20:32:39',NULL,1,'0',NULL,571,'Cash: $92.39<br />'),('2017-08-24 23:05:06',NULL,1,'0',NULL,572,'Cash: $742.40<br />'),('2017-08-24 23:11:18',NULL,1,'0',NULL,573,'Cash: $28.00<br />'),('2017-08-24 23:40:53',NULL,1,'0',NULL,574,'Cash: $9.91<br />'),('2017-08-25 00:40:48',NULL,1,'0',NULL,575,'Cash: $510.00<br />'),('2017-08-25 00:45:07',NULL,1,'0',NULL,576,'Cash: $53.07<br />'),('2017-08-25 00:59:12',NULL,1,'0',NULL,577,'Cash: $65.11<br />'),('2017-08-25 01:25:31',NULL,1,'0',NULL,578,'Cash: $14.05<br />'),('2017-08-25 01:29:06',NULL,1,'0',NULL,579,'Cash: $44.69<br />'),('2017-08-25 02:11:06',NULL,1,'0',NULL,580,'Cash: $466.93<br />'),('2017-08-25 02:37:25',NULL,1,'0',NULL,581,'Cash: $43.48<br />'),('2017-08-25 03:24:25',NULL,1,'0',NULL,582,'Cash: $24.59<br />'),('2017-08-25 03:36:39',NULL,1,'0',NULL,583,'Cash: $266.00<br />'),('2017-08-25 03:42:21',NULL,1,'0',NULL,584,'Cash: $46.24<br />'),('2017-08-25 03:46:48',NULL,1,'0',NULL,585,'Cash: $139.20<br />'),('2017-08-25 04:04:07',NULL,1,'0',NULL,586,'Cash: $50.42<br />'),('2017-08-25 04:29:38',NULL,1,'0',NULL,587,'Cash: $51.66<br />'),('2017-08-25 05:02:10',NULL,1,'0',NULL,588,'Cash: $20.26<br />'),('2017-08-25 05:03:57',NULL,1,'0',NULL,589,'Cash: $20.30<br />'),('2017-08-25 05:08:54',NULL,1,'0',NULL,590,'Cash: $39.51<br />'),('2017-08-25 06:18:15',NULL,1,'0',NULL,591,'Cash: $80.00<br />'),('2017-08-25 06:20:58',NULL,1,'0',NULL,592,'Cash: $255.00<br />'),('2017-08-25 20:37:04',NULL,1,'0',NULL,593,'Cash: $50.79<br />'),('2017-08-25 21:09:06',NULL,1,'0',NULL,594,'Cash: $19.92<br />'),('2017-08-25 21:27:51',NULL,1,'0',NULL,595,'Cash: $20.75<br />'),('2017-08-25 21:36:18',NULL,1,'0',NULL,596,'Cash: $165.43<br />'),('2017-08-25 22:21:47',NULL,1,'0',NULL,597,'Cash: $89.77<br />'),('2017-08-25 22:28:34',NULL,1,'0',NULL,598,'Cash: $51.00<br />'),('2017-08-25 22:30:16',NULL,1,'0',NULL,599,'Cash: $26.02<br />'),('2017-08-25 22:36:17',NULL,1,'0',NULL,600,'Cash: $8.06<br />'),('2017-08-25 22:42:45',NULL,1,'0',NULL,601,'Cash: $1020.00<br />'),('2017-08-25 22:56:58',NULL,1,'0',NULL,602,'Cash: $27.47<br />'),('2017-08-25 23:01:04',NULL,1,'0',NULL,603,'Cash: $45.12<br />'),('2017-08-25 23:02:04',NULL,1,'0',NULL,604,'Cash: $18.32<br />'),('2017-08-25 23:03:36',NULL,1,'0',NULL,605,'Cash: $13.31<br />'),('2017-08-25 23:41:00',NULL,1,'0',NULL,606,'Cash: $20.96<br />'),('2017-08-25 23:43:03',NULL,1,'0',NULL,607,'Cash: $16.48<br />'),('2017-08-25 23:50:44',NULL,1,'0',NULL,608,'Cash: $53.30<br />'),('2017-08-26 00:22:37',NULL,1,'0',NULL,609,'Cash: $14.50<br />'),('2017-08-26 00:42:30',NULL,1,'0',NULL,610,'Cash: $19.79<br />'),('2017-08-26 00:43:45',NULL,1,'0',NULL,611,'Cash: $24.95<br />'),('2017-08-26 00:49:33',NULL,1,'0',NULL,612,'Cash: $55.55<br />'),('2017-08-26 00:54:31',NULL,1,'0',NULL,613,'Cash: $125.93<br />'),('2017-08-26 01:14:36',NULL,1,'0',NULL,614,'Cash: $46.07<br />'),('2017-08-26 01:16:52',NULL,1,'0',NULL,615,'Cash: $34.56<br />'),('2017-08-26 01:18:41',NULL,1,'0',NULL,616,'Cash: $26.05<br />'),('2017-08-26 02:22:56',NULL,1,'0',NULL,617,'Cash: $34.56<br />'),('2017-08-26 02:35:45',NULL,1,'0',NULL,618,'Cash: $44.58<br />'),('2017-08-26 02:56:15',NULL,1,'0',NULL,619,'Cash: $19.50<br />'),('2017-08-26 02:59:57',NULL,1,'0',NULL,620,'Cash: $23.08<br />'),('2017-08-26 03:10:23',NULL,1,'0',NULL,621,'Cash: $340.00<br />'),('2017-08-26 03:40:08',NULL,1,'0',NULL,622,'Cash: $41.21<br />'),('2017-08-27 21:18:15',NULL,1,'0',NULL,623,'Cash: $689.96<br />'),('2017-08-27 21:45:05',NULL,1,'0',NULL,624,'Cash: $192.00<br />'),('2017-08-27 23:20:37',NULL,1,'0',NULL,625,'Cash: $147.56<br />'),('2017-08-27 23:39:43',NULL,1,'0',NULL,626,'Cash: $23.41<br />'),('2017-08-28 00:26:50',NULL,1,'0',NULL,627,'Cash: $697.62<br />'),('2017-08-28 00:32:49',NULL,1,'0',NULL,628,'Cash: $186.80<br />'),('2017-08-28 01:18:19',NULL,1,'0',NULL,629,'Cash: $81.90<br />'),('2017-08-28 01:20:04',NULL,1,'0',NULL,630,'Cash: $96.60<br />'),('2017-08-28 01:26:40',NULL,1,'0',NULL,631,'Cash: $32.25<br />'),('2017-08-28 01:28:07',NULL,1,'0',NULL,632,'Cash: $32.89<br />'),('2017-08-28 01:29:21',NULL,1,'0',NULL,633,'Cash: $31.47<br />'),('2017-08-28 01:31:43',NULL,1,'0',NULL,634,'Cash: $200.00<br />'),('2017-08-28 02:00:50',NULL,1,'0',NULL,635,'Cash: $37.70<br />'),('2017-08-28 02:06:24',NULL,1,'0',NULL,636,'Cash: $29.80<br />'),('2017-08-28 03:08:38',NULL,1,'0',NULL,637,'Cash: $54.31<br />'),('2017-08-28 03:19:09',NULL,1,'0',NULL,638,'Cash: $32.93<br />'),('2017-08-28 03:21:24',NULL,1,'0',NULL,639,'Cash: $15.72<br />'),('2017-08-28 03:50:12',NULL,1,'0',NULL,640,'Cash: $53.63<br />'),('2017-08-28 21:06:55',NULL,1,'0',NULL,641,'Cash: $230.00<br />'),('2017-08-28 21:21:10',NULL,1,'0',NULL,642,'Cash: $7.25<br />'),('2017-08-28 22:15:12',NULL,1,'0',NULL,643,'Cash: $12.05<br />'),('2017-08-28 22:26:02',NULL,1,'0',NULL,644,'Cash: $52.80<br />'),('2017-08-28 22:28:27',NULL,1,'0',NULL,645,'Cash: $9.53<br />'),('2017-08-28 22:47:43',NULL,1,'0',NULL,646,'Cash: $98.79<br />'),('2017-08-28 22:49:27',NULL,1,'0',NULL,647,'Cash: $49.01<br />'),('2017-08-28 22:52:10',NULL,1,'0',NULL,648,'Cash: $11.38<br />'),('2017-08-28 23:03:26',NULL,1,'0',NULL,649,'Cash: $30.00<br />'),('2017-08-29 00:13:09',NULL,1,'0',NULL,650,'Cash: $16.20<br />'),('2017-08-29 00:54:23',NULL,1,'0',NULL,651,'Cash: $80.00<br />'),('2017-08-29 02:05:08',NULL,1,'0',NULL,652,'Cash: $34.39<br />'),('2017-08-29 02:30:13',NULL,1,'0',NULL,653,'Cash: $40.43<br />'),('2017-08-29 03:25:25',NULL,1,'0',NULL,654,'Cash: $29.97<br />'),('2017-08-29 03:43:04',NULL,1,'0',NULL,655,'Cash: $59.40<br />'),('2017-08-29 03:50:39',NULL,1,'0',NULL,656,'Cash: $90.06<br />'),('2017-08-29 04:17:08',NULL,1,'0',NULL,657,'Cash: $264.98<br />'),('2017-08-29 04:46:12',NULL,1,'0',NULL,658,'Cash: $19.68<br />'),('2017-08-29 20:33:53',NULL,1,'0',NULL,659,'Cash: $22.71<br />'),('2017-08-29 21:07:13',NULL,1,'0',NULL,660,'Cash: $32.14<br />'),('2017-08-30 00:26:54',NULL,1,'0',NULL,661,'Cash: $28.22<br />'),('2017-08-30 01:24:48',NULL,1,'0',NULL,662,'Cash: $64.07<br />'),('2017-08-30 01:27:14',NULL,1,'0',NULL,663,'Cash: $35.42<br />'),('2017-08-30 01:28:24',NULL,1,'0',NULL,664,'Cash: $15.95<br />'),('2017-08-30 01:36:08',NULL,1,'0',NULL,665,'Cash: $50.29<br />'),('2017-08-30 02:32:20',NULL,1,'0',NULL,666,'Cash: $500.83<br />'),('2017-08-30 03:02:34',NULL,1,'0',NULL,667,'Cash: $30.72<br />'),('2017-08-30 03:46:46',NULL,1,'0',NULL,668,'Cash: $31.88<br />'),('2017-08-30 04:05:54',NULL,1,'0',NULL,669,'Cash: $22.95<br />'),('2017-08-30 04:11:14',NULL,1,'0',NULL,670,'Cash: $253.76<br />'),('2017-08-30 04:17:40',NULL,1,'0',NULL,671,'Cash: $39.97<br />'),('2017-08-30 04:18:53',NULL,1,'0',NULL,672,'Cash: $11.27<br />'),('2019-04-24 01:51:02',NULL,1,'0',NULL,674,'Cash: $10.55<br />'),('2019-04-24 01:53:01',NULL,1,'0',NULL,675,'Cash: $8.00<br />'),('2019-04-25 05:00:59',NULL,1,'0',NULL,676,'Cash: $10.55<br />'),('2019-04-30 22:39:57',NULL,1,'0',NULL,677,'Cash: $13.95<br />'),('2019-05-03 07:02:05',NULL,4,'0','0',678,'Cash: $9.95<br />'),('2019-05-03 07:29:46',5,4,'0','1',679,'Cash: $31.65<br />'),('2019-05-15 23:47:30',NULL,1,'0',NULL,680,'Cash: $15.95<br />'),('2019-06-02 16:07:51',NULL,1,'0','2',681,'Cheque: $16.95<br />'),('2019-06-13 01:02:41',NULL,1,'0',NULL,682,'Cash: $18.50<br />'),('2019-06-13 01:04:27',NULL,1,'0',NULL,683,'Cash: $18.50<br />'),('2019-06-17 00:13:51',NULL,1,'0',NULL,684,'Cash: $21.00<br />'),('2019-06-19 03:47:48',NULL,1,'0',NULL,685,'Cash: $17.50<br />'),('2019-06-21 03:07:58',NULL,1,'0',NULL,686,'Cash: $18.50<br />'),('2019-06-27 04:42:57',NULL,1,'0',NULL,687,'Cash: $6.95<br />'),('2019-07-15 02:21:24',NULL,1,'0',NULL,688,'Cash: $17.50<br />'),('2019-07-15 03:00:04',NULL,1,'0',NULL,689,'Cash: $18.50<br />'),('2019-07-15 04:24:20',NULL,1,'0',NULL,690,'Cash: $17.50<br />'),('2019-07-15 04:24:45',NULL,1,'0',NULL,691,'Cash: $18.50<br />'),('2019-07-15 04:25:18',NULL,1,'0',NULL,692,'Cash: $17.50<br />'),('2019-07-15 04:25:20',NULL,1,'0',NULL,693,'Cash: $15.95<br />'),('2019-07-15 04:25:41',NULL,1,'0',NULL,694,'Cash: $0.00<br />'),('2019-07-15 04:26:07',NULL,1,'0',NULL,695,'Cash: $17.50<br />'),('2019-07-15 04:26:14',NULL,1,'0',NULL,696,'Cash: $0.00<br />'),('2019-07-15 04:26:36',NULL,1,'0',NULL,697,'Cash: $17.50<br />'),('2019-07-15 04:26:46',NULL,1,'0',NULL,698,'Cash: $63.50<br />'),('2019-07-15 04:27:17',NULL,1,'0',NULL,699,'Cash: $50.00<br />'),('2019-07-15 04:27:26',NULL,1,'0',NULL,700,'Cash: $4.95<br />'),('2019-07-15 04:28:11',NULL,1,'0',NULL,701,'Cash: $16.75<br />'),('2019-07-15 04:28:27',NULL,1,'0',NULL,702,'Cash: $100.00<br />'),('2019-07-15 04:28:41',NULL,1,'0',NULL,703,'Cash: $9.95<br />'),('2019-07-15 04:28:59',NULL,1,'0',NULL,704,'Cash: $50.00<br />'),('2019-07-15 04:29:04',NULL,1,'0',NULL,705,'Cash: $16.95<br />'),('2019-07-15 04:29:40',NULL,1,'0',NULL,706,'Cash: $4.00<br />'),('2019-07-15 04:30:03',NULL,1,'0',NULL,707,'Cash: $40.00<br />'),('2019-07-15 04:30:11',NULL,1,'0',NULL,708,'Cash: $13.95<br />'),('2019-07-15 04:30:30',NULL,1,'thanks',NULL,709,'Cash: $100.00<br />'),('2019-07-15 04:30:52',NULL,1,'f',NULL,710,'Cash: $19.05<br />'),('2019-07-15 04:31:05',NULL,1,'0',NULL,711,'Cash: $84.00<br />'),('2019-07-15 04:31:15',NULL,1,'0',NULL,712,'Cash: $27.00<br />'),('2019-07-15 04:31:38',NULL,1,'0',NULL,713,'Cash: $50.00<br />'),('2019-07-15 04:31:56',NULL,1,'0',NULL,714,'Cash: $13.00<br />'),('2019-07-15 04:32:02',NULL,1,'0',NULL,715,'Cash: $30.00<br />'),('2019-07-15 04:32:39',NULL,1,'0',NULL,716,'Cash: $9.50<br />'),('2019-07-15 04:33:00',NULL,1,'0',NULL,717,'Cash: $50.00<br />'),('2019-07-15 04:33:22',NULL,1,'0',NULL,718,'Cash: $30.00<br />'),('2019-07-15 04:33:40',NULL,1,'0',NULL,719,'Cash: $5.95<br />'),('2019-07-15 04:34:22',NULL,1,'0',NULL,720,'Cash: $12.50<br />'),('2019-07-15 04:34:27',NULL,1,'0',NULL,721,'Cash: $30.00<br />'),('2019-07-15 04:34:51',NULL,1,'0',NULL,722,'Cash: $9.00<br />'),('2019-07-15 04:35:57',NULL,1,'0',NULL,723,'Cash: $10.55<br />'),('2019-07-15 04:38:36',NULL,1,'0',NULL,724,'Cash: $11.75<br />'),('2019-07-15 04:38:46',NULL,1,'0',NULL,725,'Cash: $50.00<br />'),('2019-07-15 04:39:45',NULL,1,'0',NULL,726,'Cash: $20.00<br />'),('2019-07-15 04:41:50',NULL,1,'0',NULL,727,'Cash: $110.45<br />'),('2019-07-15 04:42:22',NULL,1,'0',NULL,728,'Cash: $114.80<br />'),('2019-07-15 04:45:11',NULL,1,'0',NULL,729,'Cash: $237.70<br />'),('2019-07-15 04:47:35',NULL,1,'0',NULL,730,'Cash: $425.15<br />'),('2019-07-16 04:20:56',NULL,1,'0',NULL,731,'Cash: $13.95<br />'),('2019-07-16 22:37:29',NULL,1,'0',NULL,732,'Cash: $18.50<br />'),('2019-07-18 04:11:15',NULL,1,'0',NULL,733,'Cash: $10.55<br />'),('2019-07-18 17:42:15',NULL,1,'0',NULL,734,'Cash: $18.50<br />'),('2019-07-18 19:14:23',NULL,1,'0',NULL,735,'Cash: $18.50<br />'),('2019-07-20 18:12:24',NULL,1,'0',NULL,736,'Cash: $11.75<br />'),('2019-07-20 18:13:37',NULL,1,'0',NULL,737,'Cash: $58.75<br />'),('2019-07-20 18:15:48',NULL,1,'0',NULL,738,'Cash: $26.70<br />'),('2019-07-20 18:20:34',NULL,1,'0',NULL,739,'Cash: $26.70<br />'),('2019-07-20 18:28:21',NULL,1,'0',NULL,740,'Cash: $26.70<br />'),('2019-07-20 18:29:08',NULL,1,'0',NULL,741,'Cash: $26.70<br />'),('2019-07-20 18:35:09',NULL,1,'0',NULL,742,'Cash: $26.70<br />'),('2019-07-20 18:35:18',NULL,1,'0',NULL,743,'Cash: $26.70<br />'),('2019-07-20 18:35:54',NULL,1,'0',NULL,744,'Cash: $26.70<br />'),('2019-07-20 19:20:36',NULL,1,'0',NULL,745,'Cash: $26.70<br />'),('2019-07-20 19:21:19',NULL,1,'0',NULL,746,'Cash: $26.70<br />'),('2019-07-20 19:24:32',NULL,1,'0',NULL,747,'Cash: $26.70<br />'),('2019-07-20 19:26:42',NULL,1,'0',NULL,748,'Cash: $26.70<br />'),('2019-07-20 19:32:12',NULL,1,'0',NULL,749,'Cash: $26.70<br />'),('2019-07-20 20:50:47',NULL,1,'0',NULL,750,'Cash: $26.70<br />'),('2019-07-20 20:52:46',NULL,1,'0',NULL,751,'Cash: $26.70<br />'),('2019-07-20 20:53:03',NULL,1,'0',NULL,752,'Cash: $26.70<br />'),('2019-07-20 20:53:55',NULL,1,'0',NULL,753,'Cash: $26.70<br />'),('2019-07-20 20:55:42',NULL,1,'0',NULL,754,'Cash: $26.70<br />'),('2019-07-21 00:05:37',NULL,1,'0',NULL,755,'Cash: $26.70<br />'),('2019-07-21 00:16:04',NULL,1,'0',NULL,756,'Cash: $26.70<br />'),('2019-07-21 00:19:23',NULL,1,'0',NULL,757,'Cash: $26.70<br />'),('2019-07-21 00:21:14',NULL,1,'0',NULL,758,'Cash: $26.70<br />'),('2019-07-21 00:21:45',NULL,1,'0',NULL,759,'Cash: $26.70<br />'),('2019-07-21 00:26:56',NULL,1,'0',NULL,760,'Cash: $26.70<br />'),('2019-07-21 00:28:00',NULL,1,'0',NULL,761,'Debit Card: $26.70<br />'),('2019-07-21 00:36:07',NULL,1,'0',NULL,762,'Cash: $26.70<br />'),('2019-07-21 00:37:41',NULL,1,'0',NULL,763,'Cash: $26.70<br />'),('2019-07-21 00:37:54',NULL,1,'0',NULL,764,'Cash: $26.70<br />'),('2019-07-21 00:38:44',NULL,1,'0',NULL,765,'Cash: $26.70<br />'),('2019-07-21 00:41:46',NULL,1,'0',NULL,766,'Cash: $26.70<br />'),('2019-07-21 00:46:42',NULL,1,'0',NULL,767,'Cash: $26.70<br />'),('2019-07-21 01:15:28',NULL,1,'0',NULL,768,'Cash: $26.70<br />'),('2019-07-21 01:16:42',NULL,1,'0',NULL,769,'Cash: $26.70<br />'),('2019-07-21 01:19:17',NULL,1,'0',NULL,770,'Cash: $26.70<br />'),('2019-07-21 01:23:20',NULL,1,'0',NULL,771,'Cash: $26.70<br />'),('2019-07-21 01:23:25',NULL,1,'0',NULL,772,'Cash: $26.70<br />'),('2019-07-21 01:23:41',NULL,1,'0',NULL,773,'Cash: $26.70<br />'),('2019-07-21 01:25:08',NULL,1,'0',NULL,774,'Cash: $26.70<br />'),('2019-07-21 01:25:15',NULL,1,'0',NULL,775,'Cash: $26.70<br />'),('2019-07-21 01:32:15',NULL,1,'0',NULL,776,'Cash: $26.70<br />'),('2019-07-21 01:32:22',NULL,1,'0',NULL,777,'Cash: $26.70<br />'),('2019-07-21 01:32:35',NULL,1,'0',NULL,778,'Cash: $26.70<br />'),('2019-07-21 01:35:15',NULL,1,'0',NULL,779,'Cash: $26.70<br />'),('2019-07-21 01:35:22',NULL,1,'0',NULL,780,'Cash: $26.70<br />'),('2019-07-21 01:36:08',NULL,1,'0',NULL,781,'Cash: $26.70<br />'),('2019-07-21 01:36:15',NULL,1,'0',NULL,782,'Cash: $26.70<br />'),('2019-07-21 01:39:26',NULL,1,'0',NULL,783,'Cash: $26.70<br />'),('2019-07-21 01:39:32',NULL,1,'0',NULL,784,'Cash: $26.70<br />'),('2019-07-21 01:49:30',NULL,1,'0',NULL,785,'Cash: $26.70<br />'),('2019-07-21 01:50:53',NULL,1,'0',NULL,786,'Cash: $26.70<br />'),('2019-07-21 01:57:05',NULL,1,'0',NULL,787,'Cash: $26.70<br />'),('2019-07-21 01:59:14',NULL,1,'0',NULL,788,'Cash: $26.70<br />'),('2019-07-21 02:05:00',NULL,1,'0',NULL,789,'Cash: $26.70<br />'),('2019-07-21 02:06:37',NULL,1,'0',NULL,790,'Cash: $26.70<br />'),('2019-07-21 02:09:13',NULL,1,'0',NULL,791,'Cash: $26.70<br />'),('2019-07-21 02:11:41',NULL,1,'0',NULL,792,'Cash: $26.70<br />'),('2019-07-21 02:13:17',NULL,1,'0',NULL,793,'Cash: $26.70<br />'),('2019-07-21 02:15:13',NULL,1,'0',NULL,794,'Cash: $26.70<br />'),('2019-07-21 02:17:01',NULL,1,'0',NULL,795,'Cash: $26.70<br />'),('2019-07-21 02:19:02',NULL,1,'0',NULL,796,'Cash: $26.70<br />'),('2019-07-21 02:23:52',NULL,1,'0',NULL,797,'Cash: $26.70<br />'),('2019-07-21 02:25:28',NULL,1,'0',NULL,798,'Cash: $26.70<br />'),('2019-07-21 02:25:53',NULL,1,'0',NULL,799,'Cash: $26.70<br />'),('2019-07-21 02:26:28',NULL,1,'0',NULL,800,'Cash: $26.70<br />'),('2019-07-21 04:15:06',NULL,1,'0',NULL,801,'Cash: $26.70<br />'),('2019-07-21 04:15:12',NULL,1,'0',NULL,802,'Cash: $26.70<br />'),('2019-07-21 04:17:33',NULL,1,'0',NULL,803,'Cash: $26.70<br />'),('2019-07-21 04:17:39',NULL,1,'0',NULL,804,'Cash: $26.70<br />'),('2019-07-21 04:19:01',NULL,1,'0',NULL,805,'Cash: $26.70<br />'),('2019-07-21 04:19:08',NULL,1,'0',NULL,806,'Cash: $26.70<br />'),('2019-07-21 04:29:30',NULL,1,'0',NULL,807,'Cash: $26.70<br />'),('2019-07-21 04:30:30',NULL,1,'0',NULL,808,'Cash: $26.70<br />'),('2019-07-21 04:31:44',NULL,1,'0',NULL,809,'Cash: $26.70<br />'),('2019-07-21 04:31:58',NULL,1,'0',NULL,810,'Cash: $26.70<br />'),('2019-07-21 04:34:10',NULL,1,'0',NULL,811,'Cash: $26.70<br />'),('2019-07-21 04:35:15',NULL,1,'0',NULL,812,'Cash: $26.70<br />'),('2019-07-21 04:40:36',NULL,1,'0',NULL,813,'Cash: $26.70<br />'),('2019-07-21 04:44:07',NULL,1,'0',NULL,814,'Cash: $26.70<br />'),('2019-07-21 04:45:24',NULL,1,'0',NULL,815,'Cash: $26.70<br />'),('2019-07-21 04:48:30',NULL,1,'0',NULL,816,'Cash: $26.70<br />'),('2019-07-21 05:08:16',NULL,1,'0',NULL,817,'Cash: $26.70<br />'),('2019-07-21 05:11:27',NULL,1,'0',NULL,818,'Cash: $26.70<br />'),('2019-07-21 05:13:08',NULL,1,'0',NULL,819,'Cash: $26.70<br />'),('2019-07-21 05:17:19',NULL,1,'0',NULL,820,'Cash: $26.70<br />'),('2019-07-21 05:19:58',NULL,1,'0',NULL,821,'Cash: $26.70<br />'),('2019-07-21 05:28:13',NULL,1,'0',NULL,822,'Cash: $26.70<br />'),('2019-07-21 05:29:50',NULL,1,'0',NULL,823,'Cash: $20.50<br />'),('2019-07-21 05:31:38',NULL,1,'0',NULL,824,'Cash: $41.95<br />'),('2019-07-21 05:34:21',NULL,1,'0',NULL,825,'Cash: $41.95<br />'),('2019-07-21 05:35:01',NULL,1,'0',NULL,826,'Cash: $41.95<br />'),('2019-07-21 05:36:43',NULL,1,'0',NULL,827,'Cash: $41.95<br />'),('2019-07-21 05:41:36',NULL,1,'0',NULL,828,'Cash: $41.95<br />'),('2019-07-21 05:46:26',NULL,1,'0',NULL,829,'Cash: $41.95<br />'),('2019-07-21 05:58:27',NULL,1,'0',NULL,830,'Cash: $41.95<br />'),('2019-07-21 06:02:03',NULL,1,'0',NULL,831,'Cash: $41.95<br />'),('2019-07-21 06:03:20',NULL,1,'0',NULL,832,'Cash: $41.95<br />'),('2019-07-21 06:03:59',NULL,1,'0',NULL,833,'Cash: $41.95<br />'),('2019-07-21 06:06:07',NULL,1,'0',NULL,834,'Cash: $41.95<br />'),('2019-07-21 06:13:49',NULL,1,'0',NULL,835,'Cash: $41.95<br />'),('2019-07-21 06:15:00',NULL,1,'0',NULL,836,'Cash: $41.95<br />'),('2019-07-21 06:17:23',NULL,1,'0',NULL,837,'Cash: $41.95<br />'),('2019-07-21 06:18:09',NULL,1,'0',NULL,838,'Cash: $41.95<br />'),('2019-07-21 06:18:50',NULL,1,'0',NULL,839,'Cash: $41.95<br />'),('2019-07-21 06:24:27',NULL,1,'0',NULL,840,'Cash: $41.95<br />'),('2019-07-21 06:30:16',NULL,1,'0',NULL,841,'Cash: $41.95<br />'),('2019-07-21 06:32:22',NULL,1,'0',NULL,842,'Cash: $41.95<br />'),('2019-07-21 06:37:31',NULL,1,'0',NULL,843,'Cash: $41.95<br />'),('2019-07-21 06:37:35',NULL,1,'0',NULL,844,'Cash: $41.95<br />'),('2019-07-21 06:37:38',NULL,1,'0',NULL,845,'Cash: $41.95<br />'),('2019-07-21 06:37:41',NULL,1,'0',NULL,846,'Cash: $41.95<br />'),('2019-07-21 06:37:45',NULL,1,'0',NULL,847,'Cash: $41.95<br />'),('2019-07-21 06:37:48',NULL,1,'0',NULL,848,'Cash: $41.95<br />'),('2019-07-21 06:37:52',NULL,1,'0',NULL,849,'Cash: $41.95<br />'),('2019-07-21 06:37:55',NULL,1,'0',NULL,850,'Cash: $41.95<br />'),('2019-07-21 06:37:59',NULL,1,'0',NULL,851,'Cash: $41.95<br />'),('2019-07-21 06:38:02',NULL,1,'0',NULL,852,'Cash: $41.95<br />'),('2019-07-21 06:38:06',NULL,1,'0',NULL,853,'Cash: $41.95<br />'),('2019-07-21 06:38:09',NULL,1,'0',NULL,854,'Cash: $41.95<br />'),('2019-07-21 06:38:12',NULL,1,'0',NULL,855,'Cash: $41.95<br />'),('2019-07-21 06:38:16',NULL,1,'0',NULL,856,'Cash: $41.95<br />'),('2019-07-21 06:38:19',NULL,1,'0',NULL,857,'Cash: $41.95<br />'),('2019-07-21 06:38:23',NULL,1,'0',NULL,858,'Cash: $41.95<br />'),('2019-07-21 06:38:26',NULL,1,'0',NULL,859,'Cash: $41.95<br />'),('2019-07-21 06:38:41',NULL,1,'0',NULL,860,'Cash: $41.95<br />'),('2019-07-21 06:38:45',NULL,1,'0',NULL,861,'Cash: $41.95<br />'),('2019-07-21 06:38:48',NULL,1,'0',NULL,862,'Cash: $41.95<br />'),('2019-07-21 06:38:52',NULL,1,'0',NULL,863,'Cash: $41.95<br />'),('2019-07-21 06:38:55',NULL,1,'0',NULL,864,'Cash: $41.95<br />'),('2019-07-21 06:38:59',NULL,1,'0',NULL,865,'Cash: $41.95<br />'),('2019-07-21 06:39:02',NULL,1,'0',NULL,866,'Cash: $41.95<br />'),('2019-07-21 06:39:05',NULL,1,'0',NULL,867,'Cash: $41.95<br />'),('2019-07-21 06:39:09',NULL,1,'0',NULL,868,'Cash: $41.95<br />'),('2019-07-21 06:39:12',NULL,1,'0',NULL,869,'Cash: $41.95<br />'),('2019-07-21 06:39:16',NULL,1,'0',NULL,870,'Cash: $41.95<br />'),('2019-07-21 06:39:31',NULL,1,'0',NULL,871,'Cash: $41.95<br />'),('2019-07-21 06:39:34',NULL,1,'0',NULL,872,'Cash: $41.95<br />'),('2019-07-21 06:39:38',NULL,1,'0',NULL,873,'Cash: $41.95<br />'),('2019-07-21 06:40:25',NULL,1,'0',NULL,874,'Cash: $41.95<br />'),('2019-07-21 06:48:43',NULL,1,'0',NULL,875,'Cash: $41.95<br />'),('2019-07-21 06:48:49',NULL,1,'0',NULL,876,'Cash: $41.95<br />'),('2019-07-21 06:48:54',NULL,1,'0',NULL,877,'Cash: $41.95<br />'),('2019-07-21 06:49:00',NULL,1,'0',NULL,878,'Cash: $41.95<br />'),('2019-07-21 06:49:06',NULL,1,'0',NULL,879,'Cash: $41.95<br />'),('2019-07-21 06:49:12',NULL,1,'0',NULL,880,'Cash: $41.95<br />'),('2019-07-21 06:49:17',NULL,1,'0',NULL,881,'Cash: $41.95<br />'),('2019-07-21 06:49:22',NULL,1,'0',NULL,882,'Cash: $41.95<br />'),('2019-07-21 06:49:28',NULL,1,'0',NULL,883,'Cash: $41.95<br />'),('2019-07-21 06:49:33',NULL,1,'0',NULL,884,'Cash: $41.95<br />'),('2019-07-21 06:49:39',NULL,1,'0',NULL,885,'Cash: $41.95<br />'),('2019-07-21 06:49:48',NULL,1,'0',NULL,886,'Cash: $41.95<br />'),('2019-07-21 06:49:53',NULL,1,'0',NULL,887,'Cash: $41.95<br />'),('2019-07-21 06:50:00',NULL,1,'0',NULL,888,'Cash: $41.95<br />'),('2019-07-21 06:50:14',NULL,1,'0',NULL,889,'Cash: $41.95<br />'),('2019-07-21 06:55:42',NULL,1,'0',NULL,890,'Cash: $41.95<br />'),('2019-07-21 06:55:48',NULL,1,'0',NULL,891,'Cash: $41.95<br />'),('2019-07-21 06:55:53',NULL,1,'0',NULL,892,'Cash: $41.95<br />'),('2019-07-21 07:01:18',NULL,1,'0',NULL,893,'Cash: $41.95<br />'),('2019-07-21 07:03:15',NULL,1,'0',NULL,894,'Cash: $26.70<br />'),('2019-07-21 17:18:25',NULL,1,'0',NULL,895,'Cash: $46.75<br />'),('2019-07-21 17:22:49',NULL,1,'0',NULL,896,'Cash: $46.15<br />'),('2019-07-21 17:26:54',NULL,1,'0',NULL,897,'Cash: $36.20<br />'),('2019-07-21 17:34:30',NULL,1,'0',NULL,898,'Cash: $89.15<br />'),('2019-07-21 17:48:09',NULL,1,'0',NULL,899,'Cash: $27.85<br />'),('2019-07-21 17:55:30',NULL,1,'0',NULL,900,'Cash: $35.00<br />'),('2019-07-21 17:56:51',NULL,1,'0',NULL,901,'Cash: $24.45<br />'),('2019-07-21 18:03:37',NULL,1,'0',NULL,902,'Cash: $43.95<br />'),('2019-07-21 18:09:27',NULL,1,'0',NULL,903,'Cash: $26.85<br />'),('2019-07-21 18:11:44',NULL,1,'0',NULL,904,'Cash: $35.00<br />'),('2019-07-21 19:13:52',NULL,1,'0',NULL,905,'Cash: $15.50<br />'),('2019-07-21 19:15:14',NULL,1,'0',NULL,906,'Cash: $24.45<br />'),('2019-07-22 00:30:57',NULL,1,'0',NULL,907,'Cash: $21.10<br />'),('2019-07-22 00:33:12',NULL,1,'0',NULL,908,'Cash: $58.40<br />'),('2019-07-22 00:36:56',NULL,1,'0',NULL,909,'Cash: $25.95<br />'),('2019-07-22 15:45:22',NULL,1,'0',NULL,910,'Cash: $24.45<br />'),('2019-07-22 15:58:06',NULL,1,'0',NULL,911,'Cash: $17.25<br />'),('2019-07-22 16:01:35',NULL,1,'0',NULL,912,'Cash: $35.45<br />'),('2019-07-22 16:08:20',NULL,1,'0',NULL,913,'Cash: $20.90<br />'),('2019-07-22 16:09:42',NULL,1,'0',NULL,914,'Cash: $22.90<br />'),('2019-07-22 16:11:55',NULL,1,'0',NULL,915,'Cash: $30.90<br />'),('2019-07-22 16:14:21',NULL,1,'0',NULL,916,'Cash: $26.90<br />'),('2019-07-22 16:16:26',NULL,1,'0',NULL,917,'Cash: $23.95<br />'),('2019-07-22 16:18:14',NULL,1,'0',NULL,918,'Cash: $30.90<br />'),('2019-07-22 16:20:02',NULL,1,'0',NULL,919,'Cash: $29.50<br />'),('2019-07-22 16:26:26',NULL,1,'0',NULL,920,'Cash: $24.45<br />'),('2019-07-22 16:34:55',NULL,1,'0',NULL,921,'Cash: $24.45<br />'),('2019-07-22 16:37:29',NULL,1,'0',NULL,922,'Cash: $24.45<br />'),('2019-07-22 16:57:50',NULL,1,'0',NULL,923,'Cash: $34.45<br />'),('2019-07-22 16:59:40',NULL,1,'0',NULL,924,'Cash: $19.50<br />'),('2019-07-22 17:01:34',NULL,1,'0',NULL,925,'Cash: $15.95<br />'),('2019-07-22 17:03:25',NULL,1,'0',NULL,926,'Cash: $6.95<br />'),('2019-07-22 17:04:57',NULL,1,'0',NULL,927,'Cash: $10.00<br />'),('2019-07-22 17:07:44',NULL,1,'0',NULL,928,'Cash: $10.55<br />'),('2019-07-22 17:11:21',NULL,1,'0',NULL,929,'Cash: $19.50<br />'),('2019-07-22 17:12:58',NULL,1,'0',NULL,930,'Cash: $10.55<br />'),('2019-07-22 17:14:31',NULL,1,'0',NULL,931,'Cash: $40.05<br />'),('2019-07-22 17:17:30',NULL,1,'0',NULL,932,'Cash: $19.50<br />'),('2019-07-22 17:26:21',NULL,1,'0',NULL,933,'Cash: $6.95<br />'),('2019-07-22 17:38:39',NULL,1,'0',NULL,934,'Cash: $26.45<br />'),('2019-07-22 18:02:19',NULL,1,'0',NULL,935,'Cash: $15.50<br />'),('2019-07-22 18:16:47',NULL,1,'0',NULL,936,'Cash: $10.55<br />'),('2019-07-22 18:20:31',NULL,1,'0',NULL,937,'Cash: $30.05<br />'),('2019-07-22 18:24:07',NULL,1,'0',NULL,938,'Cash: $24.45<br />'),('2019-07-22 18:26:17',NULL,1,'0',NULL,939,'Cash: $15.50<br />'),('2019-07-22 19:24:50',NULL,1,'0',NULL,940,'Cash: $15.50<br />'),('2019-07-22 19:26:27',NULL,1,'0',NULL,941,'Cash: $15.50<br />'),('2019-07-22 19:27:45',NULL,1,'0',NULL,942,'Cash: $10.55<br />'),('2019-07-22 19:31:00',NULL,1,'0',NULL,943,'Cash: $24.45<br />'),('2019-07-22 19:32:52',NULL,1,'0',NULL,944,'Cash: $4.95<br />'),('2019-07-22 19:35:09',NULL,1,'0',NULL,945,'Cash: $15.50<br />'),('2019-07-22 19:36:14',NULL,1,'0',NULL,946,'Cash: $10.55<br />'),('2019-07-22 19:43:48',NULL,1,'0',NULL,947,'Cash: $4.95<br />'),('2019-07-22 19:44:49',NULL,1,'0',NULL,948,'Cash: $24.45<br />'),('2019-07-22 19:45:36',NULL,1,'0',NULL,949,'Cash: $24.45<br />'),('2019-07-22 19:46:25',NULL,1,'0',NULL,950,'Cash: $100.00<br />'),('2019-07-22 22:57:05',NULL,1,'0',NULL,951,'Cash: $10.55<br />'),('2019-07-22 23:01:07',NULL,1,'0',NULL,952,'Cash: $22.50<br />'),('2019-07-22 23:05:39',NULL,1,'0',NULL,953,'Cash: $10.55<br />'),('2019-07-22 23:06:56',NULL,1,'0',NULL,954,'Cash: $10.55<br />'),('2019-07-22 23:07:49',NULL,1,'0',NULL,955,'Cash: $4.95<br />'),('2019-07-22 23:11:24',NULL,1,'0',NULL,956,'Cash: $24.45<br />'),('2019-07-22 23:12:33',NULL,1,'0',NULL,957,'Cash: $10.55<br />'),('2019-07-22 23:29:54',NULL,1,'0',NULL,958,'Cash: $22.50<br />'),('2019-07-22 23:34:32',NULL,1,'0',NULL,959,'Cash: $19.50<br />'),('2019-07-22 23:36:46',NULL,1,'0',NULL,960,'Cash: $15.50<br />'),('2019-07-23 01:20:44',NULL,1,'testing',NULL,961,'Cash: $18.90<br />'),('2019-07-23 01:27:02',NULL,1,'0',NULL,962,'Cash: $19.50<br />'),('2019-07-23 01:30:35',NULL,1,'0',NULL,963,'Cash: $11.90<br />'),('2019-07-23 01:33:44',NULL,1,'0',NULL,964,'Cash: $15.50<br />'),('2019-07-23 02:34:56',NULL,1,'0',NULL,965,'Cash: $15.50<br />'),('2019-07-23 02:36:35',NULL,1,'0',NULL,966,'Cash: $4.95<br />'),('2019-07-23 02:38:54',NULL,1,'0',NULL,967,'Cash: $20.90<br />'),('2019-07-23 02:41:02',NULL,1,'0',NULL,968,'Cash: $15.50<br />'),('2019-07-23 02:43:11',NULL,1,'0',NULL,969,'Cash: $19.50<br />'),('2019-07-23 02:44:35',NULL,1,'0',NULL,970,'Cash: $4.95<br />'),('2019-07-23 02:46:00',NULL,1,'0',NULL,971,'Cash: $4.95<br />'),('2019-07-23 02:46:48',NULL,1,'0',NULL,972,'Cash: $22.45<br />'),('2019-07-23 02:48:25',NULL,1,'0',NULL,973,'Cash: $17.50<br />'),('2019-07-23 02:49:29',NULL,1,'0',NULL,974,'Cash: $17.50<br />'),('2019-07-23 02:51:02',NULL,1,'0',NULL,975,'Cash: $17.50<br />'),('2019-07-23 02:52:50',NULL,1,'0',NULL,976,'Cash: $28.05<br />'),('2019-07-23 02:57:04',NULL,1,'0',NULL,977,'Cash: $18.90<br />'),('2019-07-23 03:00:30',NULL,1,'0',NULL,978,'Cash: $9.90<br />'),('2019-07-23 03:02:06',NULL,1,'0',NULL,979,'Cash: $19.50<br />'),('2019-07-23 03:06:09',NULL,1,'0',NULL,980,'Cash: $19.50<br />'),('2019-07-23 03:09:31',NULL,1,'0',NULL,981,'Cash: $10.55<br />'),('2019-07-23 03:12:13',NULL,1,'0',NULL,982,'Cash: $15.50<br />'),('2019-07-23 03:13:20',NULL,1,'0',NULL,983,'Cash: $30.05<br />'),('2019-07-23 03:15:07',NULL,1,'0',NULL,984,'Cash: $16.90<br />'),('2019-07-23 03:16:22',NULL,1,'0',NULL,985,'Cash: $0.00<br />'),('2019-07-23 03:25:18',NULL,1,'0',NULL,986,'Cash: $4.95<br />'),('2019-07-23 09:53:11',NULL,1,'0',NULL,987,'Cash: $11.00<br />'),('2019-07-23 21:35:40',NULL,1,'0',NULL,988,'Cash: $24.45<br />'),('2019-07-23 22:16:09',NULL,1,'0',NULL,989,'Cash: $17.50<br />'),('2019-07-24 00:55:15',NULL,1,'0',NULL,990,'Cash: $22.30<br />'),('2019-07-24 04:17:01',NULL,1,'0',NULL,991,'Cash: $18.50<br />'),('2019-07-24 04:18:30',NULL,1,'0',NULL,992,'Cash: $36.00<br />'),('2019-07-25 04:47:20',NULL,1,'0',NULL,993,'Cash: $11.00<br />'),('2019-07-29 22:12:18',NULL,1,'0',NULL,994,'Cash: $11.75<br />'),('2019-07-29 22:14:25',NULL,1,'0',NULL,995,'Cash: $10.55<br />'),('2019-07-29 23:53:43',NULL,1,'0',NULL,996,'Cash: $10.55<br />'),('2019-07-30 01:52:51',NULL,1,'0',NULL,997,'Cash: $30.05<br />'),('2019-07-30 01:53:51',NULL,1,'0',NULL,998,'Cash: $10.55<br />'),('2019-07-30 01:55:07',NULL,1,'0',NULL,999,'Cash: $10.55<br />'),('2019-07-30 02:36:30',NULL,1,'0',NULL,1000,'Cash: $100.00<br />'),('2019-07-30 19:35:50',NULL,1,'0',NULL,1001,'Cash: $22.30<br />'),('2019-07-30 19:36:15',NULL,1,'0',NULL,1002,'Cash: $10.55<br />'),('2019-07-30 19:41:38',NULL,1,'0',NULL,1003,'Cash: $10.55<br />'),('2019-07-30 20:11:38',NULL,1,'0',NULL,1004,'Cash: $10.55<br />'),('2019-07-30 20:12:03',NULL,1,'0',NULL,1005,'Cash: $10.55<br />'),('2019-07-30 23:08:58',NULL,1,'0',NULL,1006,'Cash: $10.55<br />'),('2019-07-30 23:10:04',NULL,1,'0',NULL,1007,'Cash: $19.50<br />'),('2019-07-30 23:12:14',NULL,1,'0',NULL,1008,'Cash: $10.55<br />'),('2019-07-30 23:24:04',NULL,1,'0',NULL,1009,'Cash: $14.95<br />'),('2019-07-31 00:22:06',NULL,1,'0',NULL,1010,'Cash: $15.50<br />'),('2019-07-31 00:24:02',NULL,1,'0',NULL,1011,'Cash: $4.95<br />'),('2019-07-31 00:29:48',NULL,1,'0',NULL,1012,'Cash: $24.45<br />'),('2019-07-31 00:32:57',NULL,1,'0',NULL,1013,'Cash: $19.50<br />'),('2019-07-31 00:35:49',NULL,1,'0',NULL,1014,'Cash: $16.90<br />'),('2019-07-31 00:45:59',NULL,1,'0',NULL,1015,'Cash: $100.00<br />'),('2019-07-31 00:50:11',NULL,1,'0',NULL,1016,'Cash: $11.95<br />'),('2019-07-31 00:57:05',NULL,1,'0',NULL,1017,'Cash: $19.50<br />'),('2019-07-31 01:05:14',NULL,1,'0',NULL,1018,'Cash: $43.95<br />'),('2019-07-31 01:06:31',NULL,1,'0',NULL,1019,'Cash: $6.95<br />'),('2019-07-31 01:25:21',NULL,1,'0',NULL,1020,'Cash: $24.45<br />'),('2019-07-31 01:31:35',NULL,1,'0',NULL,1021,'Cash: -$29.40<br />'),('2019-07-31 01:32:23',NULL,1,'0',NULL,1022,'Cash: $24.45<br />'),('2019-07-31 01:40:28',NULL,1,'0',NULL,1023,'Cash: $8.00<br />'),('2019-07-31 01:42:30',NULL,1,'0',NULL,1024,'Cash: $24.45<br />'),('2019-07-31 02:22:29',NULL,1,'0',NULL,1025,'Cash: $40.00<br />'),('2019-07-31 02:23:51',NULL,1,'0',NULL,1026,'Cash: $5.95<br />'),('2019-07-31 02:25:23',NULL,1,'0',NULL,1027,'Cash: $10.55<br />'),('2019-07-31 02:32:00',NULL,1,'0',NULL,1028,'Cash: $4.95<br />'),('2019-07-31 02:39:50',NULL,1,'0',NULL,1029,'Cash: $17.50<br />'),('2019-07-31 02:44:00',NULL,1,'0',NULL,1030,'Cash: $37.00<br />'),('2019-07-31 02:51:14',NULL,1,'0',NULL,1031,'Cash: $17.50<br />'),('2019-07-31 02:53:41',NULL,1,'0',NULL,1032,'Cash: $13.95<br />'),('2019-07-31 03:04:05',NULL,1,'0',NULL,1033,'Cash: $24.45<br />'),('2019-07-31 03:05:31',NULL,1,'0',NULL,1034,'Cash: $17.50<br />'),('2019-07-31 03:08:12',NULL,1,'0',NULL,1035,'Cash: $17.50<br />'),('2019-07-31 03:15:59',NULL,1,'0',NULL,1036,'Cash: $17.50<br />'),('2019-07-31 03:17:40',NULL,1,'0',NULL,1037,'Cash: $6.95<br />'),('2019-07-31 03:31:26',NULL,1,'0',NULL,1038,'Cash: $24.45<br />'),('2019-07-31 03:36:16',NULL,1,'0',NULL,1039,'Cash: $6.95<br />'),('2019-07-31 03:53:12',NULL,1,'0',NULL,1040,'Cash: $24.45<br />'),('2019-07-31 03:54:55',NULL,1,'0',NULL,1041,'Cash: $41.95<br />'),('2019-07-31 04:11:23',NULL,1,'0',NULL,1042,'Cash: $17.50<br />'),('2019-07-31 04:13:39',NULL,1,'0',NULL,1043,'Cash: $17.50<br />'),('2019-07-31 04:16:40',NULL,1,'0',NULL,1044,'Cash: $17.50<br />'),('2019-07-31 04:18:56',NULL,1,'0',NULL,1045,'Cash: $19.50<br />'),('2019-07-31 04:19:27',NULL,1,'0',NULL,1046,'Cash: $17.50<br />'),('2019-07-31 04:55:54',NULL,1,'0',NULL,1047,'Cash: $17.50<br />'),('2019-07-31 04:56:54',NULL,1,'0',NULL,1048,'Cash: $6.95<br />'),('2019-07-31 05:08:35',NULL,1,'0',NULL,1049,'Cash: $10.55<br />'),('2019-07-31 06:27:51',NULL,1,'0',NULL,1050,'Cash: $17.50<br />'),('2019-07-31 18:05:04',NULL,1,'0',NULL,1051,'Cash: $10.95<br />'),('2019-07-31 18:10:17',NULL,1,'0',NULL,1052,'Cash: $17.50<br />'),('2019-07-31 18:25:42',NULL,1,'0',NULL,1053,'Cash: $17.50<br />'),('2019-07-31 18:28:06',NULL,1,'0',NULL,1054,'Cash: $6.95<br />'),('2019-07-31 18:29:58',NULL,1,'0',NULL,1055,'Cash: $24.45<br />'),('2019-07-31 18:33:17',NULL,1,'0',NULL,1056,'Cash: $17.50<br />'),('2019-07-31 18:34:25',NULL,1,'0',NULL,1057,'Cash: $6.95<br />'),('2019-07-31 18:36:06',NULL,1,'0',NULL,1058,'Cash: $17.50<br />'),('2019-07-31 18:36:51',NULL,1,'0',NULL,1059,'Cash: $19.50<br />'),('2019-07-31 19:24:20',NULL,1,'0',NULL,1060,'Cash: $17.50<br />'),('2019-07-31 19:25:57',NULL,1,'0',NULL,1061,'Cash: $17.50<br />'),('2019-07-31 19:32:59',NULL,1,'0',NULL,1062,'Cash: $24.45<br />'),('2019-07-31 19:38:28',NULL,1,'0',NULL,1063,'Cash: $17.50<br />'),('2019-07-31 19:40:03',NULL,1,'0',NULL,1064,'Cash: $17.50<br />'),('2019-07-31 19:43:50',NULL,1,'0',NULL,1065,'Cash: $17.50<br />'),('2019-07-31 21:40:59',NULL,1,'0',NULL,1066,'Cash: $30.05<br />'),('2019-07-31 21:42:41',NULL,1,'0',NULL,1067,'Cash: $10.55<br />'),('2019-07-31 21:46:44',NULL,1,'0',NULL,1068,'Cash: $15.50<br />'),('2019-07-31 21:49:01',NULL,1,'0',NULL,1069,'Cash: $14.95<br />'),('2019-07-31 21:51:22',NULL,1,'0',NULL,1070,'Cash: $27.90<br />'),('2019-07-31 22:14:46',NULL,1,'0',NULL,1071,'Cash: $31.45<br />'),('2019-07-31 22:40:02',NULL,1,'0',NULL,1072,'Cash: $18.50<br />'),('2019-08-01 04:18:57',NULL,1,'0',NULL,1073,'Cheque: $17.50<br />'),('2019-08-01 04:19:23',NULL,1,'0',NULL,1074,'Cheque: $10.55<br />'),('2019-08-02 01:38:36',NULL,1,'0',NULL,1075,'Cash: $24.45<br />'),('2019-08-02 01:38:55',NULL,1,'0',NULL,1076,'Cash: $17.50<br />'),('2019-08-03 19:30:41',NULL,1,'0',NULL,1077,'Cash: $17.50<br />'),('2019-08-03 19:31:01',NULL,1,'0',NULL,1078,'Cash: $17.50<br />'),('2019-08-03 19:47:55',NULL,1,'0',NULL,1079,'Cash: $19.50<br />'),('2019-08-03 19:50:43',NULL,1,'0',NULL,1080,'Cash: $17.50<br />'),('2019-08-03 19:52:04',NULL,1,'0',NULL,1081,'Cash: $6.95<br />'),('2019-08-03 20:12:47',NULL,1,'0',NULL,1082,'Cash: $6.95<br />'),('2019-08-03 20:14:08',NULL,1,'0',NULL,1083,'Cash: $24.45<br />'),('2019-08-03 20:17:11',NULL,1,'0',NULL,1084,'Cash: $17.50<br />'),('2019-08-03 20:46:29',NULL,1,'0',NULL,1085,'Cash: $43.95<br />'),('2019-08-03 20:53:06',NULL,1,'0',NULL,1086,'Cash: $17.50<br />'),('2019-08-03 23:13:38',NULL,1,'0',NULL,1087,'Cash: $14.95<br />'),('2019-08-03 23:15:59',NULL,1,'0',NULL,1088,'Cash: $24.45<br />'),('2019-08-03 23:20:26',NULL,1,'0',NULL,1089,'Cash: $28.50<br />'),('2019-08-03 23:21:38',NULL,1,'0',NULL,1090,'Cash: $17.50<br />'),('2019-08-03 23:22:51',NULL,1,'0',NULL,1091,'Cash: $17.50<br />'),('2019-08-03 23:24:00',NULL,1,'0',NULL,1092,'Cash: $13.95<br />'),('2019-08-04 19:10:18',NULL,1,'0',NULL,1093,'Cash: $24.45<br />'),('2019-08-04 19:10:31',NULL,1,'0',NULL,1094,'Cash: $24.45<br />'),('2019-08-04 19:13:41',NULL,1,'0',NULL,1095,'Cash: $24.45<br />'),('2019-08-04 19:17:16',NULL,1,'0',NULL,1096,'Cash: $24.45<br />'),('2019-08-04 19:24:38',NULL,1,'0',NULL,1097,'Cash: $17.50<br />'),('2019-08-04 19:54:59',NULL,1,'0',NULL,1098,'Cash: $11.00<br />'),('2019-08-04 19:57:37',NULL,1,'0',NULL,1099,'Cash: $37.40<br />'),('2019-08-05 03:11:37',NULL,1,'0',NULL,1100,'Cash: $24.45<br />'),('2019-08-05 03:12:18',NULL,1,'0',NULL,1101,'Cash: $18.50<br />'),('2019-08-05 03:25:40',NULL,1,'0',NULL,1102,'Card: $17.50<br />'),('2019-08-05 03:26:29',NULL,1,'0',NULL,1103,'Card: $17.50<br />'),('2019-08-05 04:17:28',NULL,1,'0',NULL,1104,'Cash: $17.50<br />'),('2019-08-05 04:18:36',NULL,1,'0',NULL,1105,'Cash: $17.50<br />'),('2019-08-05 17:31:29',NULL,1,'0',NULL,1106,'Cash: $9.95<br />'),('2019-08-05 17:31:50',NULL,1,'0',NULL,1107,'Cash: $9.95<br />'),('2019-08-05 17:49:21',NULL,1,'0',NULL,1108,'Cash: $9.95<br />'),('2019-08-06 00:45:38',NULL,1,'0',NULL,1109,'Cash: $24.95<br />'),('2019-08-06 00:47:39',NULL,1,'0',NULL,1110,'Cash: $10.78<br />'),('2019-08-06 00:49:19',NULL,1,'0',NULL,1111,'Cash: $31.50<br />'),('2019-08-06 05:19:06',NULL,1,'0',NULL,1112,'Cash: $24.95<br />'),('2019-08-06 05:22:32',NULL,1,'0',NULL,1113,'Cash: $28.00<br />'),('2019-08-21 22:16:23',NULL,1,'0',NULL,1114,'Cash: $20.00<br />'),('2019-08-21 22:20:20',NULL,1,'0',NULL,1115,'Cash: $20.00<br />'),('2019-08-21 22:26:08',NULL,1,'0',NULL,1116,'Cash: $20.00<br />'),('2019-08-21 22:27:24',NULL,1,'0',NULL,1117,'Cash: $12.95<br />'),('2019-08-21 22:38:43',NULL,1,'0',NULL,1118,'Cash: $12.95<br />'),('2019-08-21 22:40:38',NULL,1,'0',NULL,1119,'Cash: $12.95<br />'),('2019-08-21 22:44:04',NULL,1,'0',NULL,1120,'Cash: $12.95<br />'),('2019-08-21 22:48:40',NULL,1,'0',NULL,1121,'Cash: $8.95<br />'),('2019-08-21 23:02:33',NULL,1,'0',NULL,1122,'Cash: $8.95<br />'),('2019-08-21 23:09:40',NULL,1,'0',NULL,1123,'Cash: $8.95<br />'),('2019-08-21 23:13:33',NULL,1,'0',NULL,1124,'Cash: $10.95<br />'),('2019-08-22 01:11:50',NULL,1,'0',NULL,1125,'Cash: $8.95<br />'),('2019-08-22 02:44:48',NULL,1,'0',NULL,1126,'Cash: $8.95<br />'),('2019-08-22 02:45:10',NULL,1,'0',NULL,1127,'Cash: $12.95<br />'),('2019-08-22 05:01:01',NULL,1,'0',NULL,1128,'Cash: $10.00<br />'),('2019-08-22 05:41:14',NULL,1,'0',NULL,1129,'Cash: $19.95<br />'),('2019-08-22 05:42:41',NULL,1,'0',NULL,1130,'Cash: $1.50<br />'),('2019-08-22 05:44:05',NULL,1,'0',NULL,1131,'Cash: $20.00<br />'),('2019-08-22 05:56:42',NULL,1,'0',NULL,1132,'Cash: $10.00<br />'),('2019-08-22 05:57:08',NULL,1,'0',NULL,1133,'Cash: $7.95<br />'),('2019-08-22 05:58:13',NULL,1,'0',NULL,1134,'Cash: $10.00<br />'),('2019-08-23 20:35:27',NULL,1,'0',NULL,1135,'Cash: $1.71<br />'),('2019-08-23 20:51:12',NULL,1,'0',NULL,1136,'Cash: $302.93<br />'),('2019-08-23 20:53:00',NULL,1,'0',NULL,1137,'Cash: $11.81<br />'),('2019-08-23 20:58:13',NULL,1,'0',NULL,1138,'Cash: $15.00<br />'),('2019-08-23 21:05:20',NULL,1,'0',NULL,1139,'Cash: $42.64<br />'),('2019-08-23 21:11:33',NULL,1,'0',NULL,1140,'Cash: $10.00<br />'),('2019-08-23 21:13:28',NULL,1,'0',NULL,1141,'Cash: $11.00<br />'),('2019-08-23 21:57:25',NULL,1,'0',NULL,1142,'Cash: $100.00<br />'),('2019-08-23 22:01:27',NULL,1,'0',NULL,1143,'Cash: $68.89<br />'),('2019-08-23 22:03:48',NULL,1,'0',NULL,1144,'Cash: $93.20<br />'),('2019-08-23 22:08:32',NULL,1,'0',NULL,1145,'Cash: $28.04<br />'),('2019-08-23 22:10:28',NULL,1,'0',NULL,1146,'Cash: $57.40<br />'),('2019-08-23 22:13:12',NULL,1,'0',NULL,1147,'Cash: $9.90<br />'),('2019-08-23 22:13:52',NULL,1,'0',NULL,1148,'Cash: $9.90<br />'),('2019-08-23 22:18:10',NULL,1,'0',NULL,1149,'Cash: $99.28<br />'),('2019-08-23 22:26:54',NULL,1,'0',NULL,1150,'Cash: $208.08<br />'),('2019-08-23 22:32:01',NULL,1,'0',NULL,1151,'Cash: $50.00<br />'),('2019-08-23 22:36:41',NULL,1,'0',NULL,1152,'Cash: $5.00<br />'),('2019-08-23 22:38:59',NULL,1,'0',NULL,1153,'Cash: $33.49<br />'),('2019-08-23 22:41:53',NULL,1,'0',NULL,1154,'Cash: $7.50<br />'),('2019-08-23 22:42:55',NULL,1,'0',NULL,1155,'Cash: $7.50<br />'),('2019-08-23 23:13:50',NULL,1,'0',NULL,1156,'Cash: $100.00<br />'),('2019-08-23 23:19:41',NULL,1,'0',NULL,1157,'Cash: $51.68<br />'),('2019-08-23 23:24:25',NULL,1,'0',NULL,1158,'Cash: $5.00<br />'),('2019-08-23 23:25:50',NULL,1,'0',NULL,1159,'Cash: $10.00<br />'),('2019-08-23 23:38:31',NULL,1,'0',NULL,1160,'Cash: $20.00<br />'),('2019-08-23 23:43:54',NULL,1,'0',NULL,1161,'Cash: $2.50<br />'),('2019-08-23 23:48:47',NULL,1,'0',NULL,1162,'Cash: $16.52<br />'),('2019-08-23 23:53:31',NULL,1,'0',NULL,1163,'Cash: $100.00<br />'),('2019-08-24 00:08:18',NULL,1,'0',NULL,1164,'Cash: $26.97<br />'),('2019-08-24 00:27:53',NULL,1,'0',NULL,1165,'Cash: $370.00<br />'),('2019-08-24 00:32:29',NULL,1,'0',NULL,1166,'Cash: $60.00<br />'),('2019-08-24 00:37:53',NULL,1,'0',NULL,1167,'Cash: $10.55<br />'),('2019-08-24 00:40:13',NULL,1,'0',NULL,1168,'Cash: $20.00<br />'),('2019-08-24 00:43:25',NULL,1,'0',NULL,1169,'Cash: $266.30<br />'),('2019-08-24 00:46:44',NULL,1,'0',NULL,1170,'Cash: $9.21<br />'),('2019-08-24 00:48:53',NULL,1,'0',NULL,1171,'Cash: $10.00<br />'),('2019-08-24 00:51:10',NULL,1,'0',NULL,1172,'Cash: $150.00<br />'),('2019-08-24 00:53:50',NULL,1,'0',NULL,1173,'Cash: $300.00<br />'),('2019-08-24 00:56:11',NULL,1,'0',NULL,1174,'Cash: $50.00<br />'),('2019-08-24 01:00:22',NULL,1,'0',NULL,1175,'Cash: $19.43<br />'),('2019-08-24 01:07:49',NULL,1,'0',NULL,1176,'Cash: $5.00<br />'),('2019-08-25 19:48:27',NULL,1,'0',NULL,1177,'Cash: $302.93<br />'),('2019-08-25 20:04:34',NULL,1,'0',NULL,1178,'Cash: $390.60<br />'),('2019-08-25 20:06:26',NULL,1,'0',NULL,1179,'Cash: $384.00<br />'),('2019-08-25 20:22:20',NULL,1,'0',NULL,1180,'Cash: $555.66<br />'),('2019-08-25 20:24:01',NULL,1,'0',NULL,1181,'Cash: $134.90<br />'),('2019-08-25 20:25:09',NULL,1,'0',NULL,1182,'Cash: $99.28<br />'),('2019-08-25 20:42:00',NULL,1,'0',NULL,1183,'Cash: $234.16<br />'),('2019-08-25 20:50:47',NULL,1,'0',NULL,1184,'Cash: $2.50<br />'),('2019-08-25 20:56:28',NULL,1,'0',NULL,1185,'Cash: $2.50<br />'),('2019-08-25 21:33:07',NULL,1,'0',NULL,1186,'Cash: $390.00<br />'),('2019-08-25 21:35:34',NULL,1,'0',NULL,1187,'Cash: $5.00<br />'),('2019-08-25 21:37:06',NULL,1,'0',NULL,1188,'Cash: $5.73<br />'),('2019-08-25 21:42:03',NULL,1,'0',NULL,1189,'Cash: $11.00<br />'),('2019-08-25 21:44:02',NULL,1,'0',NULL,1190,'Cash: $10.20<br />'),('2019-08-25 22:45:47',NULL,1,'0',NULL,1191,'Cash: $69.79<br />');
/*!40000 ALTER TABLE `ospos_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_sales_items`
--

DROP TABLE IF EXISTS `ospos_sales_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_items` (
  `sale_id` int(10) NOT NULL DEFAULT '0',
  `sale_time` datetime NOT NULL,
  `item_id` int(10) NOT NULL DEFAULT '0',
  `description` varchar(30) DEFAULT NULL,
  `serialnumber` varchar(30) DEFAULT NULL,
  `line` int(3) NOT NULL DEFAULT '0',
  `quantity_purchased` float NOT NULL,
  `item_cost_price` decimal(15,2) NOT NULL,
  `item_unit_price` decimal(15,2) NOT NULL,
  `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
  `item_location` int(11) NOT NULL,
  PRIMARY KEY (`sale_id`,`item_id`,`line`),
  KEY `sale_id` (`sale_id`),
  KEY `item_id` (`item_id`),
  KEY `item_location` (`item_location`),
  CONSTRAINT `ospos_sales_items_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`),
  CONSTRAINT `ospos_sales_items_ibfk_2` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`),
  CONSTRAINT `ospos_sales_items_ibfk_3` FOREIGN KEY (`item_location`) REFERENCES `ospos_stock_locations` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_items`
--

LOCK TABLES `ospos_sales_items` WRITE;
/*!40000 ALTER TABLE `ospos_sales_items` DISABLE KEYS */;
INSERT INTO `ospos_sales_items` VALUES (1,'0000-00-00 00:00:00',1,'','',1,0.388,5.80,10.05,0.00,2),(2,'0000-00-00 00:00:00',1,'','',1,0.388,5.80,10.05,0.00,2),(3,'0000-00-00 00:00:00',1,'','',1,0.388,5.80,10.05,0.00,2),(4,'0000-00-00 00:00:00',4,'','',1,0.309,5.00,10.05,0.00,2),(5,'0000-00-00 00:00:00',11,'','',1,0.31,5.00,10.78,0.00,2),(6,'0000-00-00 00:00:00',11,'','',1,0.31,5.00,10.78,0.00,2),(8,'0000-00-00 00:00:00',27,'','',3,0.309,4.00,6.95,0.00,2),(9,'0000-00-00 00:00:00',27,'','',1,0.309,4.00,6.95,0.00,2),(10,'0000-00-00 00:00:00',35,'','',1,0.31,15.00,28.00,0.00,2),(11,'0000-00-00 00:00:00',1,'','',7,2.34,10.80,11.75,0.00,2),(11,'0000-00-00 00:00:00',15,'','',4,4.82,11.20,12.30,0.00,2),(11,'0000-00-00 00:00:00',19,'','',3,3.89,14.80,14.95,0.00,2),(11,'0000-00-00 00:00:00',22,'','',5,1,12.50,11.95,0.00,2),(11,'0000-00-00 00:00:00',24,'','',6,9.2,8.00,9.95,0.00,2),(12,'0000-00-00 00:00:00',7,'','',3,1.11,9.99,11.95,0.00,2),(12,'0000-00-00 00:00:00',8,'','',4,0.976,13.50,19.50,0.00,2),(12,'0000-00-00 00:00:00',14,'','',6,0.926,16.20,17.50,0.00,2),(12,'0000-00-00 00:00:00',24,'','',2,1.506,8.00,9.95,0.00,2),(12,'0000-00-00 00:00:00',34,'','',7,2.2,11.00,15.00,0.00,2),(12,'0000-00-00 00:00:00',36,'','',5,2,7.00,10.00,0.00,2),(12,'0000-00-00 00:00:00',37,'','',1,1.619,5.05,7.00,0.00,2),(13,'0000-00-00 00:00:00',12,'','',1,7.74,15.00,16.75,0.00,2),(14,'0000-00-00 00:00:00',20,'','',1,2.066,16.50,16.50,0.00,2),(15,'0000-00-00 00:00:00',12,'','',1,3.122,15.00,16.65,0.00,2),(16,'0000-00-00 00:00:00',14,'','',1,2.48,16.20,17.50,0.00,2),(16,'0000-00-00 00:00:00',19,'','',2,1.22,14.80,15.95,0.00,2),(17,'0000-00-00 00:00:00',24,'','',1,4.016,8.00,9.95,0.00,2),(18,'0000-00-00 00:00:00',12,'','',2,13.58,15.00,16.50,0.00,2),(18,'0000-00-00 00:00:00',14,'','',4,2.01,16.20,17.50,0.00,2),(18,'0000-00-00 00:00:00',15,'','',6,1.7,11.20,12.30,0.00,2),(18,'0000-00-00 00:00:00',17,'','',1,1.58,10.00,16.95,0.00,2),(18,'0000-00-00 00:00:00',19,'','',5,1.38,14.80,14.95,0.00,2),(18,'0000-00-00 00:00:00',24,'','',7,0.99,8.00,9.95,0.00,2),(18,'0000-00-00 00:00:00',37,'','',3,5.3,5.05,7.00,0.00,2),(19,'0000-00-00 00:00:00',14,'','',1,2.82,16.20,17.00,0.00,2),(20,'0000-00-00 00:00:00',16,'','',1,2.312,17.50,18.50,0.00,2),(20,'0000-00-00 00:00:00',37,'','',2,1.041,5.05,7.00,0.00,2),(21,'0000-00-00 00:00:00',14,'','',1,1.568,16.20,17.50,0.00,2),(21,'0000-00-00 00:00:00',37,'','',2,0.944,5.05,7.00,0.00,2),(22,'0000-00-00 00:00:00',37,'','',1,1.446,5.05,7.00,0.00,2),(23,'0000-00-00 00:00:00',37,'','',1,1.459,5.05,7.00,0.00,2),(24,'0000-00-00 00:00:00',12,'','',1,5.396,15.00,16.75,0.00,2),(24,'0000-00-00 00:00:00',27,'','',4,1.304,4.00,6.95,0.00,2),(24,'0000-00-00 00:00:00',46,'','',3,1.4,12.80,9.96,0.00,2),(24,'0000-00-00 00:00:00',47,'','',2,3,13.67,9.96,0.00,2),(25,'0000-00-00 00:00:00',7,'','',3,1.652,9.99,11.95,0.00,2),(25,'0000-00-00 00:00:00',12,'','',2,2.802,15.00,16.75,0.00,2),(25,'0000-00-00 00:00:00',16,'','',4,1.38,17.50,18.50,0.00,2),(25,'0000-00-00 00:00:00',23,'','',1,1.962,11.00,13.95,0.00,2),(26,'0000-00-00 00:00:00',52,'','',1,3.944,18.50,18.50,0.00,2),(26,'0000-00-00 00:00:00',53,'','',2,2,7.00,8.50,0.00,2),(27,'0000-00-00 00:00:00',16,'','',1,8.03,17.50,18.50,0.00,2),(28,'0000-00-00 00:00:00',37,'','',1,5,5.05,7.00,0.00,2),(29,'0000-00-00 00:00:00',12,'','',1,2.968,15.00,16.75,0.00,2),(30,'0000-00-00 00:00:00',36,'','',1,1.996,7.00,10.00,0.00,2),(31,'0000-00-00 00:00:00',14,'','',1,1.332,16.20,17.00,0.00,2),(32,'0000-00-00 00:00:00',19,'','',1,1.984,14.80,15.95,0.00,2),(33,'0000-00-00 00:00:00',19,'','',1,2.872,14.80,15.95,0.00,2),(34,'0000-00-00 00:00:00',19,'','',1,3.798,14.80,15.95,0.00,2),(35,'0000-00-00 00:00:00',14,'','',1,1.044,16.20,17.50,0.00,2),(35,'0000-00-00 00:00:00',16,'','',2,5.068,17.50,18.50,0.00,2),(36,'0000-00-00 00:00:00',28,'','',1,1.911,4.20,4.95,0.00,2),(37,'0000-00-00 00:00:00',14,'','',1,1.214,16.20,17.50,0.00,2),(38,'0000-00-00 00:00:00',14,'','',1,1.202,16.20,17.50,0.00,2),(39,'0000-00-00 00:00:00',15,'','',1,0.918,11.20,12.30,0.00,2),(40,'0000-00-00 00:00:00',28,'','',1,10.6,4.20,4.95,0.00,2),(41,'0000-00-00 00:00:00',22,'','',1,1,12.50,11.95,0.00,2),(42,'0000-00-00 00:00:00',12,'','',1,11.595,15.00,16.50,0.00,2),(43,'0000-00-00 00:00:00',12,'','',1,12.33,15.00,16.75,0.00,2),(44,'0000-00-00 00:00:00',33,'','',1,6.835,7.80,12.50,0.00,2),(45,'0000-00-00 00:00:00',15,'','',1,2.052,11.20,12.30,0.00,2),(46,'0000-00-00 00:00:00',37,'','',1,15,5.05,7.00,0.00,2),(47,'0000-00-00 00:00:00',16,'','',1,17.964,17.50,18.50,0.00,2),(48,'0000-00-00 00:00:00',27,'','',2,1.688,4.00,6.95,0.00,2),(48,'0000-00-00 00:00:00',37,'','',1,1.716,5.05,7.00,0.00,2),(49,'0000-00-00 00:00:00',14,'','',1,1.288,16.20,17.50,0.00,2),(50,'0000-00-00 00:00:00',16,'','',2,3.392,17.50,18.50,0.00,2),(50,'0000-00-00 00:00:00',37,'','',1,2.274,5.05,7.00,0.00,2),(51,'0000-00-00 00:00:00',7,'','',1,1.568,9.99,11.50,0.00,2),(51,'0000-00-00 00:00:00',37,'','',2,1.526,5.05,6.50,0.00,2),(52,'0000-00-00 00:00:00',14,'','',1,1.302,16.20,17.50,0.00,2),(53,'0000-00-00 00:00:00',1,'','',1,1.876,10.80,11.75,0.00,2),(54,'0000-00-00 00:00:00',7,'','',1,2.53,9.99,11.95,0.00,2),(55,'0000-00-00 00:00:00',16,'','',1,0.606,17.50,18.50,0.00,2),(56,'0000-00-00 00:00:00',5,'','',1,2.498,8.31,10.55,0.00,2),(56,'0000-00-00 00:00:00',7,'','',2,0.714,9.99,11.95,0.00,2),(57,'0000-00-00 00:00:00',12,'','',2,2.43,15.00,16.65,0.00,2),(57,'0000-00-00 00:00:00',17,'','',1,2.63,10.00,16.95,0.00,2),(58,'0000-00-00 00:00:00',12,'','',1,5.93,15.00,15.95,0.00,2),(58,'0000-00-00 00:00:00',37,'','',2,5,5.05,7.00,0.00,2),(59,'0000-00-00 00:00:00',15,'','',2,1.272,11.20,12.30,0.00,2),(59,'0000-00-00 00:00:00',53,'','',1,1.038,7.00,8.50,0.00,2),(60,'0000-00-00 00:00:00',17,'','',2,27.2,10.00,15.50,0.00,2),(60,'0000-00-00 00:00:00',28,'','',1,131.1,4.20,4.70,0.00,2),(61,'0000-00-00 00:00:00',37,'','',1,10,5.05,7.00,0.00,2),(62,'0000-00-00 00:00:00',12,'','',1,23.225,15.00,16.75,0.00,2),(62,'0000-00-00 00:00:00',16,'','',4,1.474,17.50,18.50,0.00,2),(62,'0000-00-00 00:00:00',17,'','',3,2.158,10.00,16.95,0.00,2),(62,'0000-00-00 00:00:00',44,'','',2,1.982,11.50,17.00,0.00,2),(63,'0000-00-00 00:00:00',15,'','',2,0.946,11.20,12.30,0.00,2),(63,'0000-00-00 00:00:00',27,'','',1,1.4,4.00,6.95,0.00,2),(64,'0000-00-00 00:00:00',14,'','',2,1.308,16.20,17.50,0.00,2),(64,'0000-00-00 00:00:00',19,'','',1,2.47,14.80,15.95,0.00,2),(65,'0000-00-00 00:00:00',12,'','',1,2.818,15.00,16.75,0.00,2),(66,'0000-00-00 00:00:00',12,'','',1,3.236,15.00,16.75,0.00,2),(67,'0000-00-00 00:00:00',7,'','',2,2.542,9.99,11.50,0.00,2),(67,'0000-00-00 00:00:00',16,'','',3,4.038,17.50,18.00,0.00,2),(67,'0000-00-00 00:00:00',37,'','',1,2.994,5.05,6.80,0.00,2),(68,'0000-00-00 00:00:00',19,'','',1,1.466,14.80,15.95,0.00,2),(69,'0000-00-00 00:00:00',1,'','',1,0.702,10.80,11.75,0.00,2),(70,'0000-00-00 00:00:00',12,'','',1,2.78,15.00,16.75,0.00,2),(70,'0000-00-00 00:00:00',17,'','',2,1.192,10.00,16.95,0.00,2),(71,'0000-00-00 00:00:00',12,'','',1,13.68,15.00,16.75,0.00,2),(72,'0000-00-00 00:00:00',12,'','',1,8.08,15.00,16.75,0.00,2),(73,'0000-00-00 00:00:00',12,'','',1,8.13,15.00,16.75,0.00,2),(74,'0000-00-00 00:00:00',12,'','',1,2.72,15.00,16.00,0.00,2),(75,'0000-00-00 00:00:00',10,'','',1,0.547,5.47,11.88,0.00,2),(76,'0000-00-00 00:00:00',12,'','',1,2.644,15.00,16.75,0.00,2),(77,'0000-00-00 00:00:00',16,'','',2,0.924,17.50,18.50,0.00,2),(77,'0000-00-00 00:00:00',37,'','',1,0.984,5.05,7.00,0.00,2),(78,'0000-00-00 00:00:00',1,'','',1,2.23,10.80,11.75,0.00,2),(79,'0000-00-00 00:00:00',7,'','',3,2.112,9.99,11.95,0.00,2),(79,'0000-00-00 00:00:00',15,'','',1,1.666,11.20,12.30,0.00,2),(79,'0000-00-00 00:00:00',53,'','',2,1.248,7.00,8.50,0.00,2),(80,'0000-00-00 00:00:00',7,'','',2,1.228,9.99,11.95,0.00,2),(80,'0000-00-00 00:00:00',14,'','',1,1.534,16.20,17.00,0.00,2),(81,'0000-00-00 00:00:00',12,'','',1,8.19,15.00,16.50,0.00,2),(82,'0000-00-00 00:00:00',14,'','',1,1.704,16.20,17.50,0.00,2),(82,'0000-00-00 00:00:00',16,'','',2,1.058,17.50,18.50,0.00,2),(83,'0000-00-00 00:00:00',16,'','',1,2.934,17.50,18.50,0.00,2),(83,'0000-00-00 00:00:00',53,'','',2,1.284,7.00,8.50,0.00,2),(84,'0000-00-00 00:00:00',16,'','',2,2.084,17.50,18.50,0.00,2),(84,'0000-00-00 00:00:00',19,'','',1,4.04,14.80,15.95,0.00,2),(85,'0000-00-00 00:00:00',14,'','',1,1.368,16.20,17.50,0.00,2),(86,'0000-00-00 00:00:00',27,'','',1,0.886,4.00,6.95,0.00,2),(87,'0000-00-00 00:00:00',7,'','',2,0.638,9.99,11.95,0.00,2),(87,'0000-00-00 00:00:00',19,'','',1,1.32,14.80,15.95,0.00,2),(88,'0000-00-00 00:00:00',37,'','',1,10,5.05,7.00,0.00,2),(89,'0000-00-00 00:00:00',16,'','',2,1.028,17.50,18.50,0.00,2),(89,'0000-00-00 00:00:00',22,'','',1,1.998,12.50,13.95,0.00,2),(90,'0000-00-00 00:00:00',15,'','',1,1.862,11.20,12.30,0.00,2),(91,'0000-00-00 00:00:00',1,'','',1,2.272,10.80,11.75,0.00,2),(91,'0000-00-00 00:00:00',4,'','',2,2.136,9.27,10.95,0.00,2),(91,'0000-00-00 00:00:00',5,'','',3,1.096,8.31,10.55,0.00,2),(91,'0000-00-00 00:00:00',27,'','',4,1.072,4.00,6.95,0.00,2),(91,'0000-00-00 00:00:00',28,'','',5,1.497,4.20,4.95,0.00,2),(92,'0000-00-00 00:00:00',12,'','',1,2.882,15.00,16.75,0.00,2),(93,'0000-00-00 00:00:00',12,'','',1,5.572,15.00,16.50,0.00,2),(94,'0000-00-00 00:00:00',15,'','',1,2.988,11.20,12.00,0.00,2),(95,'0000-00-00 00:00:00',14,'','',2,0.814,16.20,17.50,0.00,2),(95,'0000-00-00 00:00:00',19,'','',1,1.552,14.80,15.95,0.00,2),(96,'0000-00-00 00:00:00',37,'','',1,5,5.05,6.00,0.00,2),(97,'0000-00-00 00:00:00',19,'','',1,2.242,14.80,15.95,0.00,2),(98,'0000-00-00 00:00:00',17,'','',1,0.718,10.00,16.95,0.00,2),(99,'0000-00-00 00:00:00',28,'','',1,1.184,4.20,4.95,0.00,2),(100,'0000-00-00 00:00:00',37,'','',1,7.076,5.05,7.00,0.00,2),(101,'0000-00-00 00:00:00',15,'','',1,1.576,11.20,12.30,0.00,2),(101,'0000-00-00 00:00:00',19,'','',2,1.558,14.80,15.95,0.00,2),(102,'0000-00-00 00:00:00',14,'','',1,1.462,16.20,17.50,0.00,2),(103,'0000-00-00 00:00:00',14,'','',1,1.008,16.20,17.50,0.00,2),(104,'0000-00-00 00:00:00',12,'','',1,12.535,15.00,16.50,0.00,2),(105,'0000-00-00 00:00:00',1,'','',2,1.1,10.80,12.30,0.00,2),(105,'0000-00-00 00:00:00',15,'','',1,6.9,11.20,12.30,0.00,2),(106,'0000-00-00 00:00:00',14,'','',2,1.364,16.20,17.50,0.00,2),(106,'0000-00-00 00:00:00',15,'','',1,0.948,11.20,12.30,0.00,2),(106,'0000-00-00 00:00:00',47,'','',3,1,13.67,14.95,0.00,2),(107,'0000-00-00 00:00:00',37,'','',1,1.036,5.05,7.00,0.00,2),(108,'0000-00-00 00:00:00',1,'','',1,6.61,10.80,11.20,0.00,2),(109,'0000-00-00 00:00:00',19,'','',1,2.112,14.80,15.95,0.00,2),(109,'0000-00-00 00:00:00',48,'','',2,1.6,14.50,9.96,0.00,2),(110,'0000-00-00 00:00:00',12,'','',1,3.244,15.00,16.75,0.00,2),(111,'0000-00-00 00:00:00',12,'','',1,2.678,15.00,16.50,0.00,2),(112,'0000-00-00 00:00:00',15,'','',2,2.968,11.20,12.30,0.00,2),(112,'0000-00-00 00:00:00',19,'','',3,2.142,14.80,15.95,0.00,2),(112,'0000-00-00 00:00:00',24,'','',1,1.686,8.00,9.95,0.00,2),(113,'0000-00-00 00:00:00',19,'','',1,4.058,14.80,15.95,0.00,2),(114,'0000-00-00 00:00:00',12,'','',1,4.862,15.00,16.75,0.00,2),(115,'0000-00-00 00:00:00',14,'','',1,1.192,16.20,17.50,0.00,2),(116,'0000-00-00 00:00:00',7,'','',1,1.284,9.99,11.95,0.00,2),(117,'0000-00-00 00:00:00',7,'','',2,1.344,9.99,11.95,0.00,2),(117,'0000-00-00 00:00:00',53,'','',1,1.608,7.00,8.50,0.00,2),(118,'0000-00-00 00:00:00',12,'','',1,9.075,15.00,16.50,0.00,2),(119,'0000-00-00 00:00:00',16,'','',1,1.092,17.50,18.50,0.00,2),(120,'0000-00-00 00:00:00',28,'','',1,1.374,4.20,4.95,0.00,2),(121,'0000-00-00 00:00:00',28,'','',1,1.598,4.20,4.95,0.00,2),(122,'0000-00-00 00:00:00',37,'','',1,0.299,5.05,7.00,0.00,2),(123,'0000-00-00 00:00:00',12,'','',1,15.31,15.00,16.50,0.00,2),(123,'0000-00-00 00:00:00',37,'','',2,15,5.05,7.00,0.00,2),(124,'0000-00-00 00:00:00',37,'','',1,5,5.05,7.00,0.00,2),(125,'0000-00-00 00:00:00',14,'','',1,2.442,16.20,17.50,0.00,2),(126,'0000-00-00 00:00:00',38,'','',1,1.5,3.25,8.00,0.00,2),(127,'0000-00-00 00:00:00',15,'','',1,1.06,11.20,12.30,0.00,2),(128,'0000-00-00 00:00:00',17,'','',1,1.066,10.00,16.95,0.00,2),(129,'0000-00-00 00:00:00',23,'','',1,13.625,11.00,13.50,0.00,2),(130,'0000-00-00 00:00:00',53,'','',1,3.5,7.00,10.00,0.00,2),(131,'0000-00-00 00:00:00',16,'','',1,5.308,17.50,18.50,0.00,2),(132,'0000-00-00 00:00:00',7,'','',1,4.236,9.99,11.95,0.00,2),(133,'0000-00-00 00:00:00',12,'','',1,13.515,15.00,16.75,0.00,2),(134,'0000-00-00 00:00:00',48,'','',1,3.2,14.50,9.96,0.00,2),(135,'0000-00-00 00:00:00',15,'','',1,1.236,11.20,12.30,0.00,2),(136,'0000-00-00 00:00:00',15,'','',1,2.524,11.20,12.30,0.00,2),(137,'0000-00-00 00:00:00',14,'','',1,2.552,16.20,17.50,0.00,2),(138,'0000-00-00 00:00:00',14,'','',2,1.47,16.20,17.50,0.00,2),(138,'0000-00-00 00:00:00',19,'','',1,1.614,14.80,15.95,0.00,2),(139,'0000-00-00 00:00:00',1,'','',1,1.582,10.80,11.75,0.00,2),(140,'0000-00-00 00:00:00',12,'','',1,4.858,15.00,16.00,0.00,2),(141,'0000-00-00 00:00:00',1,'','',1,1.73,10.80,11.75,0.00,2),(142,'0000-00-00 00:00:00',36,'','',1,10,7.00,10.00,0.00,2),(143,'0000-00-00 00:00:00',28,'','',1,0.907,4.20,4.95,0.00,2),(144,'0000-00-00 00:00:00',20,'','',1,3.874,16.50,15.00,0.00,2),(145,'0000-00-00 00:00:00',53,'','',1,1.316,7.00,8.50,0.00,2),(146,'0000-00-00 00:00:00',7,'','',2,1.31,9.99,11.95,0.00,2),(146,'0000-00-00 00:00:00',16,'','',1,1.99,17.50,18.50,0.00,2),(147,'0000-00-00 00:00:00',37,'','',1,0.299,5.05,7.00,0.00,2),(148,'0000-00-00 00:00:00',19,'','',1,2.59,14.80,15.95,0.00,2),(149,'0000-00-00 00:00:00',22,'','',1,1.012,12.50,13.95,0.00,2),(150,'0000-00-00 00:00:00',20,'','',1,3.6,16.50,15.00,0.00,2),(151,'0000-00-00 00:00:00',27,'','',1,1.055,4.00,6.95,0.00,2),(151,'0000-00-00 00:00:00',38,'','',2,0.5,3.25,9.00,0.00,2),(152,'0000-00-00 00:00:00',12,'','',1,11.9,15.00,16.50,0.00,2),(153,'0000-00-00 00:00:00',37,'','',1,5,5.05,7.00,0.00,2),(154,'0000-00-00 00:00:00',28,'','',2,1.77,4.20,4.95,0.00,2),(154,'0000-00-00 00:00:00',37,'','',1,1.111,5.05,7.00,0.00,2),(155,'0000-00-00 00:00:00',12,'','',1,2.796,15.00,16.75,0.00,2),(156,'0000-00-00 00:00:00',37,'','',1,0.98,5.05,7.00,0.00,2),(157,'0000-00-00 00:00:00',17,'','',1,0.798,10.00,16.95,0.00,2),(158,'0000-00-00 00:00:00',37,'','',1,0.74,5.05,7.00,0.00,2),(159,'0000-00-00 00:00:00',14,'','',1,0.536,16.20,17.50,0.00,2),(160,'0000-00-00 00:00:00',12,'','',1,10.71,15.00,16.50,0.00,2),(161,'0000-00-00 00:00:00',12,'','',1,2.426,15.00,16.75,0.00,2),(162,'0000-00-00 00:00:00',15,'','',1,2.232,11.20,12.30,0.00,2),(162,'0000-00-00 00:00:00',24,'','',3,3.488,8.00,9.95,0.00,2),(162,'0000-00-00 00:00:00',37,'','',2,1.326,5.05,7.00,0.00,2),(163,'0000-00-00 00:00:00',53,'','',1,1.408,7.00,8.50,0.00,2),(164,'0000-00-00 00:00:00',12,'','',1,9.15,15.00,16.50,0.00,2),(164,'0000-00-00 00:00:00',37,'','',2,10,5.05,7.00,0.00,2),(165,'0000-00-00 00:00:00',17,'','',2,0.806,10.00,16.95,0.00,2),(165,'0000-00-00 00:00:00',19,'','',1,2.056,14.80,15.95,0.00,2),(166,'0000-00-00 00:00:00',16,'','',1,0.674,17.50,18.50,0.00,2),(167,'0000-00-00 00:00:00',14,'','',1,1.392,16.20,17.50,0.00,2),(168,'0000-00-00 00:00:00',12,'','',1,2.954,15.00,16.50,0.00,2),(169,'0000-00-00 00:00:00',5,'','',2,5.102,8.31,10.55,0.00,2),(169,'0000-00-00 00:00:00',28,'','',1,7.84,4.20,4.95,0.00,2),(170,'0000-00-00 00:00:00',12,'','',1,17.415,15.00,16.50,0.00,2),(170,'0000-00-00 00:00:00',16,'','',2,13.105,17.50,18.00,0.00,2),(171,'0000-00-00 00:00:00',5,'','',1,1.256,8.31,10.55,0.00,2),(171,'0000-00-00 00:00:00',15,'','',2,1.806,11.20,12.30,0.00,2),(172,'0000-00-00 00:00:00',26,'','',1,2.822,0.00,21.00,0.00,2),(173,'0000-00-00 00:00:00',14,'','',1,1.746,16.20,17.50,0.00,2),(174,'0000-00-00 00:00:00',15,'','',1,1.674,11.20,11.00,0.00,2),(175,'0000-00-00 00:00:00',50,'','',3,5.4,6.50,10.00,0.00,2),(176,'0000-00-00 00:00:00',12,'','',1,18.825,15.00,16.75,0.00,2),(176,'0000-00-00 00:00:00',37,'','',2,10,5.05,7.00,0.00,2),(177,'0000-00-00 00:00:00',12,'','',1,5.946,15.00,16.75,0.00,2),(178,'0000-00-00 00:00:00',37,'','',1,3.611,5.05,6.50,0.00,2),(179,'0000-00-00 00:00:00',19,'','',3,1.428,14.80,15.95,0.00,2),(179,'0000-00-00 00:00:00',33,'','',2,6.3,7.80,12.50,0.00,2),(179,'0000-00-00 00:00:00',51,'','',1,1.982,24.00,28.00,0.00,2),(180,'0000-00-00 00:00:00',14,'','',1,2.894,16.20,17.50,0.00,2),(181,'0000-00-00 00:00:00',19,'','',1,1.208,14.80,15.95,0.00,2),(182,'0000-00-00 00:00:00',15,'','',1,1.17,11.20,12.30,0.00,2),(183,'0000-00-00 00:00:00',15,'','',3,1.104,11.20,12.30,0.00,2),(183,'0000-00-00 00:00:00',16,'','',1,2.282,17.50,18.50,0.00,2),(183,'0000-00-00 00:00:00',38,'','',4,0.5,3.25,9.00,0.00,2),(183,'0000-00-00 00:00:00',53,'','',2,1.034,7.00,8.50,0.00,2),(184,'0000-00-00 00:00:00',15,'','',1,0.818,11.20,12.30,0.00,2),(185,'0000-00-00 00:00:00',4,'','',4,7.5,9.27,10.95,0.00,2),(185,'0000-00-00 00:00:00',8,'','',3,1.002,13.50,19.00,0.00,2),(185,'0000-00-00 00:00:00',12,'','',2,12.255,15.00,16.50,0.00,2),(185,'0000-00-00 00:00:00',15,'','',1,2.78,11.20,12.30,0.00,2),(186,'0000-00-00 00:00:00',14,'','',3,2.2,16.20,17.50,0.00,2),(186,'0000-00-00 00:00:00',15,'','',2,1.3,11.20,12.30,0.00,2),(186,'0000-00-00 00:00:00',19,'','',1,2.316,14.80,15.95,0.00,2),(187,'0000-00-00 00:00:00',15,'','',1,1.256,11.20,12.30,0.00,2),(187,'0000-00-00 00:00:00',37,'','',2,1.534,5.05,7.00,0.00,2),(188,'0000-00-00 00:00:00',53,'','',1,1.644,7.00,8.50,0.00,2),(189,'0000-00-00 00:00:00',37,'','',1,1.436,5.05,7.00,0.00,2),(190,'0000-00-00 00:00:00',19,'','',1,1.162,14.80,15.95,0.00,2),(191,'0000-00-00 00:00:00',16,'','',1,3.96,17.50,18.50,0.00,2),(192,'0000-00-00 00:00:00',12,'','',1,6.21,15.00,16.50,0.00,2),(193,'0000-00-00 00:00:00',49,'','',1,1.1,9.27,10.00,0.00,2),(194,'0000-00-00 00:00:00',14,'','',1,2.114,16.20,17.50,0.00,2),(195,'0000-00-00 00:00:00',19,'','',1,2.388,14.80,15.95,0.00,2),(196,'0000-00-00 00:00:00',12,'','',1,16.415,15.00,16.50,0.00,2),(196,'0000-00-00 00:00:00',37,'','',2,10,5.05,7.00,0.00,2),(197,'0000-00-00 00:00:00',37,'','',1,4.951,5.05,7.00,0.00,2),(198,'0000-00-00 00:00:00',19,'','',1,1.962,14.80,15.95,0.00,2),(199,'0000-00-00 00:00:00',12,'','',1,12.57,15.00,16.75,0.00,2),(199,'0000-00-00 00:00:00',37,'','',2,5,5.05,7.00,0.00,2),(200,'0000-00-00 00:00:00',37,'','',1,20,5.05,6.80,0.00,2),(201,'0000-00-00 00:00:00',33,'','',1,6.725,7.80,12.50,0.00,2),(202,'0000-00-00 00:00:00',14,'','',1,3.11,16.20,17.50,0.00,2),(203,'0000-00-00 00:00:00',37,'','',1,1.654,5.05,7.00,0.00,2),(203,'0000-00-00 00:00:00',47,'','',2,1.5,13.67,9.96,0.00,2),(204,'0000-00-00 00:00:00',12,'','',2,2.912,15.00,16.75,0.00,2),(204,'0000-00-00 00:00:00',48,'','',1,4.8,14.50,9.96,0.00,2),(205,'0000-00-00 00:00:00',5,'','',2,1.582,8.31,9.80,0.00,2),(205,'0000-00-00 00:00:00',14,'','',1,1.65,16.20,17.00,0.00,2),(206,'0000-00-00 00:00:00',14,'','',1,1.516,16.20,17.50,0.00,2),(207,'0000-00-00 00:00:00',50,'','',1,2.473,6.50,8.00,0.00,2),(208,'0000-00-00 00:00:00',16,'','',1,2.37,17.50,17.00,0.00,2),(209,'0000-00-00 00:00:00',15,'','',1,1.706,11.20,12.30,0.00,2),(209,'0000-00-00 00:00:00',38,'','',2,1,3.25,9.00,0.00,2),(210,'0000-00-00 00:00:00',1,'','',1,1.138,10.80,11.75,0.00,2),(211,'0000-00-00 00:00:00',24,'','',1,5.14,8.00,9.95,0.00,2),(212,'0000-00-00 00:00:00',16,'','',1,6.07,17.50,18.50,0.00,2),(213,'0000-00-00 00:00:00',16,'','',1,2.82,17.50,17.50,0.00,2),(214,'0000-00-00 00:00:00',24,'','',1,2.142,8.00,9.95,0.00,2),(215,'0000-00-00 00:00:00',17,'','',1,0.804,10.00,16.95,0.00,2),(216,'0000-00-00 00:00:00',5,'','',1,2.796,8.31,9.80,0.00,2),(217,'0000-00-00 00:00:00',14,'','',1,1.246,16.20,17.50,0.00,2),(218,'0000-00-00 00:00:00',15,'','',3,0.898,11.20,12.30,0.00,2),(218,'0000-00-00 00:00:00',36,'','',2,1.004,7.00,10.00,0.00,2),(218,'0000-00-00 00:00:00',38,'','',1,0.5,3.25,9.00,0.00,2),(219,'0000-00-00 00:00:00',24,'','',1,1.088,8.00,9.95,0.00,2),(220,'0000-00-00 00:00:00',28,'','',1,1.321,4.20,4.95,0.00,2),(221,'0000-00-00 00:00:00',4,'','',1,0.486,9.27,10.50,0.00,2),(222,'0000-00-00 00:00:00',37,'','',1,5,5.05,7.00,0.00,2),(223,'0000-00-00 00:00:00',16,'','',1,1.582,17.50,18.50,0.00,2),(224,'0000-00-00 00:00:00',37,'','',1,5,5.05,6.00,0.00,2),(225,'0000-00-00 00:00:00',19,'','',2,2.26,14.80,15.95,0.00,2),(225,'0000-00-00 00:00:00',20,'','',1,5.416,16.50,16.50,0.00,2),(226,'0000-00-00 00:00:00',12,'','',1,12.075,15.00,16.50,0.00,2),(227,'0000-00-00 00:00:00',7,'','',3,1.772,9.99,11.95,0.00,2),(227,'0000-00-00 00:00:00',15,'','',2,1.498,11.20,12.30,0.00,2),(227,'0000-00-00 00:00:00',16,'','',1,1.086,17.50,18.50,0.00,2),(227,'0000-00-00 00:00:00',37,'','',4,1.43,5.05,7.00,0.00,2),(228,'0000-00-00 00:00:00',7,'','',3,0.914,9.99,11.95,0.00,2),(228,'0000-00-00 00:00:00',14,'','',1,1.378,16.20,17.50,0.00,2),(228,'0000-00-00 00:00:00',46,'','',2,1.4,12.80,9.96,0.00,2),(229,'0000-00-00 00:00:00',37,'','',2,5,5.05,7.00,0.00,2),(230,'0000-00-00 00:00:00',14,'','',1,1.578,16.20,17.50,0.00,2),(231,'0000-00-00 00:00:00',28,'','',1,9.6,4.20,4.95,0.00,2),(232,'0000-00-00 00:00:00',14,'','',1,0.838,16.20,17.50,0.00,2),(233,'0000-00-00 00:00:00',48,'','',1,1.6,14.50,9.96,0.00,2),(234,'0000-00-00 00:00:00',53,'','',1,2.376,7.00,8.50,0.00,2),(235,'0000-00-00 00:00:00',17,'','',1,0.788,10.00,16.95,0.00,2),(236,'0000-00-00 00:00:00',37,'','',1,1.721,5.05,7.00,0.00,2),(237,'0000-00-00 00:00:00',53,'','',1,0.454,7.00,8.50,0.00,2),(238,'0000-00-00 00:00:00',30,'','',1,3.168,0.00,20.00,0.00,2),(239,'0000-00-00 00:00:00',16,'','',1,1.69,17.50,18.50,0.00,2),(240,'0000-00-00 00:00:00',28,'','',1,0.903,4.20,4.95,0.00,2),(241,'0000-00-00 00:00:00',15,'','',3,1.408,11.20,12.30,0.00,2),(242,'0000-00-00 00:00:00',12,'','',1,2.926,15.00,16.75,0.00,2),(243,'0000-00-00 00:00:00',15,'','',1,1.754,11.20,12.30,0.00,2),(244,'0000-00-00 00:00:00',24,'','',2,2.57,8.00,9.95,0.00,2),(244,'0000-00-00 00:00:00',53,'','',1,1.054,7.00,8.50,0.00,2),(245,'0000-00-00 00:00:00',17,'','',1,3,10.00,16.95,0.00,2),(246,'0000-00-00 00:00:00',26,'','',1,2.768,0.00,13.50,0.00,2),(247,'0000-00-00 00:00:00',17,'','',2,2.142,10.00,16.95,0.00,2),(247,'0000-00-00 00:00:00',27,'','',1,3.581,4.00,6.95,0.00,2),(247,'0000-00-00 00:00:00',37,'','',3,1.634,5.05,7.00,0.00,2),(248,'0000-00-00 00:00:00',14,'','',2,3.248,16.20,17.50,0.00,2),(248,'0000-00-00 00:00:00',48,'','',1,3.2,14.50,9.96,0.00,2),(249,'0000-00-00 00:00:00',53,'','',1,1.031,7.00,8.00,0.00,2),(249,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(250,'0000-00-00 00:00:00',28,'','',1,53.75,4.20,3.00,0.00,2),(250,'0000-00-00 00:00:00',37,'','',3,5,5.05,7.00,0.00,2),(251,'0000-00-00 00:00:00',14,'','',1,1.68,16.20,17.50,0.00,2),(251,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(252,'0000-00-00 00:00:00',1,'','',1,1.902,10.80,11.75,0.00,2),(252,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(253,'0000-00-00 00:00:00',14,'','',1,2.904,16.20,17.50,0.00,2),(253,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(254,'0000-00-00 00:00:00',16,'','',1,5.254,17.50,18.50,0.00,2),(254,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(255,'0000-00-00 00:00:00',16,'','',1,2.228,17.50,18.50,0.00,2),(255,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(256,'0000-00-00 00:00:00',14,'','',1,2.284,16.20,17.50,0.00,2),(256,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(257,'0000-00-00 00:00:00',1,'','',1,5.724,10.80,11.50,0.00,2),(257,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(258,'0000-00-00 00:00:00',5,'','',1,7.5,8.31,10.55,0.00,2),(259,'0000-00-00 00:00:00',17,'','',1,1.356,10.00,16.95,0.00,2),(259,'0000-00-00 00:00:00',37,'','',4,1.154,5.05,7.00,0.00,2),(259,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(260,'0000-00-00 00:00:00',12,'','',1,11.085,15.00,16.50,0.00,2),(260,'0000-00-00 00:00:00',54,'','',3,4,0.05,0.10,0.00,2),(261,'0000-00-00 00:00:00',19,'','',3,1.536,14.80,15.95,0.00,2),(261,'0000-00-00 00:00:00',37,'','',2,1.366,5.05,7.00,0.00,2),(261,'0000-00-00 00:00:00',53,'','',1,1.851,7.00,8.50,0.00,2),(261,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(262,'0000-00-00 00:00:00',12,'','',1,5.828,15.00,16.50,0.00,2),(262,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(263,'0000-00-00 00:00:00',15,'','',1,2.044,11.20,12.30,0.00,2),(264,'0000-00-00 00:00:00',24,'','',3,3.282,8.00,9.95,0.00,2),(264,'0000-00-00 00:00:00',54,'','',2,1,0.05,0.10,0.00,2),(265,'0000-00-00 00:00:00',33,'','',1,5.5,7.80,12.50,0.00,2),(266,'0000-00-00 00:00:00',15,'','',1,1.412,11.20,12.30,0.00,2),(266,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(267,'0000-00-00 00:00:00',12,'','',1,9.43,15.00,16.75,0.00,2),(267,'0000-00-00 00:00:00',37,'','',4,2.86,5.05,7.00,0.00,2),(267,'0000-00-00 00:00:00',48,'','',5,1.6,14.50,9.96,0.00,2),(267,'0000-00-00 00:00:00',54,'','',3,4,0.05,0.10,0.00,2),(268,'0000-00-00 00:00:00',12,'','',1,2.696,15.00,16.50,0.00,2),(268,'0000-00-00 00:00:00',16,'','',4,2.282,17.50,18.50,0.00,2),(268,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(269,'0000-00-00 00:00:00',37,'','',1,2.289,5.05,7.00,0.00,2),(270,'0000-00-00 00:00:00',37,'','',1,10,5.05,7.00,0.00,2),(271,'0000-00-00 00:00:00',12,'','',1,2.914,15.00,15.80,0.00,2),(272,'0000-00-00 00:00:00',15,'','',1,1.448,11.20,12.30,0.00,2),(272,'0000-00-00 00:00:00',24,'','',4,3.024,8.00,9.95,0.00,2),(272,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(273,'0000-00-00 00:00:00',12,'','',1,3.062,15.00,16.50,0.00,2),(273,'0000-00-00 00:00:00',37,'','',4,1.454,5.05,7.00,0.00,2),(273,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(274,'0000-00-00 00:00:00',19,'','',1,1.29,14.80,15.95,0.00,2),(274,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(275,'0000-00-00 00:00:00',14,'','',1,1.012,16.20,17.50,0.00,2),(276,'0000-00-00 00:00:00',15,'','',2,1.686,11.20,12.30,0.00,2),(276,'0000-00-00 00:00:00',37,'','',1,1.151,5.05,7.00,0.00,2),(276,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(277,'0000-00-00 00:00:00',16,'','',1,1.702,17.50,18.50,0.00,2),(278,'0000-00-00 00:00:00',14,'','',1,0.766,16.20,16.50,0.00,2),(279,'0000-00-00 00:00:00',16,'','',1,2.368,17.50,18.00,0.00,2),(280,'0000-00-00 00:00:00',15,'','',1,1.382,11.20,12.30,0.00,2),(280,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(281,'0000-00-00 00:00:00',12,'','',1,11.755,15.00,16.75,0.00,2),(282,'0000-00-00 00:00:00',14,'','',1,2.088,16.20,17.50,0.00,2),(283,'0000-00-00 00:00:00',16,'','',1,2.8,17.50,18.00,0.00,2),(284,'0000-00-00 00:00:00',24,'','',1,10.6,8.00,9.95,0.00,2),(285,'0000-00-00 00:00:00',37,'','',1,1.31,5.05,7.00,0.00,2),(285,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(286,'0000-00-00 00:00:00',29,'','',1,9.2,12.00,14.00,0.00,2),(287,'0000-00-00 00:00:00',19,'','',1,1.922,14.80,15.95,0.00,2),(287,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(288,'0000-00-00 00:00:00',14,'','',1,1.122,16.20,17.50,0.00,2),(288,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(289,'0000-00-00 00:00:00',12,'','',1,42.88,15.00,16.50,0.00,2),(289,'0000-00-00 00:00:00',37,'','',2,10,5.05,6.80,0.00,2),(290,'0000-00-00 00:00:00',12,'','',1,8.045,15.00,16.50,0.00,2),(291,'0000-00-00 00:00:00',12,'','',1,9.82,15.00,16.50,0.00,2),(291,'0000-00-00 00:00:00',37,'','',2,10,5.05,7.00,0.00,2),(291,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(292,'0000-00-00 00:00:00',16,'','',1,2.7,17.50,18.50,0.00,2),(292,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(293,'0000-00-00 00:00:00',16,'','',1,3.96,17.50,18.50,0.00,2),(294,'0000-00-00 00:00:00',35,'','',1,10,8.50,10.00,0.00,2),(294,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(295,'0000-00-00 00:00:00',37,'','',1,4.214,5.05,7.00,0.00,2),(295,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(296,'0000-00-00 00:00:00',16,'','',1,1.564,17.50,18.50,0.00,2),(296,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(297,'0000-00-00 00:00:00',5,'','',1,2.682,8.31,10.55,0.00,2),(297,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(298,'0000-00-00 00:00:00',14,'','',1,0.932,16.20,17.50,0.00,2),(298,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(299,'0000-00-00 00:00:00',12,'','',1,8.795,15.00,16.50,0.00,2),(299,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(300,'0000-00-00 00:00:00',16,'','',1,3.906,17.50,18.50,0.00,2),(300,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(301,'0000-00-00 00:00:00',8,'','',4,1,13.50,19.50,0.00,2),(301,'0000-00-00 00:00:00',30,'','',3,2.316,0.00,16.95,0.00,2),(301,'0000-00-00 00:00:00',36,'','',2,2,7.00,10.00,0.00,2),(301,'0000-00-00 00:00:00',54,'','',6,1,0.05,0.10,0.00,2),(302,'0000-00-00 00:00:00',16,'','',1,2.212,17.50,18.50,0.00,2),(302,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(303,'0000-00-00 00:00:00',12,'','',1,44.96,15.00,16.50,0.00,2),(303,'0000-00-00 00:00:00',37,'','',3,1,5.05,7.00,0.00,2),(304,'0000-00-00 00:00:00',37,'','',2,14,5.05,7.00,0.00,2),(305,'0000-00-00 00:00:00',14,'','',1,0.954,16.20,17.50,0.00,2),(305,'0000-00-00 00:00:00',19,'','',2,1.6,14.80,15.95,0.00,2),(305,'0000-00-00 00:00:00',24,'','',3,1.108,8.00,9.95,0.00,2),(305,'0000-00-00 00:00:00',38,'','',5,1,3.25,4.00,0.00,2),(305,'0000-00-00 00:00:00',54,'','',7,3,0.05,0.10,0.00,2),(306,'0000-00-00 00:00:00',4,'','',2,1.423,9.27,10.95,0.00,2),(306,'0000-00-00 00:00:00',5,'','',3,1.128,8.31,10.55,0.00,2),(306,'0000-00-00 00:00:00',14,'','',1,1.472,16.20,17.50,0.00,2),(306,'0000-00-00 00:00:00',54,'','',4,3,0.05,0.10,0.00,2),(307,'0000-00-00 00:00:00',3,'','',2,1,8.40,9.00,0.00,2),(307,'0000-00-00 00:00:00',12,'','',1,2.868,15.00,16.50,0.00,2),(307,'0000-00-00 00:00:00',19,'','',5,2.334,14.80,15.95,0.00,2),(307,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(308,'0000-00-00 00:00:00',19,'','',1,1.508,14.80,15.95,0.00,2),(308,'0000-00-00 00:00:00',38,'','',3,1,3.25,4.00,0.00,2),(308,'0000-00-00 00:00:00',54,'','',5,1,0.05,0.10,0.00,2),(309,'0000-00-00 00:00:00',36,'','',2,1,7.00,10.00,0.00,2),(310,'0000-00-00 00:00:00',36,'','',2,1,7.00,10.00,0.00,2),(310,'0000-00-00 00:00:00',38,'','',4,1,3.25,4.00,0.00,2),(311,'0000-00-00 00:00:00',16,'','',1,6.975,17.50,18.50,0.00,2),(311,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(312,'0000-00-00 00:00:00',47,'','',2,2,13.67,14.95,0.00,2),(312,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(313,'0000-00-00 00:00:00',24,'','',1,3.904,8.00,9.95,0.00,2),(313,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(314,'0000-00-00 00:00:00',24,'','',4,2.04,8.00,9.95,0.00,2),(314,'0000-00-00 00:00:00',28,'','',1,2.105,4.20,4.95,0.00,2),(314,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(315,'0000-00-00 00:00:00',15,'','',1,1.936,11.20,12.30,0.00,2),(315,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(316,'0000-00-00 00:00:00',52,'','',1,4.3,18.50,18.50,0.00,2),(316,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(317,'0000-00-00 00:00:00',16,'','',1,1.944,17.50,18.50,0.00,2),(317,'0000-00-00 00:00:00',24,'','',2,2.79,8.00,9.95,0.00,2),(317,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(318,'0000-00-00 00:00:00',14,'','',1,4.014,16.20,17.50,0.00,2),(318,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(319,'0000-00-00 00:00:00',12,'','',1,3.23,15.00,16.75,0.00,2),(319,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(320,'0000-00-00 00:00:00',15,'','',1,2.256,11.20,12.30,0.00,2),(320,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(321,'0000-00-00 00:00:00',28,'','',1,4.008,4.20,4.95,0.00,2),(321,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(322,'0000-00-00 00:00:00',46,'','',2,1,12.80,13.95,0.00,2),(322,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(323,'0000-00-00 00:00:00',50,'','',1,2.073,6.50,8.00,0.00,2),(323,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(324,'0000-00-00 00:00:00',37,'','',1,1.446,5.05,7.00,0.00,2),(324,'0000-00-00 00:00:00',38,'','',3,1,3.25,4.00,0.00,2),(324,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(325,'0000-00-00 00:00:00',12,'','',1,2.658,15.00,16.75,0.00,2),(326,'0000-00-00 00:00:00',14,'','',1,1.684,16.20,17.50,0.00,2),(326,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(327,'0000-00-00 00:00:00',16,'','',1,3.272,17.50,18.33,0.00,2),(328,'0000-00-00 00:00:00',12,'','',1,16.478,15.00,16.50,0.00,2),(328,'0000-00-00 00:00:00',37,'','',3,10,5.05,7.00,0.00,2),(328,'0000-00-00 00:00:00',54,'','',5,4,0.05,0.10,0.00,2),(329,'0000-00-00 00:00:00',15,'','',2,1.034,11.20,12.30,0.00,2),(329,'0000-00-00 00:00:00',16,'','',1,3.038,17.50,18.50,0.00,2),(329,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(330,'0000-00-00 00:00:00',37,'','',1,1.456,5.05,7.00,0.00,2),(331,'0000-00-00 00:00:00',7,'','',1,1.63,9.99,11.95,0.00,2),(331,'0000-00-00 00:00:00',37,'','',3,1.6,5.05,7.00,0.00,2),(331,'0000-00-00 00:00:00',44,'','',2,1.826,11.50,17.50,0.00,2),(331,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(332,'0000-00-00 00:00:00',28,'','',1,7.915,4.20,4.95,0.00,2),(332,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(333,'0000-00-00 00:00:00',12,'','',1,2.948,15.00,16.75,0.00,2),(333,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(334,'0000-00-00 00:00:00',28,'','',1,1.41,4.20,4.95,0.00,2),(334,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(335,'0000-00-00 00:00:00',12,'','',2,3.144,15.00,16.75,0.00,2),(335,'0000-00-00 00:00:00',19,'','',1,2.654,14.80,15.95,0.00,2),(335,'0000-00-00 00:00:00',24,'','',3,1.524,8.00,9.95,0.00,2),(335,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(336,'0000-00-00 00:00:00',15,'','',2,2.032,11.20,12.30,0.00,2),(336,'0000-00-00 00:00:00',16,'','',1,1.134,17.50,18.50,0.00,2),(336,'0000-00-00 00:00:00',54,'','',6,3,0.05,0.10,0.00,2),(336,'0000-00-00 00:00:00',55,'','',4,1,5.00,13.95,0.00,2),(337,'0000-00-00 00:00:00',14,'','',1,1.618,16.20,17.50,0.00,2),(337,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(338,'0000-00-00 00:00:00',5,'','',2,2.23,8.31,10.55,0.00,2),(338,'0000-00-00 00:00:00',7,'','',3,1.792,9.99,11.95,0.00,2),(338,'0000-00-00 00:00:00',12,'','',1,2.31,15.00,16.75,0.00,2),(338,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(339,'0000-00-00 00:00:00',14,'','',2,0.82,16.20,17.50,0.00,2),(339,'0000-00-00 00:00:00',37,'','',1,0.9,5.05,7.00,0.00,2),(339,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(340,'0000-00-00 00:00:00',12,'','',1,5.796,15.00,16.75,0.00,2),(340,'0000-00-00 00:00:00',37,'','',2,5.66,5.05,7.00,0.00,2),(340,'0000-00-00 00:00:00',54,'','',4,3,0.05,0.10,0.00,2),(341,'0000-00-00 00:00:00',12,'','',1,2.64,15.00,16.75,0.00,2),(341,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(342,'0000-00-00 00:00:00',15,'','',1,1.208,11.20,12.30,0.00,2),(342,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(343,'0000-00-00 00:00:00',12,'','',3,3.326,15.00,16.75,0.00,2),(343,'0000-00-00 00:00:00',16,'','',1,2.69,17.50,18.50,0.00,2),(343,'0000-00-00 00:00:00',37,'','',2,2.89,5.05,7.00,0.00,2),(343,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(344,'0000-00-00 00:00:00',5,'','',1,1,8.31,10.55,0.00,2),(344,'0000-00-00 00:00:00',19,'','',2,3.072,14.80,15.95,0.00,2),(344,'0000-00-00 00:00:00',36,'','',3,1,7.00,10.00,0.00,2),(344,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(345,'0000-00-00 00:00:00',36,'','',1,1,7.00,9.00,0.00,2),(346,'0000-00-00 00:00:00',14,'','',1,1.284,16.20,17.50,0.00,2),(346,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(347,'0000-00-00 00:00:00',28,'','',1,10,4.20,4.95,0.00,2),(348,'0000-00-00 00:00:00',36,'','',2,10,7.00,10.00,0.00,2),(349,'0000-00-00 00:00:00',12,'','',1,23.42,15.00,16.50,0.00,2),(350,'0000-00-00 00:00:00',54,'','',2,8,0.05,0.10,0.00,2),(351,'0000-00-00 00:00:00',7,'','',1,3.326,9.99,11.95,0.00,2),(351,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(352,'0000-00-00 00:00:00',37,'','',2,5,5.05,6.00,0.00,2),(353,'0000-00-00 00:00:00',4,'','',2,0.48,9.27,10.95,0.00,2),(353,'0000-00-00 00:00:00',20,'','',1,1.54,16.50,16.50,0.00,2),(353,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(354,'0000-00-00 00:00:00',5,'','',1,1.964,8.31,10.55,0.00,2),(354,'0000-00-00 00:00:00',24,'','',2,0.926,8.00,9.95,0.00,2),(354,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(355,'0000-00-00 00:00:00',14,'','',1,3.912,16.20,17.50,0.00,2),(355,'0000-00-00 00:00:00',37,'','',2,4.444,5.05,7.00,0.00,2),(355,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(356,'0000-00-00 00:00:00',52,'','',1,3.3,18.50,18.00,0.00,2),(356,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(357,'0000-00-00 00:00:00',37,'','',1,1.576,5.05,7.00,0.00,2),(357,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(358,'0000-00-00 00:00:00',12,'','',1,4.88,15.00,16.50,0.00,2),(358,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(359,'0000-00-00 00:00:00',33,'','',1,30.15,7.80,12.50,0.00,2),(360,'0000-00-00 00:00:00',12,'','',1,2.688,15.00,16.75,0.00,2),(360,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(361,'0000-00-00 00:00:00',1,'','',1,1.04,10.80,11.50,0.00,2),(361,'0000-00-00 00:00:00',5,'','',2,0.782,8.31,10.55,0.00,2),(361,'0000-00-00 00:00:00',22,'','',3,1.99,12.50,13.50,0.00,2),(361,'0000-00-00 00:00:00',37,'','',4,0.909,5.05,6.80,0.00,2),(362,'0000-00-00 00:00:00',12,'','',1,2.546,15.00,16.00,0.00,2),(363,'0000-00-00 00:00:00',14,'','',1,2.99,16.20,17.50,0.00,2),(363,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(364,'0000-00-00 00:00:00',36,'','',2,1,7.00,10.00,0.00,2),(365,'0000-00-00 00:00:00',16,'','',1,3.312,17.50,18.50,0.00,2),(365,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(366,'0000-00-00 00:00:00',16,'','',1,2.488,17.50,18.50,0.00,2),(367,'0000-00-00 00:00:00',15,'','',1,1.998,11.20,12.30,0.00,2),(367,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(368,'0000-00-00 00:00:00',14,'','',1,1.852,16.20,17.50,0.00,2),(368,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(369,'0000-00-00 00:00:00',38,'','',2,25,3.25,4.00,0.00,2),(370,'0000-00-00 00:00:00',38,'','',2,25,3.25,4.00,0.00,2),(371,'0000-00-00 00:00:00',38,'','',2,25,3.25,4.00,0.00,2),(372,'0000-00-00 00:00:00',16,'','',1,2.372,17.50,18.50,0.00,2),(372,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(373,'0000-00-00 00:00:00',20,'','',1,1.248,16.50,16.00,0.00,2),(373,'0000-00-00 00:00:00',37,'','',2,1.369,5.05,7.00,0.00,2),(373,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(374,'0000-00-00 00:00:00',37,'','',2,2,5.05,7.00,0.00,2),(374,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(375,'0000-00-00 00:00:00',37,'','',2,3,5.05,7.00,0.00,2),(375,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(376,'0000-00-00 00:00:00',17,'','',1,0.6,10.00,16.95,0.00,2),(377,'0000-00-00 00:00:00',37,'','',2,5,5.05,7.00,0.00,2),(378,'0000-00-00 00:00:00',24,'','',1,1.39,8.00,9.95,0.00,2),(378,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(379,'0000-00-00 00:00:00',12,'','',1,6.385,15.00,16.50,0.00,2),(379,'0000-00-00 00:00:00',37,'','',3,5,5.05,7.00,0.00,2),(379,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(380,'0000-00-00 00:00:00',19,'','',1,4.004,14.80,15.95,0.00,2),(380,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(381,'0000-00-00 00:00:00',12,'','',1,2.595,15.00,16.75,0.00,2),(381,'0000-00-00 00:00:00',15,'','',2,1.162,11.20,12.30,0.00,2),(381,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(382,'0000-00-00 00:00:00',19,'','',1,2.458,14.80,15.95,0.00,2),(382,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(383,'0000-00-00 00:00:00',1,'','',2,3.69,10.80,11.50,0.00,2),(383,'0000-00-00 00:00:00',20,'','',1,3.16,16.50,16.00,0.00,2),(383,'0000-00-00 00:00:00',54,'','',4,3,0.05,0.10,0.00,2),(384,'0000-00-00 00:00:00',14,'','',1,1.39,16.20,17.50,0.00,2),(384,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(385,'0000-00-00 00:00:00',16,'','',1,3.692,17.50,18.50,0.00,2),(385,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(386,'0000-00-00 00:00:00',38,'','',2,1,3.25,4.00,0.00,2),(387,'0000-00-00 00:00:00',27,'','',1,1.009,4.00,6.95,0.00,2),(387,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(388,'0000-00-00 00:00:00',37,'','',1,2.789,5.05,7.00,0.00,2),(388,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(389,'0000-00-00 00:00:00',15,'','',1,1.31,11.20,12.30,0.00,2),(389,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(390,'0000-00-00 00:00:00',15,'','',1,1.994,11.20,12.30,0.00,2),(390,'0000-00-00 00:00:00',38,'','',3,2,3.25,4.50,0.00,2),(390,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(391,'0000-00-00 00:00:00',14,'','',1,2.716,16.20,17.00,0.00,2),(391,'0000-00-00 00:00:00',38,'','',3,2,3.25,4.00,0.00,2),(391,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(392,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(392,'0000-00-00 00:00:00',57,'','',2,1,0.00,14.95,0.00,2),(393,'0000-00-00 00:00:00',16,'','',2,1,17.50,18.50,0.00,2),(393,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(394,'0000-00-00 00:00:00',16,'','',2,2.716,17.50,18.50,0.00,2),(395,'0000-00-00 00:00:00',15,'','',1,1.648,11.20,12.30,0.00,2),(395,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(396,'0000-00-00 00:00:00',16,'','',1,1.404,17.50,18.50,0.00,2),(396,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(397,'0000-00-00 00:00:00',34,'','',2,3.58,11.00,16.00,0.00,2),(397,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(398,'0000-00-00 00:00:00',12,'','',1,9.32,15.00,16.50,0.00,2),(398,'0000-00-00 00:00:00',37,'','',3,10,5.05,7.00,0.00,2),(398,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(399,'0000-00-00 00:00:00',19,'','',2,30,14.80,15.00,0.00,2),(400,'0000-00-00 00:00:00',49,'','',4,1,9.27,11.00,0.00,2),(400,'0000-00-00 00:00:00',54,'','',6,1,0.05,0.10,0.00,2),(400,'0000-00-00 00:00:00',55,'','',2,1,5.00,13.95,0.00,2),(401,'0000-00-00 00:00:00',14,'','',4,1.594,16.20,17.50,0.00,2),(401,'0000-00-00 00:00:00',28,'','',6,2.19,4.20,4.95,0.00,2),(401,'0000-00-00 00:00:00',37,'','',2,1.06,5.05,7.00,0.00,2),(401,'0000-00-00 00:00:00',54,'','',8,3,0.05,0.10,0.00,2),(402,'0000-00-00 00:00:00',16,'','',2,1.862,17.50,18.50,0.00,2),(402,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(403,'0000-00-00 00:00:00',13,'','',6,4.3,12.80,14.50,0.00,2),(403,'0000-00-00 00:00:00',38,'','',3,2,3.25,4.00,0.00,2),(403,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(404,'0000-00-00 00:00:00',14,'','',1,1.634,16.20,17.50,0.00,2),(404,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(405,'0000-00-00 00:00:00',14,'','',1,1.502,16.20,17.50,0.00,2),(405,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(406,'0000-00-00 00:00:00',24,'','',1,1.514,8.00,9.95,0.00,2),(406,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(407,'0000-00-00 00:00:00',14,'','',1,1.668,16.20,17.50,0.00,2),(407,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(408,'0000-00-00 00:00:00',12,'','',1,2.842,15.00,16.50,0.00,2),(409,'0000-00-00 00:00:00',37,'','',1,1.124,5.05,7.00,0.00,2),(410,'0000-00-00 00:00:00',7,'','',4,2.168,9.99,11.95,0.00,2),(410,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(411,'0000-00-00 00:00:00',14,'','',1,1.906,16.20,17.50,0.00,2),(411,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(412,'0000-00-00 00:00:00',9,'','',1,1,3.83,4.95,0.00,2),(413,'0000-00-00 00:00:00',32,'','',1,27.7,5.50,7.00,0.00,2),(413,'0000-00-00 00:00:00',54,'','',3,6,0.05,0.10,0.00,2),(414,'0000-00-00 00:00:00',24,'','',2,8.8,8.00,9.95,0.00,2),(414,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(415,'0000-00-00 00:00:00',15,'','',1,1.1,11.20,12.30,0.00,2),(415,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(416,'0000-00-00 00:00:00',24,'','',1,0.756,8.00,9.95,0.00,2),(417,'0000-00-00 00:00:00',24,'','',1,1.302,8.00,9.95,0.00,2),(417,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(418,'0000-00-00 00:00:00',14,'','',1,2.336,16.20,17.50,0.00,2),(418,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(419,'0000-00-00 00:00:00',12,'','',1,3.244,15.00,16.75,0.00,2),(419,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(420,'0000-00-00 00:00:00',15,'','',1,1.9,11.20,12.30,0.00,2),(420,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(421,'0000-00-00 00:00:00',20,'','',1,3.114,16.50,16.50,0.00,2),(421,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(422,'0000-00-00 00:00:00',16,'','',1,5.058,17.50,18.50,0.00,2),(422,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(423,'0000-00-00 00:00:00',12,'','',1,2.916,15.00,16.75,0.00,2),(423,'0000-00-00 00:00:00',16,'','',3,1.24,17.50,18.50,0.00,2),(423,'0000-00-00 00:00:00',20,'','',2,2.516,16.50,16.50,0.00,2),(423,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(424,'0000-00-00 00:00:00',37,'','',2,5,5.05,7.00,0.00,2),(425,'0000-00-00 00:00:00',15,'','',1,0.932,11.20,12.30,0.00,2),(425,'0000-00-00 00:00:00',37,'','',2,0.911,5.05,7.00,0.00,2),(425,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(426,'0000-00-00 00:00:00',12,'','',1,5.77,15.00,16.75,0.00,2),(426,'0000-00-00 00:00:00',37,'','',3,3.052,5.05,7.00,0.00,2),(426,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(427,'0000-00-00 00:00:00',12,'','',1,5.692,15.00,16.50,0.00,2),(427,'0000-00-00 00:00:00',24,'','',3,1.716,8.00,9.95,0.00,2),(427,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(428,'0000-00-00 00:00:00',16,'','',2,0.848,17.50,18.50,0.00,2),(428,'0000-00-00 00:00:00',19,'','',1,1.426,14.80,15.95,0.00,2),(428,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(429,'0000-00-00 00:00:00',15,'','',1,1.404,11.20,12.30,0.00,2),(429,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(430,'0000-00-00 00:00:00',23,'','',4,3.2,11.00,13.95,0.00,2),(430,'0000-00-00 00:00:00',24,'','',1,1.734,8.00,9.95,0.00,2),(430,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(430,'0000-00-00 00:00:00',55,'','',3,1,5.00,13.95,0.00,2),(431,'0000-00-00 00:00:00',23,'','',2,1.58,11.00,13.50,0.00,2),(431,'0000-00-00 00:00:00',24,'','',1,1.374,8.00,9.95,0.00,2),(431,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(432,'0000-00-00 00:00:00',14,'','',3,5.848,16.20,17.50,0.00,2),(432,'0000-00-00 00:00:00',37,'','',2,2.15,5.05,7.00,0.00,2),(432,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(433,'0000-00-00 00:00:00',20,'','',1,1.43,16.50,16.50,0.00,2),(433,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(434,'0000-00-00 00:00:00',37,'','',2,0.926,5.05,7.00,0.00,2),(435,'0000-00-00 00:00:00',14,'','',1,1.59,16.20,17.50,0.00,2),(435,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(436,'0000-00-00 00:00:00',7,'','',2,2.41,9.99,11.95,0.00,2),(436,'0000-00-00 00:00:00',14,'','',3,2.494,16.20,17.50,0.00,2),(436,'0000-00-00 00:00:00',33,'','',1,2.9,7.80,12.50,0.00,2),(436,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(437,'0000-00-00 00:00:00',16,'','',1,0.796,17.50,18.50,0.00,2),(437,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(438,'0000-00-00 00:00:00',20,'','',1,0.604,16.50,16.50,0.00,2),(438,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(439,'0000-00-00 00:00:00',16,'','',1,2.67,17.50,18.50,0.00,2),(439,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(440,'0000-00-00 00:00:00',12,'','',1,2.618,15.00,16.75,0.00,2),(440,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(441,'0000-00-00 00:00:00',20,'','',1,5.47,16.50,16.00,0.00,2),(441,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(442,'0000-00-00 00:00:00',14,'','',1,2.262,16.20,17.50,0.00,2),(442,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(443,'0000-00-00 00:00:00',20,'','',1,0.614,16.50,16.50,0.00,2),(444,'0000-00-00 00:00:00',37,'','',1,2.07,5.05,7.00,0.00,2),(444,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(445,'0000-00-00 00:00:00',12,'','',1,2.758,15.00,16.75,0.00,2),(445,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(446,'0000-00-00 00:00:00',12,'','',1,2.968,15.00,16.75,0.00,2),(446,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(447,'0000-00-00 00:00:00',37,'','',1,1.444,5.05,7.00,0.00,2),(447,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(448,'0000-00-00 00:00:00',14,'','',1,1.892,16.20,17.50,0.00,2),(448,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(449,'0000-00-00 00:00:00',37,'','',1,1.286,5.05,7.00,0.00,2),(449,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(450,'0000-00-00 00:00:00',14,'','',1,0.89,16.20,17.50,0.00,2),(450,'0000-00-00 00:00:00',20,'','',2,1.742,16.50,16.50,0.00,2),(450,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(451,'0000-00-00 00:00:00',12,'','',1,23.2,15.00,16.75,0.00,2),(452,'0000-00-00 00:00:00',14,'','',7,2.288,16.20,17.50,0.00,2),(452,'0000-00-00 00:00:00',16,'','',5,1.766,17.50,18.50,0.00,2),(452,'0000-00-00 00:00:00',20,'','',3,2.862,16.50,16.50,0.00,2),(452,'0000-00-00 00:00:00',26,'','',2,3.1,0.00,13.00,0.00,2),(452,'0000-00-00 00:00:00',54,'','',9,4,0.05,0.10,0.00,2),(453,'0000-00-00 00:00:00',7,'','',1,2.008,9.99,11.95,0.00,2),(453,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(454,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(455,'0000-00-00 00:00:00',12,'','',1,2.73,15.00,16.75,0.00,2),(455,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(456,'0000-00-00 00:00:00',28,'','',2,1.898,4.20,4.95,0.00,2),(457,'0000-00-00 00:00:00',14,'','',2,1.1,16.20,17.50,0.00,2),(457,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(458,'0000-00-00 00:00:00',16,'','',2,0.932,17.50,18.50,0.00,2),(458,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(459,'0000-00-00 00:00:00',16,'','',2,1.706,17.50,18.50,0.00,2),(459,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(460,'0000-00-00 00:00:00',30,'','',3,3.6,0.00,16.95,0.00,2),(460,'0000-00-00 00:00:00',38,'','',2,2,3.25,4.00,0.00,2),(460,'0000-00-00 00:00:00',54,'','',5,1,0.05,0.10,0.00,2),(461,'0000-00-00 00:00:00',12,'','',1,5.486,15.00,16.75,0.00,2),(461,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(462,'0000-00-00 00:00:00',16,'','',2,1.688,17.50,18.50,0.00,2),(462,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(463,'0000-00-00 00:00:00',20,'','',1,1.766,16.50,16.50,0.00,2),(463,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(464,'0000-00-00 00:00:00',15,'','',2,1.452,11.20,12.30,0.00,2),(464,'0000-00-00 00:00:00',16,'','',4,1.252,17.50,18.50,0.00,2),(464,'0000-00-00 00:00:00',20,'','',5,1.41,16.50,16.50,0.00,2),(464,'0000-00-00 00:00:00',54,'','',7,3,0.05,0.10,0.00,2),(465,'0000-00-00 00:00:00',50,'','',1,3.818,6.50,7.50,0.00,2),(465,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(466,'0000-00-00 00:00:00',16,'','',2,7.7,17.50,18.50,0.00,2),(467,'0000-00-00 00:00:00',12,'','',1,3.016,15.00,16.75,0.00,2),(467,'0000-00-00 00:00:00',15,'','',3,1.358,11.20,12.30,0.00,2),(467,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(468,'0000-00-00 00:00:00',25,'','',2,1.7,0.00,10.50,0.00,2),(468,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(469,'0000-00-00 00:00:00',20,'','',1,0.542,16.50,16.50,0.00,2),(469,'0000-00-00 00:00:00',24,'','',3,0.364,8.00,9.95,0.00,2),(469,'0000-00-00 00:00:00',37,'','',5,0.376,5.05,7.00,0.00,2),(469,'0000-00-00 00:00:00',54,'','',7,3,0.05,0.10,0.00,2),(470,'0000-00-00 00:00:00',12,'','',1,2.896,15.00,16.75,0.00,2),(470,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(471,'0000-00-00 00:00:00',14,'','',2,4.608,16.20,17.50,0.00,2),(471,'0000-00-00 00:00:00',37,'','',4,2.648,5.05,7.00,0.00,2),(471,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(472,'0000-00-00 00:00:00',12,'','',1,3.474,15.00,16.75,0.00,2),(472,'0000-00-00 00:00:00',37,'','',3,1.864,5.05,7.00,0.00,2),(472,'0000-00-00 00:00:00',48,'','',7,1,14.50,15.95,0.00,2),(472,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(473,'0000-00-00 00:00:00',14,'','',2,2.702,16.20,17.00,0.00,2),(473,'0000-00-00 00:00:00',16,'','',6,5.598,17.50,18.00,0.00,2),(473,'0000-00-00 00:00:00',37,'','',4,1.262,5.05,6.50,0.00,2),(473,'0000-00-00 00:00:00',54,'','',8,5,0.05,0.10,0.00,2),(474,'0000-00-00 00:00:00',14,'','',2,0.738,16.20,17.50,0.00,2),(474,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(475,'0000-00-00 00:00:00',24,'','',2,1.876,8.00,9.95,0.00,2),(476,'0000-00-00 00:00:00',5,'','',1,1.298,8.31,10.55,0.00,2),(476,'0000-00-00 00:00:00',16,'','',5,0.294,17.50,18.50,0.00,2),(476,'0000-00-00 00:00:00',36,'','',3,1,7.00,10.00,0.00,2),(476,'0000-00-00 00:00:00',54,'','',7,3,0.05,0.10,0.00,2),(477,'0000-00-00 00:00:00',24,'','',2,2.158,8.00,9.95,0.00,2),(477,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(478,'0000-00-00 00:00:00',7,'','',1,1.312,9.99,11.95,0.00,2),(478,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(479,'0000-00-00 00:00:00',4,'','',5,2.118,9.27,10.95,0.00,2),(479,'0000-00-00 00:00:00',16,'','',2,1.22,17.50,18.50,0.00,2),(479,'0000-00-00 00:00:00',37,'','',4,1.128,5.05,7.00,0.00,2),(479,'0000-00-00 00:00:00',54,'','',6,3,0.05,0.10,0.00,2),(480,'0000-00-00 00:00:00',7,'','',2,1.26,9.99,11.95,0.00,2),(480,'0000-00-00 00:00:00',20,'','',1,1.874,16.50,16.50,0.00,2),(480,'0000-00-00 00:00:00',54,'','',6,3,0.05,0.10,0.00,2),(480,'0000-00-00 00:00:00',56,'','',4,1,0.00,15.95,0.00,2),(481,'0000-00-00 00:00:00',12,'','',1,3.144,15.00,16.75,0.00,2),(481,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(482,'0000-00-00 00:00:00',20,'','',1,2.132,16.50,16.50,0.00,2),(482,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(483,'0000-00-00 00:00:00',14,'','',2,1.21,16.20,17.50,0.00,2),(483,'0000-00-00 00:00:00',15,'','',1,1.986,11.20,12.30,0.00,2),(483,'0000-00-00 00:00:00',54,'','',4,3,0.05,0.10,0.00,2),(484,'0000-00-00 00:00:00',14,'','',1,1.216,16.20,17.50,0.00,2),(484,'0000-00-00 00:00:00',15,'','',2,2.184,11.20,12.30,0.00,2),(484,'0000-00-00 00:00:00',50,'','',3,3,6.50,7.50,0.00,2),(485,'0000-00-00 00:00:00',15,'','',1,2.156,11.20,12.30,0.00,2),(485,'0000-00-00 00:00:00',24,'','',2,2.494,8.00,9.50,0.00,2),(485,'0000-00-00 00:00:00',50,'','',3,1,6.50,8.00,0.00,2),(486,'0000-00-00 00:00:00',20,'','',1,3.024,16.50,16.50,0.00,2),(486,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(487,'0000-00-00 00:00:00',15,'','',2,1.462,11.20,12.30,0.00,2),(487,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(488,'0000-00-00 00:00:00',7,'','',7,0.562,9.99,11.95,0.00,2),(488,'0000-00-00 00:00:00',15,'','',2,0.974,11.20,12.30,0.00,2),(488,'0000-00-00 00:00:00',37,'','',4,1.462,5.05,7.00,0.00,2),(488,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(489,'0000-00-00 00:00:00',28,'','',2,1.196,4.20,4.95,0.00,2),(489,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(490,'0000-00-00 00:00:00',16,'','',2,19.7,17.50,16.80,0.00,2),(490,'0000-00-00 00:00:00',37,'','',4,10,5.05,6.50,0.00,2),(491,'0000-00-00 00:00:00',14,'','',2,2.662,16.20,17.50,0.00,2),(491,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(492,'0000-00-00 00:00:00',7,'','',3,3.09,9.99,11.75,0.00,2),(492,'0000-00-00 00:00:00',16,'','',2,6.588,17.50,18.00,0.00,2),(492,'0000-00-00 00:00:00',37,'','',4,11.205,5.05,6.80,0.00,2),(492,'0000-00-00 00:00:00',54,'','',6,5,0.05,0.10,0.00,2),(493,'0000-00-00 00:00:00',16,'','',2,2.926,17.50,18.50,0.00,2),(493,'0000-00-00 00:00:00',37,'','',4,2.37,5.05,7.00,0.00,2),(493,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(494,'0000-00-00 00:00:00',50,'','',1,2.77,6.50,7.50,0.00,2),(494,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(495,'0000-00-00 00:00:00',20,'','',1,2.536,16.50,16.50,0.00,2),(495,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(496,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(496,'0000-00-00 00:00:00',56,'','',2,2,0.00,15.95,0.00,2),(497,'0000-00-00 00:00:00',20,'','',1,0.952,16.50,15.50,0.00,2),(497,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(498,'0000-00-00 00:00:00',5,'','',2,0.952,8.31,10.00,0.00,2),(498,'0000-00-00 00:00:00',7,'','',1,1.2,9.99,11.50,0.00,2),(498,'0000-00-00 00:00:00',14,'','',4,2.142,16.20,17.00,0.00,2),(498,'0000-00-00 00:00:00',54,'','',6,3,0.05,0.10,0.00,2),(499,'0000-00-00 00:00:00',14,'','',2,1.41,16.20,17.50,0.00,2),(499,'0000-00-00 00:00:00',20,'','',3,1.51,16.50,16.50,0.00,2),(499,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(500,'0000-00-00 00:00:00',50,'','',1,3,6.50,6.50,0.00,2),(500,'0000-00-00 00:00:00',55,'','',3,2,5.00,13.00,0.00,2),(501,'0000-00-00 00:00:00',16,'','',2,1.474,17.50,18.50,0.00,2),(502,'0000-00-00 00:00:00',7,'','',1,0.97,9.99,11.95,0.00,2),(503,'0000-00-00 00:00:00',16,'','',2,20,17.50,17.00,0.00,2),(504,'0000-00-00 00:00:00',37,'','',2,5,5.05,6.00,0.00,2),(505,'0000-00-00 00:00:00',15,'','',3,0.972,11.20,12.30,0.00,2),(505,'0000-00-00 00:00:00',20,'','',1,0.664,16.50,16.50,0.00,2),(505,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(506,'0000-00-00 00:00:00',12,'','',1,3.298,15.00,16.75,0.00,2),(506,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(507,'0000-00-00 00:00:00',28,'','',2,0.822,4.20,4.95,0.00,2),(507,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(508,'0000-00-00 00:00:00',14,'','',2,1.752,16.20,17.50,0.00,2),(508,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(509,'0000-00-00 00:00:00',38,'','',2,1,3.25,4.00,0.00,2),(510,'0000-00-00 00:00:00',37,'','',1,1.416,5.05,7.00,0.00,2),(510,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(511,'0000-00-00 00:00:00',28,'','',2,5.5,4.20,4.95,0.00,2),(511,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(512,'0000-00-00 00:00:00',16,'','',2,4.046,17.50,18.50,0.00,2),(512,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(513,'0000-00-00 00:00:00',12,'','',1,15.727,15.00,16.50,0.00,2),(513,'0000-00-00 00:00:00',54,'','',3,5,0.05,0.10,0.00,2),(514,'0000-00-00 00:00:00',20,'','',1,2.112,16.50,16.50,0.00,2),(515,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(515,'0000-00-00 00:00:00',55,'','',2,1,5.00,13.95,0.00,2),(516,'0000-00-00 00:00:00',17,'','',2,1.862,10.00,16.95,0.00,2),(517,'0000-00-00 00:00:00',49,'','',2,1,9.27,11.00,0.00,2),(517,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(518,'0000-00-00 00:00:00',12,'','',1,9.77,15.00,16.50,0.00,2),(518,'0000-00-00 00:00:00',37,'','',3,5,5.05,7.00,0.00,2),(518,'0000-00-00 00:00:00',54,'','',5,3,0.05,0.10,0.00,2),(519,'0000-00-00 00:00:00',28,'','',2,54.2,4.20,3.00,0.00,2),(520,'0000-00-00 00:00:00',14,'','',2,1.176,16.20,17.50,0.00,2),(520,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(521,'0000-00-00 00:00:00',37,'','',2,0.918,5.05,7.00,0.00,2),(521,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(522,'0000-00-00 00:00:00',14,'','',2,1.688,16.20,17.50,0.00,2),(522,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(523,'0000-00-00 00:00:00',15,'','',2,2.372,11.20,12.30,0.00,2),(523,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(524,'0000-00-00 00:00:00',28,'','',2,3.686,4.20,4.95,0.00,2),(524,'0000-00-00 00:00:00',37,'','',4,1.818,5.05,7.00,0.00,2),(524,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(525,'0000-00-00 00:00:00',7,'','',3,1.226,9.99,11.95,0.00,2),(525,'0000-00-00 00:00:00',14,'','',2,1.664,16.20,17.50,0.00,2),(525,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(526,'0000-00-00 00:00:00',15,'','',2,1.25,11.20,12.30,0.00,2),(526,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(527,'0000-00-00 00:00:00',14,'','',2,0.888,16.20,17.50,0.00,2),(527,'0000-00-00 00:00:00',28,'','',6,1.344,4.20,4.95,0.00,2),(527,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(528,'0000-00-00 00:00:00',24,'','',2,0.486,8.00,9.95,0.00,2),(528,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(529,'0000-00-00 00:00:00',16,'','',2,5.578,17.50,18.50,0.00,2),(529,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(530,'0000-00-00 00:00:00',20,'','',1,1.994,16.50,15.00,0.00,2),(530,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(530,'0000-00-00 00:00:00',55,'','',3,1,5.00,13.50,0.00,2),(531,'0000-00-00 00:00:00',14,'','',2,2.08,16.20,17.50,0.00,2),(531,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(532,'0000-00-00 00:00:00',20,'','',1,1.416,16.50,16.50,0.00,2),(532,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(533,'0000-00-00 00:00:00',20,'','',1,1.888,16.50,16.50,0.00,2),(533,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(534,'0000-00-00 00:00:00',20,'','',1,1.51,16.50,16.50,0.00,2),(534,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(535,'0000-00-00 00:00:00',14,'','',4,3.576,16.20,17.50,0.00,2),(535,'0000-00-00 00:00:00',37,'','',2,4.53,5.05,7.00,0.00,2),(535,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(536,'0000-00-00 00:00:00',14,'','',2,1.85,16.20,17.50,0.00,2),(537,'0000-00-00 00:00:00',32,'','',1,17.3,5.50,7.00,0.00,2),(537,'0000-00-00 00:00:00',54,'','',3,4,0.05,0.10,0.00,2),(538,'0000-00-00 00:00:00',12,'','',1,2.654,15.00,16.75,0.00,2),(538,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(539,'0000-00-00 00:00:00',14,'','',1,0.868,16.20,17.50,0.00,2),(539,'0000-00-00 00:00:00',20,'','',4,0.658,16.50,16.50,0.00,2),(539,'0000-00-00 00:00:00',38,'','',3,1,3.25,4.00,0.00,2),(539,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(540,'0000-00-00 00:00:00',14,'','',1,2.012,16.20,17.50,0.00,2),(540,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(541,'0000-00-00 00:00:00',1,'','',1,2.112,10.80,11.75,0.00,2),(541,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(542,'0000-00-00 00:00:00',14,'','',2,1,16.20,17.50,0.00,2),(542,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(543,'0000-00-00 00:00:00',14,'','',2,0.32,16.20,17.50,0.00,2),(544,'0000-00-00 00:00:00',16,'','',2,1.156,17.50,18.50,0.00,2),(544,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(545,'0000-00-00 00:00:00',14,'','',2,1.828,16.20,17.00,0.00,2),(545,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(546,'0000-00-00 00:00:00',20,'','',1,1.722,16.50,16.50,0.00,2),(546,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(547,'0000-00-00 00:00:00',14,'','',1,1.87,16.20,17.00,0.00,2),(547,'0000-00-00 00:00:00',15,'','',2,1.618,11.20,11.80,0.00,2),(548,'0000-00-00 00:00:00',20,'','',1,1.112,16.50,16.50,0.00,2),(548,'0000-00-00 00:00:00',38,'','',5,2,3.25,4.00,0.00,2),(548,'0000-00-00 00:00:00',54,'','',7,1,0.05,0.10,0.00,2),(548,'0000-00-00 00:00:00',55,'','',3,1,5.00,13.95,0.00,2),(549,'0000-00-00 00:00:00',37,'','',2,1.53,5.05,6.50,0.00,2),(549,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(550,'0000-00-00 00:00:00',15,'','',1,1.24,11.20,12.30,0.00,2),(550,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(551,'0000-00-00 00:00:00',14,'','',1,2.438,16.20,17.50,0.00,2),(552,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(552,'0000-00-00 00:00:00',55,'','',2,1,5.00,13.95,0.00,2),(553,'0000-00-00 00:00:00',7,'','',1,1.02,9.99,11.95,0.00,2),(553,'0000-00-00 00:00:00',16,'','',2,1.592,17.50,18.50,0.00,2),(553,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(554,'0000-00-00 00:00:00',5,'','',2,0.958,8.31,10.55,0.00,2),(554,'0000-00-00 00:00:00',14,'','',1,3.57,16.20,17.50,0.00,2),(554,'0000-00-00 00:00:00',54,'','',6,1,0.05,0.10,0.00,2),(554,'0000-00-00 00:00:00',57,'','',4,1,0.00,14.95,0.00,2),(555,'0000-00-00 00:00:00',12,'','',1,2.304,15.00,16.75,0.00,2),(555,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(556,'0000-00-00 00:00:00',16,'','',2,20,17.50,17.00,0.00,2),(557,'0000-00-00 00:00:00',14,'','',1,2.322,16.20,17.50,0.00,2),(557,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(558,'0000-00-00 00:00:00',37,'','',1,1.374,5.05,7.00,0.00,2),(558,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(559,'0000-00-00 00:00:00',16,'','',1,1.986,17.50,18.50,0.00,2),(559,'0000-00-00 00:00:00',38,'','',3,4,3.25,4.00,0.00,2),(559,'0000-00-00 00:00:00',54,'','',5,1,0.05,0.10,0.00,2),(560,'0000-00-00 00:00:00',16,'','',1,2.142,17.50,18.50,0.00,2),(560,'0000-00-00 00:00:00',37,'','',2,1.5,5.05,7.00,0.00,2),(560,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(561,'0000-00-00 00:00:00',16,'','',1,0.538,17.50,18.50,0.00,2),(562,'0000-00-00 00:00:00',1,'','',1,30.02,10.80,11.75,0.00,2),(562,'0000-00-00 00:00:00',37,'','',3,30,5.05,7.00,0.00,2),(563,'0000-00-00 00:00:00',12,'','',1,5.8,15.00,16.00,0.00,2),(564,'0000-00-00 00:00:00',14,'','',1,0.888,16.20,17.50,0.00,2),(564,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(565,'0000-00-00 00:00:00',37,'','',1,1.149,5.05,7.00,0.00,2),(565,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(566,'0000-00-00 00:00:00',14,'','',1,1.122,16.20,17.50,0.00,2),(566,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(567,'0000-00-00 00:00:00',15,'','',2,1.154,11.20,12.30,0.00,2),(567,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(568,'0000-00-00 00:00:00',14,'','',2,1.348,16.20,17.50,0.00,2),(568,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(569,'0000-00-00 00:00:00',37,'','',1,3.147,5.05,7.00,0.00,2),(569,'0000-00-00 00:00:00',54,'','',3,3,0.05,0.10,0.00,2),(570,'0000-00-00 00:00:00',24,'','',1,1.712,8.00,9.95,0.00,2),(570,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(571,'0000-00-00 00:00:00',24,'','',2,6.23,8.00,9.95,0.00,2),(571,'0000-00-00 00:00:00',37,'','',4,4.442,5.05,6.80,0.00,2),(571,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(572,'0000-00-00 00:00:00',52,'','',1,46.4,18.50,16.00,0.00,2),(573,'0000-00-00 00:00:00',57,'','',2,2,0.00,14.00,0.00,2),(574,'0000-00-00 00:00:00',37,'','',2,1.442,5.05,6.80,0.00,2),(574,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(575,'0000-00-00 00:00:00',16,'','',2,30,17.50,17.00,0.00,2),(576,'0000-00-00 00:00:00',16,'','',4,1.758,17.50,18.00,0.00,2),(576,'0000-00-00 00:00:00',24,'','',2,2.358,8.00,9.00,0.00,2),(576,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(577,'0000-00-00 00:00:00',16,'','',2,3.514,17.50,18.50,0.00,2),(577,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(578,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(578,'0000-00-00 00:00:00',55,'','',2,1,5.00,13.95,0.00,2),(579,'0000-00-00 00:00:00',12,'','',1,2.668,15.00,16.75,0.00,2),(580,'0000-00-00 00:00:00',12,'','',1,21.935,15.00,16.50,0.00,2),(580,'0000-00-00 00:00:00',37,'','',3,15,5.05,7.00,0.00,2),(581,'0000-00-00 00:00:00',14,'','',2,1.076,16.20,17.50,0.00,2),(581,'0000-00-00 00:00:00',20,'','',3,1.482,16.50,16.50,0.00,2),(581,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(582,'0000-00-00 00:00:00',16,'','',2,1.324,17.50,18.50,0.00,2),(582,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(583,'0000-00-00 00:00:00',32,'','',1,37.9,5.50,7.00,0.00,2),(583,'0000-00-00 00:00:00',54,'','',3,7,0.05,0.10,0.00,2),(584,'0000-00-00 00:00:00',13,'','',1,3.086,12.80,14.95,0.00,2),(584,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(585,'0000-00-00 00:00:00',52,'','',1,8.7,18.50,16.00,0.00,2),(586,'0000-00-00 00:00:00',12,'','',1,3.004,15.00,16.75,0.00,2),(586,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(587,'0000-00-00 00:00:00',15,'','',4,1.44,11.20,12.30,0.00,2),(587,'0000-00-00 00:00:00',20,'','',5,1.536,16.50,16.00,0.00,2),(587,'0000-00-00 00:00:00',37,'','',2,1.364,5.05,6.80,0.00,2),(587,'0000-00-00 00:00:00',54,'','',7,1,0.05,0.10,0.00,2),(588,'0000-00-00 00:00:00',14,'','',1,1.152,16.20,17.50,0.00,2),(588,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(589,'0000-00-00 00:00:00',15,'','',1,1.642,11.20,12.30,0.00,2),(589,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(590,'0000-00-00 00:00:00',16,'','',1,2.13,17.50,18.50,0.00,2),(590,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(591,'0000-00-00 00:00:00',37,'','',2,10,5.05,8.00,0.00,2),(592,'0000-00-00 00:00:00',50,'','',1,30,6.50,8.50,0.00,2),(593,'0000-00-00 00:00:00',16,'','',1,2.74,17.50,18.50,0.00,2),(593,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(594,'0000-00-00 00:00:00',28,'','',1,4.004,4.20,4.95,0.00,2),(594,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(595,'0000-00-00 00:00:00',17,'','',1,1.218,10.00,16.95,0.00,2),(595,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(596,'0000-00-00 00:00:00',12,'','',1,8.345,15.00,16.75,0.00,2),(596,'0000-00-00 00:00:00',37,'','',3,3.608,5.05,7.00,0.00,2),(596,'0000-00-00 00:00:00',54,'','',5,4,0.05,0.10,0.00,2),(597,'0000-00-00 00:00:00',14,'','',1,5.118,16.20,17.50,0.00,2),(597,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(598,'0000-00-00 00:00:00',14,'','',1,1.262,16.20,17.50,0.00,2),(598,'0000-00-00 00:00:00',16,'','',2,1.552,17.50,18.50,0.00,2),(598,'0000-00-00 00:00:00',54,'','',4,2,0.05,0.10,0.00,2),(599,'0000-00-00 00:00:00',16,'','',2,1.44,17.50,18.00,0.00,2),(599,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(600,'0000-00-00 00:00:00',37,'','',2,1.17,5.05,6.80,0.00,2),(600,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(601,'0000-00-00 00:00:00',16,'','',2,60,17.50,17.00,0.00,2),(602,'0000-00-00 00:00:00',14,'','',2,1.564,16.20,17.50,0.00,2),(602,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(603,'0000-00-00 00:00:00',12,'','',1,2.688,15.00,16.75,0.00,2),(603,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(604,'0000-00-00 00:00:00',20,'','',1,1.104,16.50,16.50,0.00,2),(604,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(605,'0000-00-00 00:00:00',15,'','',2,1.074,11.20,12.30,0.00,2),(605,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(606,'0000-00-00 00:00:00',14,'','',2,1.192,16.20,17.50,0.00,2),(606,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(607,'0000-00-00 00:00:00',24,'','',2,1.646,8.00,9.95,0.00,2),(607,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(608,'0000-00-00 00:00:00',14,'','',2,1.392,16.20,17.00,0.00,2),(608,'0000-00-00 00:00:00',20,'','',3,1.84,16.50,16.00,0.00,2),(608,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(609,'0000-00-00 00:00:00',50,'','',1,1.92,6.50,7.50,0.00,2),(609,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(610,'0000-00-00 00:00:00',1,'','',1,1.676,10.80,11.75,0.00,2),(610,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(611,'0000-00-00 00:00:00',37,'','',2,3.55,5.05,7.00,0.00,2),(611,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(612,'0000-00-00 00:00:00',14,'','',2,3.262,16.20,17.00,0.00,2),(612,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(613,'0000-00-00 00:00:00',14,'','',4,5.852,16.20,17.50,0.00,2),(613,'0000-00-00 00:00:00',37,'','',2,3.346,5.05,7.00,0.00,2),(613,'0000-00-00 00:00:00',54,'','',6,1,0.05,0.10,0.00,2),(614,'0000-00-00 00:00:00',7,'','',1,0.974,9.99,11.95,0.00,2),(614,'0000-00-00 00:00:00',15,'','',3,1.478,11.20,12.30,0.00,2),(614,'0000-00-00 00:00:00',48,'','',5,1,14.50,15.95,0.00,2),(614,'0000-00-00 00:00:00',54,'','',7,3,0.05,0.10,0.00,2),(615,'0000-00-00 00:00:00',15,'','',2,1.268,11.20,12.30,0.00,2),(615,'0000-00-00 00:00:00',16,'','',4,1.014,17.50,18.50,0.00,2),(615,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(616,'0000-00-00 00:00:00',7,'','',1,1.184,9.99,11.95,0.00,2),(616,'0000-00-00 00:00:00',24,'','',3,1.176,8.00,9.95,0.00,2),(616,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(617,'0000-00-00 00:00:00',14,'','',4,1.236,16.20,16.50,0.00,2),(617,'0000-00-00 00:00:00',16,'','',2,0.804,17.50,17.50,0.00,2),(617,'0000-00-00 00:00:00',54,'','',6,1,0.05,0.10,0.00,2),(618,'0000-00-00 00:00:00',20,'','',3,2.096,16.50,16.50,0.00,2),(618,'0000-00-00 00:00:00',37,'','',2,1.4,5.05,7.00,0.00,2),(618,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(619,'0000-00-00 00:00:00',37,'','',2,3,5.05,6.50,0.00,2),(620,'0000-00-00 00:00:00',20,'','',1,1.038,16.50,16.50,0.00,2),(620,'0000-00-00 00:00:00',37,'','',3,0.822,5.05,7.00,0.00,2),(620,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(621,'0000-00-00 00:00:00',16,'','',2,20,17.50,17.00,0.00,2),(622,'0000-00-00 00:00:00',14,'','',2,2.418,16.20,17.00,0.00,2),(622,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(623,'0000-00-00 00:00:00',49,'','',2,66,9.27,10.45,0.00,2),(624,'0000-00-00 00:00:00',58,'','',6,16,8.00,12.00,0.00,2),(625,'0000-00-00 00:00:00',12,'','',1,8.925,15.00,16.50,0.00,2),(625,'0000-00-00 00:00:00',54,'','',3,3,0.05,0.10,0.00,2),(626,'0000-00-00 00:00:00',14,'','',2,1.332,16.20,17.50,0.00,2),(626,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(627,'0000-00-00 00:00:00',12,'','',3,21.94,15.00,16.30,0.00,2),(627,'0000-00-00 00:00:00',16,'','',2,20,17.50,17.00,0.00,2),(628,'0000-00-00 00:00:00',17,'','',2,5.1,10.00,16.95,0.00,2),(628,'0000-00-00 00:00:00',28,'','',4,22.3,4.20,4.50,0.00,2),(629,'0000-00-00 00:00:00',75,'','',2,3.9,18.50,21.00,0.00,2),(630,'0000-00-00 00:00:00',75,'','',2,4.6,18.50,21.00,0.00,2),(631,'0000-00-00 00:00:00',66,'','',2,4.3,7.00,7.50,0.00,2),(632,'0000-00-00 00:00:00',67,'','',2,2.2,12.50,14.95,0.00,2),(633,'0000-00-00 00:00:00',67,'','',2,2.17,12.50,14.50,0.00,2),(634,'0000-00-00 00:00:00',64,'','',2,20,8.50,10.00,0.00,2),(635,'0000-00-00 00:00:00',50,'','',1,4.7,6.50,8.00,0.00,2),(635,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(636,'0000-00-00 00:00:00',26,'','',2,2.2,0.00,13.50,0.00,2),(636,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(637,'0000-00-00 00:00:00',12,'','',1,3.388,15.00,16.00,0.00,2),(637,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(638,'0000-00-00 00:00:00',14,'','',2,1.876,16.20,17.50,0.00,2),(638,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(639,'0000-00-00 00:00:00',37,'','',2,2.232,5.05,7.00,0.00,2),(639,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(640,'0000-00-00 00:00:00',12,'','',3,2.798,15.00,16.50,0.00,2),(640,'0000-00-00 00:00:00',37,'','',2,1.118,5.05,6.50,0.00,2),(640,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(641,'0000-00-00 00:00:00',76,'','',2,2,12.50,115.00,0.00,2),(642,'0000-00-00 00:00:00',37,'','',2,1.036,5.05,7.00,0.00,2),(643,'0000-00-00 00:00:00',7,'','',1,1,9.99,11.95,0.00,2),(643,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(644,'0000-00-00 00:00:00',12,'','',1,3.146,15.00,16.75,0.00,2),(644,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(645,'0000-00-00 00:00:00',24,'','',2,0.948,8.00,9.95,0.00,2),(645,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(646,'0000-00-00 00:00:00',12,'','',1,5.886,15.00,16.75,0.00,2),(646,'0000-00-00 00:00:00',54,'','',3,2,0.05,0.10,0.00,2),(647,'0000-00-00 00:00:00',12,'','',1,2.92,15.00,16.75,0.00,2),(647,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(648,'0000-00-00 00:00:00',28,'','',2,2.278,4.20,4.95,0.00,2),(648,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(649,'0000-00-00 00:00:00',37,'','',2,5,5.05,6.00,0.00,2),(650,'0000-00-00 00:00:00',20,'','',1,0.976,16.50,16.50,0.00,2),(650,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(651,'0000-00-00 00:00:00',36,'','',2,8,7.00,10.00,0.00,2),(652,'0000-00-00 00:00:00',17,'','',2,2.078,10.00,16.50,0.00,2),(652,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(653,'0000-00-00 00:00:00',20,'','',1,1.532,16.50,16.50,0.00,2),(653,'0000-00-00 00:00:00',54,'','',5,2,0.05,0.10,0.00,2),(653,'0000-00-00 00:00:00',57,'','',3,1,0.00,14.95,0.00,2),(654,'0000-00-00 00:00:00',20,'','',1,1.81,16.50,16.50,0.00,2),(654,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(655,'0000-00-00 00:00:00',28,'','',2,12,4.20,4.95,0.00,2),(656,'0000-00-00 00:00:00',14,'','',2,5.146,16.20,17.50,0.00,2),(657,'0000-00-00 00:00:00',12,'','',1,5.814,15.00,16.75,0.00,2),(657,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(658,'0000-00-00 00:00:00',5,'','',1,1.856,8.31,10.55,0.00,2),(658,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(659,'0000-00-00 00:00:00',16,'','',2,1.222,17.50,18.50,0.00,2),(659,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(660,'0000-00-00 00:00:00',14,'','',4,1.028,16.20,17.50,0.00,2),(660,'0000-00-00 00:00:00',46,'','',2,1,12.80,13.95,0.00,2),(660,'0000-00-00 00:00:00',54,'','',6,2,0.05,0.10,0.00,2),(661,'0000-00-00 00:00:00',20,'','',1,1.704,16.50,16.50,0.00,2),(661,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(662,'0000-00-00 00:00:00',14,'','',4,1.81,16.20,17.50,0.00,2),(662,'0000-00-00 00:00:00',15,'','',6,1.194,11.20,12.30,0.00,2),(662,'0000-00-00 00:00:00',16,'','',2,0.952,17.50,18.50,0.00,2),(662,'0000-00-00 00:00:00',54,'','',8,1,0.05,0.10,0.00,2),(663,'0000-00-00 00:00:00',14,'','',2,2.018,16.20,17.50,0.00,2),(663,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(664,'0000-00-00 00:00:00',48,'','',2,1,14.50,15.95,0.00,2),(665,'0000-00-00 00:00:00',20,'','',1,3.042,16.50,16.50,0.00,2),(665,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(666,'0000-00-00 00:00:00',19,'','',2,31.4,14.80,15.95,0.00,2),(667,'0000-00-00 00:00:00',20,'','',1,1.856,16.50,16.50,0.00,2),(667,'0000-00-00 00:00:00',54,'','',3,1,0.05,0.10,0.00,2),(668,'0000-00-00 00:00:00',14,'','',2,1.816,16.20,17.50,0.00,2),(668,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(669,'0000-00-00 00:00:00',15,'','',2,1.858,11.20,12.30,0.00,2),(669,'0000-00-00 00:00:00',54,'','',4,1,0.05,0.10,0.00,2),(670,'0000-00-00 00:00:00',12,'','',1,15.15,15.00,16.75,0.00,2),(671,'0000-00-00 00:00:00',14,'','',2,2.284,16.20,17.50,0.00,2),(672,'0000-00-00 00:00:00',28,'','',2,2.276,4.20,4.95,0.00,2),(674,'2019-04-24 13:51:02',5,'','',1,1,8.31,10.55,0.00,2),(675,'2019-04-24 13:53:01',50,'','',1,1,6.50,8.00,0.00,2),(676,'2019-04-25 17:00:59',5,'','',1,1,8.31,10.55,0.00,2),(677,'2019-05-01 10:39:57',55,'','',1,1,5.00,13.95,0.00,2),(678,'2019-05-03 19:02:05',3,'','',1,1,8.40,9.95,0.00,2),(679,'2019-05-03 19:29:46',5,'','',1,3,8.31,10.55,0.00,2),(680,'2019-05-16 11:47:30',48,'','',1,1,14.50,15.95,0.00,2),(681,'2019-06-03 04:07:51',52,'','',1,1,18.50,16.95,0.00,2),(682,'2019-06-13 13:02:41',16,'','',1,1,17.50,18.50,0.00,2),(683,'2019-06-13 13:04:27',16,'','',1,1,17.50,18.50,0.00,2),(684,'2019-06-17 12:13:51',63,'','',1,1,18.50,21.00,0.00,2),(685,'2019-06-19 15:47:48',14,'','',1,1,16.20,17.50,0.00,2),(686,'2019-06-21 15:07:58',16,'','',1,1,17.50,18.50,0.00,2),(687,'2019-06-27 16:42:57',45,'','',1,1,6.16,6.95,0.00,2),(688,'2019-07-15 14:21:24',44,'','',1,1,11.50,17.50,0.00,2),(689,'2019-07-15 15:00:04',16,'','',1,1,17.50,18.50,0.00,2),(690,'2019-07-15 16:24:20',44,'','',1,1,11.50,17.50,0.00,2),(691,'2019-07-15 16:24:45',16,'','',1,1,17.50,18.50,0.00,2),(692,'2019-07-15 16:25:18',44,'','',1,1,11.50,17.50,0.00,2),(693,'2019-07-15 16:25:20',19,'','',1,1,14.80,15.95,0.00,2),(694,'2019-07-15 16:25:41',31,'','',1,1,0.00,0.00,0.00,2),(695,'2019-07-15 16:26:07',44,'','',1,1,11.50,17.50,0.00,2),(696,'2019-07-15 16:26:14',31,'','',1,1,0.00,0.00,0.00,2),(697,'2019-07-15 16:26:36',14,'','',1,1,16.20,17.50,0.00,2),(698,'2019-07-15 16:26:46',3,'','',2,1,8.40,9.95,0.00,2),(698,'2019-07-15 16:26:46',5,'','',4,1,8.31,10.55,0.00,2),(698,'2019-07-15 16:26:46',20,'','',5,1,16.50,16.50,0.00,2),(698,'2019-07-15 16:26:46',44,'','',1,1,11.50,17.50,0.00,2),(698,'2019-07-15 16:26:46',65,'','',3,1,8.00,9.00,0.00,2),(699,'2019-07-15 16:27:17',20,'','',1,1,16.50,16.50,0.00,2),(699,'2019-07-15 16:27:17',52,'','',2,1,18.50,16.95,0.00,2),(699,'2019-07-15 16:27:17',65,'','',3,1,8.00,9.00,0.00,2),(700,'2019-07-15 16:27:26',28,'','',1,1,4.20,4.95,0.00,2),(701,'2019-07-15 16:28:11',12,'','',1,1,15.00,16.75,0.00,2),(702,'2019-07-15 16:28:27',14,'','',1,2,16.20,17.50,0.00,2),(702,'2019-07-15 16:28:27',22,'','',2,1,12.50,13.95,0.00,2),(702,'2019-07-15 16:28:27',38,'','',3,1,3.25,4.00,0.00,2),(703,'2019-07-15 16:28:41',3,'','',1,1,8.40,9.95,0.00,2),(704,'2019-07-15 16:28:59',5,'','',1,1,8.31,10.55,0.00,2),(704,'2019-07-15 16:28:59',28,'','',2,1,4.20,4.95,0.00,2),(705,'2019-07-15 16:29:04',52,'','',1,1,18.50,16.95,0.00,2),(706,'2019-07-15 16:29:40',38,'','',1,1,3.25,4.00,0.00,2),(707,'2019-07-15 16:30:03',5,'','',2,1,8.31,10.55,0.00,2),(707,'2019-07-15 16:30:03',52,'','',1,1,18.50,16.95,0.00,2),(708,'2019-07-15 16:30:11',46,'','',1,1,12.80,13.95,0.00,2),(709,'2019-07-15 16:30:30',65,'','',1,1,8.00,9.00,0.00,2),(710,'2019-07-15 16:30:52',5,'','',2,1,8.31,10.55,0.00,2),(710,'2019-07-15 16:30:52',53,'','',1,1,7.00,8.50,0.00,2),(711,'2019-07-15 16:31:05',38,'','',1,1,3.25,4.00,0.00,2),(712,'2019-07-15 16:31:15',16,'','',1,1,17.50,18.50,0.00,2),(712,'2019-07-15 16:31:15',53,'','',2,1,7.00,8.50,0.00,2),(713,'2019-07-15 16:31:38',14,'','',1,1,16.20,17.50,0.00,2),(714,'2019-07-15 16:31:56',58,'','',1,1,8.00,12.00,0.00,2),(715,'2019-07-15 16:32:02',63,'','',2,1,18.50,21.00,0.00,2),(715,'2019-07-15 16:32:02',65,'','',1,1,8.00,9.00,0.00,2),(716,'2019-07-15 16:32:39',53,'','',1,1,7.00,8.50,0.00,2),(717,'2019-07-15 16:33:00',3,'','',1,1,8.40,9.95,0.00,2),(717,'2019-07-15 16:33:00',46,'','',2,1,12.80,13.95,0.00,2),(718,'2019-07-15 16:33:22',44,'','',2,1,11.50,17.50,0.00,2),(718,'2019-07-15 16:33:22',53,'','',1,1,7.00,8.50,0.00,2),(719,'2019-07-15 16:33:40',28,'','',1,1,4.20,4.95,0.00,2),(720,'2019-07-15 16:34:22',33,'','',1,1,7.80,12.50,0.00,2),(721,'2019-07-15 16:34:27',12,'','',1,1,15.00,16.75,0.00,2),(721,'2019-07-15 16:34:27',37,'','',2,1,5.05,7.00,0.00,2),(722,'2019-07-15 16:34:51',31,'','',2,1,0.00,0.00,0.00,2),(722,'2019-07-15 16:34:51',65,'','',1,1,8.00,9.00,0.00,2),(723,'2019-07-15 16:35:57',5,'','',1,1,8.31,10.55,0.00,2),(724,'2019-07-15 16:38:36',1,'','',1,1,10.80,11.75,0.00,2),(725,'2019-07-15 16:38:46',47,'','',1,1,13.67,14.95,0.00,2),(725,'2019-07-15 16:38:46',49,'','',2,1,9.27,11.00,0.00,2),(726,'2019-07-15 16:39:45',12,'','',1,1,15.00,16.75,0.00,2),(727,'2019-07-15 16:41:50',5,'','',4,1,8.31,10.55,0.00,2),(727,'2019-07-15 16:41:50',13,'','',1,1,12.80,14.95,0.00,2),(727,'2019-07-15 16:41:50',16,'','',5,1,17.50,18.50,0.00,2),(727,'2019-07-15 16:41:50',28,'','',6,1,4.20,4.95,0.00,2),(727,'2019-07-15 16:41:50',44,'','',2,3,11.50,17.50,0.00,2),(727,'2019-07-15 16:41:50',65,'','',3,1,8.00,9.00,0.00,2),(728,'2019-07-15 16:42:22',3,'','',1,1,8.40,9.95,0.00,2),(728,'2019-07-15 16:42:22',24,'','',3,1,8.00,9.95,0.00,2),(728,'2019-07-15 16:42:22',26,'','',10,1,0.00,0.00,0.00,2),(728,'2019-07-15 16:42:22',27,'','',4,1,4.00,6.95,0.00,2),(728,'2019-07-15 16:42:22',33,'','',2,1,7.80,12.50,0.00,2),(728,'2019-07-15 16:42:22',35,'','',5,1,8.50,10.00,0.00,2),(728,'2019-07-15 16:42:22',37,'','',6,1,5.05,7.00,0.00,2),(728,'2019-07-15 16:42:22',46,'','',9,1,12.80,13.95,0.00,2),(728,'2019-07-15 16:42:22',63,'','',7,1,18.50,21.00,0.00,2),(728,'2019-07-15 16:42:22',65,'','',8,1,8.00,9.00,0.00,2),(728,'2019-07-15 16:42:22',67,'','',11,1,12.50,14.50,0.00,2),(729,'2019-07-15 16:45:11',3,'','',7,1,8.40,9.95,0.00,2),(729,'2019-07-15 16:45:11',14,'','',6,1,16.20,17.50,0.00,2),(729,'2019-07-15 16:45:11',16,'','',5,3,17.50,18.50,0.00,2),(729,'2019-07-15 16:45:11',22,'','',12,2,12.50,13.95,0.00,2),(729,'2019-07-15 16:45:11',27,'','',15,1,4.00,6.95,0.00,2),(729,'2019-07-15 16:45:11',28,'','',13,1,4.20,4.95,0.00,2),(729,'2019-07-15 16:45:11',29,'','',14,1,12.00,15.95,0.00,2),(729,'2019-07-15 16:45:11',30,'','',11,3,0.00,0.00,0.00,2),(729,'2019-07-15 16:45:11',31,'','',10,2,0.00,0.00,0.00,2),(729,'2019-07-15 16:45:11',34,'','',9,1,11.00,16.00,0.00,2),(729,'2019-07-15 16:45:11',44,'','',1,1,11.50,17.50,0.00,2),(729,'2019-07-15 16:45:11',46,'','',8,1,12.80,13.95,0.00,2),(729,'2019-07-15 16:45:11',52,'','',4,1,18.50,16.95,0.00,2),(729,'2019-07-15 16:45:11',53,'','',3,3,7.00,8.50,0.00,2),(729,'2019-07-15 16:45:11',54,'','',16,1,0.05,0.10,0.00,2),(729,'2019-07-15 16:45:11',65,'','',2,1,8.00,9.00,0.00,2),(730,'2019-07-15 16:47:35',1,'','',7,1,10.80,11.75,0.00,2),(730,'2019-07-15 16:47:35',13,'','',8,1,12.80,14.95,0.00,2),(730,'2019-07-15 16:47:35',16,'','',4,1,17.50,18.50,0.00,2),(730,'2019-07-15 16:47:35',23,'','',16,7,11.00,13.95,0.00,2),(730,'2019-07-15 16:47:35',24,'','',13,1,8.00,9.95,0.00,2),(730,'2019-07-15 16:47:35',28,'','',12,1,4.20,4.95,0.00,2),(730,'2019-07-15 16:47:35',35,'','',2,2,8.50,10.00,0.00,2),(730,'2019-07-15 16:47:35',37,'','',3,1,5.05,7.00,0.00,2),(730,'2019-07-15 16:47:35',38,'','',14,1,3.25,4.00,0.00,2),(730,'2019-07-15 16:47:35',46,'','',9,1,12.80,13.95,0.00,2),(730,'2019-07-15 16:47:35',47,'','',1,2,13.67,14.95,0.00,2),(730,'2019-07-15 16:47:35',48,'','',6,1,14.50,15.95,0.00,2),(730,'2019-07-15 16:47:35',49,'','',5,1,9.27,11.00,0.00,2),(730,'2019-07-15 16:47:35',52,'','',11,8,18.50,16.95,0.00,2),(730,'2019-07-15 16:47:35',63,'','',10,1,18.50,21.00,0.00,2),(730,'2019-07-15 16:47:35',65,'','',15,1,8.00,9.00,0.00,2),(731,'2019-07-16 16:20:56',23,'','',1,1,11.00,13.95,0.00,2),(732,'2019-07-17 10:37:29',16,'','',1,1,17.50,18.50,0.00,2),(733,'2019-07-18 16:11:15',5,'','',1,1,8.31,10.55,0.00,2),(734,'2019-07-19 05:42:15',16,'','',1,1,17.50,18.50,0.00,2),(735,'2019-07-19 07:14:23',16,'','',1,1,17.50,18.50,0.00,2),(736,'2019-07-21 06:12:24',1,'','',1,1,10.80,11.75,0.00,2),(737,'2019-07-21 06:13:37',1,'','',1,5,10.80,11.75,0.00,2),(738,'2019-07-21 06:15:48',1,'','',1,1,10.80,11.75,0.00,2),(738,'2019-07-21 06:15:48',13,'','',2,1,12.80,14.95,0.00,2),(739,'2019-07-21 06:20:34',1,'','',1,1,10.80,11.75,0.00,2),(739,'2019-07-21 06:20:34',13,'','',2,1,12.80,14.95,0.00,2),(740,'2019-07-21 06:28:21',1,'','',1,1,10.80,11.75,0.00,2),(740,'2019-07-21 06:28:21',13,'','',2,1,12.80,14.95,0.00,2),(741,'2019-07-21 06:29:08',1,'','',1,1,10.80,11.75,0.00,2),(741,'2019-07-21 06:29:08',13,'','',2,1,12.80,14.95,0.00,2),(742,'2019-07-21 06:35:09',1,'','',1,1,10.80,11.75,0.00,2),(742,'2019-07-21 06:35:09',13,'','',2,1,12.80,14.95,0.00,2),(743,'2019-07-21 06:35:18',1,'','',1,1,10.80,11.75,0.00,2),(743,'2019-07-21 06:35:18',13,'','',2,1,12.80,14.95,0.00,2),(744,'2019-07-21 06:35:54',1,'','',1,1,10.80,11.75,0.00,2),(744,'2019-07-21 06:35:54',13,'','',2,1,12.80,14.95,0.00,2),(745,'2019-07-21 07:20:36',1,'','',3,1,10.80,11.75,0.00,2),(745,'2019-07-21 07:20:36',13,'','',2,1,12.80,14.95,0.00,2),(746,'2019-07-21 07:21:19',1,'','',3,1,10.80,11.75,0.00,2),(746,'2019-07-21 07:21:19',13,'','',2,1,12.80,14.95,0.00,2),(747,'2019-07-21 07:24:32',1,'','',3,1,10.80,11.75,0.00,2),(747,'2019-07-21 07:24:32',13,'','',4,1,12.80,14.95,0.00,2),(748,'2019-07-21 07:26:42',1,'','',3,1,10.80,11.75,0.00,2),(748,'2019-07-21 07:26:42',13,'','',4,1,12.80,14.95,0.00,2),(749,'2019-07-21 07:32:12',1,'','',3,1,10.80,11.75,0.00,2),(749,'2019-07-21 07:32:12',13,'','',4,1,12.80,14.95,0.00,2),(750,'2019-07-21 08:50:47',1,'','',1,1,10.80,11.75,0.00,2),(750,'2019-07-21 08:50:47',13,'','',2,1,12.80,14.95,0.00,2),(751,'2019-07-21 08:52:46',1,'','',1,1,10.80,11.75,0.00,2),(751,'2019-07-21 08:52:46',13,'','',2,1,12.80,14.95,0.00,2),(752,'2019-07-21 08:53:03',1,'','',1,1,10.80,11.75,0.00,2),(752,'2019-07-21 08:53:03',13,'','',2,1,12.80,14.95,0.00,2),(753,'2019-07-21 08:53:55',1,'','',1,1,10.80,11.75,0.00,2),(753,'2019-07-21 08:53:55',13,'','',2,1,12.80,14.95,0.00,2),(754,'2019-07-21 08:55:42',1,'','',1,1,10.80,11.75,0.00,2),(754,'2019-07-21 08:55:42',13,'','',2,1,12.80,14.95,0.00,2),(755,'2019-07-21 12:05:37',1,'','',1,1,10.80,11.75,0.00,2),(755,'2019-07-21 12:05:37',13,'','',2,1,12.80,14.95,0.00,2),(756,'2019-07-21 12:16:04',1,'','',1,1,10.80,11.75,0.00,2),(756,'2019-07-21 12:16:04',13,'','',2,1,12.80,14.95,0.00,2),(757,'2019-07-21 12:19:23',1,'','',1,1,10.80,11.75,0.00,2),(757,'2019-07-21 12:19:23',13,'','',2,1,12.80,14.95,0.00,2),(758,'2019-07-21 12:21:14',1,'','',1,1,10.80,11.75,0.00,2),(758,'2019-07-21 12:21:14',13,'','',2,1,12.80,14.95,0.00,2),(759,'2019-07-21 12:21:45',1,'','',1,1,10.80,11.75,0.00,2),(759,'2019-07-21 12:21:45',13,'','',2,1,12.80,14.95,0.00,2),(760,'2019-07-21 12:26:56',1,'','',1,1,10.80,11.75,0.00,2),(760,'2019-07-21 12:26:56',13,'','',2,1,12.80,14.95,0.00,2),(761,'2019-07-21 12:28:00',1,'','',1,1,10.80,11.75,0.00,2),(761,'2019-07-21 12:28:00',13,'','',2,1,12.80,14.95,0.00,2),(762,'2019-07-21 12:36:07',1,'','',1,1,10.80,11.75,0.00,2),(762,'2019-07-21 12:36:07',13,'','',2,1,12.80,14.95,0.00,2),(763,'2019-07-21 12:37:41',1,'','',1,1,10.80,11.75,0.00,2),(763,'2019-07-21 12:37:41',13,'','',2,1,12.80,14.95,0.00,2),(764,'2019-07-21 12:37:54',1,'','',1,1,10.80,11.75,0.00,2),(764,'2019-07-21 12:37:54',13,'','',2,1,12.80,14.95,0.00,2),(765,'2019-07-21 12:38:44',1,'','',1,1,10.80,11.75,0.00,2),(765,'2019-07-21 12:38:44',13,'','',2,1,12.80,14.95,0.00,2),(766,'2019-07-21 12:41:46',1,'','',1,1,10.80,11.75,0.00,2),(766,'2019-07-21 12:41:46',13,'','',2,1,12.80,14.95,0.00,2),(767,'2019-07-21 12:46:42',1,'','',1,1,10.80,11.75,0.00,2),(767,'2019-07-21 12:46:42',13,'','',2,1,12.80,14.95,0.00,2),(768,'2019-07-21 13:15:28',1,'','',1,1,10.80,11.75,0.00,2),(768,'2019-07-21 13:15:28',13,'','',2,1,12.80,14.95,0.00,2),(769,'2019-07-21 13:16:42',1,'','',1,1,10.80,11.75,0.00,2),(769,'2019-07-21 13:16:42',13,'','',2,1,12.80,14.95,0.00,2),(770,'2019-07-21 13:19:17',1,'','',1,1,10.80,11.75,0.00,2),(770,'2019-07-21 13:19:17',13,'','',2,1,12.80,14.95,0.00,2),(771,'2019-07-21 13:23:20',1,'','',1,1,10.80,11.75,0.00,2),(771,'2019-07-21 13:23:20',13,'','',2,1,12.80,14.95,0.00,2),(772,'2019-07-21 13:23:25',1,'','',1,1,10.80,11.75,0.00,2),(772,'2019-07-21 13:23:25',13,'','',2,1,12.80,14.95,0.00,2),(773,'2019-07-21 13:23:41',1,'','',1,1,10.80,11.75,0.00,2),(773,'2019-07-21 13:23:41',13,'','',2,1,12.80,14.95,0.00,2),(774,'2019-07-21 13:25:08',1,'','',1,1,10.80,11.75,0.00,2),(774,'2019-07-21 13:25:08',13,'','',2,1,12.80,14.95,0.00,2),(775,'2019-07-21 13:25:15',1,'','',1,1,10.80,11.75,0.00,2),(775,'2019-07-21 13:25:15',13,'','',2,1,12.80,14.95,0.00,2),(776,'2019-07-21 13:32:15',1,'','',1,1,10.80,11.75,0.00,2),(776,'2019-07-21 13:32:15',13,'','',2,1,12.80,14.95,0.00,2),(777,'2019-07-21 13:32:22',1,'','',1,1,10.80,11.75,0.00,2),(777,'2019-07-21 13:32:22',13,'','',2,1,12.80,14.95,0.00,2),(778,'2019-07-21 13:32:35',1,'','',1,1,10.80,11.75,0.00,2),(778,'2019-07-21 13:32:35',13,'','',2,1,12.80,14.95,0.00,2),(779,'2019-07-21 13:35:15',1,'','',1,1,10.80,11.75,0.00,2),(779,'2019-07-21 13:35:15',13,'','',2,1,12.80,14.95,0.00,2),(780,'2019-07-21 13:35:22',1,'','',1,1,10.80,11.75,0.00,2),(780,'2019-07-21 13:35:22',13,'','',2,1,12.80,14.95,0.00,2),(781,'2019-07-21 13:36:08',1,'','',1,1,10.80,11.75,0.00,2),(781,'2019-07-21 13:36:08',13,'','',2,1,12.80,14.95,0.00,2),(782,'2019-07-21 13:36:15',1,'','',1,1,10.80,11.75,0.00,2),(782,'2019-07-21 13:36:15',13,'','',2,1,12.80,14.95,0.00,2),(783,'2019-07-21 13:39:26',1,'','',1,1,10.80,11.75,0.00,2),(783,'2019-07-21 13:39:26',13,'','',2,1,12.80,14.95,0.00,2),(784,'2019-07-21 13:39:32',1,'','',1,1,10.80,11.75,0.00,2),(784,'2019-07-21 13:39:32',13,'','',2,1,12.80,14.95,0.00,2),(785,'2019-07-21 13:49:30',1,'','',1,1,10.80,11.75,0.00,2),(785,'2019-07-21 13:49:30',13,'','',2,1,12.80,14.95,0.00,2),(786,'2019-07-21 13:50:53',1,'','',1,1,10.80,11.75,0.00,2),(786,'2019-07-21 13:50:53',13,'','',2,1,12.80,14.95,0.00,2),(787,'2019-07-21 13:57:05',1,'','',1,1,10.80,11.75,0.00,2),(787,'2019-07-21 13:57:05',13,'','',2,1,12.80,14.95,0.00,2),(788,'2019-07-21 13:59:14',1,'','',1,1,10.80,11.75,0.00,2),(788,'2019-07-21 13:59:14',13,'','',2,1,12.80,14.95,0.00,2),(789,'2019-07-21 14:05:00',1,'','',1,1,10.80,11.75,0.00,2),(789,'2019-07-21 14:05:00',13,'','',2,1,12.80,14.95,0.00,2),(790,'2019-07-21 14:06:37',1,'','',1,1,10.80,11.75,0.00,2),(790,'2019-07-21 14:06:37',13,'','',2,1,12.80,14.95,0.00,2),(791,'2019-07-21 14:09:13',1,'','',1,1,10.80,11.75,0.00,2),(791,'2019-07-21 14:09:13',13,'','',2,1,12.80,14.95,0.00,2),(792,'2019-07-21 14:11:41',1,'','',1,1,10.80,11.75,0.00,2),(792,'2019-07-21 14:11:41',13,'','',2,1,12.80,14.95,0.00,2),(793,'2019-07-21 14:13:17',1,'','',1,1,10.80,11.75,0.00,2),(793,'2019-07-21 14:13:17',13,'','',2,1,12.80,14.95,0.00,2),(794,'2019-07-21 14:15:13',1,'','',1,1,10.80,11.75,0.00,2),(794,'2019-07-21 14:15:13',13,'','',2,1,12.80,14.95,0.00,2),(795,'2019-07-21 14:17:01',1,'','',1,1,10.80,11.75,0.00,2),(795,'2019-07-21 14:17:01',13,'','',2,1,12.80,14.95,0.00,2),(796,'2019-07-21 14:19:02',1,'','',1,1,10.80,11.75,0.00,2),(796,'2019-07-21 14:19:02',13,'','',2,1,12.80,14.95,0.00,2),(797,'2019-07-21 14:23:52',1,'','',1,1,10.80,11.75,0.00,2),(797,'2019-07-21 14:23:52',13,'','',2,1,12.80,14.95,0.00,2),(798,'2019-07-21 14:25:28',1,'','',1,1,10.80,11.75,0.00,2),(798,'2019-07-21 14:25:28',13,'','',2,1,12.80,14.95,0.00,2),(799,'2019-07-21 14:25:53',1,'','',1,1,10.80,11.75,0.00,2),(799,'2019-07-21 14:25:53',13,'','',2,1,12.80,14.95,0.00,2),(800,'2019-07-21 14:26:28',1,'','',1,1,10.80,11.75,0.00,2),(800,'2019-07-21 14:26:28',13,'','',2,1,12.80,14.95,0.00,2),(801,'2019-07-21 16:15:06',1,'','',1,1,10.80,11.75,0.00,2),(801,'2019-07-21 16:15:06',13,'','',2,1,12.80,14.95,0.00,2),(802,'2019-07-21 16:15:12',1,'','',1,1,10.80,11.75,0.00,2),(802,'2019-07-21 16:15:12',13,'','',2,1,12.80,14.95,0.00,2),(803,'2019-07-21 16:17:33',1,'','',1,1,10.80,11.75,0.00,2),(803,'2019-07-21 16:17:33',13,'','',2,1,12.80,14.95,0.00,2),(804,'2019-07-21 16:17:39',1,'','',1,1,10.80,11.75,0.00,2),(804,'2019-07-21 16:17:39',13,'','',2,1,12.80,14.95,0.00,2),(805,'2019-07-21 16:19:01',1,'','',1,1,10.80,11.75,0.00,2),(805,'2019-07-21 16:19:01',13,'','',2,1,12.80,14.95,0.00,2),(806,'2019-07-21 16:19:08',1,'','',1,1,10.80,11.75,0.00,2),(806,'2019-07-21 16:19:08',13,'','',2,1,12.80,14.95,0.00,2),(807,'2019-07-21 16:29:30',1,'','',1,1,10.80,11.75,0.00,2),(807,'2019-07-21 16:29:30',13,'','',2,1,12.80,14.95,0.00,2),(808,'2019-07-21 16:30:30',1,'','',1,1,10.80,11.75,0.00,2),(808,'2019-07-21 16:30:30',13,'','',2,1,12.80,14.95,0.00,2),(809,'2019-07-21 16:31:45',1,'','',1,1,10.80,11.75,0.00,2),(809,'2019-07-21 16:31:45',13,'','',2,1,12.80,14.95,0.00,2),(810,'2019-07-21 16:31:58',1,'','',1,1,10.80,11.75,0.00,2),(810,'2019-07-21 16:31:58',13,'','',2,1,12.80,14.95,0.00,2),(811,'2019-07-21 16:34:10',1,'','',1,1,10.80,11.75,0.00,2),(811,'2019-07-21 16:34:10',13,'','',2,1,12.80,14.95,0.00,2),(812,'2019-07-21 16:35:15',1,'','',1,1,10.80,11.75,0.00,2),(812,'2019-07-21 16:35:15',13,'','',2,1,12.80,14.95,0.00,2),(813,'2019-07-21 16:40:36',1,'','',1,1,10.80,11.75,0.00,2),(813,'2019-07-21 16:40:36',13,'','',2,1,12.80,14.95,0.00,2),(814,'2019-07-21 16:44:07',1,'','',1,1,10.80,11.75,0.00,2),(814,'2019-07-21 16:44:07',13,'','',2,1,12.80,14.95,0.00,2),(815,'2019-07-21 16:45:24',1,'','',1,1,10.80,11.75,0.00,2),(815,'2019-07-21 16:45:24',13,'','',2,1,12.80,14.95,0.00,2),(816,'2019-07-21 16:48:30',1,'','',1,1,10.80,11.75,0.00,2),(816,'2019-07-21 16:48:30',13,'','',2,1,12.80,14.95,0.00,2),(817,'2019-07-21 17:08:16',1,'','',1,1,10.80,11.75,0.00,2),(817,'2019-07-21 17:08:16',13,'','',2,1,12.80,14.95,0.00,2),(818,'2019-07-21 17:11:27',1,'','',1,1,10.80,11.75,0.00,2),(818,'2019-07-21 17:11:27',13,'','',2,1,12.80,14.95,0.00,2),(819,'2019-07-21 17:13:08',1,'','',1,1,10.80,11.75,0.00,2),(819,'2019-07-21 17:13:08',13,'','',2,1,12.80,14.95,0.00,2),(820,'2019-07-21 17:17:19',1,'','',1,1,10.80,11.75,0.00,2),(820,'2019-07-21 17:17:19',13,'','',2,1,12.80,14.95,0.00,2),(821,'2019-07-21 17:19:58',1,'','',1,1,10.80,11.75,0.00,2),(821,'2019-07-21 17:19:58',13,'','',2,1,12.80,14.95,0.00,2),(822,'2019-07-21 17:28:13',1,'','',1,1,10.80,11.75,0.00,2),(822,'2019-07-21 17:28:13',13,'','',2,1,12.80,14.95,0.00,2),(823,'2019-07-21 17:29:50',3,'','',1,1,8.40,9.95,0.00,2),(823,'2019-07-21 17:29:50',5,'','',2,1,8.31,10.55,0.00,2),(824,'2019-07-21 17:31:38',8,'','',2,1,13.50,19.50,0.00,2),(824,'2019-07-21 17:31:38',9,'','',3,1,3.83,4.95,0.00,2),(824,'2019-07-21 17:31:38',44,'','',1,1,11.50,17.50,0.00,2),(825,'2019-07-21 17:34:21',8,'','',2,1,13.50,19.50,0.00,2),(825,'2019-07-21 17:34:21',9,'','',3,1,3.83,4.95,0.00,2),(825,'2019-07-21 17:34:21',44,'','',1,1,11.50,17.50,0.00,2),(826,'2019-07-21 17:35:01',8,'','',2,1,13.50,19.50,0.00,2),(826,'2019-07-21 17:35:01',9,'','',3,1,3.83,4.95,0.00,2),(826,'2019-07-21 17:35:01',44,'','',1,1,11.50,17.50,0.00,2),(827,'2019-07-21 17:36:43',8,'','',2,1,13.50,19.50,0.00,2),(827,'2019-07-21 17:36:43',9,'','',3,1,3.83,4.95,0.00,2),(827,'2019-07-21 17:36:43',44,'','',1,1,11.50,17.50,0.00,2),(828,'2019-07-21 17:41:36',8,'','',2,1,13.50,19.50,0.00,2),(828,'2019-07-21 17:41:36',9,'','',3,1,3.83,4.95,0.00,2),(828,'2019-07-21 17:41:36',44,'','',1,1,11.50,17.50,0.00,2),(829,'2019-07-21 17:46:26',8,'','',2,1,13.50,19.50,0.00,2),(829,'2019-07-21 17:46:26',9,'','',3,1,3.83,4.95,0.00,2),(829,'2019-07-21 17:46:26',44,'','',1,1,11.50,17.50,0.00,2),(830,'2019-07-21 17:58:27',8,'','',2,1,13.50,19.50,0.00,2),(830,'2019-07-21 17:58:27',9,'','',3,1,3.83,4.95,0.00,2),(830,'2019-07-21 17:58:27',44,'','',1,1,11.50,17.50,0.00,2),(831,'2019-07-21 18:02:03',8,'','',2,1,13.50,19.50,0.00,2),(831,'2019-07-21 18:02:03',9,'','',3,1,3.83,4.95,0.00,2),(831,'2019-07-21 18:02:03',44,'','',1,1,11.50,17.50,0.00,2),(832,'2019-07-21 18:03:20',8,'','',2,1,13.50,19.50,0.00,2),(832,'2019-07-21 18:03:20',9,'','',3,1,3.83,4.95,0.00,2),(832,'2019-07-21 18:03:20',44,'','',1,1,11.50,17.50,0.00,2),(833,'2019-07-21 18:03:59',8,'','',2,1,13.50,19.50,0.00,2),(833,'2019-07-21 18:03:59',9,'','',3,1,3.83,4.95,0.00,2),(833,'2019-07-21 18:03:59',44,'','',1,1,11.50,17.50,0.00,2),(834,'2019-07-21 18:06:07',8,'','',2,1,13.50,19.50,0.00,2),(834,'2019-07-21 18:06:07',9,'','',3,1,3.83,4.95,0.00,2),(834,'2019-07-21 18:06:07',44,'','',1,1,11.50,17.50,0.00,2),(835,'2019-07-21 18:13:49',8,'','',2,1,13.50,19.50,0.00,2),(835,'2019-07-21 18:13:49',9,'','',3,1,3.83,4.95,0.00,2),(835,'2019-07-21 18:13:49',44,'','',1,1,11.50,17.50,0.00,2),(836,'2019-07-21 18:15:00',8,'','',2,1,13.50,19.50,0.00,2),(836,'2019-07-21 18:15:00',9,'','',3,1,3.83,4.95,0.00,2),(836,'2019-07-21 18:15:00',44,'','',1,1,11.50,17.50,0.00,2),(837,'2019-07-21 18:17:23',8,'','',2,1,13.50,19.50,0.00,2),(837,'2019-07-21 18:17:23',9,'','',3,1,3.83,4.95,0.00,2),(837,'2019-07-21 18:17:23',44,'','',1,1,11.50,17.50,0.00,2),(838,'2019-07-21 18:18:09',8,'','',2,1,13.50,19.50,0.00,2),(838,'2019-07-21 18:18:09',9,'','',3,1,3.83,4.95,0.00,2),(838,'2019-07-21 18:18:09',44,'','',1,1,11.50,17.50,0.00,2),(839,'2019-07-21 18:18:50',8,'','',2,1,13.50,19.50,0.00,2),(839,'2019-07-21 18:18:50',9,'','',3,1,3.83,4.95,0.00,2),(839,'2019-07-21 18:18:50',44,'','',1,1,11.50,17.50,0.00,2),(840,'2019-07-21 18:24:27',8,'','',2,1,13.50,19.50,0.00,2),(840,'2019-07-21 18:24:27',9,'','',3,1,3.83,4.95,0.00,2),(840,'2019-07-21 18:24:27',44,'','',1,1,11.50,17.50,0.00,2),(841,'2019-07-21 18:30:16',8,'','',2,1,13.50,19.50,0.00,2),(841,'2019-07-21 18:30:16',9,'','',3,1,3.83,4.95,0.00,2),(841,'2019-07-21 18:30:16',44,'','',1,1,11.50,17.50,0.00,2),(842,'2019-07-21 18:32:22',8,'','',2,1,13.50,19.50,0.00,2),(842,'2019-07-21 18:32:22',9,'','',3,1,3.83,4.95,0.00,2),(842,'2019-07-21 18:32:22',44,'','',1,1,11.50,17.50,0.00,2),(843,'2019-07-21 18:37:31',8,'','',2,1,13.50,19.50,0.00,2),(843,'2019-07-21 18:37:31',9,'','',3,1,3.83,4.95,0.00,2),(843,'2019-07-21 18:37:31',44,'','',1,1,11.50,17.50,0.00,2),(844,'2019-07-21 18:37:35',8,'','',2,1,13.50,19.50,0.00,2),(844,'2019-07-21 18:37:35',9,'','',3,1,3.83,4.95,0.00,2),(844,'2019-07-21 18:37:35',44,'','',1,1,11.50,17.50,0.00,2),(845,'2019-07-21 18:37:38',8,'','',2,1,13.50,19.50,0.00,2),(845,'2019-07-21 18:37:38',9,'','',3,1,3.83,4.95,0.00,2),(845,'2019-07-21 18:37:38',44,'','',1,1,11.50,17.50,0.00,2),(846,'2019-07-21 18:37:41',8,'','',2,1,13.50,19.50,0.00,2),(846,'2019-07-21 18:37:41',9,'','',3,1,3.83,4.95,0.00,2),(846,'2019-07-21 18:37:41',44,'','',1,1,11.50,17.50,0.00,2),(847,'2019-07-21 18:37:45',8,'','',2,1,13.50,19.50,0.00,2),(847,'2019-07-21 18:37:45',9,'','',3,1,3.83,4.95,0.00,2),(847,'2019-07-21 18:37:45',44,'','',1,1,11.50,17.50,0.00,2),(848,'2019-07-21 18:37:48',8,'','',2,1,13.50,19.50,0.00,2),(848,'2019-07-21 18:37:48',9,'','',3,1,3.83,4.95,0.00,2),(848,'2019-07-21 18:37:48',44,'','',1,1,11.50,17.50,0.00,2),(849,'2019-07-21 18:37:52',8,'','',2,1,13.50,19.50,0.00,2),(849,'2019-07-21 18:37:52',9,'','',3,1,3.83,4.95,0.00,2),(849,'2019-07-21 18:37:52',44,'','',1,1,11.50,17.50,0.00,2),(850,'2019-07-21 18:37:55',8,'','',2,1,13.50,19.50,0.00,2),(850,'2019-07-21 18:37:55',9,'','',3,1,3.83,4.95,0.00,2),(850,'2019-07-21 18:37:55',44,'','',1,1,11.50,17.50,0.00,2),(851,'2019-07-21 18:37:59',8,'','',2,1,13.50,19.50,0.00,2),(851,'2019-07-21 18:37:59',9,'','',3,1,3.83,4.95,0.00,2),(851,'2019-07-21 18:37:59',44,'','',1,1,11.50,17.50,0.00,2),(852,'2019-07-21 18:38:02',8,'','',2,1,13.50,19.50,0.00,2),(852,'2019-07-21 18:38:02',9,'','',3,1,3.83,4.95,0.00,2),(852,'2019-07-21 18:38:02',44,'','',1,1,11.50,17.50,0.00,2),(853,'2019-07-21 18:38:06',8,'','',2,1,13.50,19.50,0.00,2),(853,'2019-07-21 18:38:06',9,'','',3,1,3.83,4.95,0.00,2),(853,'2019-07-21 18:38:06',44,'','',1,1,11.50,17.50,0.00,2),(854,'2019-07-21 18:38:09',8,'','',2,1,13.50,19.50,0.00,2),(854,'2019-07-21 18:38:09',9,'','',3,1,3.83,4.95,0.00,2),(854,'2019-07-21 18:38:09',44,'','',1,1,11.50,17.50,0.00,2),(855,'2019-07-21 18:38:12',8,'','',2,1,13.50,19.50,0.00,2),(855,'2019-07-21 18:38:12',9,'','',3,1,3.83,4.95,0.00,2),(855,'2019-07-21 18:38:12',44,'','',1,1,11.50,17.50,0.00,2),(856,'2019-07-21 18:38:16',8,'','',2,1,13.50,19.50,0.00,2),(856,'2019-07-21 18:38:16',9,'','',3,1,3.83,4.95,0.00,2),(856,'2019-07-21 18:38:16',44,'','',1,1,11.50,17.50,0.00,2),(857,'2019-07-21 18:38:19',8,'','',2,1,13.50,19.50,0.00,2),(857,'2019-07-21 18:38:19',9,'','',3,1,3.83,4.95,0.00,2),(857,'2019-07-21 18:38:19',44,'','',1,1,11.50,17.50,0.00,2),(858,'2019-07-21 18:38:23',8,'','',2,1,13.50,19.50,0.00,2),(858,'2019-07-21 18:38:23',9,'','',3,1,3.83,4.95,0.00,2),(858,'2019-07-21 18:38:23',44,'','',1,1,11.50,17.50,0.00,2),(859,'2019-07-21 18:38:26',8,'','',2,1,13.50,19.50,0.00,2),(859,'2019-07-21 18:38:26',9,'','',3,1,3.83,4.95,0.00,2),(859,'2019-07-21 18:38:26',44,'','',1,1,11.50,17.50,0.00,2),(860,'2019-07-21 18:38:41',8,'','',2,1,13.50,19.50,0.00,2),(860,'2019-07-21 18:38:41',9,'','',3,1,3.83,4.95,0.00,2),(860,'2019-07-21 18:38:41',44,'','',1,1,11.50,17.50,0.00,2),(861,'2019-07-21 18:38:45',8,'','',2,1,13.50,19.50,0.00,2),(861,'2019-07-21 18:38:45',9,'','',3,1,3.83,4.95,0.00,2),(861,'2019-07-21 18:38:45',44,'','',1,1,11.50,17.50,0.00,2),(862,'2019-07-21 18:38:48',8,'','',2,1,13.50,19.50,0.00,2),(862,'2019-07-21 18:38:48',9,'','',3,1,3.83,4.95,0.00,2),(862,'2019-07-21 18:38:48',44,'','',1,1,11.50,17.50,0.00,2),(863,'2019-07-21 18:38:52',8,'','',2,1,13.50,19.50,0.00,2),(863,'2019-07-21 18:38:52',9,'','',3,1,3.83,4.95,0.00,2),(863,'2019-07-21 18:38:52',44,'','',1,1,11.50,17.50,0.00,2),(864,'2019-07-21 18:38:55',8,'','',2,1,13.50,19.50,0.00,2),(864,'2019-07-21 18:38:55',9,'','',3,1,3.83,4.95,0.00,2),(864,'2019-07-21 18:38:55',44,'','',1,1,11.50,17.50,0.00,2),(865,'2019-07-21 18:38:59',8,'','',2,1,13.50,19.50,0.00,2),(865,'2019-07-21 18:38:59',9,'','',3,1,3.83,4.95,0.00,2),(865,'2019-07-21 18:38:59',44,'','',1,1,11.50,17.50,0.00,2),(866,'2019-07-21 18:39:02',8,'','',2,1,13.50,19.50,0.00,2),(866,'2019-07-21 18:39:02',9,'','',3,1,3.83,4.95,0.00,2),(866,'2019-07-21 18:39:02',44,'','',1,1,11.50,17.50,0.00,2),(867,'2019-07-21 18:39:05',8,'','',2,1,13.50,19.50,0.00,2),(867,'2019-07-21 18:39:05',9,'','',3,1,3.83,4.95,0.00,2),(867,'2019-07-21 18:39:05',44,'','',1,1,11.50,17.50,0.00,2),(868,'2019-07-21 18:39:09',8,'','',2,1,13.50,19.50,0.00,2),(868,'2019-07-21 18:39:09',9,'','',3,1,3.83,4.95,0.00,2),(868,'2019-07-21 18:39:09',44,'','',1,1,11.50,17.50,0.00,2),(869,'2019-07-21 18:39:12',8,'','',2,1,13.50,19.50,0.00,2),(869,'2019-07-21 18:39:12',9,'','',3,1,3.83,4.95,0.00,2),(869,'2019-07-21 18:39:12',44,'','',1,1,11.50,17.50,0.00,2),(870,'2019-07-21 18:39:16',8,'','',2,1,13.50,19.50,0.00,2),(870,'2019-07-21 18:39:16',9,'','',3,1,3.83,4.95,0.00,2),(870,'2019-07-21 18:39:16',44,'','',1,1,11.50,17.50,0.00,2),(871,'2019-07-21 18:39:31',8,'','',2,1,13.50,19.50,0.00,2),(871,'2019-07-21 18:39:31',9,'','',3,1,3.83,4.95,0.00,2),(871,'2019-07-21 18:39:31',44,'','',1,1,11.50,17.50,0.00,2),(872,'2019-07-21 18:39:34',8,'','',2,1,13.50,19.50,0.00,2),(872,'2019-07-21 18:39:34',9,'','',3,1,3.83,4.95,0.00,2),(872,'2019-07-21 18:39:34',44,'','',1,1,11.50,17.50,0.00,2),(873,'2019-07-21 18:39:38',8,'','',2,1,13.50,19.50,0.00,2),(873,'2019-07-21 18:39:38',9,'','',3,1,3.83,4.95,0.00,2),(873,'2019-07-21 18:39:38',44,'','',1,1,11.50,17.50,0.00,2),(874,'2019-07-21 18:40:25',8,'','',2,1,13.50,19.50,0.00,2),(874,'2019-07-21 18:40:25',9,'','',3,1,3.83,4.95,0.00,2),(874,'2019-07-21 18:40:25',44,'','',1,1,11.50,17.50,0.00,2),(875,'2019-07-21 18:48:43',8,'','',2,1,13.50,19.50,0.00,2),(875,'2019-07-21 18:48:43',9,'','',3,1,3.83,4.95,0.00,2),(875,'2019-07-21 18:48:43',44,'','',1,1,11.50,17.50,0.00,2),(876,'2019-07-21 18:48:49',8,'','',2,1,13.50,19.50,0.00,2),(876,'2019-07-21 18:48:49',9,'','',3,1,3.83,4.95,0.00,2),(876,'2019-07-21 18:48:49',44,'','',1,1,11.50,17.50,0.00,2),(877,'2019-07-21 18:48:54',8,'','',2,1,13.50,19.50,0.00,2),(877,'2019-07-21 18:48:54',9,'','',3,1,3.83,4.95,0.00,2),(877,'2019-07-21 18:48:54',44,'','',1,1,11.50,17.50,0.00,2),(878,'2019-07-21 18:49:00',8,'','',2,1,13.50,19.50,0.00,2),(878,'2019-07-21 18:49:00',9,'','',3,1,3.83,4.95,0.00,2),(878,'2019-07-21 18:49:00',44,'','',1,1,11.50,17.50,0.00,2),(879,'2019-07-21 18:49:06',8,'','',2,1,13.50,19.50,0.00,2),(879,'2019-07-21 18:49:06',9,'','',3,1,3.83,4.95,0.00,2),(879,'2019-07-21 18:49:06',44,'','',1,1,11.50,17.50,0.00,2),(880,'2019-07-21 18:49:12',8,'','',2,1,13.50,19.50,0.00,2),(880,'2019-07-21 18:49:12',9,'','',3,1,3.83,4.95,0.00,2),(880,'2019-07-21 18:49:12',44,'','',1,1,11.50,17.50,0.00,2),(881,'2019-07-21 18:49:17',8,'','',2,1,13.50,19.50,0.00,2),(881,'2019-07-21 18:49:17',9,'','',3,1,3.83,4.95,0.00,2),(881,'2019-07-21 18:49:17',44,'','',1,1,11.50,17.50,0.00,2),(882,'2019-07-21 18:49:22',8,'','',2,1,13.50,19.50,0.00,2),(882,'2019-07-21 18:49:22',9,'','',3,1,3.83,4.95,0.00,2),(882,'2019-07-21 18:49:22',44,'','',1,1,11.50,17.50,0.00,2),(883,'2019-07-21 18:49:28',8,'','',2,1,13.50,19.50,0.00,2),(883,'2019-07-21 18:49:28',9,'','',3,1,3.83,4.95,0.00,2),(883,'2019-07-21 18:49:28',44,'','',1,1,11.50,17.50,0.00,2),(884,'2019-07-21 18:49:33',8,'','',2,1,13.50,19.50,0.00,2),(884,'2019-07-21 18:49:33',9,'','',3,1,3.83,4.95,0.00,2),(884,'2019-07-21 18:49:33',44,'','',1,1,11.50,17.50,0.00,2),(885,'2019-07-21 18:49:39',8,'','',2,1,13.50,19.50,0.00,2),(885,'2019-07-21 18:49:39',9,'','',3,1,3.83,4.95,0.00,2),(885,'2019-07-21 18:49:39',44,'','',1,1,11.50,17.50,0.00,2),(886,'2019-07-21 18:49:48',8,'','',2,1,13.50,19.50,0.00,2),(886,'2019-07-21 18:49:48',9,'','',3,1,3.83,4.95,0.00,2),(886,'2019-07-21 18:49:48',44,'','',1,1,11.50,17.50,0.00,2),(887,'2019-07-21 18:49:53',8,'','',2,1,13.50,19.50,0.00,2),(887,'2019-07-21 18:49:53',9,'','',3,1,3.83,4.95,0.00,2),(887,'2019-07-21 18:49:53',44,'','',1,1,11.50,17.50,0.00,2),(888,'2019-07-21 18:50:00',8,'','',2,1,13.50,19.50,0.00,2),(888,'2019-07-21 18:50:00',9,'','',3,1,3.83,4.95,0.00,2),(888,'2019-07-21 18:50:00',44,'','',1,1,11.50,17.50,0.00,2),(889,'2019-07-21 18:50:14',8,'','',2,1,13.50,19.50,0.00,2),(889,'2019-07-21 18:50:14',9,'','',3,1,3.83,4.95,0.00,2),(889,'2019-07-21 18:50:14',44,'','',1,1,11.50,17.50,0.00,2),(890,'2019-07-21 18:55:42',8,'','',2,1,13.50,19.50,0.00,2),(890,'2019-07-21 18:55:42',9,'','',3,1,3.83,4.95,0.00,2),(890,'2019-07-21 18:55:42',44,'','',1,1,11.50,17.50,0.00,2),(891,'2019-07-21 18:55:48',8,'','',2,1,13.50,19.50,0.00,2),(891,'2019-07-21 18:55:48',9,'','',3,1,3.83,4.95,0.00,2),(891,'2019-07-21 18:55:48',44,'','',1,1,11.50,17.50,0.00,2),(892,'2019-07-21 18:55:53',8,'','',2,1,13.50,19.50,0.00,2),(892,'2019-07-21 18:55:53',9,'','',3,1,3.83,4.95,0.00,2),(892,'2019-07-21 18:55:53',44,'','',1,1,11.50,17.50,0.00,2),(893,'2019-07-21 19:01:18',8,'','',2,1,13.50,19.50,0.00,2),(893,'2019-07-21 19:01:18',9,'','',3,1,3.83,4.95,0.00,2),(893,'2019-07-21 19:01:18',44,'','',1,1,11.50,17.50,0.00,2),(894,'2019-07-21 19:03:15',1,'','',1,1,10.80,11.75,0.00,2),(894,'2019-07-21 19:03:15',13,'','',2,1,12.80,14.95,0.00,2),(895,'2019-07-22 05:18:25',1,'','',1,1,10.80,11.75,0.00,2),(895,'2019-07-22 05:18:25',5,'','',2,1,8.31,10.55,0.00,2),(895,'2019-07-22 05:18:25',8,'','',3,1,13.50,19.50,0.00,2),(895,'2019-07-22 05:18:25',9,'','',4,1,3.83,4.95,0.00,2),(896,'2019-07-22 05:22:49',1,'','',1,1,10.80,11.75,0.00,2),(896,'2019-07-22 05:22:49',3,'','',2,1,8.40,9.95,0.00,2),(896,'2019-07-22 05:22:49',8,'','',3,1,13.50,19.50,0.00,2),(896,'2019-07-22 05:22:49',9,'','',4,1,3.83,4.95,0.00,2),(897,'2019-07-22 05:26:54',1,'','',1,1,10.80,11.75,0.00,2),(897,'2019-07-22 05:26:54',8,'','',2,1,13.50,19.50,0.00,2),(897,'2019-07-22 05:26:54',9,'','',3,1,3.83,4.95,0.00,2),(898,'2019-07-22 05:34:30',1,'','',1,1,10.80,11.75,0.00,2),(898,'2019-07-22 05:34:30',8,'','',2,3,13.50,19.50,0.00,2),(898,'2019-07-22 05:34:30',9,'','',3,1,3.83,4.95,0.00,2),(898,'2019-07-22 05:34:30',23,'','',4,1,11.00,13.95,0.00,2),(899,'2019-07-22 05:48:09',4,'','',1,1,9.27,10.95,0.00,2),(899,'2019-07-22 05:48:09',7,'','',2,1,9.99,11.95,0.00,2),(899,'2019-07-22 05:48:09',9,'','',3,1,3.83,4.95,0.00,2),(900,'2019-07-22 05:55:30',5,'','',1,1,8.31,10.55,0.00,2),(900,'2019-07-22 05:55:30',8,'','',2,1,13.50,19.50,0.00,2),(900,'2019-07-22 05:55:30',9,'','',3,1,3.83,4.95,0.00,2),(901,'2019-07-22 05:56:51',8,'','',2,1,13.50,19.50,0.00,2),(901,'2019-07-22 05:56:51',9,'','',1,1,3.83,4.95,0.00,2),(902,'2019-07-22 06:03:37',8,'','',2,2,13.50,19.50,0.00,2),(902,'2019-07-22 06:03:37',9,'','',1,1,3.83,4.95,0.00,2),(903,'2019-07-22 06:09:27',9,'','',1,1,3.83,4.95,0.00,2),(903,'2019-07-22 06:09:27',45,'','',2,1,6.16,6.95,0.00,2),(903,'2019-07-22 06:09:27',47,'','',3,1,13.67,14.95,0.00,2),(904,'2019-07-22 06:11:44',5,'','',1,1,8.31,10.55,0.00,2),(904,'2019-07-22 06:11:44',8,'','',2,1,13.50,19.50,0.00,2),(904,'2019-07-22 06:11:44',9,'','',3,1,3.83,4.95,0.00,2),(905,'2019-07-22 07:13:52',5,'','',1,1,8.31,10.55,0.00,2),(905,'2019-07-22 07:13:52',9,'','',2,1,3.83,4.95,0.00,2),(906,'2019-07-22 07:15:14',7,'','',1,1,9.99,11.95,0.00,2),(906,'2019-07-22 07:15:14',33,'','',2,1,7.80,12.50,0.00,2),(907,'2019-07-22 12:30:57',5,'','',1,2,8.31,10.55,0.00,2),(907,'2019-07-22 12:30:57',6,'','',2,1,0.00,0.00,0.00,2),(908,'2019-07-22 12:33:12',5,'','',1,1,8.31,10.55,0.00,2),(908,'2019-07-22 12:33:12',19,'','',2,2,14.80,15.95,0.00,2),(908,'2019-07-22 12:33:12',48,'','',3,1,14.50,15.95,0.00,2),(909,'2019-07-22 12:36:56',52,'','',2,1,18.50,16.95,0.00,2),(909,'2019-07-22 12:36:56',66,'','',1,1,7.00,9.00,0.00,2),(910,'2019-07-23 03:45:22',8,'','',1,1,13.50,19.50,0.00,2),(910,'2019-07-23 03:45:22',9,'','',2,1,3.83,4.95,0.00,2),(911,'2019-07-23 03:58:06',9,'','',1,1,3.83,4.95,0.00,2),(911,'2019-07-23 03:58:06',15,'','',2,1,11.20,12.30,0.00,2),(912,'2019-07-23 04:01:35',8,'','',1,1,13.50,19.50,0.00,2),(912,'2019-07-23 04:01:35',56,'','',2,1,0.00,15.95,0.00,2),(913,'2019-07-23 04:08:20',9,'','',2,1,3.83,4.95,0.00,2),(913,'2019-07-23 04:08:20',56,'','',1,1,0.00,15.95,0.00,2),(914,'2019-07-23 04:09:42',45,'','',1,1,6.16,6.95,0.00,2),(914,'2019-07-23 04:09:42',48,'','',2,1,14.50,15.95,0.00,2),(915,'2019-07-23 04:11:55',47,'','',1,1,13.67,14.95,0.00,2),(915,'2019-07-23 04:11:55',48,'','',2,1,14.50,15.95,0.00,2),(916,'2019-07-23 04:14:21',4,'','',2,1,9.27,10.95,0.00,2),(916,'2019-07-23 04:14:21',48,'','',1,1,14.50,15.95,0.00,2),(917,'2019-07-23 04:16:26',47,'','',2,1,13.67,14.95,0.00,2),(917,'2019-07-23 04:16:26',65,'','',1,1,8.00,9.00,0.00,2),(918,'2019-07-23 04:18:14',47,'','',2,1,13.67,14.95,0.00,2),(918,'2019-07-23 04:18:14',48,'','',1,1,14.50,15.95,0.00,2),(919,'2019-07-23 04:20:02',44,'','',2,1,11.50,17.50,0.00,2),(919,'2019-07-23 04:20:02',58,'','',1,1,8.00,12.00,0.00,2),(920,'2019-07-23 04:26:26',44,'','',1,1,11.50,17.50,0.00,2),(920,'2019-07-23 04:26:26',45,'','',2,1,6.16,6.95,0.00,2),(921,'2019-07-23 04:34:55',8,'','',1,1,13.50,19.50,0.00,2),(921,'2019-07-23 04:34:55',9,'','',2,1,3.83,4.95,0.00,2),(922,'2019-07-23 04:37:29',8,'','',1,1,13.50,19.50,0.00,2),(922,'2019-07-23 04:37:29',9,'','',2,1,3.83,4.95,0.00,2),(923,'2019-07-23 04:57:50',8,'','',1,1,13.50,19.50,0.00,2),(923,'2019-07-23 04:57:50',47,'','',2,1,13.67,14.95,0.00,2),(924,'2019-07-23 04:59:40',6,'','',2,1,0.00,0.00,0.00,2),(924,'2019-07-23 04:59:40',8,'','',1,1,13.50,19.50,0.00,2),(925,'2019-07-23 05:01:34',48,'','',1,1,14.50,15.95,0.00,2),(926,'2019-07-23 05:03:25',45,'','',1,1,6.16,6.95,0.00,2),(927,'2019-07-23 05:04:57',64,'','',1,1,8.50,10.00,0.00,2),(928,'2019-07-23 05:07:44',5,'','',1,1,8.31,10.55,0.00,2),(928,'2019-07-23 05:07:44',6,'','',2,1,0.00,0.00,0.00,2),(929,'2019-07-23 05:11:21',8,'','',1,1,13.50,19.50,0.00,2),(930,'2019-07-23 05:12:58',5,'','',1,1,8.31,10.55,0.00,2),(931,'2019-07-23 05:14:31',5,'','',2,1,8.31,10.55,0.00,2),(931,'2019-07-23 05:14:31',8,'','',3,1,13.50,19.50,0.00,2),(931,'2019-07-23 05:14:31',64,'','',1,1,8.50,10.00,0.00,2),(932,'2019-07-23 05:17:30',6,'','',1,1,0.00,0.00,0.00,2),(932,'2019-07-23 05:17:30',8,'','',2,1,13.50,19.50,0.00,2),(933,'2019-07-23 05:26:21',45,'','',1,1,6.16,6.95,0.00,2),(934,'2019-07-23 05:38:39',8,'','',2,1,13.50,19.50,0.00,2),(934,'2019-07-23 05:38:39',45,'','',1,1,6.16,6.95,0.00,2),(935,'2019-07-23 06:02:19',5,'','',1,1,8.31,10.55,0.00,2),(935,'2019-07-23 06:02:19',9,'','',2,1,3.83,4.95,0.00,2),(936,'2019-07-23 06:16:47',5,'','',1,1,8.31,10.55,0.00,2),(937,'2019-07-23 06:20:31',5,'','',1,1,8.31,10.55,0.00,2),(937,'2019-07-23 06:20:31',8,'','',2,1,13.50,19.50,0.00,2),(938,'2019-07-23 06:24:07',8,'','',1,1,13.50,19.50,0.00,2),(938,'2019-07-23 06:24:07',9,'','',2,1,3.83,4.95,0.00,2),(939,'2019-07-23 06:26:17',5,'','',3,1,8.31,10.55,0.00,2),(939,'2019-07-23 06:26:17',6,'','',1,1,0.00,0.00,0.00,2),(939,'2019-07-23 06:26:17',9,'','',2,1,3.83,4.95,0.00,2),(940,'2019-07-23 07:24:50',5,'','',1,1,8.31,10.55,0.00,2),(940,'2019-07-23 07:24:50',9,'','',2,1,3.83,4.95,0.00,2),(941,'2019-07-23 07:26:27',5,'','',1,1,8.31,10.55,0.00,2),(941,'2019-07-23 07:26:27',9,'','',2,1,3.83,4.95,0.00,2),(942,'2019-07-23 07:27:45',5,'','',1,1,8.31,10.55,0.00,2),(943,'2019-07-23 07:31:00',8,'','',1,1,13.50,19.50,0.00,2),(943,'2019-07-23 07:31:00',9,'','',2,1,3.83,4.95,0.00,2),(944,'2019-07-23 07:32:52',6,'','',1,1,0.00,0.00,0.00,2),(944,'2019-07-23 07:32:52',9,'','',2,1,3.83,4.95,0.00,2),(945,'2019-07-23 07:35:09',5,'','',1,1,8.31,10.55,0.00,2),(945,'2019-07-23 07:35:09',9,'','',2,1,3.83,4.95,0.00,2),(946,'2019-07-23 07:36:14',5,'','',1,1,8.31,10.55,0.00,2),(946,'2019-07-23 07:36:14',6,'','',2,1,0.00,0.00,0.00,2),(947,'2019-07-23 07:43:48',9,'','',1,1,3.83,4.95,0.00,2),(948,'2019-07-23 07:44:49',8,'','',2,1,13.50,19.50,0.00,2),(948,'2019-07-23 07:44:49',9,'','',1,1,3.83,4.95,0.00,2),(949,'2019-07-23 07:45:36',8,'','',2,1,13.50,19.50,0.00,2),(949,'2019-07-23 07:45:36',9,'','',1,1,3.83,4.95,0.00,2),(950,'2019-07-23 07:46:25',5,'','',1,1,8.31,10.55,0.00,2),(950,'2019-07-23 07:46:25',8,'','',2,1,13.50,19.50,0.00,2),(951,'2019-07-23 10:57:05',5,'','',1,1,8.31,10.55,0.00,2),(951,'2019-07-23 10:57:05',6,'','',2,1,0.00,0.00,0.00,2),(952,'2019-07-23 11:01:07',5,'','',1,1,8.31,10.55,0.00,2),(952,'2019-07-23 11:01:07',6,'','',2,1,0.00,0.00,0.00,2),(952,'2019-07-23 11:01:07',7,'','',3,1,9.99,11.95,0.00,2),(953,'2019-07-23 11:05:39',5,'','',1,1,8.31,10.55,0.00,2),(954,'2019-07-23 11:06:56',5,'','',1,1,8.31,10.55,0.00,2),(955,'2019-07-23 11:07:49',9,'','',1,1,3.83,4.95,0.00,2),(956,'2019-07-23 11:11:24',8,'','',1,1,13.50,19.50,0.00,2),(956,'2019-07-23 11:11:24',9,'','',2,1,3.83,4.95,0.00,2),(957,'2019-07-23 11:12:33',5,'','',1,1,8.31,10.55,0.00,2),(958,'2019-07-23 11:29:54',5,'','',1,1,8.31,10.55,0.00,2),(958,'2019-07-23 11:29:54',7,'','',2,1,9.99,11.95,0.00,2),(959,'2019-07-23 11:34:32',8,'','',1,1,13.50,19.50,0.00,2),(960,'2019-07-23 11:36:46',5,'','',1,1,8.31,10.55,0.00,2),(960,'2019-07-23 11:36:46',9,'','',2,1,3.83,4.95,0.00,2),(961,'2019-07-23 13:20:44',9,'','',2,1,3.83,4.95,0.00,2),(961,'2019-07-23 13:20:44',55,'','',1,1,5.00,13.95,0.00,2),(962,'2019-07-23 13:27:02',8,'','',1,1,13.50,19.50,0.00,2),(963,'2019-07-23 13:30:35',9,'','',1,1,3.83,4.95,0.00,2),(963,'2019-07-23 13:30:35',45,'','',2,1,6.16,6.95,0.00,2),(964,'2019-07-23 13:33:44',5,'','',1,1,8.31,10.55,0.00,2),(964,'2019-07-23 13:33:44',9,'','',2,1,3.83,4.95,0.00,2),(965,'2019-07-23 14:34:56',5,'','',1,1,8.31,10.55,0.00,2),(965,'2019-07-23 14:34:56',9,'','',2,1,3.83,4.95,0.00,2),(966,'2019-07-23 14:36:35',9,'','',1,1,3.83,4.95,0.00,2),(967,'2019-07-23 14:38:54',9,'','',1,1,3.83,4.95,0.00,2),(967,'2019-07-23 14:38:54',18,'','',2,1,0.00,0.00,0.00,2),(967,'2019-07-23 14:38:54',19,'','',3,1,14.80,15.95,0.00,2),(968,'2019-07-23 14:41:02',5,'','',2,1,8.31,10.55,0.00,2),(968,'2019-07-23 14:41:02',9,'','',1,1,3.83,4.95,0.00,2),(969,'2019-07-23 14:43:11',8,'','',1,1,13.50,19.50,0.00,2),(970,'2019-07-23 14:44:35',9,'','',1,1,3.83,4.95,0.00,2),(971,'2019-07-23 14:46:00',9,'','',1,1,3.83,4.95,0.00,2),(972,'2019-07-23 14:46:48',9,'','',1,1,3.83,4.95,0.00,2),(972,'2019-07-23 14:46:48',44,'','',2,1,11.50,17.50,0.00,2),(973,'2019-07-23 14:48:25',44,'','',1,1,11.50,17.50,0.00,2),(974,'2019-07-23 14:49:29',44,'','',1,1,11.50,17.50,0.00,2),(975,'2019-07-23 14:51:02',44,'','',1,1,11.50,17.50,0.00,2),(976,'2019-07-23 14:52:50',5,'','',1,1,8.31,10.55,0.00,2),(976,'2019-07-23 14:52:50',44,'','',2,1,11.50,17.50,0.00,2),(977,'2019-07-23 14:57:04',9,'','',1,1,3.83,4.95,0.00,2),(977,'2019-07-23 14:57:04',22,'','',2,1,12.50,13.95,0.00,2),(978,'2019-07-23 15:00:30',9,'','',1,2,3.83,4.95,0.00,2),(979,'2019-07-23 15:02:06',8,'','',1,1,13.50,19.50,0.00,2),(980,'2019-07-23 15:06:09',8,'','',1,1,13.50,19.50,0.00,2),(981,'2019-07-23 15:09:31',5,'','',1,1,8.31,10.55,0.00,2),(982,'2019-07-23 15:12:13',5,'','',1,1,8.31,10.55,0.00,2),(982,'2019-07-23 15:12:13',9,'','',2,1,3.83,4.95,0.00,2),(983,'2019-07-23 15:13:20',5,'','',1,1,8.31,10.55,0.00,2),(983,'2019-07-23 15:13:20',8,'','',2,1,13.50,19.50,0.00,2),(984,'2019-07-23 15:15:07',7,'','',2,1,9.99,11.95,0.00,2),(984,'2019-07-23 15:15:07',9,'','',1,1,3.83,4.95,0.00,2),(985,'2019-07-23 15:16:22',9,'','',1,1,3.83,4.95,0.00,2),(986,'2019-07-23 15:25:18',9,'','',1,1,3.83,4.95,0.00,2),(987,'2019-07-23 21:53:11',49,'','',1,1,9.27,11.00,0.00,2),(988,'2019-07-24 09:35:40',8,'','',2,1,13.50,19.50,0.00,2),(988,'2019-07-24 09:35:40',9,'','',1,1,3.83,4.95,0.00,2),(989,'2019-07-24 10:16:09',14,'','',1,1,16.20,17.50,0.00,2),(990,'2019-07-24 12:55:15',1,'','',1,1,10.80,11.75,0.00,2),(990,'2019-07-24 12:55:15',5,'','',2,1,8.31,10.55,0.00,2),(991,'2019-07-24 16:17:01',16,'','',1,1,17.50,18.50,0.00,2),(992,'2019-07-24 16:18:30',16,'','',1,1,17.50,18.50,0.00,2),(992,'2019-07-24 16:18:30',44,'','',2,1,11.50,17.50,0.00,2),(993,'2019-07-25 16:47:20',49,'','',1,1,9.27,11.00,0.00,2),(994,'2019-07-30 10:12:18',1,'','',1,1,10.80,11.75,0.00,2),(995,'2019-07-30 10:14:25',5,'','',1,1,8.31,10.55,0.00,2),(995,'2019-07-30 10:14:25',6,'','',2,1,0.00,0.00,0.00,2),(996,'2019-07-30 11:53:43',5,'','',1,1,8.31,10.55,0.00,2),(996,'2019-07-30 11:53:43',6,'','',2,1,0.00,0.00,0.00,2),(997,'2019-07-30 13:52:51',5,'','',1,1,8.31,10.55,0.00,2),(997,'2019-07-30 13:52:51',8,'','',2,1,13.50,19.50,0.00,2),(998,'2019-07-30 13:53:51',5,'','',1,1,8.31,10.55,0.00,2),(999,'2019-07-30 13:55:07',5,'','',1,1,8.31,10.55,0.00,2),(1000,'2019-07-30 14:36:30',5,'','',2,1,8.31,10.55,0.00,2),(1000,'2019-07-30 14:36:30',16,'','',1,1,17.50,18.50,0.00,2),(1001,'2019-07-31 07:35:50',1,'','',1,1,10.80,11.75,0.00,2),(1001,'2019-07-31 07:35:50',5,'','',2,1,8.31,10.55,0.00,2),(1002,'2019-07-31 07:36:15',5,'','',2,1,8.31,10.55,0.00,2),(1002,'2019-07-31 07:36:15',6,'','',1,1,0.00,0.00,0.00,2),(1003,'2019-07-31 07:41:38',5,'','',1,1,8.31,10.55,0.00,2),(1004,'2019-07-31 08:11:38',5,'','',1,1,8.31,10.55,0.00,2),(1004,'2019-07-31 08:11:38',6,'','',2,1,0.00,0.00,0.00,2),(1005,'2019-07-31 08:12:03',5,'','',1,1,8.31,10.55,0.00,2),(1005,'2019-07-31 08:12:03',6,'','',2,1,0.00,0.00,0.00,2),(1006,'2019-07-31 11:08:58',5,'','',1,1,8.31,10.55,0.00,2),(1006,'2019-07-31 11:08:58',6,'','',2,1,0.00,0.00,0.00,2),(1007,'2019-07-31 11:10:04',6,'','',1,1,0.00,0.00,0.00,2),(1007,'2019-07-31 11:10:04',8,'','',2,1,13.50,19.50,0.00,2),(1008,'2019-07-31 11:12:14',5,'','',1,1,8.31,10.55,0.00,2),(1009,'2019-07-31 11:24:04',6,'','',2,1,0.00,0.00,0.00,2),(1009,'2019-07-31 11:24:04',47,'','',1,1,13.67,14.95,0.00,2),(1010,'2019-07-31 12:22:06',5,'','',1,1,8.31,10.55,0.00,2),(1010,'2019-07-31 12:22:06',9,'','',2,1,3.83,4.95,0.00,2),(1011,'2019-07-31 12:24:02',9,'','',1,1,3.83,4.95,0.00,2),(1012,'2019-07-31 12:29:48',8,'','',3,1,13.50,19.50,0.00,2),(1012,'2019-07-31 12:29:48',9,'','',2,1,3.83,4.95,0.00,2),(1013,'2019-07-31 12:32:57',8,'','',1,1,13.50,19.50,0.00,2),(1014,'2019-07-31 12:35:49',7,'','',1,1,9.99,11.95,0.00,2),(1014,'2019-07-31 12:35:49',9,'','',2,1,3.83,4.95,0.00,2),(1015,'2019-07-31 12:45:59',48,'','',1,1,14.50,15.95,0.00,2),(1016,'2019-07-31 12:50:11',7,'','',1,1,9.99,11.95,0.00,2),(1017,'2019-07-31 12:57:05',8,'','',1,1,13.50,19.50,0.00,2),(1018,'2019-07-31 13:05:14',8,'','',1,1,13.50,19.50,0.00,2),(1018,'2019-07-31 13:05:14',44,'','',2,1,11.50,17.50,0.00,2),(1018,'2019-07-31 13:05:14',45,'','',3,1,6.16,6.95,0.00,2),(1019,'2019-07-31 13:06:31',45,'','',1,1,6.16,6.95,0.00,2),(1020,'2019-07-31 13:25:21',6,'','',1,1,0.00,0.00,0.00,2),(1020,'2019-07-31 13:25:21',8,'','',2,1,13.50,19.50,0.00,2),(1020,'2019-07-31 13:25:21',9,'','',3,1,3.83,4.95,0.00,2),(1021,'2019-07-31 13:31:35',8,'','',1,-1,13.50,19.50,0.00,2),(1021,'2019-07-31 13:31:35',9,'','',2,-2,3.83,4.95,0.00,2),(1022,'2019-07-31 13:32:23',8,'','',1,1,13.50,19.50,0.00,2),(1022,'2019-07-31 13:32:23',9,'','',2,1,3.83,4.95,0.00,2),(1023,'2019-07-31 13:40:28',400,'Island Chill Water 330mil','',1,8,0.50,1.00,0.00,2),(1024,'2019-07-31 13:42:30',8,'','',2,1,13.50,19.50,0.00,2),(1024,'2019-07-31 13:42:30',9,'','',1,1,3.83,4.95,0.00,2),(1025,'2019-07-31 14:22:29',8,'','',2,2,13.50,19.50,0.00,2),(1025,'2019-07-31 14:22:29',400,'Island Chill Water 330mil','',3,1,0.50,1.00,0.00,2),(1026,'2019-07-31 14:23:51',9,'','',1,1,3.83,4.95,0.00,2),(1026,'2019-07-31 14:23:51',400,'Island Chill Water 330mil','',2,1,0.50,1.00,0.00,2),(1027,'2019-07-31 14:25:23',5,'','',1,1,8.31,10.55,0.00,2),(1028,'2019-07-31 14:32:00',9,'','',1,1,3.83,4.95,0.00,2),(1029,'2019-07-31 14:39:50',44,'','',1,1,11.50,17.50,0.00,2),(1030,'2019-07-31 14:44:00',8,'','',2,1,13.50,19.50,0.00,2),(1030,'2019-07-31 14:44:00',44,'','',1,1,11.50,17.50,0.00,2),(1031,'2019-07-31 14:51:14',44,'','',1,1,11.50,17.50,0.00,2),(1032,'2019-07-31 14:53:41',55,'','',1,1,5.00,13.95,0.00,2),(1033,'2019-07-31 15:04:05',44,'','',2,1,11.50,17.50,0.00,2),(1033,'2019-07-31 15:04:05',45,'','',1,1,6.16,6.95,0.00,2),(1034,'2019-07-31 15:05:31',44,'','',1,1,11.50,17.50,0.00,2),(1035,'2019-07-31 15:08:12',44,'','',1,1,11.50,17.50,0.00,2),(1036,'2019-07-31 15:15:59',44,'','',1,1,11.50,17.50,0.00,2),(1037,'2019-07-31 15:17:40',45,'','',1,1,6.16,6.95,0.00,2),(1038,'2019-07-31 15:31:26',44,'','',1,1,11.50,17.50,0.00,2),(1038,'2019-07-31 15:31:26',45,'','',2,1,6.16,6.95,0.00,2),(1039,'2019-07-31 15:36:16',45,'','',1,1,6.16,6.95,0.00,2),(1040,'2019-07-31 15:53:12',44,'','',1,1,11.50,17.50,0.00,2),(1040,'2019-07-31 15:53:12',45,'','',2,1,6.16,6.95,0.00,2),(1041,'2019-07-31 15:54:55',8,'','',2,1,13.50,19.50,0.00,2),(1041,'2019-07-31 15:54:55',9,'','',1,1,3.83,4.95,0.00,2),(1041,'2019-07-31 15:54:55',44,'','',3,1,11.50,17.50,0.00,2),(1042,'2019-07-31 16:11:23',44,'','',1,1,11.50,17.50,0.00,2),(1043,'2019-07-31 16:13:39',44,'','',1,1,11.50,17.50,0.00,2),(1044,'2019-07-31 16:16:40',44,'','',1,1,11.50,17.50,0.00,2),(1045,'2019-07-31 16:18:56',44,'','',2,1,11.50,17.50,0.00,2),(1045,'2019-07-31 16:18:56',400,'Island Chill Water 330mil','',1,2,0.50,1.00,0.00,2),(1046,'2019-07-31 16:19:27',44,'','',1,1,11.50,17.50,0.00,2),(1047,'2019-07-31 16:55:54',44,'','',1,1,11.50,17.50,0.00,2),(1048,'2019-07-31 16:56:54',45,'','',1,1,6.16,6.95,0.00,2),(1049,'2019-07-31 17:08:35',5,'','',1,1,8.31,10.55,0.00,2),(1050,'2019-07-31 18:27:51',44,'','',1,1,11.50,17.50,0.00,2),(1051,'2019-08-01 06:05:04',4,'','',1,1,9.27,10.95,0.00,2),(1052,'2019-08-01 06:10:17',44,'','',1,1,11.50,17.50,0.00,2),(1053,'2019-08-01 06:25:42',44,'','',1,1,11.50,17.50,0.00,2),(1054,'2019-08-01 06:28:06',45,'','',1,1,6.16,6.95,0.00,2),(1055,'2019-08-01 06:29:58',44,'','',1,1,11.50,17.50,0.00,2),(1055,'2019-08-01 06:29:58',45,'','',2,1,6.16,6.95,0.00,2),(1056,'2019-08-01 06:33:17',44,'','',1,1,11.50,17.50,0.00,2),(1057,'2019-08-01 06:34:25',45,'','',1,1,6.16,6.95,0.00,2),(1058,'2019-08-01 06:36:06',44,'','',1,1,11.50,17.50,0.00,2),(1059,'2019-08-01 06:36:51',8,'','',1,1,13.50,19.50,0.00,2),(1060,'2019-08-01 07:24:20',44,'','',1,1,11.50,17.50,0.00,2),(1061,'2019-08-01 07:25:57',44,'','',1,1,11.50,17.50,0.00,2),(1062,'2019-08-01 07:32:59',44,'','',1,1,11.50,17.50,0.00,2),(1062,'2019-08-01 07:32:59',45,'','',2,1,6.16,6.95,0.00,2),(1063,'2019-08-01 07:38:28',44,'','',1,1,11.50,17.50,0.00,2),(1064,'2019-08-01 07:40:03',44,'','',1,1,11.50,17.50,0.00,2),(1065,'2019-08-01 07:43:50',44,'','',1,1,11.50,17.50,0.00,2),(1066,'2019-08-01 09:40:59',5,'','',1,1,8.31,10.55,0.00,2),(1066,'2019-08-01 09:40:59',8,'','',2,1,13.50,19.50,0.00,2),(1067,'2019-08-01 09:42:41',5,'','',1,1,8.31,10.55,0.00,2),(1067,'2019-08-01 09:42:41',6,'','',2,1,0.00,0.00,0.00,2),(1068,'2019-08-01 09:46:44',5,'','',1,1,8.31,10.55,0.00,2),(1068,'2019-08-01 09:46:44',9,'','',2,1,3.83,4.95,0.00,2),(1069,'2019-08-01 09:49:01',55,'','',2,1,5.00,13.95,0.00,2),(1069,'2019-08-01 09:49:01',400,'Island Chill Water 330mil','',1,1,0.50,1.00,0.00,2),(1070,'2019-08-01 09:51:22',55,'','',1,2,5.00,13.95,0.00,2),(1071,'2019-08-01 10:14:46',44,'','',1,1,11.50,17.50,0.00,2),(1071,'2019-08-01 10:14:46',55,'','',2,1,5.00,13.95,0.00,2),(1072,'2019-08-01 10:40:02',14,'','',2,1,16.20,17.50,0.00,2),(1072,'2019-08-01 10:40:02',400,'Island Chill Water 330mil','',1,1,0.50,1.00,0.00,2),(1073,'2019-08-01 16:18:57',44,'','',1,1,11.50,17.50,0.00,2),(1074,'2019-08-01 16:19:23',5,'','',1,1,8.31,10.55,0.00,2),(1075,'2019-08-02 13:38:36',44,'','',1,1,11.50,17.50,0.00,2),(1075,'2019-08-02 13:38:36',45,'','',2,1,6.16,6.95,0.00,2),(1076,'2019-08-02 13:38:55',44,'','',1,1,11.50,17.50,0.00,2),(1077,'2019-08-04 07:30:41',44,'','',1,1,11.50,17.50,0.00,2),(1078,'2019-08-04 07:31:01',44,'','',1,1,11.50,17.50,0.00,2),(1079,'2019-08-04 07:47:55',8,'','',1,1,13.50,19.50,0.00,2),(1080,'2019-08-04 07:50:43',44,'','',1,1,11.50,17.50,0.00,2),(1081,'2019-08-04 07:52:04',45,'','',1,1,6.16,6.95,0.00,2),(1082,'2019-08-04 08:12:47',44,'','',2,1,11.50,17.50,0.00,2),(1082,'2019-08-04 08:12:47',45,'','',1,1,6.16,6.95,0.00,2),(1083,'2019-08-04 08:14:08',44,'','',2,1,11.50,17.50,0.00,2),(1083,'2019-08-04 08:14:08',45,'','',1,1,6.16,6.95,0.00,2),(1084,'2019-08-04 08:17:11',44,'','',1,1,11.50,17.50,0.00,2),(1085,'2019-08-04 08:46:29',8,'','',3,1,13.50,19.50,0.00,2),(1085,'2019-08-04 08:46:29',44,'','',1,1,11.50,17.50,0.00,2),(1085,'2019-08-04 08:46:29',45,'','',2,1,6.16,6.95,0.00,2),(1086,'2019-08-04 08:53:06',44,'','',1,1,11.50,17.50,0.00,2),(1087,'2019-08-04 11:13:38',55,'','',2,1,5.00,13.95,0.00,2),(1087,'2019-08-04 11:13:38',400,'Island Chill Water 330mil','',1,1,0.50,1.00,0.00,2),(1088,'2019-08-04 11:15:59',44,'','',1,1,11.50,17.50,0.00,2),(1088,'2019-08-04 11:15:59',45,'','',2,1,6.16,6.95,0.00,2),(1089,'2019-08-04 11:20:26',44,'','',2,1,11.50,17.50,0.00,2),(1089,'2019-08-04 11:20:26',49,'','',1,1,9.27,11.00,0.00,2),(1090,'2019-08-04 11:21:38',44,'','',1,1,11.50,17.50,0.00,2),(1091,'2019-08-04 11:22:51',44,'','',1,1,11.50,17.50,0.00,2),(1092,'2019-08-04 11:24:00',55,'','',1,1,5.00,13.95,0.00,2),(1093,'2019-08-05 07:10:18',44,'','',1,1,11.50,17.50,0.00,2),(1093,'2019-08-05 07:10:18',45,'','',2,1,6.16,6.95,0.00,2),(1094,'2019-08-05 07:10:31',44,'','',1,1,11.50,17.50,0.00,2),(1094,'2019-08-05 07:10:31',45,'','',2,1,6.16,6.95,0.00,2),(1095,'2019-08-05 07:13:41',44,'','',1,1,11.50,17.50,0.00,2),(1095,'2019-08-05 07:13:41',45,'','',2,1,6.16,6.95,0.00,2),(1096,'2019-08-05 07:17:16',44,'','',1,1,11.50,17.50,0.00,2),(1096,'2019-08-05 07:17:16',45,'','',2,1,6.16,6.95,0.00,2),(1097,'2019-08-05 07:24:38',44,'','',1,1,11.50,17.50,0.00,2),(1098,'2019-08-05 07:54:59',49,'','',1,1,9.27,11.00,0.00,2),(1099,'2019-08-05 07:57:37',7,'','',3,1,9.99,11.95,0.00,2),(1099,'2019-08-05 07:57:37',44,'','',1,1,11.50,17.50,0.00,2),(1099,'2019-08-05 07:57:37',45,'','',2,1,6.16,6.95,0.00,2),(1099,'2019-08-05 07:57:37',400,'Island Chill Water 330mil','',4,1,0.50,1.00,0.00,2),(1100,'2019-08-05 15:11:37',44,'','',1,1,11.50,17.50,0.00,2),(1100,'2019-08-05 15:11:37',45,'','',2,1,6.16,6.95,0.00,2),(1101,'2019-08-05 15:12:18',44,'','',1,1,11.50,17.50,0.00,2),(1101,'2019-08-05 15:12:18',400,'Island Chill Water 330mil','',2,1,0.50,1.00,0.00,2),(1102,'2019-08-05 15:25:40',44,'','',1,1,11.50,17.50,0.00,2),(1103,'2019-08-05 15:26:29',44,'','',1,1,11.50,17.50,0.00,2),(1104,'2019-08-05 16:17:28',44,'','',1,1,11.50,17.50,0.00,2),(1105,'2019-08-05 16:18:36',44,'','',1,1,11.50,17.50,0.00,2),(1106,'2019-08-06 05:31:29',3,'','',1,1,8.40,9.95,0.00,2),(1107,'2019-08-06 05:31:50',3,'','',1,1,8.40,9.95,0.00,2),(1108,'2019-08-06 05:49:21',3,'','',1,1,8.40,9.95,0.00,2),(1109,'2019-08-06 12:45:38',16,'','',1,1,0.00,24.95,0.00,2),(1110,'2019-08-06 12:47:39',9,'','',1,1,0.00,10.78,0.00,2),(1111,'2019-08-06 12:49:19',50,'','',1,1,0.00,31.50,0.00,2),(1112,'2019-08-06 17:19:06',16,'','',1,1,0.00,24.95,0.00,2),(1113,'2019-08-06 17:22:32',49,'','',1,1,0.00,28.00,0.00,2),(1114,'2019-08-22 10:16:23',111,'','',1,1,0.00,8.95,0.00,2),(1115,'2019-08-22 10:20:20',105,'','',1,1,0.00,12.95,0.00,2),(1116,'2019-08-22 10:26:08',105,'','',1,1,0.00,12.95,0.00,2),(1117,'2019-08-22 10:27:24',105,'','',1,1,0.00,12.95,0.00,2),(1118,'2019-08-22 10:38:43',105,'','',1,1,0.00,12.95,0.00,2),(1119,'2019-08-22 10:40:38',105,'','',1,1,0.00,12.95,0.00,2),(1120,'2019-08-22 10:44:04',105,'','',1,1,0.00,12.95,0.00,2),(1121,'2019-08-22 10:48:40',1,'','',1,1,0.00,8.95,0.00,2),(1122,'2019-08-22 11:02:33',1,'','',1,1,0.00,8.95,0.00,2),(1123,'2019-08-22 11:09:40',1,'','',1,1,0.00,8.95,0.00,2),(1124,'2019-08-22 11:13:33',2,'','',1,1,0.00,10.95,0.00,2),(1125,'2019-08-22 13:11:50',1,'','',1,1,0.00,8.95,0.00,2),(1126,'2019-08-22 14:44:48',1,'','',1,1,0.00,8.95,0.00,2),(1127,'2019-08-22 14:45:10',105,'','',1,1,0.00,12.95,0.00,2),(1128,'2019-08-22 17:01:01',5,'','',1,0.438,0.00,8.95,0.00,2),(1129,'2019-08-22 17:41:14',110,'','',1,1,0.00,19.95,0.00,2),(1130,'2019-08-22 17:42:41',96,'','',1,1,0.00,1.50,0.00,2),(1131,'2019-08-22 17:44:05',5,'','',1,1,0.00,8.95,0.00,2),(1132,'2019-08-22 17:56:42',45,'','',1,1,0.00,7.95,0.00,2),(1133,'2019-08-22 17:57:08',45,'','',1,1,0.00,7.95,0.00,2),(1134,'2019-08-22 17:58:13',45,'','',1,1,0.00,7.95,0.00,2),(1135,'2019-08-24 08:35:27',152,'','',1,3.41,0.00,0.50,0.00,2),(1136,'2019-08-24 08:51:12',1,'','',1,12,0.00,8.50,0.00,2),(1136,'2019-08-24 08:51:12',15,'','',2,8.755,0.00,22.95,0.00,2),(1137,'2019-08-24 08:53:00',148,'','',1,2.386,0.00,4.95,0.00,2),(1138,'2019-08-24 08:58:13',150,'','',1,6,0.00,2.50,0.00,2),(1139,'2019-08-24 09:05:20',14,'','',1,2.852,0.00,14.95,0.00,2),(1140,'2019-08-24 09:11:33',150,'','',1,4,0.00,2.50,0.00,2),(1141,'2019-08-24 09:13:28',132,'','',1,2,0.00,5.50,0.00,2),(1142,'2019-08-24 09:57:25',5,'','',2,2.244,0.00,8.95,0.00,2),(1142,'2019-08-24 09:57:25',14,'','',1,3.435,0.00,14.95,0.00,2),(1143,'2019-08-24 10:01:27',12,'','',2,1.762,0.00,17.95,0.00,2),(1143,'2019-08-24 10:01:27',13,'','',1,1.029,0.00,22.95,0.00,2),(1143,'2019-08-24 10:01:27',35,'','',3,1.372,0.00,9.95,0.00,2),(1144,'2019-08-24 10:03:48',12,'','',1,3.685,0.00,17.95,0.00,2),(1144,'2019-08-24 10:03:48',13,'','',2,1.179,0.00,22.95,0.00,2),(1145,'2019-08-24 10:08:32',13,'','',1,1.222,0.00,22.95,0.00,2),(1146,'2019-08-24 10:10:28',10,'','',1,2.74,0.00,20.95,0.00,2),(1147,'2019-08-24 10:13:12',130,'','',1,2,0.00,4.95,0.00,2),(1148,'2019-08-24 10:13:52',130,'','',1,2,0.00,4.95,0.00,2),(1149,'2019-08-24 10:18:10',13,'','',1,4.326,0.00,22.95,0.00,2),(1150,'2019-08-24 10:26:54',15,'','',1,6.25,0.00,22.50,0.00,2),(1150,'2019-08-24 10:26:54',123,'','',2,5,0.00,13.49,0.00,2),(1151,'2019-08-24 10:32:01',13,'','',1,2.164,0.00,22.95,0.00,2),(1152,'2019-08-24 10:36:41',150,'','',1,2,0.00,2.50,0.00,2),(1153,'2019-08-24 10:38:59',14,'','',1,2.24,0.00,14.95,0.00,2),(1154,'2019-08-24 10:41:53',150,'','',1,3,0.00,2.50,0.00,2),(1155,'2019-08-24 10:42:55',150,'','',1,3,0.00,2.50,0.00,2),(1156,'2019-08-24 11:13:50',14,'','',1,1.552,0.00,14.95,0.00,2),(1156,'2019-08-24 11:13:50',18,'','',2,1.838,0.00,19.95,0.00,2),(1156,'2019-08-24 11:13:50',35,'','',3,1.434,0.00,9.95,0.00,2),(1157,'2019-08-24 11:19:41',13,'','',1,2.252,0.00,22.95,0.00,2),(1158,'2019-08-24 11:24:25',150,'','',1,2,0.00,2.50,0.00,2),(1159,'2019-08-24 11:25:50',150,'','',1,4,0.00,2.50,0.00,2),(1160,'2019-08-24 11:38:31',150,'','',1,3,0.00,2.50,0.00,2),(1161,'2019-08-24 11:43:54',150,'','',1,1,0.00,2.50,0.00,2),(1162,'2019-08-24 11:48:47',23,'','',1,1.276,0.00,12.95,0.00,2),(1163,'2019-08-24 11:53:31',5,'','',1,1.284,0.00,8.95,0.00,2),(1163,'2019-08-24 11:53:31',14,'','',3,1.524,0.00,14.95,0.00,2),(1163,'2019-08-24 11:53:31',148,'','',2,2.85,0.00,4.95,0.00,2),(1164,'2019-08-24 12:08:18',14,'','',1,1.726,0.00,12.95,0.00,2),(1164,'2019-08-24 12:08:18',23,'','',2,0.422,0.00,10.95,0.00,2),(1165,'2019-08-24 12:27:53',15,'','',1,16.2,0.00,22.50,0.00,2),(1166,'2019-08-24 12:32:29',18,'','',1,2.238,0.00,19.95,0.00,2),(1167,'2019-08-24 12:37:53',35,'','',1,1.04,0.00,9.95,0.00,2),(1167,'2019-08-24 12:37:53',92,'','',2,1,0.00,0.20,0.00,2),(1168,'2019-08-24 12:40:13',35,'','',1,1.762,0.00,9.95,0.00,2),(1169,'2019-08-24 12:43:25',10,'','',1,12,0.00,20.50,0.00,2),(1169,'2019-08-24 12:43:25',14,'','',2,1.4,0.00,14.50,0.00,2),(1170,'2019-08-24 12:46:44',35,'','',1,0.926,0.00,9.95,0.00,2),(1171,'2019-08-24 12:48:53',35,'','',1,0.368,0.00,9.95,0.00,2),(1171,'2019-08-24 12:48:53',150,'','',2,2,0.00,2.50,0.00,2),(1172,'2019-08-24 12:51:10',10,'','',2,2.808,0.00,20.95,0.00,2),(1172,'2019-08-24 12:51:10',15,'','',1,2.498,0.00,22.95,0.00,2),(1173,'2019-08-24 12:53:50',15,'','',1,13.03,0.00,22.95,0.00,2),(1174,'2019-08-24 12:56:11',15,'','',1,2.022,0.00,22.95,0.00,2),(1175,'2019-08-24 13:00:22',14,'','',1,1.5,0.00,12.95,0.00,2),(1176,'2019-08-24 13:07:49',150,'','',1,2,0.00,2.50,0.00,2),(1177,'2019-08-26 07:48:27',1,'','',1,12,0.00,8.50,0.00,2),(1177,'2019-08-26 07:48:27',15,'','',2,8.755,0.00,22.95,0.00,2),(1178,'2019-08-26 08:04:34',5,'','',3,1.498,0.00,8.95,0.00,2),(1178,'2019-08-26 08:04:34',14,'','',5,2.57,0.00,14.95,0.00,2),(1178,'2019-08-26 08:04:34',15,'','',2,9.986,0.00,22.50,0.00,2),(1178,'2019-08-26 08:04:34',23,'','',4,5.536,0.00,12.95,0.00,2),(1178,'2019-08-26 08:04:34',37,'','',6,2,0.00,9.95,0.00,2),(1178,'2019-08-26 08:04:34',150,'','',1,9,0.00,2.50,0.00,2),(1179,'2019-08-26 08:06:26',1,'','',1,48,0.00,8.00,0.00,2),(1180,'2019-08-26 08:22:20',1,'','',2,1.63,0.00,8.50,0.00,2),(1180,'2019-08-26 08:22:20',3,'','',1,1.584,0.00,8.95,0.00,2),(1180,'2019-08-26 08:22:20',5,'','',5,12,0.00,8.95,0.00,2),(1180,'2019-08-26 08:22:20',10,'','',9,2.67,0.00,20.95,0.00,2),(1180,'2019-08-26 08:22:20',15,'','',10,11.85,0.00,22.50,0.00,2),(1180,'2019-08-26 08:22:20',21,'','',3,2,0.00,16.95,0.00,2),(1180,'2019-08-26 08:22:20',23,'','',6,2.342,0.00,12.95,0.00,2),(1180,'2019-08-26 08:22:20',37,'','',4,1,0.00,9.95,0.00,2),(1180,'2019-08-26 08:22:20',123,'','',8,1,0.00,13.49,0.00,2),(1180,'2019-08-26 08:22:20',150,'','',7,4,0.00,2.50,0.00,2),(1181,'2019-08-26 08:24:01',123,'','',1,10,0.00,13.49,0.00,2),(1182,'2019-08-26 08:25:09',15,'','',1,4.326,0.00,22.95,0.00,2),(1183,'2019-08-26 08:42:00',5,'','',5,1.142,0.00,8.95,0.00,2),(1183,'2019-08-26 08:42:00',14,'','',2,2.198,0.00,14.95,0.00,2),(1183,'2019-08-26 08:42:00',15,'','',1,6.72,0.00,22.95,0.00,2),(1183,'2019-08-26 08:42:00',150,'','',4,15,0.00,2.00,0.00,2),(1183,'2019-08-26 08:42:00',152,'','',3,13.7,0.00,0.50,0.00,2),(1184,'2019-08-26 08:50:47',150,'','',1,1,0.00,2.50,0.00,2),(1185,'2019-08-26 08:56:28',150,'','',1,1,0.00,2.50,0.00,2),(1186,'2019-08-26 09:33:07',1,'','',1,48,0.00,8.00,0.00,2),(1187,'2019-08-26 09:35:34',150,'','',1,2,0.00,2.50,0.00,2),(1188,'2019-08-26 09:37:06',148,'','',1,1.158,0.00,4.95,0.00,2),(1189,'2019-08-26 09:42:03',132,'','',1,2,0.00,5.50,0.00,2),(1190,'2019-08-26 09:44:02',160,'','',1,2.04,0.00,5.00,0.00,2),(1191,'2019-08-26 10:45:47',12,'','',1,3.888,0.00,17.95,0.00,2);
/*!40000 ALTER TABLE `ospos_sales_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_sales_items_taxes`
--

DROP TABLE IF EXISTS `ospos_sales_items_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_items_taxes` (
  `sale_id` int(10) NOT NULL,
  `item_id` int(10) NOT NULL,
  `line` int(3) NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL,
  `percent` decimal(15,2) NOT NULL,
  PRIMARY KEY (`sale_id`,`item_id`,`line`,`name`,`percent`),
  KEY `sale_id` (`sale_id`),
  KEY `item_id` (`item_id`),
  CONSTRAINT `ospos_sales_items_taxes_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales_items` (`sale_id`),
  CONSTRAINT `ospos_sales_items_taxes_ibfk_2` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_items_taxes`
--

LOCK TABLES `ospos_sales_items_taxes` WRITE;
/*!40000 ALTER TABLE `ospos_sales_items_taxes` DISABLE KEYS */;
INSERT INTO `ospos_sales_items_taxes` VALUES (1,1,1,'VAT',9.00),(2,1,1,'VAT',9.00),(3,1,1,'VAT',9.00),(4,4,1,'VAT',9.00),(5,11,1,'VAT',9.00),(6,11,1,'VAT',9.00),(11,1,7,'VAT',9.00),(11,15,4,'VAT',9.00),(11,19,3,'VAT',9.00),(11,22,5,'VAT',9.00),(12,7,3,'VAT',9.00),(12,8,4,'VAT',9.00),(12,14,6,'VAT',9.00),(12,37,1,'VAT',9.00),(13,12,1,'VAT',9.00),(14,20,1,'VAT',9.00),(15,12,1,'VAT',9.00),(16,14,1,'VAT',9.00),(16,19,2,'VAT',9.00),(18,12,2,'VAT',9.00),(18,14,4,'VAT',9.00),(18,15,6,'VAT',9.00),(18,17,1,'VAT',9.00),(18,19,5,'VAT',9.00),(18,37,3,'VAT',9.00),(19,14,1,'VAT',9.00),(20,16,1,'VAT',9.00),(20,37,2,'VAT',9.00),(21,14,1,'VAT',9.00),(21,37,2,'VAT',9.00),(22,37,1,'VAT',9.00),(23,37,1,'VAT',9.00),(24,12,1,'VAT',9.00),(24,46,3,'VAT',9.00),(24,47,2,'VAT',9.00),(25,7,3,'VAT',9.00),(25,12,2,'VAT',9.00),(25,16,4,'VAT',9.00),(26,52,1,'VAT',9.00),(26,53,2,'VAT',9.00),(27,16,1,'VAT',9.00),(28,37,1,'VAT',9.00),(29,12,1,'VAT',9.00),(31,14,1,'VAT',9.00),(32,19,1,'VAT',9.00),(33,19,1,'VAT',9.00),(34,19,1,'VAT',9.00),(35,14,1,'VAT',9.00),(35,16,2,'VAT',9.00),(37,14,1,'VAT',9.00),(38,14,1,'VAT',9.00),(39,15,1,'VAT',9.00),(41,22,1,'VAT',9.00),(42,12,1,'VAT',9.00),(43,12,1,'VAT',9.00),(45,15,1,'VAT',9.00),(46,37,1,'VAT',9.00),(47,16,1,'VAT',9.00),(48,37,1,'VAT',9.00),(49,14,1,'VAT',9.00),(50,16,2,'VAT',9.00),(50,37,1,'VAT',9.00),(51,7,1,'VAT',9.00),(51,37,2,'VAT',9.00),(52,14,1,'VAT',9.00),(53,1,1,'VAT',9.00),(54,7,1,'VAT',9.00),(55,16,1,'VAT',9.00),(56,5,1,'VAT',9.00),(56,7,2,'VAT',9.00),(57,12,2,'VAT',9.00),(57,17,1,'VAT',9.00),(58,12,1,'VAT',9.00),(58,37,2,'VAT',9.00),(59,15,2,'VAT',9.00),(59,53,1,'VAT',9.00),(60,17,2,'VAT',9.00),(61,37,1,'VAT',9.00),(62,12,1,'VAT',9.00),(62,16,4,'VAT',9.00),(62,17,3,'VAT',9.00),(62,44,2,'VAT',9.00),(63,15,2,'VAT',9.00),(64,14,2,'VAT',9.00),(64,19,1,'VAT',9.00),(65,12,1,'VAT',9.00),(66,12,1,'VAT',9.00),(67,7,2,'VAT',9.00),(67,16,3,'VAT',9.00),(67,37,1,'VAT',9.00),(68,19,1,'VAT',9.00),(69,1,1,'VAT',9.00),(70,12,1,'VAT',9.00),(70,17,2,'VAT',9.00),(71,12,1,'VAT',9.00),(72,12,1,'VAT',9.00),(73,12,1,'VAT',9.00),(74,12,1,'VAT',9.00),(75,10,1,'VAT',9.00),(76,12,1,'VAT',9.00),(77,16,2,'VAT',9.00),(77,37,1,'VAT',9.00),(78,1,1,'VAT',9.00),(79,7,3,'VAT',9.00),(79,15,1,'VAT',9.00),(79,53,2,'VAT',9.00),(80,7,2,'VAT',9.00),(80,14,1,'VAT',9.00),(81,12,1,'VAT',9.00),(82,14,1,'VAT',9.00),(82,16,2,'VAT',9.00),(83,16,1,'VAT',9.00),(83,53,2,'VAT',9.00),(84,16,2,'VAT',9.00),(84,19,1,'VAT',9.00),(85,14,1,'VAT',9.00),(87,7,2,'VAT',9.00),(87,19,1,'VAT',9.00),(88,37,1,'VAT',9.00),(89,16,2,'VAT',9.00),(89,22,1,'VAT',9.00),(90,15,1,'VAT',9.00),(91,1,1,'VAT',9.00),(91,4,2,'VAT',9.00),(91,5,3,'VAT',9.00),(92,12,1,'VAT',9.00),(93,12,1,'VAT',9.00),(94,15,1,'VAT',9.00),(95,14,2,'VAT',9.00),(95,19,1,'VAT',9.00),(96,37,1,'VAT',9.00),(97,19,1,'VAT',9.00),(98,17,1,'VAT',9.00),(100,37,1,'VAT',9.00),(101,15,1,'VAT',9.00),(101,19,2,'VAT',9.00),(102,14,1,'VAT',9.00),(103,14,1,'VAT',9.00),(104,12,1,'VAT',9.00),(105,1,2,'VAT',9.00),(105,15,1,'VAT',9.00),(106,14,2,'VAT',9.00),(106,15,1,'VAT',9.00),(106,47,3,'VAT',9.00),(107,37,1,'VAT',9.00),(108,1,1,'VAT',9.00),(109,19,1,'VAT',9.00),(109,48,2,'VAT',9.00),(110,12,1,'VAT',9.00),(111,12,1,'VAT',9.00),(112,15,2,'VAT',9.00),(112,19,3,'VAT',9.00),(113,19,1,'VAT',9.00),(114,12,1,'VAT',9.00),(115,14,1,'VAT',9.00),(116,7,1,'VAT',9.00),(117,7,2,'VAT',9.00),(117,53,1,'VAT',9.00),(118,12,1,'VAT',9.00),(119,16,1,'VAT',9.00),(122,37,1,'VAT',9.00),(123,12,1,'VAT',9.00),(123,37,2,'VAT',9.00),(124,37,1,'VAT',9.00),(125,14,1,'VAT',9.00),(126,38,1,'VAT',9.00),(127,15,1,'VAT',9.00),(128,17,1,'VAT',9.00),(130,53,1,'VAT',9.00),(131,16,1,'VAT',9.00),(132,7,1,'VAT',9.00),(133,12,1,'VAT',9.00),(134,48,1,'VAT',9.00),(135,15,1,'VAT',9.00),(136,15,1,'VAT',9.00),(137,14,1,'VAT',9.00),(138,14,2,'VAT',9.00),(138,19,1,'VAT',9.00),(139,1,1,'VAT',9.00),(140,12,1,'VAT',9.00),(141,1,1,'VAT',9.00),(144,20,1,'VAT',9.00),(145,53,1,'VAT',9.00),(146,7,2,'VAT',9.00),(146,16,1,'VAT',9.00),(147,37,1,'VAT',9.00),(148,19,1,'VAT',9.00),(149,22,1,'VAT',9.00),(150,20,1,'VAT',9.00),(151,38,2,'VAT',9.00),(152,12,1,'VAT',9.00),(153,37,1,'VAT',9.00),(154,37,1,'VAT',9.00),(155,12,1,'VAT',9.00),(156,37,1,'VAT',9.00),(157,17,1,'VAT',9.00),(158,37,1,'VAT',9.00),(159,14,1,'VAT',9.00),(160,12,1,'VAT',9.00),(161,12,1,'VAT',9.00),(162,15,1,'VAT',9.00),(162,37,2,'VAT',9.00),(163,53,1,'VAT',9.00),(164,12,1,'VAT',9.00),(164,37,2,'VAT',9.00),(165,17,2,'VAT',9.00),(165,19,1,'VAT',9.00),(166,16,1,'VAT',9.00),(167,14,1,'VAT',9.00),(168,12,1,'VAT',9.00),(169,5,2,'VAT',9.00),(170,12,1,'VAT',9.00),(170,16,2,'VAT',9.00),(171,5,1,'VAT',9.00),(171,15,2,'VAT',9.00),(173,14,1,'VAT',9.00),(174,15,1,'VAT',9.00),(176,12,1,'VAT',9.00),(176,37,2,'VAT',9.00),(177,12,1,'VAT',9.00),(178,37,1,'VAT',9.00),(179,19,3,'VAT',9.00),(179,51,1,'VAT',0.00),(180,14,1,'VAT',9.00),(181,19,1,'VAT',9.00),(182,15,1,'VAT',9.00),(183,15,3,'VAT',9.00),(183,16,1,'VAT',9.00),(183,38,4,'VAT',9.00),(183,53,2,'VAT',9.00),(184,15,1,'VAT',9.00),(185,4,4,'VAT',9.00),(185,8,3,'VAT',9.00),(185,12,2,'VAT',9.00),(185,15,1,'VAT',9.00),(186,14,3,'VAT',9.00),(186,15,2,'VAT',9.00),(186,19,1,'VAT',9.00),(187,15,1,'VAT',9.00),(187,37,2,'VAT',9.00),(188,53,1,'VAT',9.00),(189,37,1,'VAT',9.00),(190,19,1,'VAT',9.00),(191,16,1,'VAT',9.00),(192,12,1,'VAT',9.00),(193,49,1,'VAT',9.00),(194,14,1,'VAT',9.00),(195,19,1,'VAT',9.00),(196,12,1,'VAT',9.00),(196,37,2,'VAT',9.00),(197,37,1,'VAT',9.00),(198,19,1,'VAT',9.00),(199,12,1,'VAT',9.00),(199,37,2,'VAT',9.00),(200,37,1,'VAT',9.00),(202,14,1,'VAT',9.00),(203,37,1,'VAT',9.00),(203,47,2,'VAT',9.00),(204,12,2,'VAT',9.00),(204,48,1,'VAT',9.00),(205,5,2,'VAT',9.00),(205,14,1,'VAT',9.00),(206,14,1,'VAT',9.00),(208,16,1,'VAT',9.00),(209,15,1,'VAT',9.00),(209,38,2,'VAT',9.00),(210,1,1,'VAT',9.00),(212,16,1,'VAT',9.00),(213,16,1,'VAT',9.00),(215,17,1,'VAT',9.00),(216,5,1,'VAT',9.00),(217,14,1,'VAT',9.00),(218,15,3,'VAT',9.00),(218,38,1,'VAT',9.00),(221,4,1,'VAT',9.00),(222,37,1,'VAT',9.00),(223,16,1,'VAT',9.00),(224,37,1,'VAT',9.00),(225,19,2,'VAT',9.00),(225,20,1,'VAT',9.00),(226,12,1,'VAT',9.00),(227,7,3,'VAT',9.00),(227,15,2,'VAT',9.00),(227,16,1,'VAT',9.00),(227,37,4,'VAT',9.00),(228,7,3,'VAT',9.00),(228,14,1,'VAT',9.00),(228,46,2,'VAT',9.00),(229,37,2,'VAT',9.00),(230,14,1,'VAT',9.00),(232,14,1,'VAT',9.00),(233,48,1,'VAT',9.00),(234,53,1,'VAT',9.00),(235,17,1,'VAT',9.00),(236,37,1,'VAT',9.00),(237,53,1,'VAT',9.00),(239,16,1,'VAT',9.00),(241,15,3,'VAT',9.00),(242,12,1,'VAT',9.00),(243,15,1,'VAT',9.00),(244,53,1,'VAT',9.00),(245,17,1,'VAT',9.00),(247,17,2,'VAT',9.00),(247,37,3,'VAT',9.00),(248,14,2,'VAT',9.00),(248,48,1,'VAT',9.00),(249,53,1,'VAT',9.00),(249,54,3,'VAT',9.00),(250,37,3,'VAT',9.00),(251,14,1,'VAT',9.00),(251,54,3,'VAT',9.00),(252,1,1,'VAT',9.00),(252,54,3,'VAT',9.00),(253,14,1,'VAT',9.00),(253,54,3,'VAT',9.00),(254,16,1,'VAT',9.00),(254,54,3,'VAT',9.00),(255,16,1,'VAT',9.00),(255,54,3,'VAT',9.00),(256,14,1,'VAT',9.00),(256,54,3,'VAT',9.00),(257,1,1,'VAT',9.00),(257,54,3,'VAT',9.00),(258,5,1,'VAT',9.00),(259,17,1,'VAT',9.00),(259,37,4,'VAT',9.00),(259,54,3,'VAT',9.00),(260,12,1,'VAT',9.00),(260,54,3,'VAT',9.00),(261,19,3,'VAT',9.00),(261,37,2,'VAT',9.00),(261,53,1,'VAT',9.00),(261,54,5,'VAT',9.00),(262,12,1,'VAT',9.00),(262,54,3,'VAT',9.00),(263,15,1,'VAT',9.00),(264,54,2,'VAT',9.00),(266,15,1,'VAT',9.00),(266,54,3,'VAT',9.00),(267,12,1,'VAT',9.00),(267,37,4,'VAT',9.00),(267,48,5,'VAT',9.00),(267,54,3,'VAT',9.00),(268,12,1,'VAT',9.00),(268,16,4,'VAT',9.00),(268,54,3,'VAT',9.00),(269,37,1,'VAT',9.00),(270,37,1,'VAT',9.00),(271,12,1,'VAT',9.00),(272,15,1,'VAT',9.00),(272,54,3,'VAT',9.00),(273,12,1,'VAT',9.00),(273,37,4,'VAT',9.00),(273,54,3,'VAT',9.00),(274,19,1,'VAT',9.00),(274,54,3,'VAT',9.00),(275,14,1,'VAT',9.00),(276,15,2,'VAT',9.00),(276,37,1,'VAT',9.00),(276,54,4,'VAT',9.00),(277,16,1,'VAT',9.00),(278,14,1,'VAT',9.00),(279,16,1,'VAT',9.00),(280,15,1,'VAT',9.00),(280,54,3,'VAT',9.00),(281,12,1,'VAT',9.00),(282,14,1,'VAT',9.00),(283,16,1,'VAT',9.00),(285,37,1,'VAT',9.00),(285,54,3,'VAT',9.00),(287,19,1,'VAT',9.00),(287,54,3,'VAT',9.00),(288,14,1,'VAT',9.00),(288,54,3,'VAT',9.00),(289,12,1,'VAT',9.00),(289,37,2,'VAT',9.00),(290,12,1,'VAT',9.00),(291,12,1,'VAT',9.00),(291,37,2,'VAT',9.00),(291,54,4,'VAT',9.00),(292,16,1,'VAT',9.00),(292,54,3,'VAT',9.00),(293,16,1,'VAT',9.00),(294,54,3,'VAT',9.00),(295,37,1,'VAT',9.00),(295,54,3,'VAT',9.00),(296,16,1,'VAT',9.00),(296,54,3,'VAT',9.00),(297,5,1,'VAT',9.00),(297,54,3,'VAT',9.00),(298,14,1,'VAT',9.00),(298,54,3,'VAT',9.00),(299,12,1,'VAT',9.00),(299,54,3,'VAT',9.00),(300,16,1,'VAT',9.00),(300,54,3,'VAT',9.00),(301,8,4,'VAT',9.00),(301,54,6,'VAT',9.00),(302,16,1,'VAT',9.00),(302,54,3,'VAT',9.00),(303,12,1,'VAT',9.00),(303,37,3,'VAT',9.00),(304,37,2,'VAT',9.00),(305,14,1,'VAT',9.00),(305,19,2,'VAT',9.00),(305,38,5,'VAT',9.00),(305,54,7,'VAT',9.00),(306,4,2,'VAT',9.00),(306,5,3,'VAT',9.00),(306,14,1,'VAT',9.00),(306,54,4,'VAT',9.00),(307,3,2,'VAT',9.00),(307,12,1,'VAT',9.00),(307,19,5,'VAT',9.00),(307,54,4,'VAT',9.00),(308,19,1,'VAT',9.00),(308,38,3,'VAT',9.00),(308,54,5,'VAT',9.00),(310,38,4,'VAT',9.00),(311,16,1,'VAT',9.00),(311,54,3,'VAT',9.00),(312,47,2,'VAT',9.00),(312,54,4,'VAT',9.00),(313,54,3,'VAT',9.00),(314,54,3,'VAT',9.00),(315,15,1,'VAT',9.00),(315,54,3,'VAT',9.00),(316,52,1,'VAT',9.00),(316,54,3,'VAT',9.00),(317,16,1,'VAT',9.00),(317,54,4,'VAT',9.00),(318,14,1,'VAT',9.00),(318,54,3,'VAT',9.00),(319,12,1,'VAT',9.00),(319,54,3,'VAT',9.00),(320,15,1,'VAT',9.00),(320,54,3,'VAT',9.00),(321,54,3,'VAT',9.00),(322,46,2,'VAT',9.00),(322,54,4,'VAT',9.00),(323,54,3,'VAT',9.00),(324,37,1,'VAT',9.00),(324,38,3,'VAT',9.00),(324,54,5,'VAT',9.00),(325,12,1,'VAT',9.00),(326,14,1,'VAT',9.00),(326,54,3,'VAT',9.00),(327,16,1,'VAT',9.00),(328,12,1,'VAT',9.00),(328,37,3,'VAT',9.00),(328,54,5,'VAT',9.00),(329,15,2,'VAT',9.00),(329,16,1,'VAT',9.00),(329,54,4,'VAT',9.00),(330,37,1,'VAT',9.00),(331,7,1,'VAT',9.00),(331,37,3,'VAT',9.00),(331,44,2,'VAT',9.00),(331,54,5,'VAT',9.00),(332,54,3,'VAT',9.00),(333,12,1,'VAT',9.00),(333,54,3,'VAT',9.00),(334,54,3,'VAT',9.00),(335,12,2,'VAT',9.00),(335,19,1,'VAT',9.00),(335,54,5,'VAT',9.00),(336,15,2,'VAT',9.00),(336,16,1,'VAT',9.00),(336,54,6,'VAT',9.00),(336,55,4,'VAT',9.00),(337,14,1,'VAT',9.00),(337,54,3,'VAT',9.00),(338,5,2,'VAT',9.00),(338,7,3,'VAT',9.00),(338,12,1,'VAT',9.00),(338,54,5,'VAT',9.00),(339,14,2,'VAT',9.00),(339,37,1,'VAT',9.00),(339,54,4,'VAT',9.00),(340,12,1,'VAT',9.00),(340,37,2,'VAT',9.00),(340,54,4,'VAT',9.00),(341,12,1,'VAT',9.00),(341,54,3,'VAT',9.00),(342,15,1,'VAT',9.00),(342,54,3,'VAT',9.00),(343,12,3,'VAT',9.00),(343,16,1,'VAT',9.00),(343,37,2,'VAT',9.00),(343,54,5,'VAT',9.00),(344,5,1,'VAT',9.00),(344,19,2,'VAT',9.00),(344,54,5,'VAT',9.00),(346,14,1,'VAT',9.00),(346,54,3,'VAT',9.00),(349,12,1,'VAT',9.00),(350,54,2,'VAT',9.00),(351,7,1,'VAT',9.00),(351,54,3,'VAT',9.00),(352,37,2,'VAT',9.00),(353,4,2,'VAT',9.00),(353,20,1,'VAT',9.00),(353,54,3,'VAT',9.00),(354,5,1,'VAT',9.00),(354,54,4,'VAT',9.00),(355,14,1,'VAT',9.00),(355,37,2,'VAT',9.00),(355,54,4,'VAT',9.00),(356,52,1,'VAT',9.00),(356,54,3,'VAT',9.00),(357,37,1,'VAT',9.00),(357,54,3,'VAT',9.00),(358,12,1,'VAT',9.00),(358,54,3,'VAT',9.00),(360,12,1,'VAT',9.00),(360,54,3,'VAT',9.00),(361,1,1,'VAT',9.00),(361,5,2,'VAT',9.00),(361,22,3,'VAT',9.00),(361,37,4,'VAT',9.00),(362,12,1,'VAT',9.00),(363,14,1,'VAT',9.00),(363,54,3,'VAT',9.00),(365,16,1,'VAT',9.00),(365,54,3,'VAT',9.00),(366,16,1,'VAT',9.00),(367,15,1,'VAT',9.00),(367,54,3,'VAT',9.00),(368,14,1,'VAT',9.00),(368,54,3,'VAT',9.00),(369,38,2,'VAT',9.00),(370,38,2,'VAT',9.00),(371,38,2,'VAT',9.00),(372,16,1,'VAT',9.00),(372,54,3,'VAT',9.00),(373,20,1,'VAT',9.00),(373,37,2,'VAT',9.00),(373,54,4,'VAT',9.00),(374,37,2,'VAT',9.00),(374,54,4,'VAT',9.00),(375,37,2,'VAT',9.00),(375,54,4,'VAT',9.00),(376,17,1,'VAT',9.00),(377,37,2,'VAT',9.00),(378,54,3,'VAT',9.00),(379,12,1,'VAT',9.00),(379,37,3,'VAT',9.00),(379,54,5,'VAT',9.00),(380,19,1,'VAT',9.00),(380,54,3,'VAT',9.00),(381,12,1,'VAT',9.00),(381,15,2,'VAT',9.00),(381,54,4,'VAT',9.00),(382,19,1,'VAT',9.00),(382,54,3,'VAT',9.00),(383,1,2,'VAT',9.00),(383,20,1,'VAT',9.00),(383,54,4,'VAT',9.00),(384,14,1,'VAT',9.00),(384,54,3,'VAT',9.00),(385,16,1,'VAT',9.00),(385,54,3,'VAT',9.00),(386,38,2,'VAT',9.00),(387,54,3,'VAT',9.00),(388,37,1,'VAT',9.00),(388,54,3,'VAT',9.00),(389,15,1,'VAT',9.00),(389,54,3,'VAT',9.00),(390,15,1,'VAT',9.00),(390,38,3,'VAT',9.00),(390,54,5,'VAT',9.00),(391,14,1,'VAT',9.00),(391,38,3,'VAT',9.00),(391,54,5,'VAT',9.00),(392,54,4,'VAT',9.00),(392,57,2,'VAT',9.00),(393,16,2,'VAT',9.00),(393,54,4,'VAT',9.00),(394,16,2,'VAT',9.00),(395,15,1,'VAT',9.00),(395,54,3,'VAT',9.00),(396,16,1,'VAT',9.00),(396,54,3,'VAT',9.00),(397,54,4,'VAT',9.00),(398,12,1,'VAT',9.00),(398,37,3,'VAT',9.00),(398,54,5,'VAT',9.00),(399,19,2,'VAT',9.00),(400,49,4,'VAT',9.00),(400,54,6,'VAT',9.00),(400,55,2,'VAT',9.00),(401,14,4,'VAT',9.00),(401,37,2,'VAT',9.00),(401,54,8,'VAT',9.00),(402,16,2,'VAT',9.00),(402,54,4,'VAT',9.00),(403,13,6,'VAT',9.00),(403,38,3,'VAT',9.00),(403,54,5,'VAT',9.00),(404,14,1,'VAT',9.00),(404,54,3,'VAT',9.00),(405,14,1,'VAT',9.00),(405,54,3,'VAT',9.00),(406,54,3,'VAT',9.00),(407,14,1,'VAT',9.00),(407,54,3,'VAT',9.00),(408,12,1,'VAT',9.00),(409,37,1,'VAT',9.00),(410,7,4,'VAT',9.00),(410,54,3,'VAT',9.00),(411,14,1,'VAT',9.00),(411,54,3,'VAT',9.00),(412,9,1,'VAT',9.00),(413,54,3,'VAT',9.00),(414,54,4,'VAT',9.00),(415,15,1,'VAT',9.00),(415,54,3,'VAT',9.00),(417,54,3,'VAT',9.00),(418,14,1,'VAT',9.00),(418,54,3,'VAT',9.00),(419,12,1,'VAT',9.00),(419,54,3,'VAT',9.00),(420,15,1,'VAT',9.00),(420,54,3,'VAT',9.00),(421,20,1,'VAT',9.00),(421,54,3,'VAT',9.00),(422,16,1,'VAT',9.00),(422,54,3,'VAT',9.00),(423,12,1,'VAT',9.00),(423,16,3,'VAT',9.00),(423,20,2,'VAT',9.00),(423,54,5,'VAT',9.00),(424,37,2,'VAT',9.00),(425,15,1,'VAT',9.00),(425,37,2,'VAT',9.00),(425,54,4,'VAT',9.00),(426,12,1,'VAT',9.00),(426,37,3,'VAT',9.00),(426,54,5,'VAT',9.00),(427,12,1,'VAT',9.00),(427,54,5,'VAT',9.00),(428,16,2,'VAT',9.00),(428,19,1,'VAT',9.00),(428,54,4,'VAT',9.00),(429,15,1,'VAT',9.00),(429,54,3,'VAT',9.00),(430,54,6,'VAT',9.00),(430,55,3,'VAT',9.00),(431,54,4,'VAT',9.00),(432,14,3,'VAT',9.00),(432,37,2,'VAT',9.00),(432,54,5,'VAT',9.00),(433,20,1,'VAT',9.00),(433,54,3,'VAT',9.00),(434,37,2,'VAT',9.00),(435,14,1,'VAT',9.00),(435,54,3,'VAT',9.00),(436,7,2,'VAT',9.00),(436,14,3,'VAT',9.00),(436,54,5,'VAT',9.00),(437,16,1,'VAT',9.00),(437,54,3,'VAT',9.00),(438,20,1,'VAT',9.00),(438,54,3,'VAT',9.00),(439,16,1,'VAT',9.00),(439,54,3,'VAT',9.00),(440,12,1,'VAT',9.00),(440,54,3,'VAT',9.00),(441,20,1,'VAT',9.00),(441,54,3,'VAT',9.00),(442,14,1,'VAT',9.00),(442,54,3,'VAT',9.00),(443,20,1,'VAT',9.00),(444,37,1,'VAT',9.00),(444,54,3,'VAT',9.00),(445,12,1,'VAT',9.00),(445,54,3,'VAT',9.00),(446,12,1,'VAT',9.00),(446,54,3,'VAT',9.00),(447,37,1,'VAT',9.00),(447,54,3,'VAT',9.00),(448,14,1,'VAT',9.00),(448,54,3,'VAT',9.00),(449,37,1,'VAT',9.00),(449,54,3,'VAT',9.00),(450,14,1,'VAT',9.00),(450,20,2,'VAT',9.00),(450,54,4,'VAT',9.00),(451,12,1,'VAT',9.00),(452,14,7,'VAT',9.00),(452,16,5,'VAT',9.00),(452,20,3,'VAT',9.00),(452,54,9,'VAT',9.00),(453,7,1,'VAT',9.00),(453,54,3,'VAT',9.00),(454,54,4,'VAT',9.00),(455,12,1,'VAT',9.00),(455,54,3,'VAT',9.00),(457,14,2,'VAT',9.00),(457,54,4,'VAT',9.00),(458,16,2,'VAT',9.00),(458,54,4,'VAT',9.00),(459,16,2,'VAT',9.00),(459,54,4,'VAT',9.00),(460,38,2,'VAT',9.00),(460,54,5,'VAT',9.00),(461,12,1,'VAT',9.00),(461,54,3,'VAT',9.00),(462,16,2,'VAT',9.00),(462,54,4,'VAT',9.00),(463,20,1,'VAT',9.00),(463,54,3,'VAT',9.00),(464,15,2,'VAT',9.00),(464,16,4,'VAT',9.00),(464,20,5,'VAT',9.00),(464,54,7,'VAT',9.00),(465,54,3,'VAT',9.00),(466,16,2,'VAT',9.00),(467,12,1,'VAT',9.00),(467,15,3,'VAT',9.00),(467,54,5,'VAT',9.00),(468,54,4,'VAT',9.00),(469,20,1,'VAT',9.00),(469,37,5,'VAT',9.00),(469,54,7,'VAT',9.00),(470,12,1,'VAT',9.00),(470,54,3,'VAT',9.00),(471,14,2,'VAT',9.00),(471,37,4,'VAT',9.00),(471,54,6,'VAT',9.00),(472,12,1,'VAT',9.00),(472,37,3,'VAT',9.00),(472,48,7,'VAT',9.00),(472,54,5,'VAT',9.00),(473,14,2,'VAT',9.00),(473,16,6,'VAT',9.00),(473,37,4,'VAT',9.00),(473,54,8,'VAT',9.00),(474,14,2,'VAT',9.00),(474,54,4,'VAT',9.00),(476,5,1,'VAT',9.00),(476,16,5,'VAT',9.00),(476,54,7,'VAT',9.00),(477,54,4,'VAT',9.00),(478,7,1,'VAT',9.00),(478,54,3,'VAT',9.00),(479,4,5,'VAT',9.00),(479,16,2,'VAT',9.00),(479,37,4,'VAT',9.00),(479,54,6,'VAT',9.00),(480,7,2,'VAT',9.00),(480,20,1,'VAT',9.00),(480,54,6,'VAT',9.00),(480,56,4,'VAT',9.00),(481,12,1,'VAT',9.00),(481,54,3,'VAT',9.00),(482,20,1,'VAT',9.00),(482,54,3,'VAT',9.00),(483,14,2,'VAT',9.00),(483,15,1,'VAT',9.00),(483,54,4,'VAT',9.00),(484,14,1,'VAT',9.00),(484,15,2,'VAT',9.00),(485,15,1,'VAT',9.00),(486,20,1,'VAT',9.00),(486,54,3,'VAT',9.00),(487,15,2,'VAT',9.00),(487,54,4,'VAT',9.00),(488,7,7,'VAT',9.00),(488,15,2,'VAT',9.00),(488,37,4,'VAT',9.00),(488,54,6,'VAT',9.00),(489,54,4,'VAT',9.00),(490,16,2,'VAT',9.00),(490,37,4,'VAT',9.00),(491,14,2,'VAT',9.00),(491,54,4,'VAT',9.00),(492,7,3,'VAT',9.00),(492,16,2,'VAT',9.00),(492,37,4,'VAT',9.00),(492,54,6,'VAT',9.00),(493,16,2,'VAT',9.00),(493,37,4,'VAT',9.00),(493,54,6,'VAT',9.00),(494,54,3,'VAT',9.00),(495,20,1,'VAT',9.00),(495,54,3,'VAT',9.00),(496,54,4,'VAT',9.00),(496,56,2,'VAT',9.00),(497,20,1,'VAT',9.00),(497,54,3,'VAT',9.00),(498,5,2,'VAT',9.00),(498,7,1,'VAT',9.00),(498,14,4,'VAT',9.00),(498,54,6,'VAT',9.00),(499,14,2,'VAT',9.00),(499,20,3,'VAT',9.00),(499,54,5,'VAT',9.00),(500,55,3,'VAT',9.00),(501,16,2,'VAT',9.00),(502,7,1,'VAT',9.00),(503,16,2,'VAT',9.00),(504,37,2,'VAT',9.00),(505,15,3,'VAT',9.00),(505,20,1,'VAT',9.00),(505,54,5,'VAT',9.00),(506,12,1,'VAT',9.00),(506,54,3,'VAT',9.00),(507,54,4,'VAT',9.00),(508,14,2,'VAT',9.00),(508,54,4,'VAT',9.00),(509,38,2,'VAT',9.00),(510,37,1,'VAT',9.00),(510,54,3,'VAT',9.00),(511,54,4,'VAT',9.00),(512,16,2,'VAT',9.00),(512,54,4,'VAT',9.00),(513,12,1,'VAT',9.00),(513,54,3,'VAT',9.00),(514,20,1,'VAT',9.00),(515,54,4,'VAT',9.00),(515,55,2,'VAT',9.00),(516,17,2,'VAT',9.00),(517,49,2,'VAT',9.00),(517,54,4,'VAT',9.00),(518,12,1,'VAT',9.00),(518,37,3,'VAT',9.00),(518,54,5,'VAT',9.00),(520,14,2,'VAT',9.00),(520,54,4,'VAT',9.00),(521,37,2,'VAT',9.00),(521,54,4,'VAT',9.00),(522,14,2,'VAT',9.00),(522,54,4,'VAT',9.00),(523,15,2,'VAT',9.00),(523,54,4,'VAT',9.00),(524,37,4,'VAT',9.00),(524,54,6,'VAT',9.00),(525,7,3,'VAT',9.00),(525,14,2,'VAT',9.00),(525,54,5,'VAT',9.00),(526,15,2,'VAT',9.00),(526,54,4,'VAT',9.00),(527,14,2,'VAT',9.00),(527,54,4,'VAT',9.00),(528,54,4,'VAT',9.00),(529,16,2,'VAT',9.00),(529,54,4,'VAT',9.00),(530,20,1,'VAT',9.00),(530,54,5,'VAT',9.00),(530,55,3,'VAT',9.00),(531,14,2,'VAT',9.00),(531,54,4,'VAT',9.00),(532,20,1,'VAT',9.00),(532,54,3,'VAT',9.00),(533,20,1,'VAT',9.00),(533,54,3,'VAT',9.00),(534,20,1,'VAT',9.00),(534,54,3,'VAT',9.00),(535,14,4,'VAT',9.00),(535,37,2,'VAT',9.00),(535,54,6,'VAT',9.00),(536,14,2,'VAT',9.00),(537,54,3,'VAT',9.00),(538,12,1,'VAT',9.00),(538,54,3,'VAT',9.00),(539,14,1,'VAT',9.00),(539,20,4,'VAT',9.00),(539,38,3,'VAT',9.00),(539,54,6,'VAT',9.00),(540,14,1,'VAT',9.00),(540,54,3,'VAT',9.00),(541,1,1,'VAT',9.00),(541,54,3,'VAT',9.00),(542,14,2,'VAT',9.00),(542,54,4,'VAT',9.00),(543,14,2,'VAT',9.00),(544,16,2,'VAT',9.00),(544,54,4,'VAT',9.00),(545,14,2,'VAT',9.00),(545,54,4,'VAT',9.00),(546,20,1,'VAT',9.00),(546,54,3,'VAT',9.00),(547,14,1,'VAT',9.00),(547,15,2,'VAT',9.00),(548,20,1,'VAT',9.00),(548,38,5,'VAT',9.00),(548,54,7,'VAT',9.00),(548,55,3,'VAT',9.00),(549,37,2,'VAT',9.00),(549,54,4,'VAT',9.00),(550,15,1,'VAT',9.00),(550,54,3,'VAT',9.00),(551,14,1,'VAT',9.00),(552,54,4,'VAT',9.00),(552,55,2,'VAT',9.00),(553,7,1,'VAT',9.00),(553,16,2,'VAT',9.00),(553,54,4,'VAT',9.00),(554,5,2,'VAT',9.00),(554,14,1,'VAT',9.00),(554,54,6,'VAT',9.00),(554,57,4,'VAT',9.00),(555,12,1,'VAT',9.00),(555,54,3,'VAT',9.00),(556,16,2,'VAT',9.00),(557,14,1,'VAT',9.00),(557,54,3,'VAT',9.00),(558,37,1,'VAT',9.00),(558,54,3,'VAT',9.00),(559,16,1,'VAT',9.00),(559,38,3,'VAT',9.00),(559,54,5,'VAT',9.00),(560,16,1,'VAT',9.00),(560,37,2,'VAT',9.00),(560,54,4,'VAT',9.00),(561,16,1,'VAT',9.00),(562,1,1,'VAT',9.00),(562,37,3,'VAT',9.00),(563,12,1,'VAT',9.00),(564,14,1,'VAT',9.00),(564,54,3,'VAT',9.00),(565,37,1,'VAT',9.00),(565,54,3,'VAT',9.00),(566,14,1,'VAT',9.00),(566,54,3,'VAT',9.00),(567,15,2,'VAT',9.00),(567,54,4,'VAT',9.00),(568,14,2,'VAT',9.00),(568,54,4,'VAT',9.00),(569,37,1,'VAT',9.00),(569,54,3,'VAT',9.00),(570,54,3,'VAT',9.00),(571,37,4,'VAT',9.00),(571,54,6,'VAT',9.00),(572,52,1,'VAT',9.00),(573,57,2,'VAT',9.00),(574,37,2,'VAT',9.00),(574,54,4,'VAT',9.00),(575,16,2,'VAT',9.00),(576,16,4,'VAT',9.00),(576,54,6,'VAT',9.00),(577,16,2,'VAT',9.00),(577,54,4,'VAT',9.00),(578,54,4,'VAT',9.00),(578,55,2,'VAT',9.00),(579,12,1,'VAT',9.00),(580,12,1,'VAT',9.00),(580,37,3,'VAT',9.00),(581,14,2,'VAT',9.00),(581,20,3,'VAT',9.00),(581,54,5,'VAT',9.00),(582,16,2,'VAT',9.00),(582,54,4,'VAT',9.00),(583,54,3,'VAT',9.00),(584,13,1,'VAT',9.00),(584,54,3,'VAT',9.00),(585,52,1,'VAT',9.00),(586,12,1,'VAT',9.00),(586,54,3,'VAT',9.00),(587,15,4,'VAT',9.00),(587,20,5,'VAT',9.00),(587,37,2,'VAT',9.00),(587,54,7,'VAT',9.00),(588,14,1,'VAT',9.00),(588,54,3,'VAT',9.00),(589,15,1,'VAT',9.00),(589,54,3,'VAT',9.00),(590,16,1,'VAT',9.00),(590,54,3,'VAT',9.00),(591,37,2,'VAT',9.00),(593,16,1,'VAT',9.00),(593,54,3,'VAT',9.00),(594,54,3,'VAT',9.00),(595,17,1,'VAT',9.00),(595,54,3,'VAT',9.00),(596,12,1,'VAT',9.00),(596,37,3,'VAT',9.00),(596,54,5,'VAT',9.00),(597,14,1,'VAT',9.00),(597,54,3,'VAT',9.00),(598,14,1,'VAT',9.00),(598,16,2,'VAT',9.00),(598,54,4,'VAT',9.00),(599,16,2,'VAT',9.00),(599,54,4,'VAT',9.00),(600,37,2,'VAT',9.00),(600,54,4,'VAT',9.00),(601,16,2,'VAT',9.00),(602,14,2,'VAT',9.00),(602,54,4,'VAT',9.00),(603,12,1,'VAT',9.00),(603,54,3,'VAT',9.00),(604,20,1,'VAT',9.00),(604,54,3,'VAT',9.00),(605,15,2,'VAT',9.00),(605,54,4,'VAT',9.00),(606,14,2,'VAT',9.00),(606,54,4,'VAT',9.00),(607,54,4,'VAT',9.00),(608,14,2,'VAT',9.00),(608,20,3,'VAT',9.00),(608,54,5,'VAT',9.00),(609,54,3,'VAT',9.00),(610,1,1,'VAT',9.00),(610,54,3,'VAT',9.00),(611,37,2,'VAT',9.00),(611,54,4,'VAT',9.00),(612,14,2,'VAT',9.00),(612,54,4,'VAT',9.00),(613,14,4,'VAT',9.00),(613,37,2,'VAT',9.00),(613,54,6,'VAT',9.00),(614,7,1,'VAT',9.00),(614,15,3,'VAT',9.00),(614,48,5,'VAT',9.00),(614,54,7,'VAT',9.00),(615,15,2,'VAT',9.00),(615,16,4,'VAT',9.00),(615,54,6,'VAT',9.00),(616,7,1,'VAT',9.00),(616,54,5,'VAT',9.00),(617,14,4,'VAT',9.00),(617,16,2,'VAT',9.00),(617,54,6,'VAT',9.00),(618,20,3,'VAT',9.00),(618,37,2,'VAT',9.00),(618,54,5,'VAT',9.00),(619,37,2,'VAT',9.00),(620,20,1,'VAT',9.00),(620,37,3,'VAT',9.00),(620,54,5,'VAT',9.00),(621,16,2,'VAT',9.00),(622,14,2,'VAT',9.00),(622,54,4,'VAT',9.00),(623,49,2,'VAT',9.00),(624,58,6,'VAT',9.00),(625,12,1,'VAT',9.00),(625,54,3,'VAT',9.00),(626,14,2,'VAT',9.00),(626,54,4,'VAT',9.00),(627,12,3,'VAT',9.00),(627,16,2,'VAT',9.00),(628,17,2,'VAT',9.00),(629,75,2,'VAT',9.00),(630,75,2,'VAT',9.00),(631,66,2,'VAT',9.00),(632,67,2,'VAT',9.00),(633,67,2,'VAT',9.00),(634,64,2,'VAT',9.00),(635,54,3,'VAT',9.00),(636,54,4,'VAT',9.00),(637,12,1,'VAT',9.00),(637,54,3,'VAT',9.00),(638,14,2,'VAT',9.00),(638,54,4,'VAT',9.00),(639,37,2,'VAT',9.00),(639,54,4,'VAT',9.00),(640,12,3,'VAT',9.00),(640,37,2,'VAT',9.00),(640,54,5,'VAT',9.00),(641,76,2,'VAT',9.00),(642,37,2,'VAT',9.00),(643,7,1,'VAT',9.00),(643,54,3,'VAT',9.00),(644,12,1,'VAT',9.00),(644,54,3,'VAT',9.00),(645,54,4,'VAT',9.00),(646,12,1,'VAT',9.00),(646,54,3,'VAT',9.00),(647,12,1,'VAT',9.00),(647,54,3,'VAT',9.00),(648,54,4,'VAT',9.00),(649,37,2,'VAT',9.00),(650,20,1,'VAT',9.00),(650,54,3,'VAT',9.00),(652,17,2,'VAT',9.00),(652,54,4,'VAT',9.00),(653,20,1,'VAT',9.00),(653,54,5,'VAT',9.00),(653,57,3,'VAT',9.00),(654,20,1,'VAT',9.00),(654,54,3,'VAT',9.00),(656,14,2,'VAT',9.00),(657,12,1,'VAT',9.00),(657,54,3,'VAT',9.00),(658,5,1,'VAT',9.00),(658,54,3,'VAT',9.00),(659,16,2,'VAT',9.00),(659,54,4,'VAT',9.00),(660,14,4,'VAT',9.00),(660,46,2,'VAT',9.00),(660,54,6,'VAT',9.00),(661,20,1,'VAT',9.00),(661,54,3,'VAT',9.00),(662,14,4,'VAT',9.00),(662,15,6,'VAT',9.00),(662,16,2,'VAT',9.00),(662,54,8,'VAT',9.00),(663,14,2,'VAT',9.00),(663,54,4,'VAT',9.00),(664,48,2,'VAT',9.00),(665,20,1,'VAT',9.00),(665,54,3,'VAT',9.00),(666,19,2,'VAT',9.00),(667,20,1,'VAT',9.00),(667,54,3,'VAT',9.00),(668,14,2,'VAT',9.00),(668,54,4,'VAT',9.00),(669,15,2,'VAT',9.00),(669,54,4,'VAT',9.00),(670,12,1,'VAT',9.00),(671,14,2,'VAT',9.00),(674,5,1,'VAT',9.00),(676,5,1,'VAT',9.00),(677,55,1,'VAT',9.00),(678,3,1,'VAT',9.00),(679,5,1,'VAT',9.00),(680,48,1,'VAT',9.00),(681,52,1,'VAT',9.00),(682,16,1,'VAT',9.00),(683,16,1,'VAT',9.00),(684,63,1,'VAT',9.00),(685,14,1,'VAT',9.00),(686,16,1,'VAT',9.00),(687,45,1,'VAT',9.00),(688,44,1,'VAT',9.00),(689,16,1,'VAT',9.00),(690,44,1,'VAT',9.00),(691,16,1,'VAT',9.00),(692,44,1,'VAT',9.00),(693,19,1,'VAT',9.00),(695,44,1,'VAT',9.00),(697,14,1,'VAT',9.00),(698,3,2,'VAT',9.00),(698,5,4,'VAT',9.00),(698,20,5,'VAT',9.00),(698,44,1,'VAT',9.00),(698,65,3,'VAT',9.00),(699,20,1,'VAT',9.00),(699,52,2,'VAT',9.00),(699,65,3,'VAT',9.00),(701,12,1,'VAT',9.00),(702,14,1,'VAT',9.00),(702,22,2,'VAT',9.00),(702,38,3,'VAT',9.00),(703,3,1,'VAT',9.00),(704,5,1,'VAT',9.00),(705,52,1,'VAT',9.00),(706,38,1,'VAT',9.00),(707,5,2,'VAT',9.00),(707,52,1,'VAT',9.00),(708,46,1,'VAT',9.00),(709,65,1,'VAT',9.00),(710,5,2,'VAT',9.00),(710,53,1,'VAT',9.00),(711,38,1,'VAT',9.00),(712,16,1,'VAT',9.00),(712,53,2,'VAT',9.00),(713,14,1,'VAT',9.00),(714,58,1,'VAT',9.00),(715,63,2,'VAT',9.00),(715,65,1,'VAT',9.00),(716,53,1,'VAT',9.00),(717,3,1,'VAT',9.00),(717,46,2,'VAT',9.00),(718,44,2,'VAT',9.00),(718,53,1,'VAT',9.00),(721,12,1,'VAT',9.00),(721,37,2,'VAT',9.00),(722,65,1,'VAT',9.00),(723,5,1,'VAT',9.00),(724,1,1,'VAT',9.00),(725,47,1,'VAT',9.00),(725,49,2,'VAT',9.00),(726,12,1,'VAT',9.00),(727,5,4,'VAT',9.00),(727,13,1,'VAT',9.00),(727,16,5,'VAT',9.00),(727,44,2,'VAT',9.00),(727,65,3,'VAT',9.00),(728,3,1,'VAT',9.00),(728,37,6,'VAT',9.00),(728,46,9,'VAT',9.00),(728,63,7,'VAT',9.00),(728,65,8,'VAT',9.00),(728,67,11,'VAT',9.00),(729,3,7,'VAT',9.00),(729,14,6,'VAT',9.00),(729,16,5,'VAT',9.00),(729,22,12,'VAT',9.00),(729,44,1,'VAT',9.00),(729,46,8,'VAT',9.00),(729,52,4,'VAT',9.00),(729,53,3,'VAT',9.00),(729,54,16,'VAT',9.00),(729,65,2,'VAT',9.00),(730,1,7,'VAT',9.00),(730,13,8,'VAT',9.00),(730,16,4,'VAT',9.00),(730,37,3,'VAT',9.00),(730,38,14,'VAT',9.00),(730,46,9,'VAT',9.00),(730,47,1,'VAT',9.00),(730,48,6,'VAT',9.00),(730,49,5,'VAT',9.00),(730,52,11,'VAT',9.00),(730,63,10,'VAT',9.00),(730,65,15,'VAT',9.00),(732,16,1,'VAT',9.00),(733,5,1,'VAT',9.00),(734,16,1,'VAT',9.00),(735,16,1,'VAT',9.00),(736,1,1,'VAT',9.00),(737,1,1,'VAT',9.00),(738,1,1,'VAT',9.00),(738,13,2,'VAT',9.00),(739,1,1,'VAT',9.00),(739,13,2,'VAT',9.00),(740,1,1,'VAT',9.00),(740,13,2,'VAT',9.00),(741,1,1,'VAT',9.00),(741,13,2,'VAT',9.00),(742,1,1,'VAT',9.00),(742,13,2,'VAT',9.00),(743,1,1,'VAT',9.00),(743,13,2,'VAT',9.00),(744,1,1,'VAT',9.00),(744,13,2,'VAT',9.00),(745,1,3,'VAT',9.00),(745,13,2,'VAT',9.00),(746,1,3,'VAT',9.00),(746,13,2,'VAT',9.00),(747,1,3,'VAT',9.00),(747,13,4,'VAT',9.00),(748,1,3,'VAT',9.00),(748,13,4,'VAT',9.00),(749,1,3,'VAT',9.00),(749,13,4,'VAT',9.00),(750,1,1,'VAT',9.00),(750,13,2,'VAT',9.00),(751,1,1,'VAT',9.00),(751,13,2,'VAT',9.00),(752,1,1,'VAT',9.00),(752,13,2,'VAT',9.00),(753,1,1,'VAT',9.00),(753,13,2,'VAT',9.00),(754,1,1,'VAT',9.00),(754,13,2,'VAT',9.00),(755,1,1,'VAT',9.00),(755,13,2,'VAT',9.00),(756,1,1,'VAT',9.00),(756,13,2,'VAT',9.00),(757,1,1,'VAT',9.00),(757,13,2,'VAT',9.00),(758,1,1,'VAT',9.00),(758,13,2,'VAT',9.00),(759,1,1,'VAT',9.00),(759,13,2,'VAT',9.00),(760,1,1,'VAT',9.00),(760,13,2,'VAT',9.00),(761,1,1,'VAT',9.00),(761,13,2,'VAT',9.00),(762,1,1,'VAT',9.00),(762,13,2,'VAT',9.00),(763,1,1,'VAT',9.00),(763,13,2,'VAT',9.00),(764,1,1,'VAT',9.00),(764,13,2,'VAT',9.00),(765,1,1,'VAT',9.00),(765,13,2,'VAT',9.00),(766,1,1,'VAT',9.00),(766,13,2,'VAT',9.00),(767,1,1,'VAT',9.00),(767,13,2,'VAT',9.00),(768,1,1,'VAT',9.00),(768,13,2,'VAT',9.00),(769,1,1,'VAT',9.00),(769,13,2,'VAT',9.00),(770,1,1,'VAT',9.00),(770,13,2,'VAT',9.00),(771,1,1,'VAT',9.00),(771,13,2,'VAT',9.00),(772,1,1,'VAT',9.00),(772,13,2,'VAT',9.00),(773,1,1,'VAT',9.00),(773,13,2,'VAT',9.00),(774,1,1,'VAT',9.00),(774,13,2,'VAT',9.00),(775,1,1,'VAT',9.00),(775,13,2,'VAT',9.00),(776,1,1,'VAT',9.00),(776,13,2,'VAT',9.00),(777,1,1,'VAT',9.00),(777,13,2,'VAT',9.00),(778,1,1,'VAT',9.00),(778,13,2,'VAT',9.00),(779,1,1,'VAT',9.00),(779,13,2,'VAT',9.00),(780,1,1,'VAT',9.00),(780,13,2,'VAT',9.00),(781,1,1,'VAT',9.00),(781,13,2,'VAT',9.00),(782,1,1,'VAT',9.00),(782,13,2,'VAT',9.00),(783,1,1,'VAT',9.00),(783,13,2,'VAT',9.00),(784,1,1,'VAT',9.00),(784,13,2,'VAT',9.00),(785,1,1,'VAT',9.00),(785,13,2,'VAT',9.00),(786,1,1,'VAT',9.00),(786,13,2,'VAT',9.00),(787,1,1,'VAT',9.00),(787,13,2,'VAT',9.00),(788,1,1,'VAT',9.00),(788,13,2,'VAT',9.00),(789,1,1,'VAT',9.00),(789,13,2,'VAT',9.00),(790,1,1,'VAT',9.00),(790,13,2,'VAT',9.00),(791,1,1,'VAT',9.00),(791,13,2,'VAT',9.00),(792,1,1,'VAT',9.00),(792,13,2,'VAT',9.00),(793,1,1,'VAT',9.00),(793,13,2,'VAT',9.00),(794,1,1,'VAT',9.00),(794,13,2,'VAT',9.00),(795,1,1,'VAT',9.00),(795,13,2,'VAT',9.00),(796,1,1,'VAT',9.00),(796,13,2,'VAT',9.00),(797,1,1,'VAT',9.00),(797,13,2,'VAT',9.00),(798,1,1,'VAT',9.00),(798,13,2,'VAT',9.00),(799,1,1,'VAT',9.00),(799,13,2,'VAT',9.00),(800,1,1,'VAT',9.00),(800,13,2,'VAT',9.00),(801,1,1,'VAT',9.00),(801,13,2,'VAT',9.00),(802,1,1,'VAT',9.00),(802,13,2,'VAT',9.00),(803,1,1,'VAT',9.00),(803,13,2,'VAT',9.00),(804,1,1,'VAT',9.00),(804,13,2,'VAT',9.00),(805,1,1,'VAT',9.00),(805,13,2,'VAT',9.00),(806,1,1,'VAT',9.00),(806,13,2,'VAT',9.00),(807,1,1,'VAT',9.00),(807,13,2,'VAT',9.00),(808,1,1,'VAT',9.00),(808,13,2,'VAT',9.00),(809,1,1,'VAT',9.00),(809,13,2,'VAT',9.00),(810,1,1,'VAT',9.00),(810,13,2,'VAT',9.00),(811,1,1,'VAT',9.00),(811,13,2,'VAT',9.00),(812,1,1,'VAT',9.00),(812,13,2,'VAT',9.00),(813,1,1,'VAT',9.00),(813,13,2,'VAT',9.00),(814,1,1,'VAT',9.00),(814,13,2,'VAT',9.00),(815,1,1,'VAT',9.00),(815,13,2,'VAT',9.00),(816,1,1,'VAT',9.00),(816,13,2,'VAT',9.00),(817,1,1,'VAT',9.00),(817,13,2,'VAT',9.00),(818,1,1,'VAT',9.00),(818,13,2,'VAT',9.00),(819,1,1,'VAT',9.00),(819,13,2,'VAT',9.00),(820,1,1,'VAT',9.00),(820,13,2,'VAT',9.00),(821,1,1,'VAT',9.00),(821,13,2,'VAT',9.00),(822,1,1,'VAT',9.00),(822,13,2,'VAT',9.00),(823,3,1,'VAT',9.00),(823,5,2,'VAT',9.00),(824,8,2,'VAT',9.00),(824,9,3,'VAT',9.00),(824,44,1,'VAT',9.00),(825,8,2,'VAT',9.00),(825,9,3,'VAT',9.00),(825,44,1,'VAT',9.00),(826,8,2,'VAT',9.00),(826,9,3,'VAT',9.00),(826,44,1,'VAT',9.00),(827,8,2,'VAT',9.00),(827,9,3,'VAT',9.00),(827,44,1,'VAT',9.00),(828,8,2,'VAT',9.00),(828,9,3,'VAT',9.00),(828,44,1,'VAT',9.00),(829,8,2,'VAT',9.00),(829,9,3,'VAT',9.00),(829,44,1,'VAT',9.00),(830,8,2,'VAT',9.00),(830,9,3,'VAT',9.00),(830,44,1,'VAT',9.00),(831,8,2,'VAT',9.00),(831,9,3,'VAT',9.00),(831,44,1,'VAT',9.00),(832,8,2,'VAT',9.00),(832,9,3,'VAT',9.00),(832,44,1,'VAT',9.00),(833,8,2,'VAT',9.00),(833,9,3,'VAT',9.00),(833,44,1,'VAT',9.00),(834,8,2,'VAT',9.00),(834,9,3,'VAT',9.00),(834,44,1,'VAT',9.00),(835,8,2,'VAT',9.00),(835,9,3,'VAT',9.00),(835,44,1,'VAT',9.00),(836,8,2,'VAT',9.00),(836,9,3,'VAT',9.00),(836,44,1,'VAT',9.00),(837,8,2,'VAT',9.00),(837,9,3,'VAT',9.00),(837,44,1,'VAT',9.00),(838,8,2,'VAT',9.00),(838,9,3,'VAT',9.00),(838,44,1,'VAT',9.00),(839,8,2,'VAT',9.00),(839,9,3,'VAT',9.00),(839,44,1,'VAT',9.00),(840,8,2,'VAT',9.00),(840,9,3,'VAT',9.00),(840,44,1,'VAT',9.00),(841,8,2,'VAT',9.00),(841,9,3,'VAT',9.00),(841,44,1,'VAT',9.00),(842,8,2,'VAT',9.00),(842,9,3,'VAT',9.00),(842,44,1,'VAT',9.00),(843,8,2,'VAT',9.00),(843,9,3,'VAT',9.00),(843,44,1,'VAT',9.00),(844,8,2,'VAT',9.00),(844,9,3,'VAT',9.00),(844,44,1,'VAT',9.00),(845,8,2,'VAT',9.00),(845,9,3,'VAT',9.00),(845,44,1,'VAT',9.00),(846,8,2,'VAT',9.00),(846,9,3,'VAT',9.00),(846,44,1,'VAT',9.00),(847,8,2,'VAT',9.00),(847,9,3,'VAT',9.00),(847,44,1,'VAT',9.00),(848,8,2,'VAT',9.00),(848,9,3,'VAT',9.00),(848,44,1,'VAT',9.00),(849,8,2,'VAT',9.00),(849,9,3,'VAT',9.00),(849,44,1,'VAT',9.00),(850,8,2,'VAT',9.00),(850,9,3,'VAT',9.00),(850,44,1,'VAT',9.00),(851,8,2,'VAT',9.00),(851,9,3,'VAT',9.00),(851,44,1,'VAT',9.00),(852,8,2,'VAT',9.00),(852,9,3,'VAT',9.00),(852,44,1,'VAT',9.00),(853,8,2,'VAT',9.00),(853,9,3,'VAT',9.00),(853,44,1,'VAT',9.00),(854,8,2,'VAT',9.00),(854,9,3,'VAT',9.00),(854,44,1,'VAT',9.00),(855,8,2,'VAT',9.00),(855,9,3,'VAT',9.00),(855,44,1,'VAT',9.00),(856,8,2,'VAT',9.00),(856,9,3,'VAT',9.00),(856,44,1,'VAT',9.00),(857,8,2,'VAT',9.00),(857,9,3,'VAT',9.00),(857,44,1,'VAT',9.00),(858,8,2,'VAT',9.00),(858,9,3,'VAT',9.00),(858,44,1,'VAT',9.00),(859,8,2,'VAT',9.00),(859,9,3,'VAT',9.00),(859,44,1,'VAT',9.00),(860,8,2,'VAT',9.00),(860,9,3,'VAT',9.00),(860,44,1,'VAT',9.00),(861,8,2,'VAT',9.00),(861,9,3,'VAT',9.00),(861,44,1,'VAT',9.00),(862,8,2,'VAT',9.00),(862,9,3,'VAT',9.00),(862,44,1,'VAT',9.00),(863,8,2,'VAT',9.00),(863,9,3,'VAT',9.00),(863,44,1,'VAT',9.00),(864,8,2,'VAT',9.00),(864,9,3,'VAT',9.00),(864,44,1,'VAT',9.00),(865,8,2,'VAT',9.00),(865,9,3,'VAT',9.00),(865,44,1,'VAT',9.00),(866,8,2,'VAT',9.00),(866,9,3,'VAT',9.00),(866,44,1,'VAT',9.00),(867,8,2,'VAT',9.00),(867,9,3,'VAT',9.00),(867,44,1,'VAT',9.00),(868,8,2,'VAT',9.00),(868,9,3,'VAT',9.00),(868,44,1,'VAT',9.00),(869,8,2,'VAT',9.00),(869,9,3,'VAT',9.00),(869,44,1,'VAT',9.00),(870,8,2,'VAT',9.00),(870,9,3,'VAT',9.00),(870,44,1,'VAT',9.00),(871,8,2,'VAT',9.00),(871,9,3,'VAT',9.00),(871,44,1,'VAT',9.00),(872,8,2,'VAT',9.00),(872,9,3,'VAT',9.00),(872,44,1,'VAT',9.00),(873,8,2,'VAT',9.00),(873,9,3,'VAT',9.00),(873,44,1,'VAT',9.00),(874,8,2,'VAT',9.00),(874,9,3,'VAT',9.00),(874,44,1,'VAT',9.00),(875,8,2,'VAT',9.00),(875,9,3,'VAT',9.00),(875,44,1,'VAT',9.00),(876,8,2,'VAT',9.00),(876,9,3,'VAT',9.00),(876,44,1,'VAT',9.00),(877,8,2,'VAT',9.00),(877,9,3,'VAT',9.00),(877,44,1,'VAT',9.00),(878,8,2,'VAT',9.00),(878,9,3,'VAT',9.00),(878,44,1,'VAT',9.00),(879,8,2,'VAT',9.00),(879,9,3,'VAT',9.00),(879,44,1,'VAT',9.00),(880,8,2,'VAT',9.00),(880,9,3,'VAT',9.00),(880,44,1,'VAT',9.00),(881,8,2,'VAT',9.00),(881,9,3,'VAT',9.00),(881,44,1,'VAT',9.00),(882,8,2,'VAT',9.00),(882,9,3,'VAT',9.00),(882,44,1,'VAT',9.00),(883,8,2,'VAT',9.00),(883,9,3,'VAT',9.00),(883,44,1,'VAT',9.00),(884,8,2,'VAT',9.00),(884,9,3,'VAT',9.00),(884,44,1,'VAT',9.00),(885,8,2,'VAT',9.00),(885,9,3,'VAT',9.00),(885,44,1,'VAT',9.00),(886,8,2,'VAT',9.00),(886,9,3,'VAT',9.00),(886,44,1,'VAT',9.00),(887,8,2,'VAT',9.00),(887,9,3,'VAT',9.00),(887,44,1,'VAT',9.00),(888,8,2,'VAT',9.00),(888,9,3,'VAT',9.00),(888,44,1,'VAT',9.00),(889,8,2,'VAT',9.00),(889,9,3,'VAT',9.00),(889,44,1,'VAT',9.00),(890,8,2,'VAT',9.00),(890,9,3,'VAT',9.00),(890,44,1,'VAT',9.00),(891,8,2,'VAT',9.00),(891,9,3,'VAT',9.00),(891,44,1,'VAT',9.00),(892,8,2,'VAT',9.00),(892,9,3,'VAT',9.00),(892,44,1,'VAT',9.00),(893,8,2,'VAT',9.00),(893,9,3,'VAT',9.00),(893,44,1,'VAT',9.00),(894,1,1,'VAT',9.00),(894,13,2,'VAT',9.00),(895,1,1,'VAT',9.00),(895,5,2,'VAT',9.00),(895,8,3,'VAT',9.00),(895,9,4,'VAT',9.00),(896,1,1,'VAT',9.00),(896,3,2,'VAT',9.00),(896,8,3,'VAT',9.00),(896,9,4,'VAT',9.00),(897,1,1,'VAT',9.00),(897,8,2,'VAT',9.00),(897,9,3,'VAT',9.00),(898,1,1,'VAT',9.00),(898,8,2,'VAT',9.00),(898,9,3,'VAT',9.00),(899,4,1,'VAT',9.00),(899,7,2,'VAT',9.00),(899,9,3,'VAT',9.00),(900,5,1,'VAT',9.00),(900,8,2,'VAT',9.00),(900,9,3,'VAT',9.00),(901,8,2,'VAT',9.00),(901,9,1,'VAT',9.00),(902,8,2,'VAT',9.00),(902,9,1,'VAT',9.00),(903,9,1,'VAT',9.00),(903,45,2,'VAT',9.00),(903,47,3,'VAT',9.00),(904,5,1,'VAT',9.00),(904,8,2,'VAT',9.00),(904,9,3,'VAT',9.00),(905,5,1,'VAT',9.00),(905,9,2,'VAT',9.00),(906,7,1,'VAT',9.00),(907,5,1,'VAT',9.00),(907,6,2,'VAT',9.00),(908,5,1,'VAT',9.00),(908,19,2,'VAT',9.00),(908,48,3,'VAT',9.00),(909,52,2,'VAT',9.00),(909,66,1,'VAT',9.00),(910,8,1,'VAT',9.00),(910,9,2,'VAT',9.00),(911,9,1,'VAT',9.00),(911,15,2,'VAT',9.00),(912,8,1,'VAT',9.00),(912,56,2,'VAT',9.00),(913,9,2,'VAT',9.00),(913,56,1,'VAT',9.00),(914,45,1,'VAT',9.00),(914,48,2,'VAT',9.00),(915,47,1,'VAT',9.00),(915,48,2,'VAT',9.00),(916,4,2,'VAT',9.00),(916,48,1,'VAT',9.00),(917,47,2,'VAT',9.00),(917,65,1,'VAT',9.00),(918,47,2,'VAT',9.00),(918,48,1,'VAT',9.00),(919,44,2,'VAT',9.00),(919,58,1,'VAT',9.00),(920,44,1,'VAT',9.00),(920,45,2,'VAT',9.00),(921,8,1,'VAT',9.00),(921,9,2,'VAT',9.00),(922,8,1,'VAT',9.00),(922,9,2,'VAT',9.00),(923,8,1,'VAT',9.00),(923,47,2,'VAT',9.00),(924,6,2,'VAT',9.00),(924,8,1,'VAT',9.00),(925,48,1,'VAT',9.00),(926,45,1,'VAT',9.00),(927,64,1,'VAT',9.00),(928,5,1,'VAT',9.00),(928,6,2,'VAT',9.00),(929,8,1,'VAT',9.00),(930,5,1,'VAT',9.00),(931,5,2,'VAT',9.00),(931,8,3,'VAT',9.00),(931,64,1,'VAT',9.00),(932,6,1,'VAT',9.00),(932,8,2,'VAT',9.00),(933,45,1,'VAT',9.00),(934,8,2,'VAT',9.00),(934,45,1,'VAT',9.00),(935,5,1,'VAT',9.00),(935,9,2,'VAT',9.00),(936,5,1,'VAT',9.00),(937,5,1,'VAT',9.00),(937,8,2,'VAT',9.00),(938,8,1,'VAT',9.00),(938,9,2,'VAT',9.00),(939,5,3,'VAT',9.00),(939,6,1,'VAT',9.00),(939,9,2,'VAT',9.00),(940,5,1,'VAT',9.00),(940,9,2,'VAT',9.00),(941,5,1,'VAT',9.00),(941,9,2,'VAT',9.00),(942,5,1,'VAT',9.00),(943,8,1,'VAT',9.00),(943,9,2,'VAT',9.00),(944,6,1,'VAT',9.00),(944,9,2,'VAT',9.00),(945,5,1,'VAT',9.00),(945,9,2,'VAT',9.00),(946,5,1,'VAT',9.00),(946,6,2,'VAT',9.00),(947,9,1,'VAT',9.00),(948,8,2,'VAT',9.00),(948,9,1,'VAT',9.00),(949,8,2,'VAT',9.00),(949,9,1,'VAT',9.00),(950,5,1,'VAT',9.00),(950,8,2,'VAT',9.00),(951,5,1,'VAT',9.00),(951,6,2,'VAT',9.00),(952,5,1,'VAT',9.00),(952,6,2,'VAT',9.00),(952,7,3,'VAT',9.00),(953,5,1,'VAT',9.00),(954,5,1,'VAT',9.00),(955,9,1,'VAT',9.00),(956,8,1,'VAT',9.00),(956,9,2,'VAT',9.00),(957,5,1,'VAT',9.00),(958,5,1,'VAT',9.00),(958,7,2,'VAT',9.00),(959,8,1,'VAT',9.00),(960,5,1,'VAT',9.00),(960,9,2,'VAT',9.00),(961,9,2,'VAT',9.00),(961,55,1,'VAT',9.00),(962,8,1,'VAT',9.00),(963,9,1,'VAT',9.00),(963,45,2,'VAT',9.00),(964,5,1,'VAT',9.00),(964,9,2,'VAT',9.00),(965,5,1,'VAT',9.00),(965,9,2,'VAT',9.00),(966,9,1,'VAT',9.00),(967,9,1,'VAT',9.00),(967,18,2,'VAT',9.00),(967,19,3,'VAT',9.00),(968,5,2,'VAT',9.00),(968,9,1,'VAT',9.00),(969,8,1,'VAT',9.00),(970,9,1,'VAT',9.00),(971,9,1,'VAT',9.00),(972,9,1,'VAT',9.00),(972,44,2,'VAT',9.00),(973,44,1,'VAT',9.00),(974,44,1,'VAT',9.00),(975,44,1,'VAT',9.00),(976,5,1,'VAT',9.00),(976,44,2,'VAT',9.00),(977,9,1,'VAT',9.00),(977,22,2,'VAT',9.00),(978,9,1,'VAT',9.00),(979,8,1,'VAT',9.00),(980,8,1,'VAT',9.00),(981,5,1,'VAT',9.00),(982,5,1,'VAT',9.00),(982,9,2,'VAT',9.00),(983,5,1,'VAT',9.00),(983,8,2,'VAT',9.00),(984,7,2,'VAT',9.00),(984,9,1,'VAT',9.00),(985,9,1,'VAT',9.00),(986,9,1,'VAT',9.00),(987,49,1,'VAT',9.00),(988,8,2,'VAT',9.00),(988,9,1,'VAT',9.00),(989,14,1,'VAT',9.00),(990,1,1,'VAT',9.00),(990,5,2,'VAT',9.00),(991,16,1,'VAT',9.00),(992,16,1,'VAT',9.00),(992,44,2,'VAT',9.00),(993,49,1,'VAT',9.00),(994,1,1,'VAT',9.00),(995,5,1,'VAT',9.00),(995,6,2,'VAT',9.00),(996,5,1,'VAT',9.00),(996,6,2,'VAT',9.00),(997,5,1,'VAT',9.00),(997,8,2,'VAT',9.00),(998,5,1,'VAT',9.00),(999,5,1,'VAT',9.00),(1000,5,2,'VAT',9.00),(1000,16,1,'VAT',9.00),(1001,1,1,'VAT',9.00),(1001,5,2,'VAT',9.00),(1002,5,2,'VAT',9.00),(1002,6,1,'VAT',9.00),(1003,5,1,'VAT',9.00),(1004,5,1,'VAT',9.00),(1004,6,2,'VAT',9.00),(1005,5,1,'VAT',9.00),(1005,6,2,'VAT',9.00),(1006,5,1,'VAT',9.00),(1006,6,2,'VAT',9.00),(1007,6,1,'VAT',9.00),(1007,8,2,'VAT',9.00),(1008,5,1,'VAT',9.00),(1009,6,2,'VAT',9.00),(1009,47,1,'VAT',9.00),(1010,5,1,'VAT',9.00),(1010,9,2,'VAT',9.00),(1011,9,1,'VAT',9.00),(1012,8,3,'VAT',9.00),(1012,9,2,'VAT',9.00),(1013,8,1,'VAT',9.00),(1014,7,1,'VAT',9.00),(1014,9,2,'VAT',9.00),(1015,48,1,'VAT',9.00),(1016,7,1,'VAT',9.00),(1017,8,1,'VAT',9.00),(1018,8,1,'VAT',9.00),(1018,44,2,'VAT',9.00),(1018,45,3,'VAT',9.00),(1019,45,1,'VAT',9.00),(1020,6,1,'VAT',9.00),(1020,8,2,'VAT',9.00),(1020,9,3,'VAT',9.00),(1021,8,1,'VAT',9.00),(1021,9,2,'VAT',9.00),(1022,8,1,'VAT',9.00),(1022,9,2,'VAT',9.00),(1024,8,2,'VAT',9.00),(1024,9,1,'VAT',9.00),(1025,8,2,'VAT',9.00),(1026,9,1,'VAT',9.00),(1027,5,1,'VAT',9.00),(1028,9,1,'VAT',9.00),(1029,44,1,'VAT',9.00),(1030,8,2,'VAT',9.00),(1030,44,1,'VAT',9.00),(1031,44,1,'VAT',9.00),(1032,55,1,'VAT',9.00),(1033,44,2,'VAT',9.00),(1033,45,1,'VAT',9.00),(1034,44,1,'VAT',9.00),(1035,44,1,'VAT',9.00),(1036,44,1,'VAT',9.00),(1037,45,1,'VAT',9.00),(1038,44,1,'VAT',9.00),(1038,45,2,'VAT',9.00),(1039,45,1,'VAT',9.00),(1040,44,1,'VAT',9.00),(1040,45,2,'VAT',9.00),(1041,8,2,'VAT',9.00),(1041,9,1,'VAT',9.00),(1041,44,3,'VAT',9.00),(1042,44,1,'VAT',9.00),(1043,44,1,'VAT',9.00),(1044,44,1,'VAT',9.00),(1045,44,2,'VAT',9.00),(1046,44,1,'VAT',9.00),(1047,44,1,'VAT',9.00),(1048,45,1,'VAT',9.00),(1049,5,1,'VAT',9.00),(1050,44,1,'VAT',9.00),(1051,4,1,'VAT',9.00),(1052,44,1,'VAT',9.00),(1053,44,1,'VAT',9.00),(1054,45,1,'VAT',9.00),(1055,44,1,'VAT',9.00),(1055,45,2,'VAT',9.00),(1056,44,1,'VAT',9.00),(1057,45,1,'VAT',9.00),(1058,44,1,'VAT',9.00),(1059,8,1,'VAT',9.00),(1060,44,1,'VAT',9.00),(1061,44,1,'VAT',9.00),(1062,44,1,'VAT',9.00),(1062,45,2,'VAT',9.00),(1063,44,1,'VAT',9.00),(1064,44,1,'VAT',9.00),(1065,44,1,'VAT',9.00),(1066,5,1,'VAT',9.00),(1066,8,2,'VAT',9.00),(1067,5,1,'VAT',9.00),(1067,6,2,'VAT',9.00),(1068,5,1,'VAT',9.00),(1068,9,2,'VAT',9.00),(1069,55,2,'VAT',9.00),(1070,55,1,'VAT',9.00),(1071,44,1,'VAT',9.00),(1071,55,2,'VAT',9.00),(1072,14,2,'VAT',9.00),(1073,44,1,'VAT',9.00),(1074,5,1,'VAT',9.00),(1075,44,1,'VAT',9.00),(1075,45,2,'VAT',9.00),(1076,44,1,'VAT',9.00),(1077,44,1,'VAT',9.00),(1078,44,1,'VAT',9.00),(1079,8,1,'VAT',9.00),(1080,44,1,'VAT',9.00),(1081,45,1,'VAT',9.00),(1082,44,2,'VAT',9.00),(1082,45,1,'VAT',9.00),(1083,44,2,'VAT',9.00),(1083,45,1,'VAT',9.00),(1084,44,1,'VAT',9.00),(1085,8,3,'VAT',9.00),(1085,44,1,'VAT',9.00),(1085,45,2,'VAT',9.00),(1086,44,1,'VAT',9.00),(1087,55,2,'VAT',9.00),(1088,44,1,'VAT',9.00),(1088,45,2,'VAT',9.00),(1089,44,2,'VAT',9.00),(1089,49,1,'VAT',9.00),(1090,44,1,'VAT',9.00),(1091,44,1,'VAT',9.00),(1092,55,1,'VAT',9.00),(1093,44,1,'VAT',9.00),(1093,45,2,'VAT',9.00),(1094,44,1,'VAT',9.00),(1094,45,2,'VAT',9.00),(1095,44,1,'VAT',9.00),(1095,45,2,'VAT',9.00),(1096,44,1,'VAT',9.00),(1096,45,2,'VAT',9.00),(1097,44,1,'VAT',9.00),(1098,49,1,'VAT',9.00),(1099,7,3,'VAT',9.00),(1099,44,1,'VAT',9.00),(1099,45,2,'VAT',9.00),(1100,44,1,'VAT',9.00),(1100,45,2,'VAT',9.00),(1101,44,1,'VAT',9.00),(1102,44,1,'VAT',9.00),(1103,44,1,'VAT',9.00),(1104,44,1,'VAT',9.00),(1105,44,1,'VAT',9.00),(1106,3,1,'VAT',9.00),(1107,3,1,'VAT',9.00),(1108,3,1,'VAT',9.00),(1109,16,1,'VAT',9.00),(1110,9,1,'VAT',9.00),(1112,16,1,'VAT',9.00),(1113,49,1,'VAT',9.00),(1121,1,1,'VAT',9.00),(1122,1,1,'VAT',9.00),(1123,1,1,'VAT',9.00),(1125,1,1,'VAT',9.00),(1126,1,1,'VAT',9.00),(1128,5,1,'VAT',9.00),(1131,5,1,'VAT',9.00),(1132,45,1,'VAT',9.00),(1133,45,1,'VAT',9.00),(1134,45,1,'VAT',9.00),(1135,152,1,'VAT',9.00),(1136,1,1,'VAT',9.00),(1136,15,2,'VAT',9.00),(1137,148,1,'VAT',9.00),(1138,150,1,'VAT',9.00),(1139,14,1,'VAT',9.00),(1140,150,1,'VAT',9.00),(1141,132,1,'VAT',9.00),(1142,5,2,'VAT',9.00),(1142,14,1,'VAT',9.00),(1143,12,2,'VAT',9.00),(1143,13,1,'VAT',9.00),(1143,35,3,'VAT',9.00),(1144,12,1,'VAT',9.00),(1144,13,2,'VAT',9.00),(1145,13,1,'VAT',9.00),(1146,10,1,'VAT',9.00),(1147,130,1,'VAT',9.00),(1148,130,1,'VAT',9.00),(1149,13,1,'VAT',9.00),(1150,15,1,'VAT',9.00),(1150,123,2,'VAT',9.00),(1151,13,1,'VAT',9.00),(1152,150,1,'VAT',9.00),(1153,14,1,'VAT',9.00),(1154,150,1,'VAT',9.00),(1155,150,1,'VAT',9.00),(1156,14,1,'VAT',9.00),(1156,18,2,'VAT',9.00),(1156,35,3,'VAT',9.00),(1157,13,1,'VAT',9.00),(1158,150,1,'VAT',9.00),(1159,150,1,'VAT',9.00),(1160,150,1,'VAT',9.00),(1161,150,1,'VAT',9.00),(1162,23,1,'VAT',9.00),(1163,5,1,'VAT',9.00),(1163,14,3,'VAT',9.00),(1163,148,2,'VAT',9.00),(1164,14,1,'VAT',9.00),(1164,23,2,'VAT',9.00),(1165,15,1,'VAT',9.00),(1166,18,1,'VAT',9.00),(1167,35,1,'VAT',9.00),(1167,92,2,'VAT',9.00),(1168,35,1,'VAT',9.00),(1169,10,1,'VAT',9.00),(1169,14,2,'VAT',9.00),(1170,35,1,'VAT',9.00),(1171,35,1,'VAT',9.00),(1171,150,2,'VAT',9.00),(1172,10,2,'VAT',9.00),(1172,15,1,'VAT',9.00),(1173,15,1,'VAT',9.00),(1174,15,1,'VAT',9.00),(1175,14,1,'VAT',9.00),(1176,150,1,'VAT',9.00),(1177,1,1,'VAT',9.00),(1177,15,2,'VAT',9.00),(1178,5,3,'VAT',9.00),(1178,14,5,'VAT',9.00),(1178,15,2,'VAT',9.00),(1178,23,4,'VAT',9.00),(1178,37,6,'VAT',9.00),(1178,150,1,'VAT',9.00),(1179,1,1,'VAT',9.00),(1180,1,2,'VAT',9.00),(1180,3,1,'VAT',9.00),(1180,5,5,'VAT',9.00),(1180,10,9,'VAT',9.00),(1180,15,10,'VAT',9.00),(1180,21,3,'VAT',9.00),(1180,23,6,'VAT',9.00),(1180,37,4,'VAT',9.00),(1180,123,8,'VAT',9.00),(1180,150,7,'VAT',9.00),(1181,123,1,'VAT',9.00),(1182,15,1,'VAT',9.00),(1183,5,5,'VAT',9.00),(1183,14,2,'VAT',9.00),(1183,15,1,'VAT',9.00),(1183,150,4,'VAT',9.00),(1183,152,3,'VAT',9.00),(1184,150,1,'VAT',9.00),(1185,150,1,'VAT',9.00),(1186,1,1,'VAT',9.00),(1187,150,1,'VAT',9.00),(1188,148,1,'VAT',9.00),(1189,132,1,'VAT',9.00),(1191,12,1,'VAT',9.00);
/*!40000 ALTER TABLE `ospos_sales_items_taxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_sales_payments`
--

DROP TABLE IF EXISTS `ospos_sales_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_payments` (
  `sale_id` int(10) NOT NULL,
  `payment_type` varchar(40) NOT NULL,
  `payment_amount` decimal(15,2) NOT NULL,
  PRIMARY KEY (`sale_id`,`payment_type`),
  KEY `sale_id` (`sale_id`),
  CONSTRAINT `ospos_sales_payments_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales` (`sale_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_payments`
--

LOCK TABLES `ospos_sales_payments` WRITE;
/*!40000 ALTER TABLE `ospos_sales_payments` DISABLE KEYS */;
INSERT INTO `ospos_sales_payments` VALUES (1,'Cash',20.00),(2,'Cash',20.00),(3,'Cash',20.00),(4,'Cash',10.00),(5,'Cash',10.00),(6,'Cash',5.00),(8,'Cash',2.15),(9,'Cash',10.00),(10,'Cash',20.00),(11,'Cash',248.43),(12,'Cash',127.82),(13,'Cash',129.65),(14,'Cash',34.09),(15,'Cash',51.98),(16,'Cash',62.86),(17,'Cash',40.00),(18,'Cash',374.52),(19,'Cash',47.94),(20,'Cash',100.00),(21,'Cash',34.05),(22,'Cash',10.12),(23,'Cash',20.00),(24,'Cash',143.27),(25,'Cash',119.57),(26,'Cash',89.96),(27,'Cash',148.56),(28,'Cash',35.00),(29,'Cash',49.71),(30,'Cash',19.96),(31,'Cash',22.64),(32,'Cash',31.64),(33,'Cash',45.81),(34,'Cash',60.58),(35,'Cash',112.03),(36,'Cash',9.46),(37,'Cash',21.25),(38,'Cash',21.04),(39,'Cash',11.29),(40,'Cash',52.47),(41,'Cash',11.95),(42,'Cash',191.32),(43,'Cash',206.53),(44,'Cash',85.44),(45,'Cash',25.24),(46,'Cash',105.00),(47,'Cash',332.33),(48,'Cash',23.74),(49,'Cash',22.54),(50,'Cash',78.67),(51,'Cash',27.95),(52,'Cash',22.79),(53,'Cash',22.04),(54,'Cash',30.23),(55,'Cash',11.21),(56,'Cash',34.89),(57,'Cash',85.04),(58,'Cash',129.58),(59,'Cash',24.47),(60,'Cash',1037.77),(61,'Cash',70.00),(62,'Cash',486.56),(63,'Cash',21.37),(64,'Cash',62.29),(65,'Cash',47.20),(66,'Cash',54.20),(67,'Cash',122.28),(68,'Cash',23.38),(69,'Cash',8.25),(70,'Cash',66.77),(71,'Cash',229.14),(72,'Cash',135.34),(73,'Cash',136.18),(74,'Cash',43.52),(75,'Cash',6.50),(76,'Cash',44.29),(77,'Cash',23.98),(78,'Cash',26.20),(79,'Cash',56.34),(80,'Cash',40.75),(81,'Cash',135.14),(82,'Cash',49.39),(83,'Cash',65.19),(84,'Cash',102.99),(85,'Cash',23.94),(86,'Cash',6.16),(87,'Cash',28.68),(88,'Cash',70.00),(89,'Cash',46.89),(90,'Cash',22.90),(91,'Cash',76.51),(92,'Cash',48.27),(93,'Cash',91.94),(94,'Cash',35.86),(95,'Cash',39.00),(96,'Cash',30.00),(97,'Cash',35.76),(98,'Cash',12.17),(99,'Cash',5.86),(100,'Cash',49.53),(101,'Cash',44.23),(102,'Cash',25.59),(103,'Cash',17.64),(104,'Cash',206.83),(105,'Cash',98.40),(106,'Cash',50.48),(107,'Cash',7.25),(108,'Cash',74.03),(109,'Cash',49.62),(110,'Cash',54.34),(111,'Cash',44.19),(112,'Cash',87.45),(113,'Cash',64.73),(114,'Cash',81.44),(115,'Cash',20.86),(116,'Cash',15.34),(117,'Cash',29.73),(118,'Cash',149.74),(119,'Cash',20.20),(120,'Cash',6.80),(121,'Cash',7.91),(122,'Cash',2.09),(123,'Cash',357.62),(124,'Cash',35.00),(125,'Cash',42.74),(126,'Cash',12.00),(127,'Cash',13.04),(128,'Cash',18.07),(129,'Cash',183.94),(130,'Cash',35.00),(131,'Cash',98.20),(132,'Cash',50.62),(133,'Cash',226.38),(134,'Cash',31.87),(135,'Cash',15.20),(136,'Cash',31.05),(137,'Cash',44.66),(138,'Cash',51.47),(139,'Cash',18.59),(140,'Cash',77.73),(141,'Cash',20.33),(142,'Cash',100.00),(143,'Cash',4.49),(144,'Cash',58.11),(145,'Cash',11.19),(146,'Cash',52.47),(147,'Cash',2.09),(148,'Cash',41.31),(149,'Cash',14.12),(150,'Cash',54.00),(151,'Cash',11.83),(152,'Cash',196.35),(153,'Cash',35.00),(154,'Cash',16.54),(155,'Cash',46.83),(156,'Cash',6.86),(157,'Cash',13.53),(158,'Cash',5.18),(159,'Cash',9.38),(160,'Cash',176.72),(161,'Cash',40.64),(162,'Cash',71.44),(163,'Cash',11.97),(164,'Cash',220.98),(165,'Cash',46.45),(166,'Cash',12.47),(167,'Cash',24.36),(168,'Cash',48.74),(169,'Cash',92.63),(170,'Cash',523.24),(171,'Cash',35.46),(172,'Cash',59.26),(173,'Cash',30.56),(174,'Cash',18.41),(175,'Cash',54.00),(176,'Cash',385.32),(177,'Cash',99.60),(178,'Cash',23.47),(179,'Cash',157.02),(180,'Cash',50.65),(181,'Cash',19.27),(182,'Cash',14.39),(183,'Cash',69.09),(184,'Cash',10.06),(185,'Cash',337.56),(186,'Cash',91.43),(187,'Cash',26.19),(188,'Cash',13.97),(189,'Cash',10.05),(190,'Cash',18.53),(191,'Cash',73.26),(192,'Cash',102.47),(193,'Cash',11.00),(194,'Cash',37.00),(195,'Cash',38.09),(196,'Cash',340.85),(197,'Cash',34.66),(198,'Cash',31.29),(199,'Cash',245.55),(200,'Cash',136.00),(201,'Cash',84.06),(202,'Cash',54.43),(203,'Cash',26.52),(204,'Cash',96.58),(205,'Cash',43.55),(206,'Cash',26.53),(207,'Cash',19.78),(208,'Cash',40.29),(209,'Cash',29.98),(210,'Cash',13.37),(211,'Cash',51.14),(212,'Cash',112.30),(213,'Cash',49.35),(214,'Cash',21.31),(215,'Cash',13.63),(216,'Cash',27.40),(217,'Cash',21.81),(218,'Cash',25.59),(219,'Cash',10.83),(220,'Cash',6.54),(221,'Cash',5.10),(222,'Cash',35.00),(223,'Cash',29.27),(224,'Cash',30.00),(225,'Cash',125.41),(226,'Cash',199.24),(227,'Cash',69.70),(228,'Cash',48.98),(229,'Cash',35.00),(230,'Cash',27.62),(231,'Cash',47.52),(232,'Cash',14.67),(233,'Cash',15.94),(234,'Cash',20.20),(235,'Cash',13.36),(236,'Cash',12.05),(237,'Cash',3.86),(238,'Cash',63.36),(239,'Cash',31.27),(240,'Cash',4.47),(241,'Cash',35.95),(242,'Cash',49.01),(243,'Cash',21.57),(244,'Cash',34.53),(245,'Cash',50.85),(246,'Cash',37.37),(247,'Cash',72.63),(248,'Cash',88.71),(249,'Cash',8.35),(250,'Cash',196.25),(251,'Cash',29.50),(252,'Cash',22.45),(253,'Cash',50.92),(254,'Cash',97.40),(255,'Cash',41.32),(256,'Cash',40.07),(257,'Cash',65.93),(258,'Cash',79.13),(259,'Cash',31.26),(260,'Cash',183.30),(261,'Cash',50.09),(262,'Cash',96.26),(263,'Cash',25.14),(264,'Cash',32.76),(265,'Cash',68.75),(266,'Cash',17.47),(267,'Cash',194.31),(268,'Cash',86.90),(269,'Cash',16.02),(270,'Cash',70.00),(271,'Cash',46.04),(272,'Cash',48.10),(273,'Cash',60.90),(274,'Cash',20.68),(275,'Cash',17.71),(276,'Cash',28.99),(277,'Cash',31.49),(278,'Cash',12.64),(279,'Cash',42.62),(280,'Cash',17.10),(281,'Cash',196.90),(282,'Cash',36.54),(283,'Cash',50.40),(284,'Cash',105.47),(285,'Cash',9.27),(286,'Cash',128.80),(287,'Cash',30.76),(288,'Cash',19.74),(289,'Cash',775.52),(290,'Cash',132.74),(291,'Cash',232.23),(292,'Cash',50.05),(293,'Cash',73.26),(294,'Cash',100.10),(295,'Cash',29.60),(296,'Cash',29.03),(297,'Cash',28.40),(298,'Cash',16.41),(299,'Cash',145.22),(300,'Cash',72.36),(301,'Cash',78.86),(302,'Cash',41.02),(303,'Cash',748.84),(304,'Cash',98.00),(305,'Cash',57.54),(306,'Cash',53.54),(307,'Cash',93.75),(308,'Cash',28.15),(309,'Cash',10.00),(310,'Cash',14.00),(311,'Cash',129.24),(312,'Cash',30.00),(313,'Cash',38.94),(314,'Cash',30.92),(315,'Cash',23.91),(316,'Cash',79.65),(317,'Cash',63.92),(318,'Cash',70.35),(319,'Cash',54.20),(320,'Cash',27.85),(321,'Cash',19.94),(322,'Cash',14.05),(323,'Cash',23.58),(324,'Cash',14.32),(325,'Cash',44.52),(326,'Cash',29.57),(327,'Cash',59.98),(328,'Cash',342.29),(329,'Cash',69.12),(330,'Cash',10.19),(331,'Cash',62.93),(332,'Cash',39.28),(333,'Cash',49.48),(334,'Cash',7.08),(335,'Cash',110.46),(336,'Cash',60.22),(337,'Cash',28.42),(338,'Cash',83.93),(339,'Cash',20.85),(340,'Cash',137.00),(341,'Cash',44.32),(342,'Cash',14.96),(343,'Cash',126.01),(344,'Cash',69.85),(345,'Cash',9.00),(346,'Cash',22.57),(347,'Cash',49.50),(348,'Cash',100.00),(349,'Cash',386.43),(350,'Cash',0.80),(351,'Cash',39.85),(352,'Cash',30.00),(353,'Cash',30.87),(354,'Cash',30.13),(355,'Cash',99.77),(356,'Cash',59.50),(357,'Cash',11.13),(358,'Cash',80.72),(359,'Cash',376.88),(360,'Cash',45.12),(361,'Cash',53.26),(362,'Cash',40.74),(363,'Cash',52.43),(364,'Cash',10.00),(365,'Cash',61.37),(366,'Cash',46.03),(367,'Cash',24.68),(368,'Cash',32.51),(369,'Cash',100.00),(370,'Cash',100.00),(371,'Cash',100.00),(372,'Cash',43.98),(373,'Cash',29.75),(374,'Cash',14.10),(375,'Cash',21.20),(376,'Cash',10.17),(377,'Cash',35.00),(378,'Cash',13.93),(379,'Cash',140.55),(380,'Cash',63.96),(381,'Cash',57.96),(382,'Cash',39.31),(383,'Cash',93.30),(384,'Cash',24.43),(385,'Cash',68.40),(386,'Cash',4.00),(387,'Cash',7.11),(388,'Cash',24.63),(389,'Cash',16.21),(390,'Cash',33.73),(391,'Cash',54.37),(392,'Cash',15.05),(393,'Cash',18.60),(394,'Cash',50.25),(395,'Cash',20.37),(396,'Cash',26.07),(397,'Cash',57.38),(398,'Cash',224.08),(399,'Cash',450.00),(400,'Cash',25.05),(401,'Cash',46.46),(402,'Cash',34.55),(403,'Cash',70.55),(404,'Cash',28.70),(405,'Cash',26.39),(406,'Cash',15.16),(407,'Cash',29.29),(408,'Cash',46.89),(409,'Cash',7.87),(410,'Cash',26.01),(411,'Cash',33.46),(412,'Cash',4.95),(413,'Cash',194.50),(414,'Cash',87.76),(415,'Cash',13.63),(416,'Cash',7.52),(417,'Cash',13.05),(418,'Cash',40.98),(419,'Cash',54.44),(420,'Cash',23.47),(421,'Cash',51.58),(422,'Cash',93.67),(423,'Cash',113.60),(424,'Cash',35.00),(425,'Cash',17.94),(426,'Cash',118.21),(427,'Cash',111.19),(428,'Cash',38.63),(429,'Cash',17.37),(430,'Cash',76.04),(431,'Cash',35.20),(432,'Cash',117.59),(433,'Cash',23.70),(434,'Cash',6.48),(435,'Cash',27.93),(436,'Cash',108.99),(437,'Cash',14.83),(438,'Cash',10.07),(439,'Cash',49.50),(440,'Cash',43.95),(441,'Cash',87.72),(442,'Cash',39.69),(443,'Cash',10.13),(444,'Cash',14.69),(445,'Cash',46.30),(446,'Cash',49.81),(447,'Cash',10.21),(448,'Cash',33.21),(449,'Cash',9.10),(450,'Cash',44.52),(451,'Cash',388.60),(452,'Cash',160.63),(453,'Cash',24.10),(454,'Cash',0.10),(455,'Cash',45.93),(456,'Cash',9.40),(457,'Cash',19.35),(458,'Cash',17.34),(459,'Cash',31.66),(460,'Cash',69.12),(461,'Cash',92.09),(462,'Cash',31.33),(463,'Cash',29.24),(464,'Cash',64.59),(465,'Cash',28.74),(466,'Cash',142.45),(467,'Cash',67.42),(468,'Cash',17.95),(469,'Cash',15.50),(470,'Cash',48.61),(471,'Cash',99.38),(472,'Cash',87.39),(473,'Cash',155.40),(474,'Cash',13.02),(475,'Cash',18.67),(476,'Cash',29.43),(477,'Cash',21.57),(478,'Cash',15.78),(479,'Cash',53.96),(480,'Cash',62.23),(481,'Cash',52.76),(482,'Cash',35.28),(483,'Cash',45.90),(484,'Cash',70.64),(485,'Cash',58.21),(486,'Cash',50.00),(487,'Cash',18.08),(488,'Cash',29.13),(489,'Cash',6.02),(490,'Cash',395.96),(491,'Cash',46.69),(492,'Cash',231.59),(493,'Cash',70.92),(494,'Cash',20.88),(495,'Cash',41.94),(496,'Cash',32.00),(497,'Cash',14.86),(498,'Cash',60.03),(499,'Cash',49.79),(500,'Cash',45.50),(501,'Cash',27.27),(502,'Cash',11.59),(503,'Cash',340.00),(504,'Cash',30.00),(505,'Cash',23.11),(506,'Cash',55.34),(507,'Cash',4.17),(508,'Cash',30.76),(509,'Cash',4.00),(510,'Cash',10.01),(511,'Cash',27.33),(512,'Cash',74.95),(513,'Cash',260.00),(514,'Cash',34.85),(515,'Cash',14.05),(516,'Cash',31.56),(517,'Cash',11.10),(518,'Cash',196.51),(519,'Cash',162.60),(520,'Cash',20.68),(521,'Cash',6.53),(522,'Cash',29.64),(523,'Cash',29.28),(524,'Cash',31.17),(525,'Cash',43.97),(526,'Cash',15.48),(527,'Cash',22.39),(528,'Cash',4.94),(529,'Cash',103.29),(530,'Cash',43.61),(531,'Cash',36.50),(532,'Cash',23.46),(533,'Cash',31.25),(534,'Cash',25.02),(535,'Cash',94.49),(536,'Cash',32.38),(537,'Cash',121.50),(538,'Cash',44.55),(539,'Cash',30.25),(540,'Cash',35.31),(541,'Cash',24.92),(542,'Cash',17.60),(543,'Cash',5.60),(544,'Cash',21.49),(545,'Cash',31.18),(546,'Cash',28.51),(547,'Cash',50.88),(548,'Cash',40.40),(549,'Cash',10.05),(550,'Cash',15.35),(551,'Cash',42.67),(552,'Cash',14.05),(553,'Cash',41.74),(554,'Cash',87.63),(555,'Cash',38.69),(556,'Cash',340.00),(557,'Cash',40.74),(558,'Cash',9.72),(559,'Cash',52.84),(560,'Cash',50.33),(561,'Cash',9.95),(562,'Cash',562.74),(563,'Cash',92.80),(564,'Cash',15.64),(565,'Cash',8.14),(566,'Cash',19.74),(567,'Cash',14.29),(568,'Cash',23.69),(569,'Cash',22.33),(570,'Cash',17.13),(571,'Cash',92.39),(572,'Cash',742.40),(573,'Cash',28.00),(574,'Cash',9.91),(575,'Cash',510.00),(576,'Cash',53.07),(577,'Cash',65.11),(578,'Cash',14.05),(579,'Cash',44.69),(580,'Cash',466.93),(581,'Cash',43.48),(582,'Cash',24.59),(583,'Cash',266.00),(584,'Cash',46.24),(585,'Cash',139.20),(586,'Cash',50.42),(587,'Cash',51.66),(588,'Cash',20.26),(589,'Cash',20.30),(590,'Cash',39.51),(591,'Cash',80.00),(592,'Cash',255.00),(593,'Cash',50.79),(594,'Cash',19.92),(595,'Cash',20.75),(596,'Cash',165.43),(597,'Cash',89.77),(598,'Cash',51.00),(599,'Cash',26.02),(600,'Cash',8.06),(601,'Cash',1020.00),(602,'Cash',27.47),(603,'Cash',45.12),(604,'Cash',18.32),(605,'Cash',13.31),(606,'Cash',20.96),(607,'Cash',16.48),(608,'Cash',53.30),(609,'Cash',14.50),(610,'Cash',19.79),(611,'Cash',24.95),(612,'Cash',55.55),(613,'Cash',125.93),(614,'Cash',46.07),(615,'Cash',34.56),(616,'Cash',26.05),(617,'Cash',34.56),(618,'Cash',44.58),(619,'Cash',19.50),(620,'Cash',23.08),(621,'Cash',340.00),(622,'Cash',41.21),(623,'Cash',689.96),(624,'Cash',192.00),(625,'Cash',147.56),(626,'Cash',23.41),(627,'Cash',697.62),(628,'Cash',186.80),(629,'Cash',81.90),(630,'Cash',96.60),(631,'Cash',32.25),(632,'Cash',32.89),(633,'Cash',31.47),(634,'Cash',200.00),(635,'Cash',37.70),(636,'Cash',29.80),(637,'Cash',54.31),(638,'Cash',32.93),(639,'Cash',15.72),(640,'Cash',53.63),(641,'Cash',230.00),(642,'Cash',7.25),(643,'Cash',12.05),(644,'Cash',52.80),(645,'Cash',9.53),(646,'Cash',98.79),(647,'Cash',49.01),(648,'Cash',11.38),(649,'Cash',30.00),(650,'Cash',16.20),(651,'Cash',80.00),(652,'Cash',34.39),(653,'Cash',40.43),(654,'Cash',29.97),(655,'Cash',59.40),(656,'Cash',90.06),(657,'Cash',264.98),(658,'Cash',19.68),(659,'Cash',22.71),(660,'Cash',32.14),(661,'Cash',28.22),(662,'Cash',64.07),(663,'Cash',35.42),(664,'Cash',15.95),(665,'Cash',50.29),(666,'Cash',500.83),(667,'Cash',30.72),(668,'Cash',31.88),(669,'Cash',22.95),(670,'Cash',253.76),(671,'Cash',39.97),(672,'Cash',11.27),(674,'Cash',10.55),(675,'Cash',8.00),(676,'Cash',10.55),(677,'Cash',13.95),(678,'Cash',9.95),(679,'Cash',31.65),(680,'Cash',15.95),(681,'Cheque',16.95),(682,'Cash',18.50),(683,'Cash',18.50),(684,'Cash',21.00),(685,'Cash',17.50),(686,'Cash',18.50),(687,'Cash',6.95),(688,'Cash',17.50),(689,'Cash',18.50),(690,'Cash',17.50),(691,'Cash',18.50),(692,'Cash',17.50),(693,'Cash',15.95),(694,'Cash',0.00),(695,'Cash',17.50),(696,'Cash',0.00),(697,'Cash',17.50),(698,'Cash',63.50),(699,'Cash',50.00),(700,'Cash',4.95),(701,'Cash',16.75),(702,'Cash',100.00),(703,'Cash',9.95),(704,'Cash',50.00),(705,'Cash',16.95),(706,'Cash',4.00),(707,'Cash',40.00),(708,'Cash',13.95),(709,'Cash',100.00),(710,'Cash',19.05),(711,'Cash',84.00),(712,'Cash',27.00),(713,'Cash',50.00),(714,'Cash',13.00),(715,'Cash',30.00),(716,'Cash',9.50),(717,'Cash',50.00),(718,'Cash',30.00),(719,'Cash',5.95),(720,'Cash',12.50),(721,'Cash',30.00),(722,'Cash',9.00),(723,'Cash',10.55),(724,'Cash',11.75),(725,'Cash',50.00),(726,'Cash',20.00),(727,'Cash',110.45),(728,'Cash',114.80),(729,'Cash',237.70),(730,'Cash',425.15),(731,'Cash',13.95),(732,'Cash',18.50),(733,'Cash',10.55),(734,'Cash',18.50),(735,'Cash',18.50),(736,'Cash',11.75),(737,'Cash',58.75),(738,'Cash',26.70),(739,'Cash',26.70),(740,'Cash',26.70),(741,'Cash',26.70),(742,'Cash',26.70),(743,'Cash',26.70),(744,'Cash',26.70),(745,'Cash',26.70),(746,'Cash',26.70),(747,'Cash',26.70),(748,'Cash',26.70),(749,'Cash',26.70),(750,'Cash',26.70),(751,'Cash',26.70),(752,'Cash',26.70),(753,'Cash',26.70),(754,'Cash',26.70),(755,'Cash',26.70),(756,'Cash',26.70),(757,'Cash',26.70),(758,'Cash',26.70),(759,'Cash',26.70),(760,'Cash',26.70),(761,'Debit Card',26.70),(762,'Cash',26.70),(763,'Cash',26.70),(764,'Cash',26.70),(765,'Cash',26.70),(766,'Cash',26.70),(767,'Cash',26.70),(768,'Cash',26.70),(769,'Cash',26.70),(770,'Cash',26.70),(771,'Cash',26.70),(772,'Cash',26.70),(773,'Cash',26.70),(774,'Cash',26.70),(775,'Cash',26.70),(776,'Cash',26.70),(777,'Cash',26.70),(778,'Cash',26.70),(779,'Cash',26.70),(780,'Cash',26.70),(781,'Cash',26.70),(782,'Cash',26.70),(783,'Cash',26.70),(784,'Cash',26.70),(785,'Cash',26.70),(786,'Cash',26.70),(787,'Cash',26.70),(788,'Cash',26.70),(789,'Cash',26.70),(790,'Cash',26.70),(791,'Cash',26.70),(792,'Cash',26.70),(793,'Cash',26.70),(794,'Cash',26.70),(795,'Cash',26.70),(796,'Cash',26.70),(797,'Cash',26.70),(798,'Cash',26.70),(799,'Cash',26.70),(800,'Cash',26.70),(801,'Cash',26.70),(802,'Cash',26.70),(803,'Cash',26.70),(804,'Cash',26.70),(805,'Cash',26.70),(806,'Cash',26.70),(807,'Cash',26.70),(808,'Cash',26.70),(809,'Cash',26.70),(810,'Cash',26.70),(811,'Cash',26.70),(812,'Cash',26.70),(813,'Cash',26.70),(814,'Cash',26.70),(815,'Cash',26.70),(816,'Cash',26.70),(817,'Cash',26.70),(818,'Cash',26.70),(819,'Cash',26.70),(820,'Cash',26.70),(821,'Cash',26.70),(822,'Cash',26.70),(823,'Cash',20.50),(824,'Cash',41.95),(825,'Cash',41.95),(826,'Cash',41.95),(827,'Cash',41.95),(828,'Cash',41.95),(829,'Cash',41.95),(830,'Cash',41.95),(831,'Cash',41.95),(832,'Cash',41.95),(833,'Cash',41.95),(834,'Cash',41.95),(835,'Cash',41.95),(836,'Cash',41.95),(837,'Cash',41.95),(838,'Cash',41.95),(839,'Cash',41.95),(840,'Cash',41.95),(841,'Cash',41.95),(842,'Cash',41.95),(843,'Cash',41.95),(844,'Cash',41.95),(845,'Cash',41.95),(846,'Cash',41.95),(847,'Cash',41.95),(848,'Cash',41.95),(849,'Cash',41.95),(850,'Cash',41.95),(851,'Cash',41.95),(852,'Cash',41.95),(853,'Cash',41.95),(854,'Cash',41.95),(855,'Cash',41.95),(856,'Cash',41.95),(857,'Cash',41.95),(858,'Cash',41.95),(859,'Cash',41.95),(860,'Cash',41.95),(861,'Cash',41.95),(862,'Cash',41.95),(863,'Cash',41.95),(864,'Cash',41.95),(865,'Cash',41.95),(866,'Cash',41.95),(867,'Cash',41.95),(868,'Cash',41.95),(869,'Cash',41.95),(870,'Cash',41.95),(871,'Cash',41.95),(872,'Cash',41.95),(873,'Cash',41.95),(874,'Cash',41.95),(875,'Cash',41.95),(876,'Cash',41.95),(877,'Cash',41.95),(878,'Cash',41.95),(879,'Cash',41.95),(880,'Cash',41.95),(881,'Cash',41.95),(882,'Cash',41.95),(883,'Cash',41.95),(884,'Cash',41.95),(885,'Cash',41.95),(886,'Cash',41.95),(887,'Cash',41.95),(888,'Cash',41.95),(889,'Cash',41.95),(890,'Cash',41.95),(891,'Cash',41.95),(892,'Cash',41.95),(893,'Cash',41.95),(894,'Cash',26.70),(895,'Cash',46.75),(896,'Cash',46.15),(897,'Cash',36.20),(898,'Cash',89.15),(899,'Cash',27.85),(900,'Cash',35.00),(901,'Cash',24.45),(902,'Cash',43.95),(903,'Cash',26.85),(904,'Cash',35.00),(905,'Cash',15.50),(906,'Cash',24.45),(907,'Cash',21.10),(908,'Cash',58.40),(909,'Cash',25.95),(910,'Cash',24.45),(911,'Cash',17.25),(912,'Cash',35.45),(913,'Cash',20.90),(914,'Cash',22.90),(915,'Cash',30.90),(916,'Cash',26.90),(917,'Cash',23.95),(918,'Cash',30.90),(919,'Cash',29.50),(920,'Cash',24.45),(921,'Cash',24.45),(922,'Cash',24.45),(923,'Cash',34.45),(924,'Cash',19.50),(925,'Cash',15.95),(926,'Cash',6.95),(927,'Cash',10.00),(928,'Cash',10.55),(929,'Cash',19.50),(930,'Cash',10.55),(931,'Cash',40.05),(932,'Cash',19.50),(933,'Cash',6.95),(934,'Cash',26.45),(935,'Cash',15.50),(936,'Cash',10.55),(937,'Cash',30.05),(938,'Cash',24.45),(939,'Cash',15.50),(940,'Cash',15.50),(941,'Cash',15.50),(942,'Cash',10.55),(943,'Cash',24.45),(944,'Cash',4.95),(945,'Cash',15.50),(946,'Cash',10.55),(947,'Cash',4.95),(948,'Cash',24.45),(949,'Cash',24.45),(950,'Cash',100.00),(951,'Cash',10.55),(952,'Cash',22.50),(953,'Cash',10.55),(954,'Cash',10.55),(955,'Cash',4.95),(956,'Cash',24.45),(957,'Cash',10.55),(958,'Cash',22.50),(959,'Cash',19.50),(960,'Cash',15.50),(961,'Cash',18.90),(962,'Cash',19.50),(963,'Cash',11.90),(964,'Cash',15.50),(965,'Cash',15.50),(966,'Cash',4.95),(967,'Cash',20.90),(968,'Cash',15.50),(969,'Cash',19.50),(970,'Cash',4.95),(971,'Cash',4.95),(972,'Cash',22.45),(973,'Cash',17.50),(974,'Cash',17.50),(975,'Cash',17.50),(976,'Cash',28.05),(977,'Cash',18.90),(978,'Cash',9.90),(979,'Cash',19.50),(980,'Cash',19.50),(981,'Cash',10.55),(982,'Cash',15.50),(983,'Cash',30.05),(984,'Cash',16.90),(985,'Cash',0.00),(986,'Cash',4.95),(987,'Cash',11.00),(988,'Cash',24.45),(989,'Cash',17.50),(990,'Cash',22.30),(991,'Cash',18.50),(992,'Cash',36.00),(993,'Cash',11.00),(994,'Cash',11.75),(995,'Cash',10.55),(996,'Cash',10.55),(997,'Cash',30.05),(998,'Cash',10.55),(999,'Cash',10.55),(1000,'Cash',100.00),(1001,'Cash',22.30),(1002,'Cash',10.55),(1003,'Cash',10.55),(1004,'Cash',10.55),(1005,'Cash',10.55),(1006,'Cash',10.55),(1007,'Cash',19.50),(1008,'Cash',10.55),(1009,'Cash',14.95),(1010,'Cash',15.50),(1011,'Cash',4.95),(1012,'Cash',24.45),(1013,'Cash',19.50),(1014,'Cash',16.90),(1015,'Cash',100.00),(1016,'Cash',11.95),(1017,'Cash',19.50),(1018,'Cash',43.95),(1019,'Cash',6.95),(1020,'Cash',24.45),(1021,'Cash',-29.40),(1022,'Cash',24.45),(1023,'Cash',8.00),(1024,'Cash',24.45),(1025,'Cash',40.00),(1026,'Cash',5.95),(1027,'Cash',10.55),(1028,'Cash',4.95),(1029,'Cash',17.50),(1030,'Cash',37.00),(1031,'Cash',17.50),(1032,'Cash',13.95),(1033,'Cash',24.45),(1034,'Cash',17.50),(1035,'Cash',17.50),(1036,'Cash',17.50),(1037,'Cash',6.95),(1038,'Cash',24.45),(1039,'Cash',6.95),(1040,'Cash',24.45),(1041,'Cash',41.95),(1042,'Cash',17.50),(1043,'Cash',17.50),(1044,'Cash',17.50),(1045,'Cash',19.50),(1046,'Cash',17.50),(1047,'Cash',17.50),(1048,'Cash',6.95),(1049,'Cash',10.55),(1050,'Cash',17.50),(1051,'Cash',10.95),(1052,'Cash',17.50),(1053,'Cash',17.50),(1054,'Cash',6.95),(1055,'Cash',24.45),(1056,'Cash',17.50),(1057,'Cash',6.95),(1058,'Cash',17.50),(1059,'Cash',19.50),(1060,'Cash',17.50),(1061,'Cash',17.50),(1062,'Cash',24.45),(1063,'Cash',17.50),(1064,'Cash',17.50),(1065,'Cash',17.50),(1066,'Cash',30.05),(1067,'Cash',10.55),(1068,'Cash',15.50),(1069,'Cash',14.95),(1070,'Cash',27.90),(1071,'Cash',31.45),(1072,'Cash',18.50),(1073,'Cheque',17.50),(1074,'Cheque',10.55),(1075,'Cash',24.45),(1076,'Cash',17.50),(1077,'Cash',17.50),(1078,'Cash',17.50),(1079,'Cash',19.50),(1080,'Cash',17.50),(1081,'Cash',6.95),(1082,'Cash',6.95),(1083,'Cash',24.45),(1084,'Cash',17.50),(1085,'Cash',43.95),(1086,'Cash',17.50),(1087,'Cash',14.95),(1088,'Cash',24.45),(1089,'Cash',28.50),(1090,'Cash',17.50),(1091,'Cash',17.50),(1092,'Cash',13.95),(1093,'Cash',24.45),(1094,'Cash',24.45),(1095,'Cash',24.45),(1096,'Cash',24.45),(1097,'Cash',17.50),(1098,'Cash',11.00),(1099,'Cash',37.40),(1100,'Cash',24.45),(1101,'Cash',18.50),(1102,'Card',17.50),(1103,'Card',17.50),(1104,'Cash',17.50),(1105,'Cash',17.50),(1106,'Cash',9.95),(1107,'Cash',9.95),(1108,'Cash',9.95),(1109,'Cash',24.95),(1110,'Cash',10.78),(1111,'Cash',31.50),(1112,'Cash',24.95),(1113,'Cash',28.00),(1114,'Cash',20.00),(1115,'Cash',20.00),(1116,'Cash',20.00),(1117,'Cash',12.95),(1118,'Cash',12.95),(1119,'Cash',12.95),(1120,'Cash',12.95),(1121,'Cash',8.95),(1122,'Cash',8.95),(1123,'Cash',8.95),(1124,'Cash',10.95),(1125,'Cash',8.95),(1126,'Cash',8.95),(1127,'Cash',12.95),(1128,'Cash',10.00),(1129,'Cash',19.95),(1130,'Cash',1.50),(1131,'Cash',20.00),(1132,'Cash',10.00),(1133,'Cash',7.95),(1134,'Cash',10.00),(1135,'Cash',1.71),(1136,'Cash',302.93),(1137,'Cash',11.81),(1138,'Cash',15.00),(1139,'Cash',42.64),(1140,'Cash',10.00),(1141,'Cash',11.00),(1142,'Cash',100.00),(1143,'Cash',68.89),(1144,'Cash',93.20),(1145,'Cash',28.04),(1146,'Cash',57.40),(1147,'Cash',9.90),(1148,'Cash',9.90),(1149,'Cash',99.28),(1150,'Cash',208.08),(1151,'Cash',50.00),(1152,'Cash',5.00),(1153,'Cash',33.49),(1154,'Cash',7.50),(1155,'Cash',7.50),(1156,'Cash',100.00),(1157,'Cash',51.68),(1158,'Cash',5.00),(1159,'Cash',10.00),(1160,'Cash',20.00),(1161,'Cash',2.50),(1162,'Cash',16.52),(1163,'Cash',100.00),(1164,'Cash',26.97),(1165,'Cash',370.00),(1166,'Cash',60.00),(1167,'Cash',10.55),(1168,'Cash',20.00),(1169,'Cash',266.30),(1170,'Cash',9.21),(1171,'Cash',10.00),(1172,'Cash',150.00),(1173,'Cash',300.00),(1174,'Cash',50.00),(1175,'Cash',19.43),(1176,'Cash',5.00),(1177,'Cash',302.93),(1178,'Cash',390.60),(1179,'Cash',384.00),(1180,'Cash',555.66),(1181,'Cash',134.90),(1182,'Cash',99.28),(1183,'Cash',234.16),(1184,'Cash',2.50),(1185,'Cash',2.50),(1186,'Cash',390.00),(1187,'Cash',5.00),(1188,'Cash',5.73),(1189,'Cash',11.00),(1190,'Cash',10.20),(1191,'Cash',69.79);
/*!40000 ALTER TABLE `ospos_sales_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_sales_suspended`
--

DROP TABLE IF EXISTS `ospos_sales_suspended`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_suspended` (
  `sale_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `customer_id` int(10) DEFAULT NULL,
  `employee_id` int(10) NOT NULL DEFAULT '0',
  `comment` text NOT NULL,
  `invoice_number` varchar(32) DEFAULT NULL,
  `sale_id` int(10) NOT NULL AUTO_INCREMENT,
  `payment_type` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`sale_id`),
  UNIQUE KEY `invoice_number` (`invoice_number`),
  KEY `customer_id` (`customer_id`),
  KEY `employee_id` (`employee_id`),
  CONSTRAINT `ospos_sales_suspended_ibfk_1` FOREIGN KEY (`employee_id`) REFERENCES `ospos_employees` (`person_id`),
  CONSTRAINT `ospos_sales_suspended_ibfk_2` FOREIGN KEY (`customer_id`) REFERENCES `ospos_customers` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_suspended`
--

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

--
-- Table structure for table `ospos_sales_suspended_items`
--

DROP TABLE IF EXISTS `ospos_sales_suspended_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_suspended_items` (
  `sale_id` int(10) NOT NULL DEFAULT '0',
  `item_id` int(10) NOT NULL DEFAULT '0',
  `description` varchar(30) DEFAULT NULL,
  `serialnumber` varchar(30) DEFAULT NULL,
  `line` int(3) NOT NULL DEFAULT '0',
  `quantity_purchased` decimal(15,2) NOT NULL DEFAULT '0.00',
  `item_cost_price` decimal(15,2) NOT NULL,
  `item_unit_price` decimal(15,2) NOT NULL,
  `discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
  `item_location` int(11) NOT NULL,
  PRIMARY KEY (`sale_id`,`item_id`,`line`),
  KEY `sale_id` (`sale_id`),
  KEY `item_id` (`item_id`),
  KEY `ospos_sales_suspended_items_ibfk_3` (`item_location`),
  CONSTRAINT `ospos_sales_suspended_items_ibfk_1` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`),
  CONSTRAINT `ospos_sales_suspended_items_ibfk_2` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales_suspended` (`sale_id`),
  CONSTRAINT `ospos_sales_suspended_items_ibfk_3` FOREIGN KEY (`item_location`) REFERENCES `ospos_stock_locations` (`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_suspended_items`
--

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

--
-- Table structure for table `ospos_sales_suspended_items_taxes`
--

DROP TABLE IF EXISTS `ospos_sales_suspended_items_taxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_suspended_items_taxes` (
  `sale_id` int(10) NOT NULL,
  `item_id` int(10) NOT NULL,
  `line` int(3) NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL,
  `percent` decimal(15,2) NOT NULL,
  PRIMARY KEY (`sale_id`,`item_id`,`line`,`name`,`percent`),
  KEY `item_id` (`item_id`),
  CONSTRAINT `ospos_sales_suspended_items_taxes_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales_suspended_items` (`sale_id`),
  CONSTRAINT `ospos_sales_suspended_items_taxes_ibfk_2` FOREIGN KEY (`item_id`) REFERENCES `ospos_items` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_suspended_items_taxes`
--

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

--
-- Table structure for table `ospos_sales_suspended_payments`
--

DROP TABLE IF EXISTS `ospos_sales_suspended_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sales_suspended_payments` (
  `sale_id` int(10) NOT NULL,
  `payment_type` varchar(40) NOT NULL,
  `payment_amount` decimal(15,2) NOT NULL,
  PRIMARY KEY (`sale_id`,`payment_type`),
  CONSTRAINT `ospos_sales_suspended_payments_ibfk_1` FOREIGN KEY (`sale_id`) REFERENCES `ospos_sales_suspended` (`sale_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sales_suspended_payments`
--

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

--
-- Table structure for table `ospos_sessions`
--

DROP TABLE IF EXISTS `ospos_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_sessions` (
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `user_data` text,
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_sessions`
--

LOCK TABLES `ospos_sessions` WRITE;
/*!40000 ALTER TABLE `ospos_sessions` DISABLE KEYS */;
INSERT INTO `ospos_sessions` VALUES ('0528c13639b18cac4d4f78b230cc56d3','27.123.138.50','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563471668,'a:14:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:28:\"sales_invoice_number_enabled\";s:5:\"false\";s:13:\"item_location\";s:1:\"2\";s:8:\"cartRecv\";a:0:{}s:9:\"recv_mode\";s:7:\"receive\";s:8:\"supplier\";i:-1;s:19:\"recv_invoice_number\";s:1:\"0\";s:4:\"cart\";a:1:{i:1;a:14:{s:7:\"item_id\";s:1:\"1\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:16:\"Lamb Neck  Whole\";s:11:\"item_number\";s:4:\"1011\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";s:6:\"18.624\";s:5:\"price\";s:5:\"11.75\";}}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('09e5163b3ae4ef643a636fb1b2ee0a32','27.123.136.133','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1566855376,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('0af0601afb5a30dfc7862696d9daca4a','45.117.247.240','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36',1556866627,'a:10:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"4\";s:13:\"sale_location\";s:1:\"2\";s:13:\"item_location\";s:1:\"2\";s:28:\"sales_invoice_number_enabled\";s:4:\"true\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"2\";}'),('0ba51a6f54700c3b9bc5bf53a11c3c8b','27.123.138.120','Mozilla/5.0 (Linux; Android 8.0.0; SM-G930F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/5',1563524127,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('0ca0bf507d9df9c81e1fcbf6204df0c9','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565050508,''),('117c0a7097faf48ab0418c4dbb4a5495','27.123.136.112','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563157742,'a:9:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:8:\"payments\";a:1:{s:4:\"Cash\";a:2:{s:12:\"payment_type\";s:4:\"Cash\";s:14:\"payment_amount\";s:5:\"18.50\";}}s:8:\"customer\";i:-1;s:7:\"comment\";s:0:\"\";s:20:\"sales_invoice_number\";s:1:\"3\";s:9:\"sale_mode\";s:4:\"sale\";}'),('138f2b8dcad1014d484e742ea138e257','66.102.6.227','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557793702,''),('1406f10a751fc7336ff48f12cd253680','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558125364,''),('146f03e51e66537188545cc8d38bd965','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563068599,''),('1feb7fb8150a477ed0c45fc133051772','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563816700,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('2579ffb80629bf5e76a19a329b891e8e','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558831358,''),('29caf6bb68768b0ee1b9db866ca38c9e','27.123.136.255','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1558638540,''),('2ad7306c553e72113e6424859c1ba952','202.151.26.35','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36',1556571322,''),('2afcc4933ab625f96ae4f7267b76b953','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558554921,''),('2e2e955a7e003fa5e98e8b4cc61ee2df','64.233.172.30','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558212913,''),('3428afb1fa72b7097d29068ce25e2e39','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565051176,''),('392b62d3e6b494ec409fb88a38b9b90b','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566426473,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('39aa5adb28f281d35c153b5d8cfb32d6','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558654757,''),('3d8a57e0c4f3049afc9d9f472dd930b1','10.45.160.107','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1503958076,''),('3d9a63bdd50f5c5254d0b2853d6c6f96','64.233.172.30','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558993659,''),('3e273a0ad77c1c30573e950dda317217','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566501112,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('45cae005bf9fad4893acb68f497ad66f','10.45.160.107','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',1504033332,''),('45d85ddc86e35d863d7a2c66c9f524b7','10.45.160.107','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1503869498,'a:9:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:13:\"item_location\";s:1:\"2\";s:4:\"cart\";a:1:{i:1;a:14:{s:7:\"item_id\";s:1:\"3\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:17:\"Chicken Thighs KG\";s:11:\"item_number\";s:4:\"1001\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";d:0.033000000000000002;s:8:\"discount\";i:0;s:8:\"in_stock\";s:6:\"-1.000\";s:5:\"price\";s:4:\"9.95\";}}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"0\";}'),('4723fe9721691677fc1478e34e8bbd86','64.233.172.136','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557536153,''),('48161c50776cb0c43c0680df3734a89f','10.45.160.107','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1504068573,'a:4:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:13:\"item_location\";s:1:\"2\";}'),('4952560dc1ea4e7a24a2c727e4ee1389','64.233.172.138','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557382642,''),('4a4c4dd5b569669c7727ae109152fa90','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558125364,''),('50d2b3ab764e140519c807e22487d422','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566425965,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('543aa719f3f2f68c26bae46731749dce','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558212913,''),('5a646fd67e5612c09a0663436ee35f18','45.117.247.241','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1566500066,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('5b484fc8c1860f3cce02803f98594f31','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558946494,''),('5e162f52aa6d11a8cc214c197a7aeae2','64.233.172.140','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557689203,''),('6237e24f913b350834c3620b8d2cecea','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565051526,''),('62cf61367d0f8430f5a3ddeb317538a7','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557953829,''),('6669d348d54a25229752d719075ef24d','64.233.172.138','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557433960,''),('6a57857b68bdbda60baa37c8f7bb3cd7','27.123.138.85','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1564515652,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('6abfe78a661fcaae328f984a1993365b','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1559165536,''),('6cf4606c603508cc81b8d60366065c4c','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1559165535,''),('7397404558368b84f15036f4249db97d','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558993659,''),('740f0665b7bd26582dfff3fc3daf9602','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565050636,''),('78d4976299797464ceb888eb7691ce1d','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566421814,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('7b6788033c20f30c2e5ec42b944eac2a','64.233.172.30','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558728376,''),('7bb7705ac776e74fb9006bb92a98ab6a','66.102.6.225','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557793702,''),('7c5297c992cf305b88f9fa18e6b0bfc8','64.233.172.138','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557382642,''),('7df90bd6eb8449ada7ed20c550f99208','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565050324,''),('7e8f2a0af817a1e63f832ad84e42b961','10.45.160.130','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1504067648,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"0\";}'),('7ee4d92cb86a42bbede6a4ca56adf7c1','27.123.136.112','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563154561,''),('8212dc51f5241a888fc024c178721c66','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558728376,''),('87576d8202465fd799852b723e380162','27.123.136.148','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1566792721,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('87fc004d867d2bc469c249cb40f6e0f9','27.123.136.71','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1559512407,''),('8851ec9efd6ba844ea026ceb2c874d67','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1557963992,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:1:{i:1;a:14:{s:7:\"item_id\";s:2:\"44\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:18:\"Chicken Supreme kg\";s:11:\"item_number\";s:4:\"1039\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";s:5:\"3.292\";s:5:\"price\";s:5:\"17.50\";}}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"2\";}'),('89a398dcf188c2137c2977243831ee50','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565051466,''),('9089602f161437c38e85ea1c5d1eb1f0','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557953829,''),('90c2da26525fc2df70ac8bce71af8229','64.233.172.30','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558610457,''),('92b96615c6bcc05b5c0c081ab0469fed','27.123.137.20','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1561082318,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('996cac30a5c1f4cfe6c3c501639da0f1','27.123.136.120','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36',1557378125,''),('9c162db8386f29728c3e5ac9cbbf029f','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1559674535,'a:9:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"item_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('9f60a8645a6e9eb438eba1e0e875282d','202.151.26.35','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1563166084,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('ab4a721f0515123dc5e29df6d94eef90','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558831358,''),('ad303a90a6a0e60ae16bf58eb608c5bf','103.1.181.2','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1560387596,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('ad5ed1928eddd4dea8c61ec906444e45','64.233.172.140','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557481290,''),('b19feadc14a6cd944dba9f3396935126','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1562875057,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:1:{i:1;a:14:{s:7:\"item_id\";s:2:\"16\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:17:\"Lamb BBQ Chops KG\";s:11:\"item_number\";s:4:\"1015\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";s:6:\"12.632\";s:5:\"price\";s:5:\"18.50\";}}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('b3c8f30a85c08f83585630b5aa3e45bf','27.123.136.181','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1560915998,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('b64a1185f0e93dcafed0200aa81c26fd','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558654757,''),('bf2b054bcac83f9ab178458fd5028d67','64.233.172.140','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557536150,''),('c087074f661cbce99e69aed8747b96db','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565051326,''),('c0d3c1f074c694f2abcc2482f095c2b7','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566426293,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('c13dcddd9f227f198080ad3ca1782bbe','27.123.138.90','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563316623,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('c3406346129fdb4b0f5099c39df26cd1','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558946494,''),('c49f95acea50c411f1f787d9e1cb458d','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565047196,''),('c637df8c5b81e1087dba54d7fbbef073','27.123.136.73','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1560730368,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('c8ddda620b08920aef1e597100076c20','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565050294,''),('c8ef6f0d91a686f7e80a78e253b6436a','27.123.138.97','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563301653,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('cc2dc0139e71980bd488e0d8ab9c44a6','64.233.172.94','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558392027,''),('cc64352d061d2deb1bac11d542650e07','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1556070359,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('cd95a452f279ad7bbd6051ea3102e493','64.233.172.94','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558392027,''),('d37b39435d29a965f4b1964b62e6c512','10.45.160.3','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36',1504067923,'a:13:{s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:4:{i:2;a:14:{s:7:\"item_id\";s:2:\"66\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:2;s:4:\"name\";s:12:\"BEEF 0X TAIL\";s:11:\"item_number\";s:4:\"1073\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";i:0;s:5:\"price\";s:4:\"9.00\";}i:4;a:14:{s:7:\"item_id\";s:2:\"67\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:4;s:4:\"name\";s:11:\"Summon Cods\";s:11:\"item_number\";s:4:\"1074\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";i:0;s:5:\"price\";s:5:\"14.50\";}i:5;a:14:{s:7:\"item_id\";s:1:\"3\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:5;s:4:\"name\";s:17:\"Chicken Thighs KG\";s:11:\"item_number\";s:4:\"1001\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";d:0.063;s:8:\"discount\";i:0;s:8:\"in_stock\";s:6:\"-1.000\";s:5:\"price\";s:4:\"9.95\";}i:7;a:14:{s:7:\"item_id\";s:2:\"75\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:7;s:4:\"name\";s:8:\"Lamb Leg\";s:11:\"item_number\";s:4:\"1075\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";i:0;s:5:\"price\";s:5:\"21.00\";}}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"0\";s:13:\"item_location\";s:1:\"2\";s:8:\"cartRecv\";a:1:{i:1;a:14:{s:7:\"item_id\";s:1:\"6\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:18:\"Chicken Nibbles KG\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";s:5:\"0.000\";s:5:\"price\";s:4:\"0.00\";s:18:\"receiving_quantity\";s:2:\"10\";}}s:9:\"recv_mode\";s:7:\"receive\";s:8:\"supplier\";i:-1;s:19:\"recv_invoice_number\";s:1:\"0\";s:17:\"recv_stock_source\";s:1:\"2\";}'),('d5b3809000bfa3bb6b77944ff3665f30','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565051240,''),('d81454c019699996fe82b8f9d9cb66dd','27.123.136.97','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563687050,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('d9b0ba4171592b4fb3a96e2ef8c59a1c','64.233.172.140','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557481290,''),('dd885fdf54a94aad1cccecf6ad495cc9','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1565068661,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('de8946419a83e47c2d350ba5fb838982','64.233.172.2','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558610457,''),('e129d24c8df2ce8f272fd6dcb2810dcf','103.52.90.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566426423,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('e356dab88d9d8d436516ae56c3f9bf4c','202.151.26.35','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',1563164596,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}'),('e67877362649d11221d5eedf241f3384','27.123.137.181','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1563849858,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('f4e18d15c32ffb59d5a1bf1aae97526d','27.123.136.101','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1556763517,'a:13:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"4\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"0\";s:13:\"item_location\";s:1:\"2\";s:8:\"cartRecv\";a:0:{}s:9:\"recv_mode\";s:7:\"receive\";s:8:\"supplier\";i:-1;s:19:\"recv_invoice_number\";s:1:\"0\";}'),('f8ab5ee0c68689d14c1acf7921e8a5a3','27.123.136.130','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1561610542,'a:3:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:13:\"sale_location\";s:1:\"2\";}'),('fb9944faae7feb1fa8bcb1f269c47754','64.233.172.136','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557433960,''),('fdf88e5d969e79db919c696094234824','64.233.172.140','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1557689203,''),('fe570efff34b7e0a3d85042c754105a7','202.151.26.35','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',1559972985,'a:9:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:1:{i:1;a:14:{s:7:\"item_id\";s:1:\"3\";s:13:\"item_location\";s:1:\"2\";s:10:\"stock_name\";s:11:\"Suva Retail\";s:4:\"line\";i:1;s:4:\"name\";s:17:\"Chicken Thighs KG\";s:11:\"item_number\";s:4:\"1001\";s:11:\"description\";s:0:\"\";s:12:\"serialnumber\";s:0:\"\";s:21:\"allow_alt_description\";s:1:\"0\";s:13:\"is_serialized\";s:1:\"0\";s:8:\"quantity\";i:1;s:8:\"discount\";i:0;s:8:\"in_stock\";s:6:\"-2.000\";s:5:\"price\";s:4:\"9.95\";}}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";s:13:\"item_location\";s:1:\"2\";}'),('fe6e59252f439ba24bed61fed7d34548','64.233.172.4','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1558554921,''),('feb70a706facdf9611827e9f60a9b1dc','103.52.90.42','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',1566445134,'a:8:{s:9:\"user_data\";s:0:\"\";s:9:\"person_id\";s:1:\"1\";s:4:\"cart\";a:0:{}s:9:\"sale_mode\";s:4:\"sale\";s:13:\"sale_location\";s:1:\"2\";s:8:\"customer\";i:-1;s:8:\"payments\";a:0:{}s:20:\"sales_invoice_number\";s:1:\"3\";}');
/*!40000 ALTER TABLE `ospos_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_stock_locations`
--

DROP TABLE IF EXISTS `ospos_stock_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_stock_locations` (
  `location_id` int(11) NOT NULL AUTO_INCREMENT,
  `location_name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`location_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_stock_locations`
--

LOCK TABLES `ospos_stock_locations` WRITE;
/*!40000 ALTER TABLE `ospos_stock_locations` DISABLE KEYS */;
INSERT INTO `ospos_stock_locations` VALUES (1,'stock',1),(2,'Suva Retail',0);
/*!40000 ALTER TABLE `ospos_stock_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ospos_suppliers`
--

DROP TABLE IF EXISTS `ospos_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ospos_suppliers` (
  `person_id` int(10) NOT NULL,
  `company_name` varchar(255) NOT NULL,
  `account_number` varchar(255) DEFAULT NULL,
  `deleted` int(1) NOT NULL DEFAULT '0',
  UNIQUE KEY `account_number` (`account_number`),
  KEY `person_id` (`person_id`),
  CONSTRAINT `ospos_suppliers_ibfk_1` FOREIGN KEY (`person_id`) REFERENCES `ospos_people` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ospos_suppliers`
--

LOCK TABLES `ospos_suppliers` WRITE;
/*!40000 ALTER TABLE `ospos_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `ospos_suppliers` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2019-09-30 11:04:16
