-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Sep 04, 2025 at 05:28 AM
-- Server version: 10.11.14-MariaDB
-- PHP Version: 8.3.23

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `dalemari_pfane1`
--

-- --------------------------------------------------------

--
-- Table structure for table `acknowledgeshipment`
--

CREATE TABLE `acknowledgeshipment` (
  `id` int(11) NOT NULL,
  `stockmovementid` int(11) NOT NULL,
  `notes` varchar(500) NOT NULL,
  `name` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `phone` varchar(100) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `addresses`
--

CREATE TABLE `addresses` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `details` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `agent`
--

CREATE TABLE `agent` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `contactperson` varchar(100) NOT NULL,
  `phone` varchar(100) NOT NULL,
  `mobile` varchar(100) NOT NULL,
  `address` varchar(255) NOT NULL,
  `countryid` int(11) NOT NULL,
  `cityid` int(11) NOT NULL,
  `email` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `agentusers`
--

CREATE TABLE `agentusers` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `mobile` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `usertype` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `agentusers`
--

INSERT INTO `agentusers` (`id`, `userid`, `name`, `username`, `password`, `mobile`, `email`, `usertype`, `status`) VALUES
(11, 11, 'Istvan', 'istvan28Gdog', 'h&gg8KKt4E#s0001', '0756387050', 'istvan@pfane.com', 0, 1),
(10, 11, 'Zoltan331', 'Zoltan331', 'Zoltan3311!', '', 'zoltan@pfane.org', 0, 1),
(8, 15, 'Caleab Cummings', 'Caleab123', 'Caleab1234abc', '', 'sales@pfane.com', 0, 1),
(9, 7, 'Dale Scott Marion', 'cell@pfane.com', 'h&gg8KKt4E#s0001', '7753414838', 'dale@pfane.com', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `audit`
--

CREATE TABLE `audit` (
  `modified_by_ip` varchar(39) NOT NULL DEFAULT '',
  `modified_by_user` varchar(50) NOT NULL DEFAULT '',
  `modified_when` bigint(14) NOT NULL,
  `modified_from` bigint(14) NOT NULL,
  `modified_to` bigint(14) NOT NULL,
  `modified_why` varchar(250) NOT NULL DEFAULT '',
  `user_modified` varchar(50) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `baskets`
--

CREATE TABLE `baskets` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `weight` float(13,4) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `baskets`
--

INSERT INTO `baskets` (`id`, `userid`, `weight`, `status`) VALUES
(1, 1, 2.0000, 1),
(2, 2, 8.2200, 1),
(3, 7, 2.0000, 1),
(4, 10, 1.0000, 1),
(5, 11, 2.0000, 1),
(6, 12, 2.0000, 1),
(7, 14, 2.0000, 1),
(8, 15, 2.0000, 1),
(9, 16, 2.0000, 1);

-- --------------------------------------------------------

--
-- Table structure for table `blockip`
--

CREATE TABLE `blockip` (
  `id` int(11) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) DEFAULT NULL,
  `usertype` varchar(255) NOT NULL,
  `sysdate` datetime NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `booktruck`
--

CREATE TABLE `booktruck` (
  `id` int(11) NOT NULL,
  `stockmovementscheduleid` int(11) NOT NULL,
  `transporterid` int(11) NOT NULL,
  `vehicletypeid` int(11) NOT NULL,
  `date` date NOT NULL,
  `noofvehicles` int(11) NOT NULL,
  `loadfromcountry` int(11) NOT NULL,
  `loadfrom` int(11) NOT NULL,
  `destinationcountry` int(11) NOT NULL,
  `destination` int(11) NOT NULL,
  `tripcost` float NOT NULL,
  `advancepayment` float(13,2) NOT NULL,
  `declaration` int(11) NOT NULL,
  `loaddate` date NOT NULL,
  `loadtime` varchar(255) NOT NULL,
  `driverenname` varchar(255) NOT NULL,
  `driverarname` varchar(255) NOT NULL,
  `driverpassportpage1` varchar(255) NOT NULL,
  `driverpassportpage2` varchar(255) NOT NULL,
  `driverpassportpage3` varchar(255) NOT NULL,
  `truckplateno` varchar(100) NOT NULL,
  `driverlicense` varchar(255) NOT NULL,
  `licenseexpiry` date NOT NULL,
  `driverresidentid1` varchar(255) NOT NULL,
  `driverresidentid2` varchar(255) NOT NULL,
  `driverlocaladdress` varchar(255) NOT NULL,
  `drivernationality` varchar(255) NOT NULL,
  `saudimobile` varchar(100) NOT NULL,
  `uaemobile` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `brand`
--

CREATE TABLE `brand` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `brand`
--

INSERT INTO `brand` (`id`, `userid`, `name`, `arname`, `status`) VALUES
(1, 1, 'Computer Motherboard', 'Computer Motherboard', 1),
(2, 1, 'CPU', 'CPU', 1),
(3, 1, 'RAM', 'RAM', 1),
(4, 1, 'IP Slot Card', 'IP Slot Card', 1),
(5, 1, 'Misc', 'Misc.', 1),
(6, 1, 'Manufacturing Frame', 'Manufacturing Frame', 1),
(7, 1, 'Sub Product', 'Sub Product', 1),
(8, 1, 'General Circuit Board', 'General Circuit Board', 1),
(9, 1, 'CellPhone Motherboard', 'CellPhone Motherboard', 1),
(10, 1, 'Laptop Motherboard', 'Laptop Motherboard', 1),
(11, 1, 'Component', 'Component', 1),
(12, 1, 'Telecom Board', 'Telecom Board', 1),
(13, 1, 'Gold Plated Blank', 'Gold Plated Blank', 1);

-- --------------------------------------------------------

--
-- Table structure for table `businessformdetail`
--

CREATE TABLE `businessformdetail` (
  `id` int(11) NOT NULL,
  `orderid` int(11) NOT NULL,
  `businessformid` int(11) NOT NULL,
  `adminid` int(11) NOT NULL,
  `rank` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `businessformdetail`
--

INSERT INTO `businessformdetail` (`id`, `orderid`, `businessformid`, `adminid`, `rank`, `status`) VALUES
(8, 176, 24, 14, 0, 1),
(7, 176, 15, 14, 0, 1),
(16, 177, 15, 14, 1, 1),
(17, 177, 20, 14, 2, 1),
(9, 176, 26, 14, 0, 1),
(15, 173, 24, 14, 1, 1),
(14, 173, 22, 14, 2, 1),
(13, 173, 21, 14, 3, 1),
(18, 177, 21, 14, 3, 1),
(19, 177, 22, 14, 4, 1),
(20, 177, 23, 14, 5, 1),
(21, 177, 24, 14, 6, 1),
(22, 177, 26, 14, 7, 1),
(23, 174, 9, 11, 1, 1),
(24, 179, 9, 11, 1, 1),
(25, 179, 17, 11, 2, 1),
(26, 181, 9, 11, 1, 1),
(27, 181, 17, 11, 2, 1),
(28, 182, 15, 14, 1, 1),
(29, 182, 20, 14, 2, 1),
(30, 182, 21, 14, 3, 1),
(31, 182, 22, 14, 4, 1),
(32, 182, 23, 14, 5, 1),
(33, 182, 24, 14, 6, 1),
(34, 182, 26, 14, 7, 1),
(35, 183, 15, 14, 1, 1),
(36, 183, 27, 14, 4, 1),
(37, 183, 20, 14, 2, 1),
(38, 183, 21, 14, 3, 1),
(39, 183, 22, 14, 5, 1),
(40, 183, 23, 14, 6, 1),
(41, 183, 26, 14, 10, 1),
(42, 184, 14, 14, 1, 1),
(43, 184, 28, 14, 2, 1),
(44, 185, 14, 14, 1, 1),
(45, 185, 28, 14, 2, 1),
(46, 186, 9, 11, 1, 1),
(47, 186, 17, 11, 2, 1),
(48, 190, 9, 11, 1, 1),
(49, 190, 18, 11, 2, 1),
(50, 191, 9, 11, 1, 1),
(51, 191, 18, 11, 2, 1),
(52, 192, 9, 11, 1, 1),
(53, 192, 18, 11, 2, 1),
(54, 193, 9, 11, 1, 1),
(55, 193, 18, 11, 2, 1),
(56, 195, 14, 14, 1, 1),
(57, 197, 14, 14, 1, 1),
(58, 199, 14, 14, 1, 1),
(59, 196, 9, 11, 1, 1),
(60, 196, 17, 11, 2, 1),
(61, 198, 9, 11, 1, 1),
(62, 198, 18, 11, 2, 1),
(63, 200, 3, 7, 1, 1),
(64, 200, 4, 7, 2, 1),
(65, 200, 16, 7, 3, 1),
(66, 201, 9, 11, 1, 1),
(67, 201, 17, 11, 2, 1),
(68, 202, 9, 11, 1, 1),
(69, 202, 17, 11, 2, 1),
(70, 203, 9, 11, 1, 1),
(71, 203, 18, 11, 2, 1),
(72, 204, 9, 11, 1, 1),
(73, 204, 9, 11, 1, 1),
(74, 204, 17, 11, 2, 1),
(75, 204, 9, 11, 1, 1),
(76, 204, 18, 11, 2, 1),
(77, 205, 9, 11, 1, 1),
(78, 205, 18, 11, 2, 1),
(79, 205, 9, 11, 1, 1),
(80, 205, 18, 11, 1, 1),
(81, 206, 9, 11, 1, 1),
(82, 206, 18, 11, 2, 1),
(83, 207, 9, 11, 1, 1),
(84, 207, 18, 11, 2, 1),
(85, 208, 9, 11, 1, 1),
(86, 208, 18, 11, 2, 1),
(87, 209, 9, 11, 1, 1),
(88, 209, 18, 11, 2, 1),
(89, 210, 9, 11, 1, 1),
(90, 210, 19, 11, 2, 1),
(91, 213, 9, 11, 1, 1),
(92, 213, 17, 11, 2, 1),
(93, 214, 29, 11, 1, 1),
(94, 214, 30, 11, 2, 1),
(95, 211, 29, 11, 1, 1),
(96, 212, 29, 11, 1, 1),
(97, 215, 9, 11, 1, 1),
(98, 215, 19, 11, 2, 1),
(99, 216, 9, 11, 1, 1),
(100, 216, 30, 11, 2, 1),
(101, 217, 9, 11, 1, 1),
(102, 217, 18, 11, 2, 1),
(103, 218, 9, 11, 1, 1),
(104, 218, 19, 11, 2, 1),
(105, 219, 9, 11, 1, 1),
(106, 219, 19, 11, 2, 1),
(107, 220, 9, 11, 1, 1),
(108, 220, 19, 11, 2, 1),
(109, 221, 9, 11, 1, 1),
(110, 221, 18, 11, 3, 1),
(111, 225, 9, 11, 1, 1),
(112, 225, 29, 11, 2, 1),
(113, 225, 30, 11, 3, 1),
(114, 225, 9, 11, 1, 1),
(115, 225, 29, 11, 2, 1),
(116, 225, 30, 11, 3, 1),
(117, 225, 9, 11, 1, 1),
(118, 225, 29, 11, 2, 1),
(119, 225, 30, 11, 3, 1),
(120, 226, 9, 11, 1, 1),
(121, 226, 29, 11, 2, 1),
(122, 226, 30, 11, 3, 1),
(123, 227, 9, 11, 1, 1),
(124, 227, 29, 11, 2, 1),
(125, 227, 30, 11, 3, 1),
(126, 228, 9, 11, 1, 1),
(127, 228, 29, 11, 2, 1),
(128, 228, 30, 11, 3, 1),
(129, 229, 9, 11, 1, 1),
(130, 230, 9, 11, 1, 1),
(131, 230, 30, 11, 3, 1),
(132, 230, 31, 11, 2, 1),
(133, 230, 9, 11, 1, 1),
(134, 230, 30, 11, 3, 1),
(135, 230, 31, 11, 2, 1),
(136, 231, 9, 11, 1, 1),
(137, 231, 30, 11, 3, 1),
(138, 231, 31, 11, 2, 1),
(139, 232, 30, 11, 2, 1),
(140, 232, 32, 11, 1, 1),
(141, 233, 30, 11, 2, 1),
(142, 233, 32, 11, 1, 1),
(143, 234, 30, 11, 2, 1),
(144, 234, 32, 11, 1, 1),
(145, 234, 30, 11, 2, 1),
(146, 234, 32, 11, 1, 1),
(147, 235, 30, 11, 2, 1),
(148, 235, 32, 11, 1, 1),
(149, 236, 30, 11, 2, 1),
(150, 236, 32, 11, 1, 1),
(151, 237, 30, 11, 2, 1),
(152, 237, 32, 11, 1, 1),
(153, 222, 32, 11, 1, 1),
(154, 238, 32, 11, 1, 1),
(155, 239, 30, 11, 2, 1),
(156, 239, 32, 11, 1, 1),
(157, 240, 30, 11, 2, 1),
(158, 240, 33, 11, 1, 1),
(159, 241, 30, 11, 2, 1),
(160, 241, 33, 11, 1, 1),
(161, 242, 30, 11, 2, 1),
(162, 242, 33, 11, 1, 1),
(163, 243, 30, 11, 2, 1),
(164, 243, 33, 11, 1, 1),
(165, 245, 30, 11, 2, 1),
(166, 245, 33, 11, 1, 1),
(167, 246, 9, 11, 1, 1),
(168, 246, 19, 11, 2, 1),
(169, 247, 33, 11, 1, 1),
(170, 248, 30, 11, 2, 1),
(171, 248, 33, 11, 1, 1),
(172, 250, 33, 11, 1, 1),
(173, 251, 30, 11, 2, 1),
(174, 251, 33, 11, 1, 1),
(175, 252, 33, 11, 1, 1),
(176, 254, 19, 11, 1, 1),
(177, 254, 30, 11, 2, 1),
(178, 257, 30, 11, 2, 1),
(179, 257, 34, 11, 1, 1),
(180, 253, 9, 11, 1, 1),
(181, 255, 9, 11, 1, 1),
(182, 256, 9, 11, 1, 1),
(183, 256, 18, 11, 2, 1),
(184, 258, 30, 11, 2, 1),
(185, 258, 33, 11, 1, 1),
(186, 260, 30, 11, 2, 1),
(187, 260, 34, 11, 1, 1),
(188, 259, 33, 11, 1, 1),
(189, 261, 30, 11, 2, 1),
(190, 261, 32, 11, 1, 1),
(191, 262, 33, 11, 1, 1),
(192, 263, 33, 11, 1, 1),
(193, 264, 32, 11, 1, 1),
(194, 258, 30, 11, 2, 1),
(195, 258, 34, 11, 1, 1),
(196, 265, 30, 11, 2, 1),
(197, 265, 34, 11, 1, 1),
(198, 266, 30, 11, 2, 1),
(199, 266, 33, 11, 1, 1),
(200, 267, 30, 11, 2, 1),
(201, 267, 33, 11, 1, 1),
(202, 270, 30, 11, 2, 1),
(203, 270, 34, 11, 1, 1),
(204, 271, 30, 11, 2, 1),
(205, 271, 31, 11, 1, 1),
(206, 272, 9, 11, 12, 1),
(207, 272, 18, 11, 2, 1),
(208, 273, 9, 11, 1, 1),
(209, 273, 17, 11, 2, 1),
(210, 274, 34, 11, 1, 1),
(211, 275, 4, 7, 1, 1),
(212, 276, 30, 11, 2, 1),
(213, 276, 34, 11, 1, 1),
(214, 277, 30, 11, 2, 1),
(215, 277, 33, 11, 1, 1),
(216, 278, 30, 11, 2, 1),
(217, 278, 33, 11, 1, 1),
(218, 279, 30, 11, 2, 1),
(219, 279, 33, 11, 1, 1),
(220, 280, 30, 11, 2, 1),
(221, 280, 33, 11, 1, 1),
(222, 281, 30, 11, 2, 1),
(223, 281, 33, 11, 1, 1),
(224, 283, 9, 11, 1, 1),
(225, 283, 30, 11, 3, 1),
(226, 283, 34, 11, 2, 1),
(227, 284, 9, 11, 1, 1),
(228, 284, 30, 11, 3, 1),
(229, 284, 34, 11, 2, 1),
(230, 290, 30, 11, 2, 1),
(231, 290, 31, 11, 1, 1),
(232, 289, 30, 11, 2, 1),
(233, 289, 33, 11, 1, 1),
(234, 288, 30, 11, 2, 1),
(235, 288, 33, 11, 1, 1),
(236, 287, 30, 11, 2, 1),
(237, 287, 33, 11, 1, 1),
(238, 286, 30, 11, 2, 1),
(239, 286, 33, 11, 1, 1),
(240, 285, 30, 11, 2, 1),
(241, 285, 33, 11, 1, 1),
(242, 291, 9, 11, 1, 1),
(243, 291, 30, 11, 3, 1),
(244, 291, 33, 11, 2, 1),
(245, 292, 30, 11, 2, 1),
(246, 292, 32, 11, 1, 1),
(247, 294, 9, 11, 1, 1),
(248, 294, 30, 11, 3, 1),
(249, 294, 34, 11, 2, 1),
(250, 296, 9, 11, 1, 1),
(251, 296, 30, 11, 3, 1),
(252, 296, 31, 11, 2, 1),
(253, 297, 9, 11, 0, 1),
(254, 297, 30, 11, 3, 1),
(255, 297, 33, 11, 2, 1),
(256, 298, 9, 11, 1, 1),
(257, 299, 30, 11, 2, 1),
(258, 299, 34, 11, 1, 1),
(259, 300, 30, 11, 2, 1),
(260, 300, 34, 11, 1, 1),
(261, 304, 9, 11, 1, 1),
(262, 304, 18, 11, 2, 1),
(263, 304, 30, 11, 3, 1),
(264, 304, 9, 11, 1, 1),
(265, 304, 18, 11, 2, 1),
(266, 304, 30, 11, 3, 1),
(267, 305, 9, 11, 1, 1),
(268, 305, 18, 11, 2, 1),
(269, 305, 30, 11, 3, 1),
(270, 306, 9, 11, 1, 1),
(271, 306, 30, 11, 3, 1),
(272, 306, 34, 11, 2, 1),
(273, 307, 9, 11, 1, 1),
(274, 307, 18, 11, 2, 1),
(275, 307, 30, 11, 3, 1),
(276, 308, 30, 11, 2, 1),
(277, 308, 34, 11, 1, 1),
(278, 309, 9, 11, 1, 1),
(279, 309, 30, 11, 3, 1),
(280, 309, 34, 11, 2, 1),
(281, 310, 9, 11, 1, 1),
(282, 301, 9, 11, 1, 1),
(283, 302, 9, 11, 1, 1),
(284, 311, 9, 11, 1, 1),
(285, 311, 30, 11, 3, 1),
(286, 311, 34, 11, 2, 1),
(287, 313, 9, 11, 1, 1),
(288, 313, 30, 11, 3, 1),
(289, 313, 34, 11, 2, 1),
(290, 314, 9, 11, 1, 1),
(291, 314, 30, 11, 3, 1),
(292, 314, 34, 11, 2, 1),
(293, 315, 9, 11, 1, 1),
(294, 315, 30, 11, 3, 1),
(295, 315, 34, 11, 2, 1),
(296, 318, 9, 11, 1, 1),
(297, 318, 30, 11, 3, 1),
(298, 318, 33, 11, 2, 1),
(299, 320, 9, 11, 1, 1),
(300, 320, 18, 11, 2, 1),
(301, 320, 30, 11, 3, 1),
(302, 321, 9, 11, 1, 1),
(303, 321, 30, 11, 3, 1),
(304, 321, 33, 11, 2, 1),
(305, 322, 9, 11, 1, 1),
(306, 322, 30, 11, 3, 1),
(307, 322, 33, 11, 2, 1),
(308, 316, 9, 11, 1, 1),
(309, 326, 9, 11, 1, 1),
(310, 326, 30, 11, 3, 1),
(311, 326, 31, 11, 2, 1),
(312, 327, 9, 11, 1, 1),
(313, 327, 30, 11, 3, 1),
(314, 327, 33, 11, 2, 1),
(315, 328, 9, 11, 1, 1),
(316, 328, 30, 11, 3, 1),
(317, 328, 32, 11, 2, 1),
(318, 330, 9, 11, 1, 1),
(319, 330, 30, 11, 3, 1),
(320, 330, 33, 11, 2, 1),
(321, 332, 9, 11, 1, 1),
(322, 332, 30, 11, 3, 1),
(323, 332, 33, 11, 2, 1),
(324, 333, 9, 11, 1, 1),
(325, 333, 30, 11, 3, 1),
(326, 333, 33, 11, 2, 1),
(327, 336, 9, 11, 1, 1),
(328, 336, 19, 11, 2, 1),
(329, 336, 30, 11, 3, 1),
(330, 337, 9, 11, 1, 1),
(331, 337, 30, 11, 3, 1),
(332, 337, 34, 11, 0, 1),
(333, 341, 9, 11, 1, 1),
(334, 341, 30, 11, 3, 1),
(335, 341, 33, 11, 2, 1),
(336, 342, 9, 11, 1, 1),
(337, 342, 30, 11, 3, 1),
(338, 342, 33, 11, 2, 1),
(339, 343, 36, 15, 0, 1),
(340, 344, 35, 15, 1, 1),
(341, 347, 9, 11, 1, 1),
(342, 347, 19, 11, 2, 1),
(343, 347, 30, 11, 3, 1),
(344, 348, 9, 11, 0, 1),
(345, 348, 30, 11, 3, 1),
(346, 348, 32, 11, 2, 1),
(347, 349, 9, 11, 1, 1),
(348, 349, 30, 11, 3, 1),
(349, 349, 32, 11, 2, 1),
(350, 350, 9, 11, 1, 1),
(351, 350, 30, 11, 3, 1),
(352, 350, 34, 11, 2, 1),
(353, 354, 37, 15, 1, 1),
(354, 355, 41, 15, 1, 1),
(355, 357, 40, 15, 2, 1),
(356, 357, 42, 15, 1, 1),
(357, 357, 42, 15, 1, 1),
(358, 357, 43, 15, 1, 1),
(359, 358, 38, 15, 1, 1),
(360, 358, 35, 15, 1, 1),
(361, 358, 37, 15, 2, 1),
(362, 358, 38, 15, 3, 1),
(363, 358, 40, 15, 4, 1),
(364, 358, 41, 15, 5, 1),
(365, 358, 42, 15, 6, 1),
(366, 359, 40, 15, 2, 1),
(367, 359, 41, 15, 1, 1),
(368, 360, 42, 15, 1, 1),
(369, 361, 43, 15, 1, 1),
(370, 362, 43, 15, 1, 1),
(371, 363, 43, 15, 1, 1),
(372, 364, 42, 15, 1, 1),
(373, 365, 37, 15, 1, 1),
(374, 366, 30, 11, 2, 1),
(375, 366, 32, 11, 1, 1),
(376, 367, 40, 15, 2, 1),
(377, 367, 41, 15, 1, 1),
(378, 368, 9, 11, 1, 1),
(379, 368, 30, 11, 3, 1),
(380, 368, 33, 11, 2, 1),
(381, 369, 9, 11, 1, 1),
(382, 369, 30, 11, 3, 1),
(383, 369, 33, 11, 2, 1),
(384, 370, 9, 11, 1, 1),
(385, 370, 18, 11, 2, 1),
(386, 370, 30, 11, 3, 1),
(387, 371, 9, 11, 1, 1),
(388, 371, 18, 11, 2, 1),
(389, 371, 30, 11, 3, 1),
(390, 373, 9, 11, 1, 1),
(391, 373, 17, 11, 2, 1),
(392, 373, 30, 11, 3, 1),
(393, 374, 9, 11, 1, 1),
(394, 374, 30, 11, 3, 1),
(395, 374, 33, 11, 2, 1),
(396, 375, 9, 11, 1, 1),
(397, 375, 30, 11, 3, 1),
(398, 375, 33, 11, 2, 1),
(399, 376, 34, 11, 1, 1),
(400, 377, 9, 11, 1, 1),
(401, 377, 17, 11, 2, 1),
(402, 377, 30, 11, 3, 1),
(403, 378, 9, 11, 1, 1),
(404, 378, 17, 11, 2, 1),
(405, 378, 30, 11, 3, 1),
(406, 380, 9, 11, 1, 1),
(407, 380, 17, 11, 2, 1),
(408, 380, 30, 11, 3, 1),
(409, 381, 9, 11, 1, 1),
(410, 381, 30, 11, 3, 1),
(411, 381, 32, 11, 2, 1),
(412, 382, 9, 11, 1, 1),
(413, 382, 30, 11, 3, 1),
(414, 382, 32, 11, 2, 1),
(415, 383, 9, 11, 1, 1),
(416, 383, 17, 11, 2, 1),
(417, 383, 30, 11, 3, 1),
(418, 389, 44, 15, 1, 1),
(419, 391, 9, 11, 1, 1),
(420, 391, 18, 11, 2, 1),
(421, 391, 30, 11, 3, 1),
(422, 392, 36, 15, 1, 1),
(423, 393, 36, 15, 1, 1),
(424, 394, 44, 15, 1, 1),
(425, 396, 9, 11, 1, 1),
(426, 396, 18, 11, 2, 1),
(427, 396, 30, 11, 3, 1),
(428, 397, 35, 15, 0, 1),
(429, 397, 44, 15, 0, 1),
(430, 398, 35, 15, 0, 1),
(431, 398, 44, 15, 0, 1),
(432, 400, 9, 11, 1, 1),
(433, 400, 30, 11, 3, 1),
(434, 400, 33, 11, 2, 1),
(435, 400, 9, 11, 1, 1),
(436, 400, 30, 11, 3, 1),
(437, 400, 33, 11, 2, 1),
(438, 400, 9, 11, 1, 1),
(439, 400, 30, 11, 3, 1),
(440, 400, 33, 11, 2, 1),
(441, 400, 9, 11, 1, 1),
(442, 400, 30, 11, 3, 1),
(443, 400, 33, 11, 2, 1),
(444, 401, 9, 11, 1, 1),
(445, 401, 17, 11, 2, 1),
(446, 401, 30, 11, 3, 1),
(447, 402, 9, 11, 1, 1),
(448, 402, 17, 11, 0, 1),
(449, 402, 30, 11, 3, 1),
(450, 402, 9, 11, 1, 1),
(451, 402, 17, 11, 2, 1),
(452, 402, 30, 11, 3, 1),
(453, 403, 9, 11, 1, 1),
(454, 403, 17, 11, 2, 1),
(455, 403, 30, 11, 3, 1),
(456, 405, 9, 11, 1, 1),
(457, 405, 17, 11, 2, 1),
(458, 405, 30, 11, 3, 1),
(459, 406, 35, 15, 0, 1),
(460, 406, 44, 15, 0, 1),
(461, 407, 35, 15, 0, 1),
(462, 407, 44, 15, 0, 1),
(463, 408, 43, 15, 1, 1),
(464, 408, 43, 15, 1, 1),
(465, 412, 9, 11, 1, 1),
(466, 412, 18, 11, 2, 1),
(467, 412, 30, 11, 3, 1),
(468, 413, 9, 11, 1, 1),
(469, 413, 18, 11, 2, 1),
(470, 413, 30, 11, 3, 1),
(471, 410, 35, 15, 0, 1),
(472, 410, 39, 15, 0, 1),
(473, 410, 40, 15, 0, 1),
(474, 410, 43, 15, 0, 1),
(475, 410, 44, 15, 0, 1),
(476, 414, 36, 15, 1, 1),
(477, 415, 9, 11, 1, 1),
(478, 415, 17, 11, 2, 1),
(479, 415, 30, 11, 3, 1),
(480, 416, 9, 11, 1, 1),
(481, 416, 30, 11, 3, 1),
(482, 416, 33, 11, 2, 1),
(483, 417, 9, 11, 1, 1),
(484, 417, 30, 11, 3, 1),
(485, 417, 34, 11, 2, 1),
(486, 418, 9, 11, 1, 1),
(487, 418, 17, 11, 2, 1),
(488, 418, 30, 11, 3, 1),
(489, 419, 9, 11, 1, 1),
(490, 419, 18, 11, 2, 1),
(491, 419, 30, 11, 3, 1),
(492, 419, 9, 11, 1, 1),
(493, 419, 18, 11, 2, 1),
(494, 419, 30, 11, 3, 1),
(495, 420, 35, 15, 0, 1),
(496, 420, 37, 15, 0, 1),
(497, 420, 44, 15, 0, 1),
(498, 421, 9, 11, 1, 1),
(499, 421, 30, 11, 3, 1),
(500, 421, 33, 11, 2, 1),
(501, 423, 9, 11, 1, 1),
(502, 423, 17, 11, 2, 1),
(503, 423, 30, 11, 3, 1),
(504, 424, 9, 11, 1, 1),
(505, 424, 30, 11, 3, 1),
(506, 424, 33, 11, 2, 1),
(507, 425, 10, 11, 1, 1),
(508, 426, 9, 11, 1, 1),
(509, 426, 17, 11, 2, 1),
(510, 426, 30, 11, 3, 1),
(511, 426, 9, 11, 1, 1),
(512, 426, 17, 11, 2, 1),
(513, 426, 30, 11, 3, 1),
(514, 427, 9, 11, 1, 1),
(515, 427, 17, 11, 2, 1),
(516, 427, 30, 11, 3, 1),
(517, 428, 9, 11, 1, 1),
(518, 428, 30, 11, 3, 1),
(519, 428, 33, 11, 2, 1),
(520, 429, 9, 11, 1, 1),
(521, 429, 30, 11, 3, 1),
(522, 429, 33, 11, 2, 1),
(523, 430, 9, 11, 1, 1),
(524, 430, 30, 11, 3, 1),
(525, 430, 33, 11, 2, 1),
(526, 431, 9, 11, 0, 1),
(527, 431, 30, 11, 3, 1),
(528, 431, 33, 11, 2, 1),
(529, 431, 9, 11, 1, 1),
(530, 431, 30, 11, 3, 1),
(531, 431, 32, 11, 2, 1),
(532, 433, 9, 11, 1, 1),
(533, 433, 30, 11, 3, 1),
(534, 433, 33, 11, 2, 1),
(535, 434, 9, 11, 1, 1),
(536, 434, 30, 11, 3, 1),
(537, 434, 33, 11, 2, 1),
(538, 434, 9, 11, 1, 1),
(539, 434, 30, 11, 3, 1),
(540, 434, 33, 11, 2, 1),
(541, 435, 9, 11, 1, 1),
(542, 435, 30, 11, 3, 1),
(543, 435, 33, 11, 2, 1),
(544, 437, 9, 11, 1, 1),
(545, 437, 19, 11, 2, 1),
(546, 437, 30, 11, 3, 1),
(548, 436, 44, 15, 1, 1),
(549, 438, 9, 11, 1, 1),
(550, 438, 30, 11, 3, 1),
(551, 439, 42, 15, 1, 1),
(552, 440, 9, 11, 1, 1),
(553, 440, 30, 11, 3, 1),
(554, 440, 32, 11, 2, 1),
(555, 441, 9, 11, 1, 1),
(556, 441, 17, 11, 2, 1),
(557, 441, 30, 11, 3, 1),
(558, 443, 9, 11, 1, 1),
(559, 443, 30, 11, 3, 1),
(560, 443, 33, 11, 2, 1),
(561, 444, 30, 11, 2, 1),
(562, 444, 34, 11, 1, 1),
(563, 446, 44, 15, 1, 1),
(564, 448, 9, 11, 1, 1),
(565, 448, 17, 11, 2, 1),
(566, 448, 30, 11, 3, 1),
(567, 449, 3, 7, 1, 1),
(568, 450, 44, 15, 1, 1),
(569, 451, 44, 15, 1, 1),
(570, 452, 38, 15, 1, 1),
(576, 453, 43, 15, 2, 1),
(575, 453, 38, 15, 1, 1),
(573, 454, 38, 15, 1, 1),
(574, 454, 43, 15, 1, 1),
(577, 457, 9, 11, 1, 1),
(578, 457, 18, 11, 2, 1),
(579, 457, 30, 11, 3, 1),
(580, 458, 9, 11, 1, 1),
(581, 458, 30, 11, 3, 1),
(582, 458, 33, 11, 2, 1),
(583, 459, 9, 11, 1, 1),
(584, 459, 30, 11, 3, 1),
(585, 459, 33, 11, 2, 1),
(586, 460, 18, 11, 1, 1),
(587, 461, 18, 11, 2, 1),
(588, 465, 9, 11, 1, 1),
(589, 465, 30, 11, 3, 1),
(590, 465, 32, 11, 2, 1),
(591, 466, 9, 11, 1, 1),
(592, 466, 30, 11, 3, 1),
(593, 466, 32, 11, 2, 1),
(594, 467, 9, 11, 1, 1),
(595, 467, 30, 11, 3, 1),
(596, 467, 32, 11, 2, 1),
(597, 468, 9, 11, 1, 1),
(598, 468, 30, 11, 3, 1),
(599, 468, 32, 11, 2, 1),
(600, 468, 9, 11, 1, 1),
(601, 468, 30, 11, 3, 1),
(602, 468, 32, 11, 2, 1),
(603, 469, 9, 11, 1, 1),
(604, 469, 18, 11, 2, 1),
(605, 469, 30, 11, 3, 1),
(609, 474, 45, 16, 0, 1),
(608, 474, 46, 16, 0, 1),
(610, 475, 46, 16, 0, 1),
(611, 475, 45, 16, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `businessforms`
--

CREATE TABLE `businessforms` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `title` varchar(500) NOT NULL,
  `contractname` varchar(255) NOT NULL,
  `details` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `businessforms`
--

INSERT INTO `businessforms` (`id`, `userid`, `title`, `contractname`, `details`, `sysdate`, `status`) VALUES
(1, 1, 'Contract 1', 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2019-05-10', 1),
(2, 1, 'Contract 2', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-05-11', 1),
(3, 7, 'Contract 1', 'Contract 1', '<p><strong>1. DEFINITIONS</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>1.1 In these terms and conditions (hereafter the &ldquo;Terms and Conditions&rdquo;) the following terms shall have the following meaning:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Company: means the company that issues the Purchase Order </strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Contract: means any Framework Agreement in force on the date of the Purchase Order, the Purchase Order, the Specification, any other documents to which the Purchase Order refers, the Seller&rsquo;s Quotation and acceptance of the Purchase Order (excluding any terms of sale that may be contained in such quotation and acceptance). In the event of any inconsistency or discrepancy between the above documents the order of precedence shall be as listed in this definition.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Framework Agreement: means any agreement signed by or on behalf of the Company with the Seller or on behalf of the Seller, covering the supply of Goods to the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Goods: means any goods agreed in the Contract to be bought by the Company from the Seller (including any part or parts of them).</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Intellectual Property Rights: means all patents, designs and trade marks (whether registered or unregistered), copyright, know-how, database rights and all other intellectual property rights and similar or equivalent rights anywhere in the world which currently exist or are recognised in the future; and applications, extensions and renewals in relation to such rights.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Purchase Order: means any request sent by the Company in writing or by electronic means for the delivery of the Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Seller: means the person, firm or company who accepts the Company&#39;s Purchase Order.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Seller&rsquo;s Quotation: means a quotation by the Company in respect of the Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Specification: means the Company&rsquo;s written requirements in respect of the Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>1.2 A reference to one gender includes a reference to the other gender.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>1.3 Headings herein are for convenience only and do not affect the interpretation of these Terms and Conditions.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2. APPLICATION OF TERMS &amp; ENTIRE AGREEMENT</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2.1 These Terms and Conditions shall be deemed to be automatically incorporated and shall apply to any and all Contracts. No standard terms or conditions endorsed upon, delivered with or contained in the quotation, acknowledgement or acceptance of order, specification or similar document shall form part of the Contract</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2.2 The Contract shall, unless otherwise agreed in writing by the parties, comprise the entire agreement between the parties in relation to any Purchase Order and shall supersede all previous arrangements, discussions or agreements between the parties, but for the avoidance of doubt, any representations made by the Seller to the Company regarding the quality or specification of the Goods shall be deemed to form part of the Contract.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2.3 Each Purchase Order for Goods by the Company from the Seller shall be deemed to be an offer by the Company to buy Goods subject to these Terms and Conditions and no Purchase Order shall be accepted until the Seller either expressly by giving notice of acceptance, or impliedly by fulfilling the Purchase Order, in whole or in part, accepts the offer.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2.4 No variation to these Terms and Conditions and to the Contract shall have effect unless expressly agreed in writing by the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>2.5 For the avoidance of doubt these Terms and Conditions shall apply to the Contract irrespective of the language used in the Purchase Order and any associated documentation issued by the parties and the Seller acknowledges and recognises that it has full understanding of the language used in these Terms and Conditions.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3. QUALITY AND DEFECTS</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.1 The Goods shall be, of the best available design, of the best quality, material and workmanship, be without defect and conform in all respects with the Purchase Order and Specification.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.2 The Seller shall be deemed to have full knowledge of the purpose for which the Goods are required (which could include resale and use in international markets) and the Goods shall be fit for purpose and of merchantable quality, properly packed and secured. The Seller shall examine the Goods on behalf of the Company prior to delivery to ensure that they comply with the Contract requirements.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.3 The Seller shall comply with all legislation applicable in any territory where the Goods are to be delivered as to the provision of the Goods including compliance with any health and safety requirements in respect of the Goods or policies or procedures operated by the Company or its customers at any of their sites.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.4 Prior to delivery of the Goods to the Company, the Company shall have the right and be given the opportunity by the Seller to inspect the Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.5 If the results of such inspection or testing cause the Company to be of the opinion that the Goods do not conform or are unlikely to conform with the Purchase Order or to any specifications and/or patterns supplied or advised by the Company to the Seller, the Company shall inform the Seller and the Seller shall immediately take such action as is necessary to ensure conformity and in addition the Company shall have the right to require and witness further testing and inspection of the Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.6 Notwithstanding any such inspection or testing, the Seller shall remain fully responsible for the Goods and any such inspection or testing shall not limit or otherwise affect the Seller&#39;s obligations under the Contract and does not imply acceptance of the Goods by the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.7 Where a Purchase Order includes the manufacture of Goods in respect of the Company&rsquo;s design(s), the Seller shall inform the Company as soon as possible of any invention or improvement in design or method of manufacture arising out of the performance of the Purchase Order and any Intellectual Property Rights in respect of the same shall belong solely to the Company. The Seller will give the Company, at the Company&rsquo;s expense, all necessary assistance to enable the Company to obtain the benefit of all and any such rights whether such right is capable of being registered or not in any part of the world.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.8 If any of the Goods fail to comply with any of the provisions set out in this Article 3 the Company shall be entitled to avail itself of any one or more remedies listed in Article 12 without prejudice to Article 4.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>3.9 Without prejudice to Article 4 and unless otherwise agreed in writing between the parties, the claims the Company may assert against the Seller due to defects can only be exercised within the time limits provided below:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) for the sale of Goods that directly caused a defect in equipment (subject to them having been used in an appropriate manner for the purpose for which they were sold) the period for exercising a claim shall be of ten (60) days following delivery.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) for all other defects the period for exercising a claim shall be of three (10) days following the delivery of Goods.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>4. INDEMNITY &amp; INSURANCE</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>4.1 The Seller shall hold the Company harmless and keep the Company indemnified in full against all liabilities loss, damages, injury, costs and expenses (including legal and other professional fees and expenses) awarded against or incurred or paid by the Company as a result of or in connection with:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) defective or non-conforming Goods; and</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) any claim by any third party under any applicable law made against the Company during the period of time allowed under the law governing such claim in respect of any liability damage, cost or expense arising out of or in connection with the sale or reuse of the Goods. The period of time allowed under the laws governing the claim shall be deemed to start at the earliest of the following dates: (i) the date upon which the Goods or the products incorporating such Goods have been delivered by the Company to its direct customer or (ii) three months after delivery of the Goods by the Seller to the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iii) an infringement or alleged infringement of any Intellectual Property Rights caused by the use, manufacture or supply of the Goods; and</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iv) a breach of confidentiality.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>4.2 The Seller shall take out and maintain with a reputable and financially sound insurance company insurance policies sufficient to cover any liability of the Seller towards the Company and third parties in respect of the provision of the Goods. The Seller shall provide copies of its insurance policies and premium receipts following a request by the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5. DELIVERY</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.1 The Goods shall be adequately protected against damage and deterioration in transit and delivered, DDP (Incoterms 2010) to the Company&#39;s place of business as stated in the Purchase Order.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.2 The time and date for delivery shall be specified in the Purchase Order, or in a programme agreed by the Company.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.3 The Seller shall invoice the Company upon, but separately from, despatch of the Goods to the Company. The invoice must show the relevant Purchase Order number.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.4 The Seller shall ensure that each delivery is accompanied by a delivery note which shows, among other things, the Purchase Order number, date of Purchase Order, number of packages and contents and, in the case of part delivery, the outstanding balance remaining to be delivered. If the Company requires it, information relating to the Goods must be supplied free of charge on delivery including, without limitation, a certificate of conformity.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.5 Time for delivery shall be of the essence.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.6 Unless otherwise stipulated by the Company in the Purchase Order, deliveries shall only be accepted by the Company in normal business hours.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.7 If the Goods are not delivered or provided on the due date then, or on a revised date as may have been advised by the Company following the granting of a period of grace without prejudice to any other rights which it may have, the Company reserves the right to:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) cancel the Contract in whole or in part and reject the Goods;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) refuse to accept any subsequent delivery or provision of the Goods which the Seller attempts to make;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iii) recover from the Seller any expenditure reasonably incurred by the Company in obtaining the Goods in substitution from another supplier; and</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iv) claim damages for any additional costs, loss or expenses incurred by the Company which are in any way attributable to the Seller&#39;s failure to deliver the Goods on the due date.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.8 Where the Company agrees in writing to accept delivery by instalments, the Contract shall be construed as a single contract in respect of each instalment. Nevertheless failure by the Seller to deliver any one instalment shall entitle the Company at its option to treat the whole Contract as repudiated.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.9 If the Goods are delivered to the Company in excess of the quantities ordered, the Company shall not be bound to pay for the excess and any excess shall be and shall remain at the Seller&#39;s risk and shall be returnable at the Seller&#39;s expense. If the Goods are delivered in advance of the due date the Company may reject the Goods at the Seller&rsquo;s expense or accept them, but will not be bound to pay for the same until the month following the month in which delivery should have taken place.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>5.10 The Company reserves the right to reject any Goods which do not conform as to quality, quantity or description with the particulars of the Contract within fourteen (14) days from delivery. Rejected Goods will be replaced without delay at no cost to the Company. Any rejected deliveries in accordance with the above shall be stored at the Seller&rsquo;s expense and risk until the Seller recovers the same.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>6. RISK/PROPERTY</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>The Goods shall remain at the risk of the Seller until delivery to the Company is complete when ownership of the Goods shall pass to the Company. Where Goods are rejected by the Company risk shall pass to the Seller upon such rejection.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>7. PRICE</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>7.1 The price of the Goods shall be stated in the Purchase Order and unless otherwise agreed in writing by the Company shall be exclusive of value added tax but inclusive of all other charges and duties.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>7.2 No variation in the price nor extra charges shall be accepted by the Company. No payment will be made for crates or packing material unless agreed by the Company and stated in the Purchase Order.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>8. PAYMENT</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>8.1 The Company shall pay the price of the Goods within the time period agreed between the parties as stated in the Purchase Order following receipt of a correct invoice.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>8.2 Without prejudice to any other right or remedy, the Company reserves the right to set off any amount owing at any time from the Seller to the Company against any amount payable by the Company to the Seller under the Contract.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>9. CONFIDENTIALITY</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>The Seller shall keep in strict confidence all technical or commercial know-how, specifications, inventions, processes or initiatives which are of a confidential nature and have been disclosed to the Seller by the Company or its agents and any other confidential information concerning the Company&#39;s business or its products including a Purchase Order and its subject matter which the Seller may obtain, and the Seller shall restrict disclosure of such confidential material to such of its employees, agents or sub-contractors as need to know the same for the purpose of discharging the Seller&#39;s obligations to the Company and shall ensure that such employees, agents or sub-contractors are subject to like obligations of confidentiality as bind the Seller. The Seller shall not publicise the fact it is supplying Goods to the Company without the Company&rsquo;s prior written consent. The Seller shall comply with the provisions of this Article for a period of three (3) years after the Contract has been completed or is terminated for whatever reason.</strong></p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n\r\n<p><strong>10. TERMINATION</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>10.1 The Company shall have the right at any time to terminate all or any part of the Contract automatically with or without cause at its convenience by sending a four (4) week prior written notice to this effect to the Seller. Subject to the Seller complying with the provisions of Article 11.3 hereafter, the Company shall pay to the Seller:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) the price of work completed in accordance with the Contract;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) the cost of any work in progress authorised by the Company subject to such work not being in excess of four (4) weeks of production;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iii) if any, the balance of the cost of the Tooling due in accordance with Article 10. </strong></p>\r\n\r\n<p><strong>The Seller shall not be entitled to any other payment from the Purchaser due to termination of the Contract by virtue of this Article 11.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>10.2 The Company shall have the right at any time by giving notice in writing to the Seller to terminate the Contract immediately, without having to request a court order and without liability to the Seller if:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) the Seller fails to or threatens not to fulfil any of the terms and conditions of the Contract; or</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) any distress, execution or other process is levied upon any of the assets of the Seller; or</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iii) the Seller has a bankruptcy order made against him or makes an arrangement or composition with his creditors, or otherwise takes the benefit of any statutory provision for the time being in force for the relief of insolvent debtors, or (being a body corporate) convenes a meeting of creditors (whether formal or informal), or enters into liquidation (whether voluntary or compulsory) except a solvent voluntary liquidation for the purpose only of reconstruction or amalgamation, or has a receiver or manager, administrator or administrative receiver appointed of its undertaking or any part thereof, or documents are filed with the court for the appointment of an administrator of the Seller or notice of intention to appoint an administrator is given by the Seller or its directors, or a resolution is passed or a petition presented to any court for the winding-up of the Seller or for the granting of an administration order in respect of the Seller, or any proceedings are commenced relating to the insolvency or possible insolvency of the Seller; or</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iv) in case of merger, spin-off or direct or indirect change of control of the Seller; or</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(v) the financial position of the Seller deteriorates to such an extent that in the opinion of the Company the capability of the Seller adequately to fulfil its obligations under the Contract has been placed in jeopardy.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>10.3 The termination of the Contract, however arising, shall be without prejudice to the rights and duties of the Company accrued prior to termination. The Seller shall transfer title and deliver to the Company, within the time limits and at conditions specified by the Company, any finished works and any work in progress and all Tooling, The provisions which expressly or impliedly have effect after termination including but not limited to confidentiality, remedies indemnity and guarantee shall continue to be enforceable as long as necessary to give them full force and effect notwithstanding termination.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>11. REMEDIES</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Without prejudice to any other right or remedy which the Company may have, if any Goods are not supplied in accordance with, or the Seller fails to comply with any of the terms of the Contract or on a revised date as may have been advised by the Company following the granting of a period of grace, the Company shall be entitled to avail itself of any one or more of the following remedies at its discretion, whether or not any part of the Goods have been accepted by the Company:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(i) to rescind the Purchase Order;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(ii) to reject the Goods (in whole or in part) and return them to the Seller at the risk and cost of the Seller on the basis that a full refund for the Goods so returned shall be paid forthwith by the Seller;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iii) at the Company&#39;s option to give the Seller the opportunity at the Seller&#39;s expense either to remedy any defect in the Goods or to supply replacement Goods and carry out any other necessary work to ensure that the terms of the Contract are fulfilled;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(iv) to refuse to accept any further deliveries/provision of the Goods but without any liability to the Seller;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(v) to procure supplies from a third party at the Company&rsquo;s choice, until the Seller remedies the breach, with all extra costs incurred by the Company in respect thereof being borne by the Seller; and</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>(vi) to claim such damages as may have been sustained in consequence of the Seller&#39;s breach or breaches of the Contract.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14. GENERAL</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.1 If any provision of the Contract is found by any court, tribunal or administrative body of competent jurisdiction to be wholly or partly illegal, invalid, void, voidable, unenforceable or unreasonable, it shall, to the extent of such illegality, invalidity, voidness, unenforceability or unreasonableness, be deemed severable and the remaining provisions of the Contract and the remainder of such provision shall continue in full force and effect.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.2 Failure or delay by the Company in enforcing or partially enforcing any provision of the Contract shall not be construed as a waiver of any of its rights under the Contract.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.3 Any waiver by the Company of any breach of, or any default under, any provision of the Contract by the Seller shall not be deemed a waiver of any subsequent breach or default and shall in no way affect the other terms of the Contract.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.4 Each right or remedy available to the Company under the Contract is notwithstanding anything to the contrary without prejudice to any other right or remedy of the Company whether under the Contract or at law.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.5 Notwithstanding anything to the contrary in the Contract, no limitation of the Seller&rsquo;s liability shall apply for personal injury or death caused by the Goods, or in respect of damages for which the Seller is not permitted by law to exclude or limit its liability, or in case of damages due to gross negligence or wilful misconduct, or in case of any infringement of any third party intellectual property rights or in case of any breach of confidentiality undertaking.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.6 Any notice to be served under these Terms and Conditions must be in writing and shall be delivered by registered mail with acknowledgement of receipt.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.7 The Contract shall be deemed to have been made in the Country of the Purchaser and the construction, validity and performance of this contract shall be governed in all respects by the law of the Country Of The Purchaser.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>14.8 Any differences or disputes arising out of or in connection with the Contract and any part thereof shall be brought exclusively in the court(s) having jurisdiction over the location where the Company has its registered office.</strong></p>\r\n', '2022-10-10', 1),
(46, 16, 'Contract 2', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Re?ning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Pro?t Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2023-03-16', 1);
INSERT INTO `businessforms` (`id`, `userid`, `title`, `contractname`, `details`, `sysdate`, `status`) VALUES
(4, 7, 'Contract 2', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-05-11', 1),
(7, 10, 'SALE', 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in the terms below</p>\r\n<p>\r\n	New info spefici to supplier:</p>\r\n', '2019-11-01', 1),
(8, 10, 'TERMS AND CONDITIONS', '', '<p>\r\n	<strong>Payment Schedule</strong><br />\r\n	Evotus&rsquo;s business model is to operate in collaboration with suppliers through profit sharing. A purchase order contract will be agreed for materials volume, type, payment, and delivery. Received materials undergo verification and multiple assay types prior to processing, ensuring accurate and visible value. The values from assay are input into an estimated payment calculator and the results will be sent in a quotation. Final recovered gold is measured against assay to assure full recovery. Our processing costs are deducted from the gross metal value. Final percent payout is based on shared profit. The final payment will be made after recovery based on the original estimated value. The following outlines our procedures in ensuring clear and precise<br />\r\n	representations, and updates at critical processing stages to final payment.<br />\r\n	<br />\r\n	<strong>Purchase Order</strong><br />\r\n	A purchase order will be sent to the supplier, providing a written agreement for the types of<br />\r\n	materials and volumes, and payment based on daily spot metal price.<br />\r\n	&nbsp;Instructions for delivery, processing, and payment of raw materials are provided in the following:<br />\r\n	<br />\r\n	<strong>Quotation Period:</strong><br />\r\n	An estimated pricing quote will be provided, along with a list of sorted materials, upon receipt of materials, verification, and assay of Evotus&rsquo;s refinery.<br />\r\n	<br />\r\n	The quotation is for estimation purposes only. The final payment and price may be subject to final recovery and/or specific terms and conditions.<br />\r\n	<br />\r\n	The properties for delivering the materials are as follows:</p>\r\n<p>\r\n	<br />\r\n	<span style=\"font-size:14px;\"><u><strong>A. Material Specification</strong></u></span><br />\r\n	<br />\r\n	<strong>1. Physical properties</strong></p>\r\n<ul>\r\n	<li>\r\n		&nbsp; Clean, dry and free from all contaminates and hazardous materials</li>\r\n	<li>\r\n		&nbsp; Should not bear frames, metallic plates or attachments</li>\r\n	<li>\r\n		&nbsp; No radioactive material</li>\r\n	<li>\r\n		&nbsp; No batteries</li>\r\n</ul>\r\n<p>\r\n	<br />\r\n	<strong>2. Packaging</strong></p>\r\n<ul>\r\n	<li>\r\n		&nbsp;Packaged in Gaylord boxes with or without liners on standard 4-way pallets or otherwise by agreement</li>\r\n	<li>\r\n		&nbsp;Super sacks or bags of any kind may be used with written permission</li>\r\n	<li>\r\n		&nbsp;Each package to be marked legibly with gross, tare, net weight, material type, and contract number</li>\r\n	<li>\r\n		&nbsp;The maximum Gross weight of 4500 lbs. per package</li>\r\n	<li>\r\n		&nbsp;All shipments must be accompanied by a detailed packing list noting corresponding contract number</li>\r\n</ul>\r\n<p>\r\n	<br />\r\n	<strong>3. General Shipping and Packaging Requirements</strong></p>\r\n<ul>\r\n	<li>\r\n		Suppliers must reference the Buyer purchase contract number on all corresponding paper work (packing lists, bill of lading, invoices, etc.).</li>\r\n	<li>\r\n		Review the contract for contract-specific requirements.</li>\r\n	<li>\r\n		Open-top transportation must be covered with a canvas, tarp, or some other form of protective covering. The aforementioned covering shall not be removed except under the authority of Evotus Inc.</li>\r\n	<li>\r\n		All packaging must be in good shape capable of handling the weight and multiple movements. Defective packaging (i.e. broken pallets), may subject load to rejection, downgrade and or repackaging fees.</li>\r\n	<li>\r\n		No bails without prior written approval.</li>\r\n	<li>\r\n		All boxes and super sacks require pallets.</li>\r\n	<li>\r\n		Do not double stack boxes at any time</li>\r\n	<li>\r\n		All packaging used to secure the load must be listed as a line item and include a tare weight on the packing list.</li>\r\n	<li>\r\n		Any deviations from these specifications must be approved by the Buyer in writing.</li>\r\n</ul>\r\n<p>\r\n	<strong>4. Material Quantities</strong></p>\r\n<ul>\r\n	<li>\r\n		Truck Load Quantity shall be defined as (40,000 pounds +/- 5%)</li>\r\n	<li>\r\n		&nbsp;Less than Truck Load (LTL) quantities accepted by agreement</li>\r\n</ul>\r\n<p>\r\n	<br />\r\n	<u><span style=\"font-size:14px;\"><strong>B. Shipping &amp; Receiving</strong></span></u><br />\r\n	The unloading process takes place at Evotus, Inc. refining facility during working days from 8:00 to 15:00 EDT/EST on the date of arrival, on a first come first serve basis. In case of non-agreed delivery delays, we reserve the right to cancel non-fulfilled delivery quotas or the complete contract.<br />\r\n	&nbsp;<br />\r\n	<strong>1. Delivery Requirements</strong><br />\r\n	<br />\r\n	<strong>All materials ship to:</strong><br />\r\n	Evotus, Inc.,<br />\r\n	5905 Triangle Drive<br />\r\n	Raleigh NC, 27617<br />\r\n	<br />\r\n	<strong>Warehouse Contact:</strong><br />\r\n	David White<br />\r\n	(919) 641-4684<br />\r\n	D.White@EvotusInc.com<br />\r\n	&bull; Appointments available by agreement<br />\r\n	&bull; Minimum thirty (30) minute unloading window required</p>\r\n<p>\r\n	<br />\r\n	<strong>2. Material Inspection</strong></p>\r\n<p>\r\n	Samples will be taken from shipment and tested to confirm compliance with specifications. Evotus, in its sole discretion, has the right to sort, separate and inspect all materials being delivered. The list of materials delivered after sorting will be provided in the quotation. Evotus reserves the right to refuse materials at its discretion.<br />\r\n	<br />\r\n	Any items that cannot be processed will be considered &quot;Garbage&quot;. You are free to collect these items within 10 days from the signing of contract or Evotus, Inc. has the right to charge for their proper disposal. These items may be included, but not limited to broken pallets, foreign material, packing materials, and other non-contract materials.</p>\r\n<p>\r\n	<br />\r\n	<strong>3. Hazardous Material, Battery, Non-Contract Material Removal, Treatment, Disposal</strong></p>\r\n<p>\r\n	Charges for downstream recycling for above-stated materials will be deducted from supplier payment and/or billed directly.<br />\r\n	&nbsp;Evotus reserves the right to return non-contract materials at cost to the supplier.<br />\r\n	<br />\r\n	<strong>4. Miscellaneous Materials</strong></p>\r\n<p>\r\n	Any materials not specifically named herein shall be subject to customized terms and conditions at Buyers&#39; discretion within a reasonable margin level. Material specifications may be made to available Supplier upon request.<br />\r\n	<br />\r\n	<u><span style=\"font-size:14px;\"><strong>C. Materials Assay &amp; Quotation</strong></span></u><br />\r\n	Materials will be weighed, inspected, optically assayed, and batched to satisfy receipt and acceptance. Evotus will begin processing raw materials upon acceptance and confirmation. Evotus will then process materials and make samples for XRF and fire assay. Final payment values will be determined as the average value of fire assays. Optical and XRF assay will be<br />\r\n	utilized for reference verification. Atomic absorption or other methods may be used by 3rd party labs for further verification. Assay results will be made available directly and provided in the quotation.<br />\r\n	&nbsp;&nbsp;</p>\r\n<p>\r\n	<strong>1. Sampling</strong></p>\r\n<p>\r\n	The material will be mechanically reduced to size.<br />\r\n	The conformity of material will be provided by mechanical reduction and appropriate lab analysis representative methods.<br />\r\n	Representative sample points will be taken as samples for assay.</p>\r\n<p>\r\n	<br />\r\n	<strong>2. Assay</strong></p>\r\n<p>\r\n	Evotus uses multiple methods of assay verification on every load. Initial verification is performed using proprietary photo analytic assaying, followed by XRF analysis, and a fire assay. Additional atomic absorption assays or other methods may be performed by Evotus on a case by case basis. Samples of each suppliers materials will be stored for a period of 90 days, in the, event an independent assay is needed. The assay will be used to determine the composition and value of the materials, which will then be provided in an estimated payment quotation.</p>\r\n<p>\r\n	<br />\r\n	<strong>3. Non-Conforming Materials</strong></p>\r\n<p>\r\n	Upfront priced per pound materials may be subject to downgrade, price reduction, or refusal in whole or part, if any part is determined upon receipt to contain metal inconsistent with specification as agreed, represented or expected by Buyer as per contract.<br />\r\n	<br />\r\n	The shipment may be downgraded if Evotus&rsquo;s assay results discover materials to be non-conforming with supplier represented metal content. Assay results and confirmation of downgrade or rejection will be provided to Supplier within ten (10) business days. If an agreement to downgrade cannot be reached between Buyer and Supplier effectively, the material will be rejected by Buyer. In case of rejection, Supplier will have ten (10) days to confirm pick up and removal of material or be subject reasonable fees at Buyer&rsquo;s discretion. After forty-five (45) days Buyer shall dispose of the shipment at cost to Supplier. Buyer retains the right to reject material at any time at its sole discretion.<br />\r\n	<br />\r\n	Non-Conforming items may include but are not limited to, soiled or rusted circuit boards, materials with evidence of acid stripping, and/or materials that are significantly different than the materials agreed to be purchased.<br />\r\n	<br />\r\n	The seller is responsible for any administrative, sorting, granulation, handling and assay charges, and a discharge fee up to $2,500 USD if materials are requested for return, after Evotus, Inc. has organized assay, processing and refinement for the materials delivered.</p>\r\n<p>\r\n	<br />\r\n	<strong>4. Estimated Payment - Quotation</strong><br />\r\n	<br />\r\n	A quotation will be provided to the supplier based on the estimated value metals contained in materials delivered, accepted, sampled and assayed. The quotation will contain various data associated with the metals composition, daily spot value and estimated final payment. Estimated payment is subject to final recovery. <br />\r\n	<br />\r\n	Samples provided by Supplier to Evotus, used to derive any material value or purchase<br />\r\n	price is represented by Supplier to be closely related in material composition to the actual material subject to any purchase agreement.<br />\r\n	<br />\r\n	Per lb. value(s) may vary based upon received weights, the market price on the date of pricing and the actual materials intrinsics assayed or recovered subject to terms and conditions of this agreement.<br />\r\n	<br />\r\n	Sample photographs or images of any kind representing material, are represented by<br />\r\n	Supplier to be images of the actual material and are subject to the purchase contract used as a basis for purchase under any agreement.<br />\r\n	<br />\r\n	If any discrepancies arise as to the veracity of the photographs or images used in direct connection and to price and representation with any contract at any time, contract(s) may be subject to recall, the material under the contract(s) may be subject to downgrade and or rejection at contract cost plus 10% fee. Buyer is required to within three (3) months of the transaction, present a demand note to Supplier, demanding a return to Buyer any funds paid out against the contract plus costs plus 10% fee. Total amount due under recall and/or downgrade is due within thirty (30) days of delivery of the demand .<br />\r\n	<br />\r\n	Delivery of demand to Supplier need not be certified. Supplier hereby agrees to pay upon reasonable receipt of said Demand within terms. If advance funds upon a contract has been provided, Supplier likewise agrees to return 100% of the advance plus 15% of the gross dollar value of the contract transaction upon receipt of demand within terms.</p>\r\n<p>\r\n	<u><span style=\"font-size:14px;\"><br />\r\n	<br />\r\n	<strong>D. Final Payment</strong></span></u></p>\r\n<p>\r\n	Full payment will be sent upon verification of final metals. Payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Evotus, inc. is not responsible for the bank conversion rate being used. All funds will be converted from USD to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 90 working days of receipt and acceptance for whole materials, and within 60 working days for granulated materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.<br />\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>1. Estimated Value</strong><br />\r\n	Estimated Value is based on the total anticipated assay value of materials received and accepted, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material is paid only on final assayed values.<br />\r\n	<br />\r\n	<strong>2. Commoditized Per/lb Payment</strong><br />\r\n	&bull; Purchase orders with pre-agreed per pound rates will be paid upon receipt and acceptance of materials and may be subject to assay. Per lb pricing will be determined using percent based payment calculation, mathematically derived for known materials to provide a commoditized upfront value.<br />\r\n	<br />\r\n	<strong>3. Percent Based Payment Calculation</strong><br />\r\n	Contract agreements which contain a profit share percentage will be paid promptly as per the agreement subject to terms and conditions.<br />\r\n	Suppliers may receive lower or higher percentage payouts on a per contract basis, which may be determined by the rating of supplier, volume, quality and consistency of materials.<br />\r\n	<br />\r\n	Typical percentage from Evotus payouts may result in repeat customers and mutual growth in companies in contract</p>\r\n<p>\r\n	<br />\r\n	<strong>4. Final Value</strong></p>\r\n<p>\r\n	Payment will be issued directly following metals production. Assay value of quotation will be paid in full upon verified representation on recovered metal.</p>\r\n<p>\r\n	Supplier reserves the right to utilize Evotus&rsquo;s stored assay of suppliers contract specific materials, to be verified by a mutually agreed third party in the event of final payment resulting in 2% below the quotational estimate. The third party assay will replace the original highest assay of the dataset, then averaged to determine final payment and subject to 2% verification document terms and conditions, provided upon request. <br />\r\n	<br />\r\n	Supplier has twenty-four (24) hours from issuance of payment to request additional assay verification.<br />\r\n	<br />\r\n	In the event final recovered metal is more than 2% above the quotational estimate, Evotus will pay the additional amount, consistent with the purchase order.</p>\r\n<p>\r\n	<br />\r\n	<span style=\"font-size:14px;\"><u><strong>E. Complete Contract</strong></u></span><br />\r\n	This contract contains all the terms governing the transaction and no amendment, modification<br />\r\n	or rescission of this contract shall be valid unless in writing and signed by Evotus, Inc.</p>\r\n<p>\r\n	<br />\r\n	<strong>1. Warranties and Representations</strong><br />\r\n	Supplier warrants and represents to Buyer that the material transferred or to be transferred by Supplier to Buyer is not and does not contain a Hazardous substance as defined in the Comprehensive Environmental Response Compensation and Liability Act of 1980. In the event that the Buyer incurs any liability or obligation due to a breach of said warranty and representation, Supplier agrees to indemnify and hold purchaser harmless from all such liabilities and obligations. Nothing set forth herein or implied shall constitute a waiver by Buyer of any rights under the law or pursuant to any written or oral agreements that it may have against any third parties or governmental agencies.<br />\r\n	Buyer shall be entitled at all times to Setoff any amount owing from suppler or any affiliated company of Supplier, to Buyer or any of its affiliated entities against any amount payable at any time by Buyer in connection with this contract or like transaction. Affiliated company shall be any corporation firm or association which is controlled by or which controls Supplier or Buyer as the case may be.<br />\r\n	<br />\r\n	All goods may be subject to inspection and testing by the Buyer and its customers at all times commercially practicable, and in any event prior to final acceptance by Buyer and it customers, but failure to inspect and accept or reject good shall neither relieve Supplier from responsibility for goods which do not conform with contract requirements nor impose liability on Buyer.<br />\r\n	<br />\r\n	It is expressly agreed that payment shall not constitute final acceptance. Defective materials may be returned at Suppliers risk and expense at full invoice price plus transportation and fees. No replacement of defective materials shall be made unless requested in writing by Buyer. Buyer may reject and return any portion of shipment which fails to comply with contract specification without invalidating the remainder of the contract.<br />\r\n	<br />\r\n	Buyer shall reserve the right from time to time and at its sole discretion to utilize its own assaying protocol and / or third party assaying and /or laboratory services of its choice to determine the material quality and recovery values. Buyer reserves the right to utilize its own and / or any third party qualified laboratory assay results on specific subject materials including but not limited to recovery based settlement purposes at its sole discretion as a necessary convenience to itself and /or the Supplier. Costs for these services may be included in un-itemized fashion within the processing fees noted within any subject purchase agreement and or any specific agreement to purchase at Buyer&rsquo;s sole discretion.</p>\r\n<p>\r\n	Supplier shall be deemed to have materially breached this contract or any part hereof if goods are not shipped in accordance to delivery specified or if goods do not strictly conform to the terms of this contract. Time shall be of the essence for the purposes of&nbsp; this contract.<br />\r\n	<br />\r\n	This contract shall be governed by and constructed in accordance with the laws of the<br />\r\n	State of North Carolina.<br />\r\n	<br />\r\n	<strong>2. Force Majeure</strong><br />\r\n	Buyer shall not be liable for failure or delay in performance under this contract due in whole or in part, to causes such as acts of god, fires, floods, or other catastrophes, strikes, lockouts, or labor disruption, wars, riots, embargos, import or export quotas or mandatory allocations;&nbsp; actions by foreign, federal, state, or local government, mill and factory conditions; or any other circumstance or causes beyond the control of Buyer in the reasonable conduct of business.<br />\r\n	<br />\r\n	Title and ownership of the contained metal units shall remain with Buyer at all times.<br />\r\n	<br />\r\n	Supplier agrees to indemnify and hold Buyer harmless from and against all loss, liability, damage or expenses (including reasonable attorney fees) arising out of any and all claims, damages, expenses, penalties, fires, including but not limited to claims for loss or damage to any property or injury to or death of any person asserted by or on behalf of any person firm corporation or Governmental authority arising out of or in any way connected with Suppliers use or disposition of any waste or products from the metal units contracted. Title to any waste or product other than the metal units contracted shall pass to Supplier immediately upon generation thereof and Supplier shall hold Buyer harmless from any damages that may arise from the residue.<br />\r\n	<br />\r\n	<strong>3. Buyer&rsquo;s Remedies</strong><br />\r\n	In the event Supplier fails to perform is obligations, Buyer may at its option cancel the contract and recover from Supplier its expenses, cancellation fees, foreign exchange loss, the price market differential at point of delivery, reasonable attorney fees and or special or consequential damages.<br />\r\n	<br />\r\n	Any and all disputes or controversies arising from or regarding the interpretation, performance, enforcement or breach of this agreement shall be resolved by final and binding ISRI arbitration or other judicial arbitration as mutually agreeable.<br />\r\n	&nbsp;<br />\r\n	<strong>4. Special Warranty</strong><br />\r\n	Supplier warrants and represents that the material sold to Buyer has been inspected and does not contain hazardous wastes as defined by federal, or state law or regulation, radioactive&nbsp; materials, explosives ordnance, chemical warfare agents or military munitions of any type&nbsp; unless rendered wholly inert and furthermore shall include but not be limited to polychlorinated biphenyl (PCB) in any fashion or form. Supplier agrees to defend, indemnify and hold Buyer harmless from and against any and or all liabilities or expenses (including reasonable attorney fees) incurred, directly or indirectly, by Buyer arising out of or in connection with Supplier&rsquo;s breach of the&nbsp; forgoing warranty and representations.<br />\r\n	<br />\r\n	<strong>5. Purchase, Processing and Refining</strong><br />\r\n	Under the authority of Buyer, any and / or all materials received under any purchase contract or by any specific agreement to purchase, may be processed and or refined by and at the sole discretion of Buyer as prescribed within industry standards whether by and through its own or other contracted and or associated entities. Buyer reserves the right to process and or refine materials as it sees fit and in accordance with the law. Buyer shall not be prohibited under any circumstances from any lawful activities with respect to processing and or refining.<br />\r\n	<br />\r\n	<strong>6. Weights and Measures</strong><br />\r\n	Buyer&rsquo;s weights, grading and final recovery analysis govern this and all transactions and are hereby agreed final. <br />\r\n	&nbsp;</p>\r\n', '2019-11-01', 1),
(9, 11, 'Material Purchase', 'Contract 1', '<p><strong>Purchasing Agreement</strong></p>\r\n\r\n<p>This agreement is made between (The &quot;Buyer&quot;) Pfane Scientific SRL DN19b - 277, Zauan, Salaj Romania, and The Supplier as listed above.</p>\r\n\r\n<p>Whereas the supplier wishes to sell and the buyer wishes to purchase the items attached hereto in Commodities List</p>\r\n', '2020-11-25', 1),
(10, 11, 'Processing Agreement', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-08-21', 1),
(11, 12, 'Contract 1', 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2019-09-01', 1);
INSERT INTO `businessforms` (`id`, `userid`, `title`, `contractname`, `details`, `sysdate`, `status`) VALUES
(12, 12, 'Contract 2', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-09-01', 1),
(13, 10, 'SERVICE', 'Contract 2', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in the terms below</p>\r\n<p>\r\n	New info spefici to supplier:</p>\r\n<p>\r\n	a</p>\r\n<p>\r\n	b</p>\r\n<p>\r\n	c</p>\r\n', '2019-10-27', 1),
(14, 14, 'FULL PREPAID PURCHASE CONTRACT', 'Contract 1', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sales, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to title and conveyance of the product referred to herein below and hereby sells such products, and buyer is ready willing and capable to purchase the said product subject to the terms and condition of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n\r\n<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand Kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ships loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n\r\n<p><strong>SCOPE OF CONTRACT</strong><br />\r\nThe supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n\r\n<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description: IT scraps</p>\r\n\r\n<p>Specifications and Quality scrap<br />\r\n2.4 Consignments are free of contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in Commodity Specifications List&nbsp;Attached Below +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p>Origin: Is listed as Suppliers Country AboveLoading Port: Hall be considered closest port of lading to Suppliers Address</p>\r\n\r\n<p><strong>PACKING</strong></p>\r\n\r\n<p>In 40 foot container</p>\r\n\r\n<p>SHIPMENT/DELIVERY<br />\r\nThe shipment will be for one-time delivery for the kg&#39;s set out below in the material list -/+ 5%.This shipment will be shipped within [10] working days from the date of agreement. The shipments will arrive no later than [45] days from date of B/L.Partial shipment is allowed, but at least one [1] containers per lot.Transshipment is permitted.</p>\r\n\r\n<p>CONTRACTED PRICE AND VALUE</p>\r\n\r\n<p>The PRICE BELOW is FOB.&nbsp; The buyer is responsible to send shipping container to suppliers yardTotal Value of this Agreement is as listed in the material description attached</p>\r\n\r\n<p>DESTINATIONS AND DISCHARGES</p>\r\n\r\n<p>Discharge ports: Dubai</p>\r\n\r\n<p>Marine Insurance:&nbsp; Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping Advice with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Weight</li>\r\n	<li>Name of the carrying vessel</li>\r\n	<li>B/L number and date, and&nbsp;Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n\r\n<p><br />\r\nTRANSACTION PAYMENT TERMS</p>\r\n\r\n<p>9.1 As per invoice. 50% of proforma invoice is paid before loading container.&nbsp; Final payment from commercial invoice is issued after the delivered container is locked, photographed as locked and weighed. Payments are made within 5 days of invoice date.&nbsp;</p>\r\n\r\n<p>DOCUMENTS TO BE PRESENTED FOR PAYMENT<br />\r\nSupplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list, showing total weight, contract number&nbsp;The following</li>\r\n</ul>\r\n\r\n<p>Documents must be sent to Buyer by fax or email in advance within 7 working days after shipment;One original Commercial InvoiceOne original Packing ListOne copy of Bill of LadingOne copy of Certificate of Origin</p>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n\r\n<p>INSURANCE</p>\r\n\r\n<p>Insurance will be covered by the Buyer (if Buyer so desires)</p>\r\n\r\n<p>INSPECTION</p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) different from Buyer&rsquo;s order, Buyer will notify Supplier within 5 days of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p>ADVICE OF SHIPMENT</p>\r\n\r\n<p>Supplier shall provide by email message to the Buyer, advising the shipment details within three (3) working days before shipment.</p>\r\n\r\n<p>FORCE MAJEURE</p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p>CLAIM</p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weigh in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.<br />\r\nSurvey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.<br />\r\nNon-agreed and/or off-grade Material will be deducted directly from total net payable weight.&nbsp;<br />\r\nWeight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.<br />\r\nSupplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p>DELAYED DELIVERY AND PENALTY</p>\r\n\r\n<p>Should the Supplier fail to effect on time as stipulated in this Agreement owing to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p>SUPPLIER LIABILITY</p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 - Shipment/ Delivery<br />\r\nIf Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment. The buyer will only be paid for what is delivered at the time.</p>\r\n\r\n<p>BUYER LIABILITY</p>\r\n\r\n<p>To make payment in target dates for the shipment, payment shall be affected by or within fifteen (15) banking days after receipt by the advising bank of all documents required under clause 11.1.<br />\r\n&nbsp;</p>\r\n\r\n<p>ARBITRATION</p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in case where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p>GENERAL CONDITION</p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreed, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective difital signature and seal accepting all of the terms and conditions here in which become effective and legally binding hereinafter.</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2020-02-20', 1),
(15, 14, 'CONTRACT HEADER', 'Contract 2', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sales, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to title and conveyance of the product referred to herein below and hereby sells such products, and buyer is ready willing and capable to purchase the said product subject to the terms and condition of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n', '2020-02-20', 1),
(27, 14, 'ADVANCED PAYMENT', 'ADVANCED PAYMENT', '<p><strong>TRANSACTION PAYMENT TERMS</strong></p>\r\n\r\n<p>Advance payment of commercial invoice is issued 5 days from receipt of the invoice outlining materials being purchased. Following such payment the Supplier agrees and&nbsp;is responsible for the proper loading, photographing and transmittal of all documents within 10 days of receipt of the payment for the material listed below.</p>\r\n\r\n<p><strong>DOCUMENTS TO BE PRESENTED FOR PAYMENT</strong><br />\r\nSupplier shall present the following documents to the Buyer before&nbsp;payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n</ul>\r\n\r\n<p>Supplier shall present the following documents to the Buyer after payment:</p>\r\n\r\n<ul>\r\n	<li>Packing list, showing total weight, contract number&nbsp;The following</li>\r\n</ul>\r\n\r\n<p>Documents must be sent to Buyer by fax or email in advance within 7 working days after shipment;</p>\r\n\r\n<ul>\r\n	<li>One original Commercial Invoice</li>\r\n	<li>One original Packing List</li>\r\n	<li>One copy of Bill of Lading</li>\r\n	<li>One copy of Certificate of Origin</li>\r\n</ul>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n', '2020-02-21', 1),
(28, 14, 'SIGNATURE LINES', 'SIGNATURE LINES', '<table align=\"center\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:500px\">\r\n	<tbody>\r\n		<tr>\r\n			<td>Supplier</td>\r\n			<td>&nbsp;</td>\r\n			<td>Buyer</td>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td>Signature:</td>\r\n			<td>____________________</td>\r\n			<td>Signature</td>\r\n			<td>__________________</td>\r\n		</tr>\r\n		<tr>\r\n			<td>Date:</td>\r\n			<td>____________________</td>\r\n			<td>Date:</td>\r\n			<td>__________________</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p>&nbsp;</p>\r\n', '2020-03-02', 1),
(16, 7, 'Developer test', 'Developer test', '<p>This is test</p>\r\n', '2020-02-19', 1),
(17, 11, 'Payment Terms 50% upfront', 'Payment Terms 50% upfront', '<p><strong>Payment Terms</strong></p>\r\n\r\n<p>The Purchaser agrees to pay the Supplier 50% in advance of loading, for the Material listed in Commodities list.&nbsp; &nbsp;The final payment for the material shall be initiated within 10 days of receiving the materials at the Purchasers yard, based on the final commercial invoice.</p>\r\n', '2021-09-20', 1),
(18, 11, 'Payment Terms NET 30', 'Payment Terms NET 30', '<p><strong>Payment Terms</strong></p>\r\n\r\n<p>The Purchaser agrees to pay the Supplier for the Material listed in Commodities list.&nbsp; &nbsp;The final payment for the material shall be initiated within 30 days of receiving the materials at the Purchasers yard, based on the final commercial invoice.</p>\r\n', '2021-09-20', 1),
(19, 11, 'Payment Terms NET 15', 'Payment Terms NET 15', '<p><strong>Payment Terms</strong></p>\r\n\r\n<p>The Purchaser agrees to pay the Supplier for the Material listed in Commodities list.&nbsp; &nbsp;The final payment for the material shall be innitiated within 15&nbsp;days of receiving the materials at the Purchasers yard, based on final commercial invoice.</p>\r\n', '2020-02-19', 1),
(20, 14, 'DEFENITIONS', 'DEFENITIONS', '<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand Kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ships loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n', '2020-02-20', 1),
(21, 14, 'SCOPE OF THE CONTRACT', 'SCOPE OF THE CONTRACT', '<p><strong>SCOPE OF CONTRACT</strong><br />\r\nThe supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n', '2020-02-20', 1),
(22, 14, 'MATERIAL, QUANTITY, QUALITY AND LOADING', 'MATERIAL, QUANTITY, QUALITY AND LOADING', '<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description:&nbsp; IT scraps<br />\r\nSpecifications and Quality: scrap as described in Commodities List, supplier agrees and confirms that the Consignments are free of Contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in Commodities List Attached +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p>Origin: Is listed as Suppliers Country Above</p>\r\n\r\n<p>Loading Port: shall be considered closest port of lading to Suppliers Address</p>\r\n', '2020-02-19', 1),
(23, 14, 'PACKING & SHIPMENT', 'PACKING & SHIPMENT', '<p><strong>PACKING</strong></p>\r\n\r\n<p>In 40 foot shipping container</p>\r\n\r\n<p><strong>SHIPMENT/DELIVERY</strong><br />\r\n<br />\r\nThe shipment will be for one-time delivery for the kg&#39;s set out below in the Commodity List -/+ 5%.This shipment will be shipped within [10] working days from the date of agreement. The shipments will arrive no later than [45] days from date of B/L.Partial shipment is allowed, but at least one [1] containers per lot. Transshipment is permitted.</p>\r\n\r\n<p><strong>CONTRACTED PRICE AND VALUE</strong></p>\r\n\r\n<p>The PRICE BELOW is FOB.&nbsp; The buyer is responsible to send shipping container to suppliers yardTotal Value of this Agreement is as listed in the material description attached</p>\r\n\r\n<p><strong>DESTINATIONS AND DISCHARGES</strong></p>\r\n\r\n<p>Discharge ports: Dubai</p>\r\n\r\n<p>Marine Insurance:&nbsp; Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping Advice with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Weight</li>\r\n	<li>Name of the carrying vessel</li>\r\n	<li>B/L number and date, and&nbsp;Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n', '2020-02-19', 1),
(24, 14, 'PAYMENT TERMS 50-50 Prior', 'PAYMENT TERMS 50-50 Prior', '<p><strong>TRANSACTION PAYMENT TERMS</strong></p>\r\n\r\n<p>9.1 As per invoice. 50% of proforma invoice is paid before loading container.&nbsp; Final payment from commercial invoice is issued after the delivered container is locked, photographed as locked and weighed. Payments are made within 5 days of invoice date.&nbsp;</p>\r\n\r\n<p><strong>DOCUMENTS TO BE PRESENTED FOR PAYMENT</strong><br />\r\nSupplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list, showing total weight, contract number&nbsp;The following</li>\r\n</ul>\r\n\r\n<p>Documents must be sent to Buyer by fax or email in advance within 7 working days after shipment;</p>\r\n\r\n<ul>\r\n	<li>One original Commercial Invoice</li>\r\n	<li>One original Packing List</li>\r\n	<li>One copy of Bill of Lading</li>\r\n	<li>One copy of Certificate of Origin</li>\r\n</ul>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n', '2020-02-19', 1),
(25, 14, 'PAYMENT TERMS NET 60', 'PAYMENT TERMS NET 60', '<p><strong>TRANSACTION PAYMENT TERMS</strong></p>\r\n\r\n<p>Final payment from commercial invoice is issued 60 days after the container is locked, photographed as locked,&nbsp;weighed and shipped to the Port for collection by the purchaser. Payments are made within 60 days of invoice date.&nbsp;</p>\r\n\r\n<p><strong>DOCUMENTS TO BE PRESENTED FOR PAYMENT</strong><br />\r\nSupplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list, showing total weight, contract number&nbsp;The following</li>\r\n</ul>\r\n\r\n<p>Documents must be sent to Buyer by fax or email in advance within 7 working days after shipment;</p>\r\n\r\n<ul>\r\n	<li>One original Commercial Invoice</li>\r\n	<li>One original Packing List</li>\r\n	<li>One copy of Bill of Lading</li>\r\n	<li>One copy of Certificate of Origin</li>\r\n</ul>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n', '2020-02-21', 1),
(26, 14, 'CONTRACT FOOTER', 'CONTRACT FOOTER', '<p><strong>INSPECTION</strong></p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) different from Buyer&rsquo;s order, Buyer will notify Supplier within 5 days of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p><strong>ADVICE OF SHIPMENT</strong></p>\r\n\r\n<p>Supplier shall provide by email message to the Buyer, advising the shipment details within three (3) working days before shipment.</p>\r\n\r\n<p><strong>FORCE MAJEURE</strong></p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p><strong>CLAIM</strong></p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weigh in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.<br />\r\nSurvey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.<br />\r\nNon-agreed and/or off-grade Material will be deducted directly from total net payable weight.&nbsp;<br />\r\nWeight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.<br />\r\nSupplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p><strong>DELAYED DELIVERY AND PENALTY</strong></p>\r\n\r\n<p>Should the Supplier fail to effect on time as stipulated in this Agreement owing to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p><strong>SUPPLIER LIABILITY</strong></p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 - Shipment/ Delivery<br />\r\nIf Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment. The buyer will only be paid for what is delivered at the time.</p>\r\n\r\n<p><strong>BUYER LIABILITY</strong></p>\r\n\r\n<p>To make payment in target dates for the shipment, payment shall be affected by or within fifteen (15) banking days after receipt by the advising bank of all documents required under clause 11.1.<br />\r\n&nbsp;</p>\r\n\r\n<p><strong>ARBITRATION</strong></p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in case where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p><strong>GENERAL CONDITION</strong></p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreed, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective difital signature and seal accepting all of the terms and conditions here in which become effective and legally binding hereinafter.</p>\r\n', '2020-02-19', 1),
(29, 11, 'FULL Prepaid (Detailed)', 'FULL Prepaid', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sale, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to the title and conveyance of the product referred to herein below and hereby sells such products, and the buyer is willing and capable of purchasing the said product subject to the terms and conditions of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n\r\n<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ships loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n\r\n<p><strong>SCOPE OF CONTRACT</strong><br />\r\nThe supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n\r\n<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description: IT scraps as listed below</p>\r\n\r\n<p>Specifications and Quality: <strong>Material Is Scrap EWC 160216</strong></p>\r\n\r\n<p>2.4 Consignments are free of metal and lead contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in &quot;Commodity Specifications&quot; List&nbsp;Attached Below +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p><strong>Origin: </strong>Is listed as Suppliers Address Above<br />\r\n<strong>Loading Port: </strong>shall be considered the closest port or Suppliers Address Above</p>\r\n\r\n<p><strong>PACKING</strong></p>\r\n\r\n<p>Loose or big bags in a truck.</p>\r\n\r\n<p>SHIPMENT / DELIVERY<br />\r\nThe shipment will be for one-time delivery for the kg&#39;s set out below in the material list -/+ 5%.This shipment will be shipped within [10] working days from the date of agreement. The shipments will arrive no later than [4] days from the date of shipment..Partial shipment is allowed, but at least one full truck per lot.Transshipment is permitted.</p>\r\n\r\n<p>CONTRACTED PRICE AND VALUE</p>\r\n\r\n<p>The PRICE BELOW is EXW.&nbsp; The buyer is responsible to send shipping truck to the suppliers yard</p>\r\n\r\n<p>Total Value of this Agreement is as listed in the material description attached</p>\r\n\r\n<p>DESTINATIONS AND DISCHARGES</p>\r\n\r\n<p>Discharge ports: Nusfalau Romania</p>\r\n\r\n<p><strong>Marine Insurance:&nbsp;</strong> Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping information via e-message with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Final Weight</li>\r\n	<li>B/L number and the date, and&nbsp;Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n\r\n<p><br />\r\nTRANSACTION PAYMENT TERMS</p>\r\n\r\n<p>9.1 As per invoice. A final payment from the commercial invoice is issued after the loaded truck is photographed as locked and weighed. Proof of payment shall be sent to the Supplier within 15 minutes of the request of payment and the supplier agrees to release the courier upon receiving the proof of payment from the buyer..&nbsp;</p>\r\n\r\n<p>DOCUMENTS TO BE PRESENTED AFTER SHIPMENT<br />\r\nSupplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list showing total weight, contract number&nbsp;The following</li>\r\n</ul>\r\n\r\n<p>Documents must be sent to the Buyer along with the shipped material or by fax, email or e-message within 4&nbsp;working days after shipment;</p>\r\n\r\n<p>One original Commercial Invoice</p>\r\n\r\n<p>One original Packing List</p>\r\n\r\n<p>One copy of Bill of Lading</p>\r\n\r\n<p>One copy of Certificate of Origin</p>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n\r\n<p>INSURANCE</p>\r\n\r\n<p>Insurance will be covered by the Buyer (if Buyer so desires)</p>\r\n\r\n<p>INSPECTION</p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) different from Buyer&rsquo;s order, Buyer will notify Supplier within 5 days of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p>ADVICE OF SHIPMENT</p>\r\n\r\n<p>Supplier shall provide by email or e-message to the Buyer, the date best suited for pickup by the buyer&nbsp;within three (3) working days before shipment.</p>\r\n\r\n<p>FORCE MAJEURE</p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p>CLAIM</p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weigh in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.<br />\r\nSurvey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.<br />\r\nNon-agreed and/or off-grade Material will be deducted directly from the total net payable weight.&nbsp;<br />\r\nThe weight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.<br />\r\nSupplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p>DELAYED DELIVERY AND PENALTY</p>\r\n\r\n<p>Should the Supplier fail to effect on time as stipulated in this Agreement due to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p>SUPPLIER LIABILITY</p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 -</p>\r\n\r\n<p>Shipment / Delivery<br />\r\nIf Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment.&nbsp;</p>\r\n\r\n<p>BUYER LIABILITY</p>\r\n\r\n<p>To make payments on target dates/times for the shipment,&nbsp;</p>\r\n\r\n<p>ARBITRATION</p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in case where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p>GENERAL CONDITION</p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreement, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective digital signature and seal accepting all of the terms and conditions herein which become effective and legally binding hereinafter.</p>\r\n', '2021-09-20', 1),
(30, 11, 'signature lines', 'signature lines', '<table align=\"center\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td>Supplier</td>\r\n			<td>&nbsp;</td>\r\n			<td>Buyer</td>\r\n			<td>&nbsp;</td>\r\n		</tr>\r\n		<tr>\r\n			<td>Signature:</td>\r\n			<td>____________________</td>\r\n			<td>Signature</td>\r\n			<td>__________________</td>\r\n		</tr>\r\n		<tr>\r\n			<td>Date:</td>\r\n			<td>____________________</td>\r\n			<td>Date:</td>\r\n			<td>__________________</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n', '2020-11-27', 1);
INSERT INTO `businessforms` (`id`, `userid`, `title`, `contractname`, `details`, `sysdate`, `status`) VALUES
(31, 11, 'PREPAID DAP (Detailed)', 'PREPAID DAP', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sale, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to the title and conveyance of the product referred to herein below and hereby sells such products, and the buyer is willing and capable of purchasing the said product subject to the terms and conditions of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n\r\n<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ship loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n\r\n<p><strong>SCOPE OF CONTRACT</strong><br />\r\nThe supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n\r\n<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description: IT scraps as listed below</p>\r\n\r\n<p>Specifications and Quality: <strong>Material Is Scrap EWC 160216&nbsp; OECD G020</strong></p>\r\n\r\n<p>2.4 Consignments are free of metal and lead contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in &quot;Commodity Specifications&quot; List&nbsp;Attached Below +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p><strong>Origin: </strong>Is listed as Suppliers Address Above<br />\r\n<strong>Loading Port: </strong>shall be considered the closest port or Supplier Address Above</p>\r\n\r\n<p><strong>PACKING</strong></p>\r\n\r\n<p>Loose or big bags in a truck.</p>\r\n\r\n<p>SHIPMENT / DELIVERY<br />\r\nThe shipment will be for one-time delivery for the kg&#39;s set out below in the material list -/+ 5%.This shipment will be shipped within [10] working days from the date of agreement. The shipments will arrive no later than [4] days from the date of shipment..Partial shipment is allowed, but at least one full truck per lot.Transshipment is permitted.</p>\r\n\r\n<p>CONTRACTED PRICE AND VALUE</p>\r\n\r\n<p>The PRICE BELOW is DAP.&nbsp; The seller is responsible to organize shipping to the buyers yard</p>\r\n\r\n<p>Total Value of this Agreement is as listed in the Commodities List attached</p>\r\n\r\n<p>DESTINATIONS AND DISCHARGES</p>\r\n\r\n<p>Discharge ports: Nusfalau Romania</p>\r\n\r\n<p><strong>Marine Insurance:&nbsp;</strong> Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping information via e-message with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Final Weight</li>\r\n	<li>4 high resolution color photos of the material that was loaded</li>\r\n	<li>B/L number and the date, and&nbsp;Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n\r\n<p><br />\r\nTRANSACTION PAYMENT TERMS</p>\r\n\r\n<p>9.1 As per invoice. A final payment from the commercial invoice is issued after the loaded truck is photographed as locked and weighed. Proof of payment shall be sent to the Supplier within 15 minutes of the request of payment and the supplier agrees to release the courier upon receiving the proof of payment from the buyer..&nbsp;</p>\r\n\r\n<p>DOCUMENTS TO BE PRESENTED AFTER SHIPMENT<br />\r\nSupplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list showing total weight and contract number&nbsp;</li>\r\n</ul>\r\n\r\n<p>The following documents must be sent to the Buyer along with the shipped material or by fax, email or e-message in within 4&nbsp;working days after shipment;</p>\r\n\r\n<p>One original Commercial Invoice</p>\r\n\r\n<p>One original Packing List</p>\r\n\r\n<p>One copy of Bill of Lading</p>\r\n\r\n<p>One copy of the Certificate of Origin</p>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n\r\n<p>INSURANCE</p>\r\n\r\n<p>Insurance will be covered by the Buyer (if Buyer so desires)</p>\r\n\r\n<p>INSPECTION</p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) 10% different from Buyer&rsquo;s order, Buyer will notify Supplier within 30&nbsp;minutes of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p>ADVICE OF SHIPMENT</p>\r\n\r\n<p>Supplier shall provide by email or e-message to the Buyer, the date best suited for shipment to buyer within three (3) working days before shipment.</p>\r\n\r\n<p>FORCE MAJEURE</p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p>CLAIM</p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weight in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.<br />\r\nSurvey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.<br />\r\nNon-agreed and/or off-grade Material will be deducted directly from the total net payable weight.&nbsp;<br />\r\nThe weight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.<br />\r\nSupplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p>DELAYED DELIVERY AND PENALTY</p>\r\n\r\n<p>Should the Supplier fail to take effect on time as stipulated in this Agreement due to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p>SUPPLIER LIABILITY</p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 -</p>\r\n\r\n<p>Shipment/ Delivery<br />\r\nIf Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment (s).&nbsp;</p>\r\n\r\n<p>BUYER LIABILITY</p>\r\n\r\n<p>To make payments on target dates/times for the shipment,&nbsp;</p>\r\n\r\n<p>ARBITRATION</p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in cases where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p>GENERAL CONDITION</p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreement, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective difital signature and seal accepting all of the terms and conditions herein which become effective and legally binding hereinafter.</p>\r\n', '2021-09-20', 1),
(32, 11, 'SIMPLE UPFRONT EXW', 'SIMPLE UPFRONT', '<p>THE BUYER:<br />\r\n&nbsp;</p>\r\n\r\n<p>Name&nbsp; Pfane Scientific SRL<br />\r\nAddress: 277 DN19b, Zauan, Salaj, Romania 457213<br />\r\nShipping Phone: +40766505922<br />\r\nBusiness Number (VAT): RO36023056<br />\r\nBusiness Registry Number: J31/259/2016<br />\r\nEnvironmental&nbsp;License Number: S45<br />\r\nIBAN:&nbsp; RO027BTRLEURCRT0347441601<br />\r\nSWIFT: BTRLRO22XXX<br />\r\nCompany Administrator: Dale Scott Marion<br />\r\nRepresentative: Zoltan Kiss</p>\r\n\r\n<p>WHEREAS:&nbsp; The seller wishes to sell and the buyer wishes to buy the Items listen in the &quot;Commodities List&quot; below.&nbsp; With the Minimum quantity as listed in the Commodities List and purchased at the EXW price agreed to as listed in the Commodities List.<br />\r\n<br />\r\nDelivery:<br />\r\nDelivery is agreed to be handled by the BUYER, All costs, insurance and routes will be handled by the buyer, the seller must inform the buyer of any special requirements for the shipment of the EWC material Listed in the Commodities List</p>\r\n\r\n<p>Payment:<br />\r\nPayment will be 100% upfront to the seller upon the loading of the truck and confirmation by the driver that the truck is ready to leave the sellers yard.&nbsp; A photo of the loaded material within the bed of the truck would also be sufficient if the driver cannot contact the buyer for some reason.&nbsp; Photos may be sent via e-message, sms, or email to a buyer representative.&nbsp;<br />\r\n<br />\r\nPayment will be executed within 15 minutes of receiving notice of loading or photo of loading and the seller agrees to accept the proof of payment (sent by e-message or email) (Wire transfer) as evidence of payment from the buyer, and agrees to allow the shipper to proceed with delivery.&nbsp;<br />\r\n<br />\r\nClaims:<br />\r\nClaims will be made only if the material received is more than 2% it&#39;s weight in non-recyclable waste.&nbsp; The seller agrees to deduct bags, boxes, crates, wood, steel, other non recyclable items or credit the equal amount of material added to a future order.<br />\r\n<br />\r\nGuarantee:<br />\r\nThe buyer Pfane Scientific SRL, hereby guarantees the material is being purchased for full recycling and no part of any of the material being purchased will end up in landfill or shall be buried as shaft filler or burned.&nbsp;&nbsp;<br />\r\n<br />\r\n&nbsp;</p>\r\n', '2021-04-09', 1),
(33, 11, 'SIMPLE UPFRONT DAP', 'SIMPLE UPFRONT DAP', '<p>THE BUYER:<br />\r\n&nbsp;</p>\r\n\r\n<p>Name&nbsp; Pfane Scientific SRL<br />\r\nAddress: 277 DN19b, Zauan, Salaj, Romania 457213<br />\r\nShipping Phone: +40766505922<br />\r\nBusiness Number (VAT): RO36023056<br />\r\nBusiness Registry Number: J31/259/2016<br />\r\nEnvironmental&nbsp;License Number: S45<br />\r\nIBAN:&nbsp; RO027BTRLEURCRT0347441601<br />\r\nSWIFT: BTRLRO22XXX<br />\r\nCompany Administrator: Dale Scott Marion<br />\r\nRepresentative: Zoltan Kiss</p>\r\n\r\n<p><strong>WHEREAS:&nbsp;</strong> The seller wishes to sell and the buyer wishes to buy the Items listed in the &quot;Commodities List&quot; below.&nbsp; With the Minimum quantity as listed in the Commodities List and purchased at the DAP&nbsp;price agreed to as listed in the Commodities List.<br />\r\n<br />\r\n<strong>Delivery:</strong><br />\r\nDelivery is agreed to be handled by the SELLER, All costs, insurance and routes will be handled by the SELLER, the seller must inform the buyer of any special requirements for the shipment of the EWC material Listed in the Commodities List</p>\r\n\r\n<p><strong>Payment:</strong><br />\r\nPayment will be 100% upfront to the seller upon the loading of the truck and confirmation by the driver that the truck is ready to leave the sellers yard.&nbsp; A photo of the loaded material within the bed of the truck would also be sufficient if the driver cannot contact the buyer for some reason.&nbsp; Photos may be sent via e-message, sms, or email to a buyer representative.&nbsp;<br />\r\n<br />\r\nPayment will be executed within 15 minutes of receiving notice of loading or photo of loading and the seller agrees to accept the proof of payment (sent by e-message or email) (Wire transfer) as evidence of payment from the buyer, and agrees to allow the shipper to proceed with delivery.&nbsp;<br />\r\n<br />\r\n<strong>Claims:</strong><br />\r\nClaims will be made only if the material received is more than 2% it&#39;s weight in non-recyclable waste.&nbsp; The seller agrees to deduct bags, boxes, crates, wood, steel, other non recyclable items or credit the equal amount of material added to a future order.<br />\r\n<br />\r\n<strong>Guarantee:</strong><br />\r\nThe buyer Pfane Scientific SRL, hereby guarantees the material is being purchased for full recycling and no part of any of the material being purchased will end up in landfill or shall be buried as shaft filler or burned.&nbsp;&nbsp;<br />\r\n&nbsp;</p>\r\n', '2021-09-20', 1),
(34, 11, '30 DAY EXW', '7Day DAP', '<p>THE BUYER:<br />\r\n&nbsp;</p>\r\n\r\n<p>Name&nbsp; Pfane Scientific SRL<br />\r\nAddress: 277 DN19b, Zauan, Salaj, Romania 457213<br />\r\nShipping Phone: +40766505922<br />\r\nBusiness Number (VAT): RO36023056<br />\r\nBusiness Registry Number: J31/259/2016<br />\r\nEnvironmental&nbsp;License Number: S45<br />\r\nIBAN:&nbsp; RO027BTRLEURCRT0347441601<br />\r\nSWIFT: BTRLRO22XXX<br />\r\nCompany Administrator: Dale Scott Marion<br />\r\nRepresentative: Zoltan Kiss</p>\r\n\r\n<p><strong>WHEREAS:&nbsp;</strong> The seller wishes to sell and the buyer wishes to buy the Items listed in the &quot;Commodities List&quot; below.&nbsp; With the Minimum quantity as listed in the Commodities List +/- 5%&nbsp;and purchased at the DAP&nbsp;price agreed to as listed in the Commodities List.&nbsp;&nbsp;<br />\r\n<br />\r\n<strong>Delivery:</strong><br />\r\nDelivery is agreed to be handled by the BUYER, All costs, insurance and routes will be handled by the BUYER, the seller must inform the buyer of any special requirements for the shipment of the EWC material Listed in the Commodities List</p>\r\n\r\n<p><strong>Payment:</strong><br />\r\nPayment will be 50% upfront, 50% net 30 working days to the seller after confirmation of materials match the materials ordered by the buyer. Photos may be sent via e-message, sms, or email to a seller representative, upon loading, verification data will be sent by the SELLER within at least 3 days after the shipment as arrived.&nbsp; Payment is made on the materials ordered at the quality ordered.&nbsp;<br />\r\n<br />\r\nFinal Payment will be executed within 30 working days of receiving delivery. Seller agrees to accept proof of payment (sent by e-message or email) (Wire transfer) as evidence of payment from the buyer on the due date of the payment. &nbsp;<br />\r\n<br />\r\n<strong>Claims:</strong><br />\r\nClaims will be made only if the material received deviates in quality by more than 5% from the material quality listed in the Commodities List.&nbsp; Claims acn be made within 30 days of original contract date and seller agrees to accept photo assay results and final processing results from Pfane to correct pricing.&nbsp; Deductions made by claims will be added as Credit to future deliveries or reduced from the final invoice.&nbsp; The seller also agrees to deduct bags, boxes, crates, wood, steel, and other non recyclable items or credit the equal amount of material added to a future order.</p>\r\n\r\n<p><strong>Guarantee:</strong><br />\r\nThe buyer Pfane Scientific SRL, hereby guarantees the material is being purchased for full recycling and no part of any of the material being purchased will end up in landfill or shall be burned or used as shaft filler.&nbsp; The BUYER has fulll right to recycle the items sent by the SELLER weather the quality matches that listed in the commodities list or not and&nbsp;any returns requiested before processing will be at the sellers expense.&nbsp; Including paying for any sorting or processing already performed by the BUYER at a rate of 500 EURO per ton.&nbsp;&nbsp;&nbsp;</p>\r\n', '2022-09-12', 1),
(35, 15, 'Contract 1', 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2021-08-24', 1),
(36, 15, 'Contract 2', 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Re?ning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Pro?t Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2021-08-24', 1),
(37, 15, 'Payment Terms 50% upfront (Simple)', 'Payment Terms 50% upfront (Simple)', '<p><strong>Payment Terms</strong></p>\r\n\r\n<p>The Purchaser agrees to pay the Supplier 50% in advance of loading, for the Material listed in Commodities list. &nbsp; The final payment for the material shall be initiated within 10 days of receiving the materials at the Purchasers yard, based on the final commercial invoice.</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2021-09-20', 1),
(38, 15, 'Recycling Agreement', 'Payment Terms NET 30 (Simple)', '<p><strong>Recycling Agreement</strong></p>\r\n\r\n<p>The supplier listed above hereby authorizes Pfane Gouverneur LLC to proceed with the recycling of the items listed in the Commodities List below and verifies that they have ull right and ownership of these items to do so.</p>\r\n', '2022-11-03', 1),
(45, 16, 'Contract 1', 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2023-03-16', 1),
(39, 15, 'FULL Prepaid (DETAILED LONG)', 'FULL Prepaid (DETAILED LONG)', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sale, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to the title and conveyance of the product referred to herein below and hereby sells such products, and the buyer is willing and capable of purchasing the said product subject to the terms and conditions of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n\r\n<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ships loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n\r\n<p><strong>SCOPE OF CONTRACT</strong></p>\r\n\r\n<p>The supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n\r\n<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description: IT scraps as listed below</p>\r\n\r\n<p>Specifications and Quality: <strong>Material Is Scrap EWC 160216(EU) GC020 (OESCA/OECD)</strong></p>\r\n\r\n<p>2.4 Consignments are free of metal and lead contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in &quot;Commodity Specifications&quot; List Attached Below +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p><strong>Origin: </strong>Is listed as Suppliers Address Above</p>\r\n\r\n<p><strong>Loading Port: </strong>shall be considered the closest port or Suppliers Address Above</p>\r\n\r\n<p><strong>PACKING</strong></p>\r\n\r\n<p>Loose or big bags in a truck.</p>\r\n\r\n<p>SHIPMENT / DELIVERY</p>\r\n\r\n<p>The shipment will be for one-time delivery for the kg&#39;s set out below in the material list -/+ 5%.This shipment will be shipped within [5] working days from the date of agreement. The shipments will arrive no later than [4] days from the date of shipment..Partial shipment is allowed, but at least one full truck per lot.Transshipment is permitted.</p>\r\n\r\n<p>CONTRACTED PRICE AND VALUE</p>\r\n\r\n<p>The PRICE BELOW is EXW.&nbsp; The buyer is responsible to send shipping truck to the suppliers yard</p>\r\n\r\n<p>Total Value of this Agreement is as listed in the material description attached</p>\r\n\r\n<p>DESTINATIONS AND DISCHARGES</p>\r\n\r\n<p>Discharge ports: Buyers Address Noted Above</p>\r\n\r\n<p><strong>Marine Insurance: </strong>&nbsp;Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping information via e-message with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Final Weight</li>\r\n	<li>B/L number and the date, and Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>TRANSACTION PAYMENT TERMS</p>\r\n\r\n<p>9.1 As per invoice. A final payment from the commercial invoice is issued after the loaded truck is photographed as locked and weighed. Proof of payment shall be sent to the Supplier within 15 minutes of the request of payment and the supplier agrees to release the courier upon receiving the proof of payment from the buyer..&nbsp;</p>\r\n\r\n<p>DOCUMENTS TO BE PRESENTED AFTER SHIPMENT</p>\r\n\r\n<p>Supplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list showing total weight, contract number The following Documents must be sent to the Buyer along with the shipped material or by fax, email or e-message within 4 working days after shipment;</li>\r\n</ul>\r\n\r\n<p>One original Commercial Invoice</p>\r\n\r\n<p>One original Packing List</p>\r\n\r\n<p>One copy of Bill of Lading</p>\r\n\r\n<p>One copy of Certificate of Origin</p>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n\r\n<p>INSURANCE</p>\r\n\r\n<p>Insurance will be covered by the Buyer (if Buyer so desires)</p>\r\n\r\n<p>INSPECTION</p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) different from Buyer&rsquo;s order, Buyer will notify Supplier within 2 days of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p>ADVICE OF SHIPMENT</p>\r\n\r\n<p>Supplier shall provide by email or e-message to the Buyer, the date best suited for pickup by the buyer within three (3) working days before shipment.</p>\r\n\r\n<p>FORCE MAJEURE</p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p>CLAIM</p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weigh in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.</p>\r\n\r\n<p>Survey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.</p>\r\n\r\n<p>Non-agreed and/or off-grade Material will be deducted directly from the total net payable weight.&nbsp;</p>\r\n\r\n<p>The weight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.</p>\r\n\r\n<p>Supplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p>DELAYED DELIVERY AND PENALTY</p>\r\n\r\n<p>Should the Supplier fail to effect on time as stipulated in this Agreement due to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p>SUPPLIER LIABILITY</p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 -</p>\r\n\r\n<p>Shipment / Delivery</p>\r\n\r\n<p>If Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment.&nbsp;</p>\r\n\r\n<p>BUYER LIABILITY</p>\r\n\r\n<p>To make payments on target dates/times for the shipment,&nbsp;</p>\r\n\r\n<p>ARBITRATION</p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in case where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p>GENERAL CONDITION</p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreement, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective digital signature and seal accepting all of the terms and conditions herein which become effective and legally binding hereinafter.</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2022-07-12', 1),
(40, 15, 'signature lines', 'signature lines', '', '2021-09-20', 1);
INSERT INTO `businessforms` (`id`, `userid`, `title`, `contractname`, `details`, `sysdate`, `status`) VALUES
(41, 15, 'PREPAID DAP (Detailed 3Page)', 'PREPAID DAP (Detailed 3Page)', '<p><strong>WHEREAS</strong></p>\r\n\r\n<p>The parties hereto mutually agree to the General Terms and Conditions for the sale, purchase and export of the Material as described below, having the following terminology fully understood and accepted as here below. The seller has the legal right to the title and conveyance of the product referred to herein below and hereby sells such products, and the buyer is willing and capable of purchasing the said product subject to the terms and conditions of this agreement.</p>\r\n\r\n<p>NOWTherefore, the parties agree as follows; it is being understood that each group may be referred to herein as individually or group or as &ldquo;Party&rdquo; or collectively as &ldquo;Parties.&rdquo;</p>\r\n\r\n<p><strong>DEFINITIONS:</strong></p>\r\n\r\n<p><strong>Metric Ton (MT):</strong> A measure of weight equivalent to one thousand kilograms mass (1,000 kg).</p>\r\n\r\n<p><strong>Material,</strong> Commodity or Product: refers to e-scrap, elsewhere in this agreement also referred to as scrap, whose specifications are detailed herein.</p>\r\n\r\n<p><strong>ICC: </strong>International Chamber of Commerce</p>\r\n\r\n<p><strong>Day:</strong> Means calendar day, unless differently specified. Month: Means Gregorian calendar monthBill of Lading of</p>\r\n\r\n<p><strong>B/L:</strong> Is the official document, issued at the loading port after completion of the loading operations, stating the ship loaded quantity expressed in metric tons (MT). This document has to be signed in original by the ship&rsquo;s master and made out in accordance with the instructions hereinafter specified in this contract agreement.</p>\r\n\r\n<p><strong>CFR</strong>: Cost and Freight which is defined in the ICC Incoterms 2020.FOB: Free On Board which is defined in the</p>\r\n\r\n<p><strong>ICC</strong> Incoterms 2020. Ex-Works: as defined in the ICC Incoterms 2020.WEEE: Waste Electrical and Electronic Equipment</p>\r\n\r\n<p>AND Whereas, the parties hereto mutually desire to execute this agreement which shall be binding upon and in are to the benefit of the said parties, their legal representatives, successors and assigns, in accordance with the jurisdictional law of the negotiated and fully executed contract agreement on the terms and conditions stipulated herein:</p>\r\n\r\n<p><strong>SCOPE OF CONTRACT</strong></p>\r\n\r\n<p>The supplier and the buyer, with full corporate authority and responsibility, respectively represent and warrant that one part is the lawful mandate seller of the Material, in quantity and quality as herein specified, and the other part as the potential buyer who has the full capability to purchase, receive and pay for the sold and delivered Material.</p>\r\n\r\n<p><strong>MATERIAL</strong></p>\r\n\r\n<p>Material description: IT scraps as listed below</p>\r\n\r\n<p>Specifications and Quality: <strong>Material Is Scrap EWC 160216&nbsp; OECD G020</strong></p>\r\n\r\n<p>2.4 Consignments are free of metal and lead contamination, radiation and explosives.</p>\r\n\r\n<p><strong>QUANTITY</strong></p>\r\n\r\n<p>3.1 Total Quantity: KGs listed in &quot;Commodity Specifications&quot; List Attached Below +/ 5% at the time of this Agreement.&nbsp;</p>\r\n\r\n<p><strong>ORIGIN AND PORT(S) OF LOADING</strong></p>\r\n\r\n<p><strong>Origin: </strong>Is listed as Suppliers Address Above</p>\r\n\r\n<p><strong>Loading Port: </strong>shall be considered the closest port or Supplier Address Above</p>\r\n\r\n<p><strong>PACKING</strong></p>\r\n\r\n<p>Loose or big bags in a truck.</p>\r\n\r\n<p>SHIPMENT / DELIVERY</p>\r\n\r\n<p>The shipment will be for one-time delivery for the kg&#39;s set out below in the material list -/+ 5%.This shipment will be shipped within [10] working days from the date of agreement. The shipments will arrive no later than [4] days from the date of shipment..Partial shipment is allowed, but at least one full truck per lot.Transshipment is permitted.</p>\r\n\r\n<p>CONTRACTED PRICE AND VALUE</p>\r\n\r\n<p>The PRICE BELOW is DAP.&nbsp; The seller is responsible to organize shipping to the buyers yard</p>\r\n\r\n<p>Total Value of this Agreement is as listed in the Commodities List attached</p>\r\n\r\n<p>DESTINATIONS AND DISCHARGES</p>\r\n\r\n<p>Discharge ports: Nusfalau Romania</p>\r\n\r\n<p><strong>Marine Insurance: </strong>&nbsp;Is not required and will be covered by the Buyer&rsquo;s account, if Buyer wants shipping terms CIF.</p>\r\n\r\n<p>Upon completion of the loading. The Supplier shall send the Buyer the Shipping information via e-message with the&nbsp;</p>\r\n\r\n<ul>\r\n	<li>Agreement number</li>\r\n	<li>Name of the Material</li>\r\n	<li>HS Code</li>\r\n	<li>Final Weight</li>\r\n	<li>4 high resolution color photos of the material that was loaded</li>\r\n	<li>B/L number and the date, and Estimated time of arrival [ETA] at port of discharge by e-mail within three (3) working days from B/L date.Sundays (at origin), Fridays (at destination), and Holidays will not be counted for Demurrage and will not be counted as lay time due to heavy rain, snow and/or storm.</li>\r\n</ul>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>TRANSACTION PAYMENT TERMS</p>\r\n\r\n<p>9.1 As per invoice. A final payment from the commercial invoice is issued after the loaded truck is photographed as locked and weighed. Proof of payment shall be sent to the Supplier within 15 minutes of the request of payment and the supplier agrees to release the courier upon receiving the proof of payment from the buyer..&nbsp;</p>\r\n\r\n<p>DOCUMENTS TO BE PRESENTED AFTER SHIPMENT</p>\r\n\r\n<p>Supplier shall present the following documents to the Buyer for payment:</p>\r\n\r\n<ul>\r\n	<li>Signed Commercial Invoice indicating Supplier company trade name, Supplier legal name (if different from trade name), contract number, itemized list of Material, quantity of each Material type, selling rate per Material type.&nbsp;</li>\r\n	<li>Packing list showing total weight and contract number&nbsp;</li>\r\n</ul>\r\n\r\n<p>The following documents must be sent to the Buyer along with the shipped material or by fax, email or e-message in within 4 working days after shipment;</p>\r\n\r\n<p>One original Commercial Invoice</p>\r\n\r\n<p>One original Packing List</p>\r\n\r\n<p>One copy of Bill of Lading</p>\r\n\r\n<p>One copy of the Certificate of Origin</p>\r\n\r\n<p>All documents must be in English.Third party documents are acceptable except Bill of Lading, Invoice and Draft.</p>\r\n\r\n<p>INSURANCE</p>\r\n\r\n<p>Insurance will be covered by the Buyer (if Buyer so desires)</p>\r\n\r\n<p>INSPECTION</p>\r\n\r\n<p>If Material quality and/or quantity is received (at the final destination) 10% different from Buyer&rsquo;s order, Buyer will notify Supplier within 30 minutes of receiving the Material. If recognized that the quality and/or quantity are different, Buyer may, at its sole discretion, immediately suspend subsequent orders, including any that may be in progress until an agreement is reached to settle the conflicted consignment.</p>\r\n\r\n<p>ADVICE OF SHIPMENT</p>\r\n\r\n<p>Supplier shall provide by email or e-message to the Buyer, the date best suited for shipment to buyer within three (3) working days before shipment.</p>\r\n\r\n<p>FORCE MAJEURE</p>\r\n\r\n<p>The Force Majeure Clause of the ICC Standard shall apply to this Agreement.Supplier/Buyer shall not be liable for the failure to perform the obligations under this Agreement where such Force-Majeure Circumstances are occurredSupplier/Buyer shall notify Buyer/Supplier immediately by Fax and e-mail within 15 days from the occurrence of Force Majeure Circumstances with an official notification of the occurrence issued by the Local Government Authorities or Chamber of CommerceIn the event of Force Majeure Circumstances causes a continuing and delaying of each shipment beyond one (1) Month from the contracted delivery date, the Buyer shall have the option to cancel that shipment or seek alternative commercial terms; hence in such event no penalty shall be claimed by either Party against the other</p>\r\n\r\n<p>CLAIM</p>\r\n\r\n<p>Should there be any difference in weight/quantity or quality between net weight in B/L and in reported by any inspection company at discharge port, the Buyer will lodge claim enclosing original report of any inspection company.</p>\r\n\r\n<p>Survey Report to the Supplier within 30 working days from discharging completion date. The Supplier shall settle the Buyer&rsquo;s claim within 40 working days after receiving the claim documents.</p>\r\n\r\n<p>Non-agreed and/or off-grade Material will be deducted directly from the total net payable weight.&nbsp;</p>\r\n\r\n<p>The weight discrepancy is set at 1%. If the shortage weight is in excess of 1%, the Supplier shall reimburse the Buyer for the shortage accordingly.</p>\r\n\r\n<p>Supplier shall have the right to send their Representatives to determine the Validity of the Claim within 15 working days upon receipt of the Claim.</p>\r\n\r\n<p>DELAYED DELIVERY AND PENALTY</p>\r\n\r\n<p>Should the Supplier fail to take effect on time as stipulated in this Agreement due to causes other than Force Majeure as provided in clause 15 of the Agreement, the Buyer has the right to cancel the Agreement and/or any outstanding order.</p>\r\n\r\n<p>SUPPLIER LIABILITY</p>\r\n\r\n<p>Goods shall be considered in &ldquo;full quantity&rdquo; if it is delivered in total within tolerance provided under Clause 3 - Quantity of this contract and within the time as stated in Clause 6 -</p>\r\n\r\n<p>Shipment/ Delivery</p>\r\n\r\n<p>If Supplier fails to deliver full quantity, only with the confirmation from the Buyer, he has the obligation to make it complete with the next shipment (s).&nbsp;</p>\r\n\r\n<p>BUYER LIABILITY</p>\r\n\r\n<p>To make payments on target dates/times for the shipment,&nbsp;</p>\r\n\r\n<p>ARBITRATION</p>\r\n\r\n<p>All disputes arising from the execution of this agreement shall be settled through friendly consultation, and in cases where no settlement can be reached, the case in dispute shall be submitted to Dubai International Financial Centre&rsquo;s Court of Arbitration in accordance with its rule of arbitration for settlement. The decision made by this arbitration centre shall be regarded as final and binding upon both Parties. Arbitration fees shall be borne by the losing party unless otherwise awarded.</p>\r\n\r\n<p>GENERAL CONDITION</p>\r\n\r\n<p>21.1. This contract consists of a total of twenty one (21) Clauses and is considered Valid from the Date of Signing by Buyer and SupplierAny changes of the Terms and Conditions of this Agreement must be in written form and added as an Addendum upon agreement, signed and dated by both parties shall be considered as an integral part of this original Agreement.</p>\r\n\r\n<p>The contract is made in English which shall be regarded as the official language of the Agreement.</p>\r\n\r\n<p>In witness hereof, the Supplier and the Buyer affix their respective difital signature and seal accepting all of the terms and conditions herein which become effective and legally binding hereinafter.</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2021-09-20', 1),
(42, 15, 'NEW SIMPLE UPFRONT EXW', 'NEW SIMPLE UPFRONT EXW', '<p>THE BUYER:</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Name&nbsp; Pfane Scientific SRL</p>\r\n\r\n<p>Address: 277 DN19b, Zauan, Salaj, Romania 457213</p>\r\n\r\n<p>Shipping Phone: +40766505922</p>\r\n\r\n<p>Business Number (VAT): RO36023056</p>\r\n\r\n<p>Business Registry Number: J31/259/2016</p>\r\n\r\n<p>Environmental License Number: S45</p>\r\n\r\n<p>IBAN:&nbsp; RO027BTRLEURCRT0347441601</p>\r\n\r\n<p>SWIFT: BTRLRO22XXX</p>\r\n\r\n<p>Company Administrator: Dale Scott Marion</p>\r\n\r\n<p>Representative: Zoltan Kiss</p>\r\n\r\n<p>WHEREAS:&nbsp; The seller wishes to sell and the buyer wishes to buy the Items listen in the &quot;Commodities List&quot; below.&nbsp; With the Minimum quantity as listed in the Commodities List and purchased at the EXW price agreed to as listed in the Commodities List.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Delivery:</p>\r\n\r\n<p>Delivery is agreed to be handled by the BUYER, All costs, insurance and routes will be handled by the buyer, the seller must inform the buyer of any special requirements for the shipment of the EWC material Listed in the Commodities List</p>\r\n\r\n<p>Payment:</p>\r\n\r\n<p>Payment will be 100% upfront to the seller upon the loading of the truck and confirmation by the driver that the truck is ready to leave the sellers yard.&nbsp; A photo of the loaded material within the bed of the truck would also be sufficient if the driver cannot contact the buyer for some reason.&nbsp; Photos may be sent via e-message, sms, or email to a buyer representative.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Payment will be executed within 15 minutes of receiving notice of loading or photo of loading and the seller agrees to accept the proof of payment (sent by e-message or email) (Wire transfer) as evidence of payment from the buyer, and agrees to allow the shipper to proceed with delivery.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Claims:</p>\r\n\r\n<p>Claims will be made only if the material received is more than 2% it&#39;s weight in non-recyclable waste.&nbsp; The seller agrees to deduct bags, boxes, crates, wood, steel, other non recyclable items or credit the equal amount of material added to a future order.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Guarantee:</p>\r\n\r\n<p>The buyer Pfane Scientific SRL, hereby guarantees the material is being purchased for full recycling and no part of any of the material being purchased will end up in landfill or shall be buried as shaft filler or burned</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2021-09-20', 1),
(43, 15, 'DROPOFF / RECYCLE', 'NEW SIMPLE UPFRONT DAP', '<h3>Recycler Details:</h3>\r\n\r\n<p><strong>Name;</strong>&nbsp; Pfane Gouverneur LLC</p>\r\n\r\n<p><strong>Shipping Address:</strong> 606 County Rte 11, Gouverneur, NY, USA, 13560</p>\r\n\r\n<p><strong>Shipping Phone:</strong> +1 (917) 992-5370</p>\r\n\r\n<p><strong>Business Registration&nbsp;Number:</strong> N34418700032</p>\r\n\r\n<p><strong>Environmental License Number:</strong> NY#01305</p>\r\n\r\n<p><strong>Company Contact:</strong> Eric Schultze</p>\r\n\r\n<p><strong>Representative:</strong> Nauman Kureshy<br />\r\n+1 (416) 788-0487<br />\r\nnkureshy@pfane.com</p>\r\n\r\n<p><strong>WHEREAS:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The Supplier is in posession of and has full title to electronic waste and wishes to recycle the Items listed in the &quot;Commodities List&quot; below.&nbsp; Without charge, by the Recycler</p>\r\n\r\n<p><strong>Delivery:</strong></p>\r\n\r\n<p>Delivery is to Pfane Electronics Refining at the corporate address and under the corporate name listed above.&nbsp; Delivery is made by the supplier and is without lein.</p>\r\n\r\n<p><strong>Recycler&nbsp;Guarantee:</strong></p>\r\n\r\n<p>The Recycler Pfane Gouverneur LLC, hereby guarantees the material is being received for full recycling and reclaimation of metals listed under OECD GC020 and no part of any of the material being purchased will end up in landfill, shall be buried as shaft filler,&nbsp;burned or otherwise treated as waste.</p>\r\n\r\n<p>1. Any items containing data will be immediately formatted if they can be reused without taking copies of the original data.</p>\r\n\r\n<p>2. Any items containing data that do not work will be dismantled and used for part and any data holding components will be broken down and shredded.</p>\r\n\r\n<p>3. All items containing plastic will be sorted and turned into plastic regrind</p>\r\n\r\n<p>4. All items containing Ferrous metals will be re melted and used in our production facility as replacement parts for the machines.</p>\r\n\r\n<p>5. All items containing nonferrous metals will be made into their pure form metals and sold to industry</p>\r\n\r\n<p>6. All non metalic fractions from circuit boards become a special mix building material made from Cement</p>\r\n\r\n<p>Thank you for choosing Pfane to receycle your electronics, You are currently saving a minimum of 500kg of CO2 from entering the atmosphere from every one ton of ewaste you have processed by Pfane.&nbsp; We look forward to your continued business, we thank you, our children thank you and the earth thanks you.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n', '2022-03-17', 1),
(44, 15, 'Purchase Order', 'Purchase Order', '<h3>Buyer Details:</h3>\r\n\r\n<p><strong>Name;</strong>&nbsp; Pfane Gouverneur LLC</p>\r\n\r\n<p><strong>Shipping Address:</strong> 606 County Rte 11, Gouverneur, NY, USA, 13560</p>\r\n\r\n<p><strong>Shipping Phone:</strong> +1 (917) 992-5370</p>\r\n\r\n<p><strong>Business Registration&nbsp;Number:</strong> N34418700032</p>\r\n\r\n<p><strong>Environmental License Number:</strong> NY#01305</p>\r\n\r\n<p><strong>Company Contact:</strong> Eric Schultze</p>\r\n\r\n<p><strong>Representative:</strong> Nauman Kureshy<br />\r\n+1 (416) 788-0487<br />\r\nnkureshy@pfane.com</p>\r\n\r\n<p><strong>WHEREAS:</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The seller wishes to sell and the buyer wishes to buy the Items listed in the &quot;Commodities List&quot; below.&nbsp; With the Minimum quantity as listed in the Commodities List and purchased at the EXW price agreed to as listed in the Commodities List.</p>\r\n\r\n<p><strong>Delivery:</strong></p>\r\n\r\n<p>Delivery is agreed to be handled by the Purchaser / Buyer,&nbsp; All costs, insurance and routes will be handled by the Purchaser / Buyer, However, seller must inform the buyer of any special requirements for the shipment of the EWC GC020&nbsp;material Listed in the Commodities List</p>\r\n\r\n<p><strong>Payment:</strong></p>\r\n\r\n<p>Payment will be 100% upfront to the seller upon the loading of the truck and confirmation by the driver / logistics company of final weight and packing list.&nbsp; A photo of the loaded material within the bed of the truck would also be sufficient along with the packing list, (if the driver cannot contact the buyer for some reason).&nbsp; Photos may be sent via e-message, sms, or email to a buyer representative.&nbsp;</p>\r\n\r\n<p>Payment will be executed within 15 minutes of receiving notice of loading or photo of loading and the seller agrees to accept the proof of payment (sent by e-message or email) (Proof Of Wire transfer) as evidence of payment from the buyer, and agrees to allow the shipper to proceed with delivery.&nbsp;</p>\r\n\r\n<p><strong>Claims:</strong></p>\r\n\r\n<p>Claims will be made only if the material received is more than 1% it&#39;s weight in non-recyclable waste.&nbsp; The seller agrees to deduct bags, boxes, crates, wood, and other non recyclable items, items that do not match the description of those listed on the Commodities List&nbsp;and shall credit the equal amount of material added to a future order.</p>\r\n\r\n<p><strong>Buyer&nbsp;Guarantee:</strong></p>\r\n\r\n<p>The buyer Pfane Gouverneur LLC, hereby guarantees the material is being purchased for full recycling and reclaimation of metals listed under OECD GC020 and no part of any of the material being purchased will end up in landfill, shall be buried as shaft filler,&nbsp;burned or otherwise treated as waste.</p>\r\n', '2022-01-27', 1);

-- --------------------------------------------------------

--
-- Table structure for table `businessforms021019`
--

CREATE TABLE `businessforms021019` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `title` varchar(500) NOT NULL,
  `details` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `businessforms021019`
--

INSERT INTO `businessforms021019` (`id`, `userid`, `title`, `details`, `sysdate`, `status`) VALUES
(1, 1, 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2019-05-10', 1),
(2, 1, 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-05-11', 1);
INSERT INTO `businessforms021019` (`id`, `userid`, `title`, `details`, `sysdate`, `status`) VALUES
(3, 7, 'Contract 1', '<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. DEFINITIONS</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1.1 In these terms and conditions (hereafter the &ldquo;Terms and Conditions&rdquo;) the following terms shall have the following meaning:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Company: means the company that issues the Purchase Order </span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Contract: means any Framework Agreement in force on the date of the Purchase Order, the Purchase Order, the Specification, any other documents to which the Purchase Order refers, the Seller&rsquo;s Quotation and acceptance of the Purchase Order (excluding any terms of sale that may be contained in such quotation and acceptance). In the event of any inconsistency or discrepancy between the above documents the order of precedence shall be as listed in this definition.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Framework Agreement: means any agreement signed by or on behalf of the Company with the Seller or on behalf of the Seller, covering the supply of Goods to the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goods: means any goods agreed in the Contract to be bought by the Company from the Seller (including any part or parts of them).</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Intellectual Property Rights: means all patents, designs and trade marks (whether registered or unregistered), copyright, know-how, database rights and all other intellectual property rights and similar or equivalent rights anywhere in the world which currently exist or are recognised in the future; and applications, extensions and renewals in relation to such rights.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Purchase Order: means any request sent by the Company in writing or by electronic means for the delivery of the Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Seller: means the person, firm or company who accepts the Company&#39;s Purchase Order.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Seller&rsquo;s Quotation: means a quotation by the Company in respect of the Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Specification: means the Company&rsquo;s written requirements in respect of the Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1.2 A reference to one gender includes a reference to the other gender.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1.3 Headings herein are for convenience only and do not affect the interpretation of these Terms and Conditions.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2. APPLICATION OF TERMS &amp; ENTIRE AGREEMENT</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.1 These Terms and Conditions shall be deemed to be automatically incorporated and shall apply to any and all Contracts. No standard terms or conditions endorsed upon, delivered with or contained in the quotation, acknowledgement or acceptance of order, specification or similar document shall form part of the Contract</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.2 The Contract shall, unless otherwise agreed in writing by the parties, comprise the entire agreement between the parties in relation to any Purchase Order and shall supersede all previous arrangements, discussions or agreements between the parties, but for the avoidance of doubt, any representations made by the Seller to the Company regarding the quality or specification of the Goods shall be deemed to form part of the Contract.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.3 Each Purchase Order for Goods by the Company from the Seller shall be deemed to be an offer by the Company to buy Goods subject to these Terms and Conditions and no Purchase Order shall be accepted until the Seller either expressly by giving notice of acceptance, or impliedly by fulfilling the Purchase Order, in whole or in part, accepts the offer.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.4 No variation to these Terms and Conditions and to the Contract shall have effect unless expressly agreed in writing by the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.5 For the avoidance of doubt these Terms and Conditions shall apply to the Contract irrespective of the language used in the Purchase Order and any associated documentation issued by the parties and the Seller acknowledges and recognises that it has full understanding of the language used in these Terms and Conditions.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3. QUALITY AND DEFECTS</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.1 The Goods shall be, of the best available design, of the best quality, material and workmanship, be without defect and conform in all respects with the Purchase Order and Specification.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.2 The Seller shall be deemed to have full knowledge of the purpose for which the Goods are required (which could include resale and use in international markets) and the Goods shall be fit for purpose and of merchantable quality, properly packed and secured. The Seller shall examine the Goods on behalf of the Company prior to delivery to ensure that they comply with the Contract requirements.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.3 The Seller shall comply with all legislation applicable in any territory where the Goods are to be delivered as to the provision of the Goods including compliance with any health and safety requirements in respect of the Goods or policies or procedures operated by the Company or its customers at any of their sites.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.4 Prior to delivery of the Goods to the Company, the Company shall have the right and be given the opportunity by the Seller to inspect the Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.5 If the results of such inspection or testing cause the Company to be of the opinion that the Goods do not conform or are unlikely to conform with the Purchase Order or to any specifications and/or patterns supplied or advised by the Company to the Seller, the Company shall inform the Seller and the Seller shall immediately take such action as is necessary to ensure conformity and in addition the Company shall have the right to require and witness further testing and inspection of the Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.6 Notwithstanding any such inspection or testing, the Seller shall remain fully responsible for the Goods and any such inspection or testing shall not limit or otherwise affect the Seller&#39;s obligations under the Contract and does not imply acceptance of the Goods by the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.7 Where a Purchase Order includes the manufacture of Goods in respect of the Company&rsquo;s design(s), the Seller shall inform the Company as soon as possible of any invention or improvement in design or method of manufacture arising out of the performance of the Purchase Order and any Intellectual Property Rights in respect of the same shall belong solely to the Company. The Seller will give the Company, at the Company&rsquo;s expense, all necessary assistance to enable the Company to obtain the benefit of all and any such rights whether such right is capable of being registered or not in any part of the world.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.8 If any of the Goods fail to comply with any of the provisions set out in this Article 3 the Company shall be entitled to avail itself of any one or more remedies listed in Article 12 without prejudice to Article 4.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.9 Without prejudice to Article 4 and unless otherwise agreed in writing between the parties, the claims the Company may assert against the Seller due to defects can only be exercised within the time limits provided below:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) for the sale of Goods that directly caused a defect in equipment (subject to them having been used in an appropriate manner for the purpose for which they were sold) the period for exercising a claim shall be of ten (60) days following delivery.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) for all other defects the period for exercising a claim shall be of three (10) days following the delivery of Goods.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4. INDEMNITY &amp; INSURANCE</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4.1 The Seller shall hold the Company harmless and keep the Company indemnified in full against all liabilities loss, damages, injury, costs and expenses (including legal and other professional fees and expenses) awarded against or incurred or paid by the Company as a result of or in connection with:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) defective or non-conforming Goods; and</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) any claim by any third party under any applicable law made against the Company during the period of time allowed under the law governing such claim in respect of any liability damage, cost or expense arising out of or in connection with the sale or reuse of the Goods. The period of time allowed under the laws governing the claim shall be deemed to start at the earliest of the following dates: (i) the date upon which the Goods or the products incorporating such Goods have been delivered by the Company to its direct customer or (ii) three months after delivery of the Goods by the Seller to the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iii) an infringement or alleged infringement of any Intellectual Property Rights caused by the use, manufacture or supply of the Goods; and</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iv) a breach of confidentiality.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4.2 The Seller shall take out and maintain with a reputable and financially sound insurance company insurance policies sufficient to cover any liability of the Seller towards the Company and third parties in respect of the provision of the Goods. The Seller shall provide copies of its insurance policies and premium receipts following a request by the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5. DELIVERY</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.1 The Goods shall be adequately protected against damage and deterioration in transit and delivered, DDP (Incoterms 2010) to the Company&#39;s place of business as stated in the Purchase Order.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.2 The time and date for delivery shall be specified in the Purchase Order, or in a programme agreed by the Company.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.3 The Seller shall invoice the Company upon, but separately from, despatch of the Goods to the Company. The invoice must show the relevant Purchase Order number.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.4 The Seller shall ensure that each delivery is accompanied by a delivery note which shows, among other things, the Purchase Order number, date of Purchase Order, number of packages and contents and, in the case of part delivery, the outstanding balance remaining to be delivered. If the Company requires it, information relating to the Goods must be supplied free of charge on delivery including, without limitation, a certificate of conformity.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.5 Time for delivery shall be of the essence.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.6 Unless otherwise stipulated by the Company in the Purchase Order, deliveries shall only be accepted by the Company in normal business hours.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.7 If the Goods are not delivered or provided on the due date then, or on a revised date as may have been advised by the Company following the granting of a period of grace without prejudice to any other rights which it may have, the Company reserves the right to:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) cancel the Contract in whole or in part and reject the Goods;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) refuse to accept any subsequent delivery or provision of the Goods which the Seller attempts to make;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iii) recover from the Seller any expenditure reasonably incurred by the Company in obtaining the Goods in substitution from another supplier; and</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iv) claim damages for any additional costs, loss or expenses incurred by the Company which are in any way attributable to the Seller&#39;s failure to deliver the Goods on the due date.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.8 Where the Company agrees in writing to accept delivery by instalments, the Contract shall be construed as a single contract in respect of each instalment. Nevertheless failure by the Seller to deliver any one instalment shall entitle the Company at its option to treat the whole Contract as repudiated.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.9 If the Goods are delivered to the Company in excess of the quantities ordered, the Company shall not be bound to pay for the excess and any excess shall be and shall remain at the Seller&#39;s risk and shall be returnable at the Seller&#39;s expense. If the Goods are delivered in advance of the due date the Company may reject the Goods at the Seller&rsquo;s expense or accept them, but will not be bound to pay for the same until the month following the month in which delivery should have taken place.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.10 The Company reserves the right to reject any Goods which do not conform as to quality, quantity or description with the particulars of the Contract within fourteen (14) days from delivery. Rejected Goods will be replaced without delay at no cost to the Company. Any rejected deliveries in accordance with the above shall be stored at the Seller&rsquo;s expense and risk until the Seller recovers the same.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6. RISK/PROPERTY</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Goods shall remain at the risk of the Seller until delivery to the Company is complete when ownership of the Goods shall pass to the Company. Where Goods are rejected by the Company risk shall pass to the Seller upon such rejection.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7. PRICE</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7.1 The price of the Goods shall be stated in the Purchase Order and unless otherwise agreed in writing by the Company shall be exclusive of value added tax but inclusive of all other charges and duties.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7.2 No variation in the price nor extra charges shall be accepted by the Company. No payment will be made for crates or packing material unless agreed by the Company and stated in the Purchase Order.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8. PAYMENT</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8.1 The Company shall pay the price of the Goods within the time period agreed between the parties as stated in the Purchase Order following receipt of a correct invoice.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8.2 Without prejudice to any other right or remedy, the Company reserves the right to set off any amount owing at any time from the Seller to the Company against any amount payable by the Company to the Seller under the Contract.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">9. CONFIDENTIALITY</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Seller shall keep in strict confidence all technical or commercial know-how, specifications, inventions, processes or initiatives which are of a confidential nature and have been disclosed to the Seller by the Company or its agents and any other confidential information concerning the Company&#39;s business or its products including a Purchase Order and its subject matter which the Seller may obtain, and the Seller shall restrict disclosure of such confidential material to such of its employees, agents or sub-contractors as need to know the same for the purpose of discharging the Seller&#39;s obligations to the Company and shall ensure that such employees, agents or sub-contractors are subject to like obligations of confidentiality as bind the Seller. The Seller shall not publicise the fact it is supplying Goods to the Company without the Company&rsquo;s prior written consent. The Seller shall comply with the provisions of this Article for a period of three (3) years after the Contract has been completed or is terminated for whatever reason.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	<br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10. TERMINATION</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10.1 The Company shall have the right at any time to terminate all or any part of the Contract automatically with or without cause at its convenience by sending a four (4) week prior written notice to this effect to the Seller. Subject to the Seller complying with the provisions of Article 11.3 hereafter, the Company shall pay to the Seller:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) the price of work completed in accordance with the Contract;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) the cost of any work in progress authorised by the Company subject to such work not being in excess of four (4) weeks of production;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iii) if any, the balance of the cost of the Tooling due in accordance with Article 10. </span></b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Seller shall not be entitled to any other payment from the Purchaser due to termination of the Contract by virtue of this Article 11.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10.2 The Company shall have the right at any time by giving notice in writing to the Seller to terminate the Contract immediately, without having to request a court order and without liability to the Seller if:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) the Seller fails to or threatens not to fulfil any of the terms and conditions of the Contract; or</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) any distress, execution or other process is levied upon any of the assets of the Seller; or</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iii) the Seller has a bankruptcy order made against him or makes an arrangement or composition with his creditors, or otherwise takes the benefit of any statutory provision for the time being in force for the relief of insolvent debtors, or (being a body corporate) convenes a meeting of creditors (whether formal or informal), or enters into liquidation (whether voluntary or compulsory) except a solvent voluntary liquidation for the purpose only of reconstruction or amalgamation, or has a receiver or manager, administrator or administrative receiver appointed of its undertaking or any part thereof, or documents are filed with the court for the appointment of an administrator of the Seller or notice of intention to appoint an administrator is given by the Seller or its directors, or a resolution is passed or a petition presented to any court for the winding-up of the Seller or for the granting of an administration order in respect of the Seller, or any proceedings are commenced relating to the insolvency or possible insolvency of the Seller; or</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iv) in case of merger, spin-off or direct or indirect change of control of the Seller; or</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(v) the financial position of the Seller deteriorates to such an extent that in the opinion of the Company the capability of the Seller adequately to fulfil its obligations under the Contract has been placed in jeopardy.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10.3 The termination of the Contract, however arising, shall be without prejudice to the rights and duties of the Company accrued prior to termination. The Seller shall transfer title and deliver to the Company, within the time limits and at conditions specified by the Company, any finished works and any work in progress and all Tooling, The provisions which expressly or impliedly have effect after termination including but not limited to confidentiality, remedies indemnity and guarantee shall continue to be enforceable as long as necessary to give them full force and effect notwithstanding termination.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">11. REMEDIES</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Without prejudice to any other right or remedy which the Company may have, if any Goods are not supplied in accordance with, or the Seller fails to comply with any of the terms of the Contract or on a revised date as may have been advised by the Company following the granting of a period of grace, the Company shall be entitled to avail itself of any one or more of the following remedies at its discretion, whether or not any part of the Goods have been accepted by the Company:</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(i) to rescind the Purchase Order;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(ii) to reject the Goods (in whole or in part) and return them to the Seller at the risk and cost of the Seller on the basis that a full refund for the Goods so returned shall be paid forthwith by the Seller;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iii) at the Company&#39;s option to give the Seller the opportunity at the Seller&#39;s expense either to remedy any defect in the Goods or to supply replacement Goods and carry out any other necessary work to ensure that the terms of the Contract are fulfilled;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(iv) to refuse to accept any further deliveries/provision of the Goods but without any liability to the Seller;</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(v) to procure supplies from a third party at the Company&rsquo;s choice, until the Seller remedies the breach, with all extra costs incurred by the Company in respect thereof being borne by the Seller; and</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(vi) to claim such damages as may have been sustained in consequence of the Seller&#39;s breach or breaches of the Contract.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	&nbsp;</p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14. GENERAL</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.1 If any provision of the Contract is found by any court, tribunal or administrative body of competent jurisdiction to be wholly or partly illegal, invalid, void, voidable, unenforceable or unreasonable, it shall, to the extent of such illegality, invalidity, voidness, unenforceability or unreasonableness, be deemed severable and the remaining provisions of the Contract and the remainder of such provision shall continue in full force and effect.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.2 Failure or delay by the Company in enforcing or partially enforcing any provision of the Contract shall not be construed as a waiver of any of its rights under the Contract.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.3 Any waiver by the Company of any breach of, or any default under, any provision of the Contract by the Seller shall not be deemed a waiver of any subsequent breach or default and shall in no way affect the other terms of the Contract.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.4 Each right or remedy available to the Company under the Contract is notwithstanding anything to the contrary without prejudice to any other right or remedy of the Company whether under the Contract or at law.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.5 Notwithstanding anything to the contrary in the Contract, no limitation of the Seller&rsquo;s liability shall apply for personal injury or death caused by the Goods, or in respect of damages for which the Seller is not permitted by law to exclude or limit its liability, or in case of damages due to gross negligence or wilful misconduct, or in case of any infringement of any third party intellectual property rights or in case of any breach of confidentiality undertaking.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.6 Any notice to be served under these Terms and Conditions must be in writing and shall be delivered by registered mail with acknowledgement of receipt.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.7 The Contract shall be deemed to have been made in the Country of the Purchaser and the construction, validity and performance of this contract shall be governed in all respects by the law of the Country Of The Purchaser.</span></b></p>\r\n<p>\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><br />\r\n	</b></p>\r\n<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\">\r\n	<b id=\"docs-internal-guid-93938c89-7fff-106b-dfd1-9efd7ea0d04a\" style=\"font-weight:normal;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">14.8 Any differences or disputes arising out of or in connection with the Contract and any part thereof shall be brought exclusively in the court(s) having jurisdiction over the location where the Company has its registered office.</span></b></p>', '2019-05-15', 1);
INSERT INTO `businessforms021019` (`id`, `userid`, `title`, `details`, `sysdate`, `status`) VALUES
(4, 7, 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-05-11', 1),
(7, 10, 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in the terms below</p>', '2019-09-04', 1),
(8, 10, 'Evotus Purchase Contract', '<div class=\"WordSection1\" style=\"page: WordSection1;\">\r\n	<p align=\"center\" class=\"MsoNormal\" style=\"margin: 5.85pt 155.6pt 0.0001pt 158.1pt; font-size: 11pt; font-family: Verdana, sans-serif; text-align: center;\">\r\n		&nbsp;</p>\r\n</div>\r\n<p>\r\n	<span style=\"font-size: 9pt; font-family: Verdana, sans-serif;\"><br clear=\"all\" style=\"break-before: page;\" />\r\n	</span></p>\r\n<p class=\"MsoBodyText\" style=\"margin: 0.1pt 0in 0.0001pt; font-size: 8pt; font-family: Verdana, sans-serif;\">\r\n	<b><span style=\"font-size: 14pt;\"><o:p>&nbsp;</o:p></span></b></p>', '2019-09-10', 1),
(9, 11, 'Material Purchase', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>', '2019-08-21', 1),
(10, 11, 'Processing Agreement', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-08-21', 1),
(11, 12, 'Contract 1', '<p>\r\n	Purchasing Agreement</p>\r\n<p>\r\n	This agreement is made between Purchaser Info, and Supplier Info.</p>\r\n<p>\r\n	Whereas the supplier wishes to sell and the buyer wishes to purchase the itmes attached hereto in Schedule A</p>\r\n<p>\r\n	&nbsp;</p>', '2019-09-01', 1),
(12, 12, 'Contract 2', '<p>\r\n	The seller agrees that materials delivered to Pfane Scientific SRL are automatically rendered for processing and the Seller gives Pfane Scientific the right to begin processing immediately after delivery without notice. The seller is responsible for any sorting fees, granulation fees and a discharge fee of 1000 Euro if materials are requested for return, after Pfane Scientific has organized processing and refinement for the materials delivered.</p>\r\n<h4>\r\n	<strong>Delivery:</strong></h4>\r\n<p>\r\n	DAP to Pfane Scientific SRL by truck. In case of non-agreed delivery delays we reserve the right to cancel non fulfilled delivery quotas or the complete contract.</p>\r\n<p>\r\n	Unloading process takes place in Pfane Yard during working days from 7:00 to 14:00 on the date of arrival. Declaration of arrival time must be verified in email form at least one day before the delivery at email address: delivery@pfane.com</p>\r\n<h4>\r\n	<strong>Quotational period:</strong></h4>\r\n<p>\r\n	Base pricing is provided within 3 working days after delivery of materials to Pfane. The Sorted List will contain the Base price to be used on the Proforma Invoice.</p>\r\n<h4>\r\n	<strong>Materials Assay</strong></h4>\r\n<p>\r\n	Material samples after processing (in the case of high grade circuit boards or chips) will be made by 2 separate and independent laboratories. Final payment values will be determined as the median value between the 2 resulting assays. The assay&rsquo;s are completed within 35 days of delivery for circuit board materials. or 25 days in the case of granular material.</p>\r\n<h4>\r\n	<strong>Invoicing</strong></h4>\r\n<p>\r\n	Invoices should be made to Pfane Scientific SRL, 30j Strada Garii, Nusfalau, Romania, 457260. RO36023056. Environmental ID: Sj58 a proforma invoice should be delivered after receiving the Base pricing after sorting. Final invoice should be delivered after the assayed values have been delivered by pfane. This will automatically cancel the proforma invoice</p>\r\n<h4>\r\n	<strong>Payment</strong></h4>\r\n<p>\r\n	Full payment will be made by bank transfer to the sellers chosen bank account in their national currency. Bank conversion rates will be applied on the date of payment, Pfane Scientific is not responsible for the bank conversion rate being used. All funds will be converted from Euro to the sellers national legal currency.</p>\r\n<p>\r\n	Full payment is made within 30 working days for granulated materials, and within 45 working days for circuit board materials. A grace period of 4 days is agreed to due to international holidays or natural disasters.</p>\r\n<h3>\r\n	PROCESSING / REFINING FEES / PAYMENTS</h3>\r\n<p>\r\n	Circuit Board / Component Specific Fees</p>\r\n<p>\r\n	<strong>Offloading and Sorting Fee</strong></p>\r\n<p>\r\n	20 Euro per ton / Not applied to contracts</p>\r\n<p>\r\n	<strong>Fiber Extraction, Treatment, Disposal Fee</strong></p>\r\n<p>\r\n	Class 1 - 190 Euro/t collected for post 2002 electronics</p>\r\n<p>\r\n	Class 2 - 260 Euro/t collected for pre 2002 electronics. (contains bromine)</p>\r\n<p>\r\n	<strong>Granulation Processing fees.(Deducted after refining)</strong></p>\r\n<p>\r\n	&gt;30% Mixed Metals = 244 Euro per ton.</p>\r\n<p>\r\n	10% to 29% Mixed Metals = 310 Euro per ton</p>\r\n<p>\r\n	&lt; 10% Mixed Metals = 360 Euro per ton.</p>\r\n<p>\r\n	<strong>Fine grinding / deironization (components) (60 micron)</strong></p>\r\n<p>\r\n	190 Euro /kg</p>\r\n<p>\r\n	Minimum required 50kg</p>\r\n<p>\r\n	Loss Deduction 5%</p>\r\n<p>\r\n	<strong>Payment Terms</strong></p>\r\n<ul>\r\n	<li>\r\n		Granuals and loose materials (preground, not accepted in brick format) 30 working days from delivery.</li>\r\n	<li>\r\n		Circuit Board Material (whole, sorted and inspected as quality materials) 45 working days from date of delivery.</li>\r\n</ul>\r\n<h4>\r\n	<strong>Material Rejection Policy</strong></h4>\r\n<p>\r\n	Pfane Scientific in it&rsquo;s sole discretion has the right to sort, separate and inspect all materials being delivered, the list of materials delivered after sorting is attached with this contract. Any items or waste sorted is listed under &quot;Garbage&quot; and cannot be processed. You are free to collect these items within 10 days from signing of this contract or Pfane Scientific has the right to charge for their proper disposal. Rejected items would include but are not limited to, Soiled or rusted circuit boards, boards with evidence of acid stripping, boards or materials that are significantly different than the materials agreed to be purchased. Pallets, Bags or wood / plastic pieces.</p>\r\n<h4>\r\n	<strong>Refining Fees / Payment Calculations</strong></h4>\r\n<p>\r\n	<strong>Copper Payment</strong></p>\r\n<p>\r\n	Paid on the LME / USD price per ton according the lowest value between the 3 Month Average Bid or the Daily Close Cash Bid. The fixated price will be sent during the month of payment and must be applied to the final invoice. All proforma invoices should be based on the &quot;Base Price&quot; of the material being sent, as laid out in the Base Price section of this contract.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<strong>Precious Metals Payment.</strong></p>\r\n<p>\r\n	(Gold, silver, palladium and platinum) based on US commodity price in USD per gram. According to the calculation and expectation chart provided.</p>\r\n<p>\r\n	<strong>Conversion rate:</strong></p>\r\n<p>\r\n	The USD quotation will be converted into EUR by using the Bloomberg-Fixing (BFIX) rate 2 p.m. CET plus 30 basis points (=0,0030)</p>\r\n<p>\r\n	<strong>Copper Payment Calculation</strong></p>\r\n<p>\r\n	EUR 900,--/t pay. Cu for 70 % Cu and more Minus 2.5% Loss Deduction</p>\r\n<p>\r\n	EUR 950,--/t pay. Cu for 65 &ndash; 69,99 % Cu minus 3% Loss Deduction</p>\r\n<p>\r\n	EUR 1000,--/t pay. Cu for 60 &ndash; 64,99 % Cu minus 4% loss Deduction</p>\r\n<p>\r\n	<strong>Example Copper Price Formula:</strong></p>\r\n<p>\r\n	Price in &euro;/t = (LME &ndash; 900) x ( Vol Cu% - 2,5%)</p>\r\n<p>\r\n	Minimum material required: 1ton at 60% Cu</p>\r\n<p>\r\n	Loss Deduction: As per quality</p>\r\n<p>\r\n	Refining Charge: As per quality.</p>\r\n<p>\r\n	<strong>Silver Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Silver content paid at</p>\r\n<p>\r\n	65 % with an Ag content up to 999 g/t Ag</p>\r\n<p>\r\n	70 % with an Ag content of 1.000 - 1.999 g/t Ag</p>\r\n<p>\r\n	75 % with an Ag content of 2.000 - 4.999 g/t Ag</p>\r\n<p>\r\n	80 % with an Ag content of 5.000 - 9.999 g/t Ag</p>\r\n<p>\r\n	85 % with an Ag content of 10.000 - 49.999 g/t Ag</p>\r\n<p>\r\n	90 % with an Ag content of 50.000 g/t and more</p>\r\n<p>\r\n	based on LBMA London Silver Price,</p>\r\n<p>\r\n	minimum required 300 g/t,</p>\r\n<p>\r\n	loss deduction 200 g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 25,-/kg payable from Ag value</p>\r\n<p>\r\n	<strong>Gold Payment Calculation</strong></p>\r\n<p>\r\n	Assayed Gold content Paid at</p>\r\n<p>\r\n	70 % with an Au content up to 249 g/t Au</p>\r\n<p>\r\n	72 % with an Au content of 250 - 499 g/t Au</p>\r\n<p>\r\n	79 % with an Au content of 500 - 999 g/t Au</p>\r\n<p>\r\n	84 % with an Au content of 1.000 - 1.499 g/t Au</p>\r\n<p>\r\n	90 % with an Au content of 1.500 g/t Au and more</p>\r\n<p>\r\n	based on LBMA London Gold Price AM,</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 285,- /kg payable from Au</p>\r\n<p>\r\n	<strong>Palladium:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed.Palladium content Paid at</p>\r\n<p>\r\n	60 % with an Pd content up to 199 g/t Pd</p>\r\n<p>\r\n	70 % with an Pd content of 200 - 399 g/t Pd</p>\r\n<p>\r\n	72 % with an Pd content of 400 - 549 g/t Pd</p>\r\n<p>\r\n	75 % with an Pd content of 550 g/t Pd and more</p>\r\n<p>\r\n	based on LBMA London Palladium Price AM</p>\r\n<p>\r\n	minimum required 30 g/t,</p>\r\n<p>\r\n	loss deduction 20g/t</p>\r\n<p>\r\n	less Refining Charge of EUR 250,-/kg payable from Pd</p>\r\n<p>\r\n	<strong>Platinum:Payment Calculation</strong></p>\r\n<p>\r\n	Assayed. Platinum content at</p>\r\n<p>\r\n	60 % with an Pt content up to 19 g/t,</p>\r\n<p>\r\n	70 % with an Pt content of 20 g/t and more,</p>\r\n<p>\r\n	based on LBMA London Platinum Price AM,</p>\r\n<p>\r\n	minimum required 35 g/t,</p>\r\n<p>\r\n	loss deduction 10g/t</p>\r\n<p>\r\n	less Reﬁning Charge of EUR 530,-/kg payable from Pt</p>\r\n<p>\r\n	All fees are deducted in USD equivalent, converted by Pfane.</p>\r\n<p>\r\n	<strong>Proﬁt Split / Estimated Value</strong></p>\r\n<p>\r\n	Estimated Value is based on total anticipated assay value of materials delivered, it is not your final price. The estimated value of a material is based on previous processing of similar materials. Due to the high variations of the qualities of materials, any material  is paid only on final assayed values. Seller shall be paid {rowpriprice} % of the net value of the extracted metals (after fees/deductions listed herein) Example: (Metal Value - Fees) * {rowpriprice} %</p>\r\n', '2019-09-01', 1);

-- --------------------------------------------------------

--
-- Table structure for table `buycontacts`
--

CREATE TABLE `buycontacts` (
  `id` int(11) NOT NULL,
  `buyerid` int(11) NOT NULL,
  `contact_name` varchar(100) NOT NULL,
  `contact_mobile` varchar(100) NOT NULL,
  `contact_office` varchar(100) NOT NULL,
  `contact_email` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `buycontacts`
--

INSERT INTO `buycontacts` (`id`, `buyerid`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `status`) VALUES
(1, 11, 'Asif', '03222342182', '57475564586', 'malikmasif@hotmail.com', 1);

-- --------------------------------------------------------

--
-- Table structure for table `buyerorder`
--

CREATE TABLE `buyerorder` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `buyerid` int(11) DEFAULT NULL,
  `receivingdate` date DEFAULT NULL,
  `receivingtime` varchar(100) DEFAULT NULL,
  `receivedkilos` float(13,2) DEFAULT NULL,
  `qrcode` varchar(255) DEFAULT NULL,
  `orderstatus` varchar(100) DEFAULT NULL,
  `contractno` varchar(255) DEFAULT NULL,
  `sentdate` date DEFAULT NULL,
  `advance` int(11) DEFAULT NULL,
  `acceptdate` date DEFAULT NULL,
  `buyername` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `amountaccept` float(13,2) DEFAULT NULL,
  `offerprice` float(13,3) DEFAULT NULL,
  `truckno` varchar(255) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `buyerorder`
--

INSERT INTO `buyerorder` (`id`, `userid`, `buyerid`, `receivingdate`, `receivingtime`, `receivedkilos`, `qrcode`, `orderstatus`, `contractno`, `sentdate`, `advance`, `acceptdate`, `buyername`, `amountaccept`, `offerprice`, `truckno`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(1, 1, 4, '2019-01-31', '09:15 AM', NULL, 'supplierorder_2ec110570cf55ef47479219cdd68b4221.png', 'Send Shipment', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(2, 1, 3, '2019-02-02', '05:01 AM', NULL, 'supplierorder_6fbf5fee7af221a33257e766df41f4cf2.png', 'Send Shipment', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(3, 1, 4, '2019-02-04', '01:01 AM', NULL, 'supplierorder_994038609dd33d6c9312c1522557c8853.png', 'UNSORTED', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(4, 1, 4, '2019-02-04', '09:15 AM', NULL, 'supplierorder_392cc84ac3f920728ccd9e7a91eb4bfe4.png', 'UNSORTED', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(5, 1, 4, '2019-02-06', '10:29 AM', NULL, 'supplierorder_506e9f979adfcca53213b3ff5cb922965.png', 'Send Shipment', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(6, 1, 4, '2019-02-06', '08:01 PM', NULL, 'supplierorder_115c3daed020c93bb1af59dce389fbac6.png', 'Send Shipment', '118600946', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(7, 1, 4, '2019-02-15', '07:17 PM', NULL, 'supplierorder_65e9b936861de7baa5ab1a942141a5307.png', 'Send Shipment', '1271762378561723571562', NULL, NULL, NULL, NULL, NULL, NULL, 'NTK44802', NULL, NULL, NULL, 1),
(17, 7, 5, '2019-11-20', '08:10 AM', NULL, 'supplierorder_30110d6220914f1bdbddd3385cae0a9717.png', 'UNSORTED', '0332527187', NULL, NULL, NULL, NULL, NULL, NULL, 'LVj-456', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(18, 7, 5, '2020-01-09', '01:01 AM', NULL, NULL, 'UNSORTED', '14412', NULL, NULL, NULL, NULL, NULL, NULL, '131123', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(19, 10, 8, '2020-01-01', '03:01 PM', NULL, 'supplierorder_200d89429135430dfe7459028a753bb319.png', 'UNSORTED', 'abc', NULL, NULL, NULL, NULL, NULL, NULL, 'hdslkjf', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(20, 10, 8, '2020-01-21', '01:01 AM', NULL, 'supplierorder_b0ba691ee2fcd2638e1e708d365dc24a20.png', 'UNSORTED', '123', NULL, NULL, NULL, NULL, NULL, NULL, '123', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(21, 10, 8, '2020-01-21', '01:01 AM', NULL, 'supplierorder_d8f19bd635b41b56082d944bfbf4f9e321.png', 'UNSORTED', '789', NULL, NULL, NULL, NULL, NULL, NULL, '567', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(22, 10, 6, '2020-01-21', '01:01 AM', NULL, 'supplierorder_a0b4a16f8c0e67f80af9ce374811be2a22.png', 'UNSORTED', '8', NULL, NULL, NULL, NULL, NULL, NULL, '9', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(23, 10, 8, '2020-01-21', '01:01 AM', NULL, 'supplierorder_36d1ce8bb2309eb7eb3b3e476c12689d23.png', 'UNSORTED', '789', NULL, NULL, NULL, NULL, NULL, NULL, '879', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(24, 10, 6, '2020-01-23', '01:01 AM', NULL, 'supplierorder_210129dcf6cb400b18276f94f5ed146024.png', 'UNSORTED', '678', NULL, NULL, NULL, NULL, NULL, NULL, '789', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(25, 10, 8, '2020-01-23', '01:01 AM', NULL, 'supplierorder_6734ba14c39b1b16c6811a1cbccee6f325.png', 'UNSORTED', '789', NULL, NULL, NULL, NULL, NULL, NULL, '789', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(27, 14, 10, '2020-03-25', '01:01 AM', NULL, 'supplierorder_e8294bed1c705697a470f7824dbfef8027.png', 'Send Shipment', '2134567', NULL, NULL, NULL, NULL, NULL, NULL, '213', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(31, 11, 9, '2021-12-15', '01:01 AM', NULL, 'supplierorder_282b40961b8d97b656ad2a6a4522be0831.png', 'Send Shipment', '202101', NULL, NULL, NULL, NULL, NULL, NULL, 'MM23MKH', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1);

-- --------------------------------------------------------

--
-- Table structure for table `buyerorderdetail`
--

CREATE TABLE `buyerorderdetail` (
  `id` int(11) NOT NULL,
  `buyerorderid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `offerprice` float(13,4) DEFAULT NULL,
  `kgreceived` float(13,3) DEFAULT NULL,
  `details` text NOT NULL,
  `proimage` varchar(255) DEFAULT NULL,
  `completed` int(11) DEFAULT NULL,
  `orignalqty` float(13,3) DEFAULT NULL,
  `cu` float(13,2) DEFAULT NULL,
  `au` float(13,2) DEFAULT NULL,
  `ag` float(13,2) DEFAULT NULL,
  `pd` float(13,2) DEFAULT NULL,
  `pt` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `buyerorderdetail`
--

INSERT INTO `buyerorderdetail` (`id`, `buyerorderid`, `productid`, `baskets`, `offerprice`, `kgreceived`, `details`, `proimage`, `completed`, `orignalqty`, `cu`, `au`, `ag`, `pd`, `pt`, `status`) VALUES
(3, 1, 54, 2, 2.1232, 5063.080, 'Thi ', NULL, NULL, 5063.080, 8888.00, 0.00, 0.00, 0.00, 0.00, 1),
(4, 2, 54, 1, 5.8900, 1191.780, ' Mixed Metal Powder From Laptop Boards ', '4_Buy_RetiredCPUs.jpg', NULL, 1191.780, 80.00, 80.00, 350.00, 50.00, 5.00, 1),
(5, 2, 53, 1, 21545.0000, 0.000, ' Gold powder', NULL, NULL, 0.000, 0.00, 989.00, 0.00, 0.00, 0.00, 1),
(6, 3, 49, 0, 145.0000, 694.000, ' Aluminum', NULL, NULL, 694.000, 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(7, 4, 55, 12, 4.1200, 11942.360, ' Copper from CircuitBoards ', NULL, NULL, 11942.360, 88.00, 0.00, 0.00, 0.00, 0.00, 1),
(8, 5, 54, 0, 4.1110, 5442.000, ' Copper from frames', NULL, NULL, 5442.000, 88.00, 0.00, 0.00, 0.00, 0.00, 1),
(9, 6, 54, 0, 4.1120, 4882.560, ' Copper from frames', NULL, NULL, 4882.560, 88.00, 0.00, 0.00, 0.00, 0.00, 1),
(10, 7, 55, 3, 4.3500, 1259.580, ' Copper From Computer Circuit Boards', '10_Buy_WhatsApp Image 2019-02-07 at 08.42.31(2).jpeg', NULL, 1259.580, 88.00, 0.00, 0.00, 0.00, 0.00, 1),
(11, 7, 29, 0, 13466.0000, 41.500, ' Capacitors', '11_Buy_WhatsApp Image 2019-02-07 at 08.42.31(8).jpeg', NULL, 41.500, 13.00, 1.00, 6.00, 0.00, 0.00, 1),
(12, 7, 53, 0, 9.4400, 8.220, ' Concentrated Gold and Silver From Circuit Boards', '12_Buy_WhatsApp Image 2019-02-06 at 23.44.47.jpeg', NULL, 8.220, 96.00, 260.00, 1700.00, 32.00, 12.00, 1),
(13, 9, 40, 6, 34662.0000, -9.000, ' gobr', '13_Buy_P90612-110908.jpg', NULL, -9.000, 99.00, 99.00, 99.00, 99.00, 99.00, 1),
(15, 11, 566, 16, 4.2620, 21168.000, ' 21200kg Copper Granuals', NULL, NULL, 21168.000, 90.00, 6.00, 12.00, 0.00, 0.00, 1),
(18, 14, 430, 0, 3.3000, 1567.000, ' Fiber Bricks 1000 of them', NULL, NULL, 1567.000, 0.03, 0.00, 0.00, 0.00, 0.00, 1),
(21, 17, 379, 0, 2.7500, 250.000, 'new test', NULL, NULL, 250.000, 99.00, 1.00, 0.00, 0.00, 0.00, 1),
(22, 17, 380, 0, 3.8500, 500.000, 'new test ', NULL, NULL, 500.000, 90.00, 10.00, 0.00, 0.00, 0.00, 1),
(24, 18, 364, 1, 0.0000, 2.000, ' new test s', NULL, NULL, 2.000, 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(25, 27, 439, 0, 332.9700, 450.000, ' ', '25_Buy__DNA4195.jpg', NULL, 450.000, 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(26, 27, 32, 3, 638.9600, 1000.000, ' ', NULL, NULL, 1000.000, 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(32, 31, 566, 0, 7.4700, 12000.000, '10000  then edited and saved 12000  ', NULL, NULL, 12000.000, 0.00, 0.00, 0.00, 0.00, 0.00, 1);

-- --------------------------------------------------------

--
-- Table structure for table `buyers`
--

CREATE TABLE `buyers` (
  `id` int(11) NOT NULL,
  `userid` int(11) DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) DEFAULT NULL,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `shipping_name` varchar(255) DEFAULT NULL,
  `shipping_address` varchar(255) DEFAULT NULL,
  `shipping_city` varchar(255) DEFAULT NULL,
  `shipping_province` varchar(255) DEFAULT NULL,
  `shipping_country` varchar(255) DEFAULT NULL,
  `shipping_postalcode` varchar(255) DEFAULT NULL,
  `shipping_email` varchar(255) DEFAULT NULL,
  `shipping_invoice_email` varchar(255) DEFAULT NULL,
  `shipping_price_email` varchar(255) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `buyers`
--

INSERT INTO `buyers` (`id`, `userid`, `name`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `shipping_name`, `shipping_address`, `shipping_city`, `shipping_province`, `shipping_country`, `shipping_postalcode`, `shipping_email`, `shipping_invoice_email`, `shipping_price_email`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(3, 1, 'Kovohuty - Montanwerke Brixlegg AG', 'Kovohuty - Montanwerke Brixlegg AG', 'SK4020148418', 'Werkstrasse 1', 'A-6230', NULL, 'Austria', NULL, 'Brixlegg', 'Österreich', 2, 1, ' +43 5337 6151', '+43 5337 6151 2102', 'Miroslav Kizak', '+421 915 839 072', '+421 915 839 072', 'm.kizak@kovohuty.sk ', 'invoice@montanwerke-brixlegg.com', 'montanwerke-brixlegg.com', 'A', NULL, NULL, NULL, NULL, '3', NULL, 'KOVOHUTY, a.s.', '29. augusta', 'Krompachy', 'Slovakia', 'SK', '053 42', 'trade@kovohuty.sk,dale@pfane.com', 'invoice@montanwerke-brixlegg.com,dale@pfane.com', 'fix@montanwerke-brixlegg.com,dale@pfane.com', NULL, NULL, NULL, 1),
(4, 1, 'Boliden', 'Boliden', 'AU225', 'Klarabergsviadukten 90', 'SE-101 20', NULL, 'Germany', NULL, 'Stockholm', 'Germany', 2, 1, '+ 46 8 610 15 00', '+ 46 8 610 15 00', 'Raymond Langevoort', '+ 46 8 610 15 00', '+ 46 8 610 15 00', 'dale@pfane.com', 'dale@pfane.com', 'Pfane.com', 'A', NULL, NULL, NULL, NULL, '1', NULL, '', '', '', '', '', '', 'shipping@pfane.com', 'invoicing@pfane.com', 'ShipPrice@pfane.com', NULL, NULL, NULL, 1),
(5, 7, 'Momo Steel', 'Momo', '4113141', '23 Steel Street', '47899', NULL, 'United States', NULL, 'Alabama', 'Alabama', 3, 1, '6155456565', '6155456959', 'Jake Gantry', '6154887879', '6488479859', 'cell@pfane.com', 'call@pfane.com', 'Mysore.com', 'A1', NULL, NULL, NULL, NULL, '1', NULL, 'Mono Steel', '231 Ship Yard Street', 'steelville', 'Alabama', 'United States', '49115', 'cell@pfane.com', 'cell@pfane.com', 'cell@pfane.com', NULL, NULL, NULL, 1),
(6, 10, 'Argent Precious Metals', '', '1', 'First State Depository Co. 100 Todds Lane ', '19802 ', NULL, 'United States', NULL, 'Wilmington', 'Delaware', 3, 1, '(610) 308-6856', '', 'Robert (Bob) Higgins', '610-308-6856', '', 'RHiggins@theargentgroup.com', 'store@argentpreciousmetals.com', 'https://wholesale.argentpreciousmetals.com', '', NULL, NULL, NULL, NULL, '', NULL, '', 'First State Depository Co. 100 Todds Lane ', 'Wilmington', 'Delaware', 'USA', '19802', 'RHiggins@theargentgroup.com', '', '', NULL, NULL, NULL, 1),
(7, 11, 'Kovohuty', 'Kovohuty', '000000', '29. augusta 1232', '053 42', NULL, 'Slovakia', NULL, 'Krompachy', 'Krompachy', 2, 1, '+421915839072', '+421915889000', 'Miroslav', '+421915839072', '+421915839072', 'cell@pfane.com', 'cell@pfane.com', 'pfane.com', 'A', NULL, NULL, NULL, NULL, '1', NULL, 'Kovohuty ', '29. augusta 1232', 'Krompachy', 'Krompachy', 'Slovakia', '053 42', 'trade@kovohuty.sk', 'invoice@kovohuty.sk', 'fix@kovohuty.sk', NULL, NULL, NULL, 1),
(8, 10, 'BlueMan', 'Blue', '18236876', '123 Adress', '782881', NULL, 'USA', NULL, 'City', 'State', 3, 2, '2342342344', '2342342344', 'Fale', '8361872676', '887648736', 'orders@pfane.com', 'orders@pfane.com', 'pfane,com', 'A', '', '', '', '', '1', NULL, '', '', '', '', '', '', '', '', '', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(9, 11, 'MiroK', 'MiroK', 'MiroK', 'MiroK', 'MiroK', NULL, 'MiroK', NULL, 'MiroK', 'MiroK', 2, 1, '1231231233', '1231231233', 'MiroK', '1231231233', '1231231233', 'miro@pfane.com', 'miro@pfane.com', 'miro', 'A', '1', '1', '1', '', '1', NULL, 'MiroK', 'MiroK', 'MiroK', 'MiroK', 'MiroK', 'MiroK', 'miro@pfane.com', 'miro@pfane.com', 'miro@pfane.com', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(10, 14, 'Dalw', 'dale', '345', '345', '6665654', NULL, 'ca', NULL, 'WINDSOR', 'ontario', 6, 1, '5551212', '5551212', 'dale', 'dale@dalemarion.com', '5551212', 'dale@dalemarion.com', 'dale@dalemarion.com', 'dale', 'a', '1234567876543', 'mine', '123 sesemea street', '', '1', NULL, 'Dale', '123123', 'WINDSOR', 'canada', 'canada', '345543', 'dale@dalemarion.com', 'dale@dalemarion.com', 'dale@dalemarion.com', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(11, 7, 'Malik Asif', 'Malik Asif', '5555566', 'E11', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 2, '03322527187', '7475564565', 'Dale', '03222342182', '7475564586', 'malikmasif@hotmail.com', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', 'asd', 'asd', 'asf', '', 'ASD', NULL, 'Asd', 'ASD', 'ASD', 'ASD', 'ASD', 'ASD', 'asd@dale.com', 'asd@dale.com', 'asd@dale.com', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(12, 15, 'Vish, LLC', 'Vish Group', 'SAM ID: 780684887 (CAGE code: 7SXH0)', '545 Route 17 South Suite 2001', '07450', NULL, 'United States', NULL, ' Ridgewood', 'New Jersey', 3, 1, ' (201) 529-2900', '(201) 529-1919', 'SHIV KUKREJA', '', '(201) 529-2900', 'Shiv@VishGroup.com', 'Dispatch@VishGroup.com', 'http://vishgroup.com/team.html', '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(13, 11, 'MGG Polymers GmbH', 'MGG Polymers', 'ATU61291818', 'Wipark 12, StraÃŸe 8', '3331', NULL, 'Austria', NULL, 'Kematen/Ybbs', '', 2, 1, '+43(0)7476 77488 30', '+43(0)7476 77488 48', 'Serge Hombroukx', '+43(0)664 8534819', '+43(0)7476 77488 30', 'zoltan@pfane.org', 'zoltan@pfane.org', 'https://mgg-polymers.com/', '', 'AT172032000000246745', 'Allgemeine Sparkasse OberÃ¶sterreich', 'Pachergasse 4a, 4400 Steyr', '', '', NULL, 'MGG Polymers GmbH', 'Wipark 12, StraÃŸe 8', 'Kematen/Ybbs', '', 'Austria', '3331', 'zoltan@pfane.org', 'zoltan@pfane.org', 'zoltan@pfane.org', 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1);

-- --------------------------------------------------------

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

CREATE TABLE `category` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

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

INSERT INTO `category` (`id`, `userid`, `name`, `arname`, `status`) VALUES
(1, 1, 'Class A++++', 'Class A++++', 1),
(2, 1, 'Class A+++', 'Class A+++', 1),
(3, 1, 'Class A++', 'Clasa A++', 1),
(4, 1, 'Class A+', 'Clasa A+', 1),
(5, 1, 'Class A', 'Clasa A', 1),
(6, 1, 'Class B', 'Class B', 1),
(7, 1, 'Class C', 'Class C', 1),
(8, 1, 'Class M', 'Class M', 1),
(9, 1, 'Class A (CPU)', 'Class A (CPU)', 1),
(10, 1, 'Class B (CPU)', 'Class B (CPU)', 1),
(11, 1, 'Class C (CPU)', 'Class C (CPU)', 1),
(12, 1, 'Green Bag', 'Green Bag', 1),
(13, 1, 'Yellow Bag', 'Yellow Bag', 1),
(14, 1, 'Red Bag', 'Red Bag', 1),
(15, 1, 'Blue Bag', 'Blue Bag', 1),
(16, 4, 'Class A++++', 'Class A++++', 1),
(17, 4, 'Class A+++', 'Class A+++', 1),
(18, 4, 'Class A++', 'Clasa A++', 1),
(19, 4, 'Class A+', 'Clasa A+', 1),
(20, 4, 'Class A', 'Clasa A', 1),
(21, 4, 'Class B', 'Class B', 1),
(22, 4, 'Class C', 'Class C', 1),
(23, 4, 'Class M', 'Class M', 1),
(24, 4, 'Class A (CPU)', 'Class A (CPU)', 1),
(25, 4, 'Class B (CPU)', 'Class B (CPU)', 1),
(26, 4, 'Class C (CPU)', 'Class C (CPU)', 1),
(27, 4, 'Green Bag', 'Green Bag', 1),
(28, 4, 'Yellow Bag', 'Yellow Bag', 1),
(29, 4, 'Red Bag', 'Red Bag', 1),
(30, 4, 'Blue Bag', 'Blue Bag', 1),
(31, 7, 'Class A++++', 'Class A++++', 1),
(32, 7, 'Class A+++', 'Class A+++', 1),
(33, 7, 'Class A++', 'Clasa A++', 1),
(34, 7, 'Class A+', 'Clasa A+', 1),
(35, 7, 'Class A', 'Clasa A', 1),
(36, 7, 'Class B', 'Class B', 1),
(37, 7, 'Class C', 'Class C', 1),
(38, 7, 'Class M', 'Class M', 1),
(39, 7, 'Class A (CPU)', 'Class A (CPU)', 1),
(40, 7, 'Class B (CPU)', 'Class B (CPU)', 1),
(41, 7, 'Class C (CPU)', 'Class C (CPU)', 1),
(42, 7, 'Green Bag', 'Green Bag', 1),
(43, 7, 'Yellow Bag', 'Yellow Bag', 1),
(44, 7, 'Red Bag', 'Red Bag', 1),
(45, 7, 'Blue Bag', 'Blue Bag', 1),
(46, 9, 'Class A++++', 'Class A++++', 1),
(47, 9, 'Class A+++', 'Class A+++', 1),
(48, 9, 'Class A++', 'Clasa A++', 1),
(49, 9, 'Class A+', 'Clasa A+', 1),
(50, 9, 'Class A', 'Clasa A', 1),
(51, 9, 'Class B', 'Class B', 1),
(52, 9, 'Class C', 'Class C', 1),
(53, 9, 'Class M', 'Class M', 1),
(54, 9, 'Class A (CPU)', 'Class A (CPU)', 1),
(55, 9, 'Class B (CPU)', 'Class B (CPU)', 1),
(56, 9, 'Class C (CPU)', 'Class C (CPU)', 1),
(57, 9, 'Green Bag', 'Green Bag', 1),
(58, 9, 'Yellow Bag', 'Yellow Bag', 1),
(59, 9, 'Red Bag', 'Red Bag', 1),
(60, 9, 'Blue Bag', 'Blue Bag', 1),
(69, 10, 'Class A (CPU)', 'Class A (CPU)', 1),
(70, 10, 'Class B (CPU)', 'Class B (CPU)', 1),
(71, 10, 'Class C (CPU)', 'Class C (CPU)', 1),
(76, 11, 'Class A++++', 'Class A++++', 1),
(77, 11, 'Class A+++', 'Class A+++', 1),
(78, 11, 'Class A++', 'Clasa A++', 1),
(79, 11, 'Class A+', 'Clasa A+', 1),
(80, 11, 'Class A', 'Clasa A', 1),
(81, 11, 'Class B', 'Class B', 1),
(82, 11, 'Class C', 'Class C', 1),
(83, 11, 'Class M', 'Class M', 1),
(84, 11, 'Class A (CPU)', 'Class A (CPU)', 1),
(85, 11, 'Class B (CPU)', 'Class B (CPU)', 1),
(86, 11, 'Class C (CPU)', 'Class C (CPU)', 1),
(87, 11, 'Green Bag', 'Green Bag', 1),
(88, 11, 'Yellow Bag', 'Yellow Bag', 1),
(89, 11, 'Red Bag', 'Red Bag', 1),
(90, 11, 'Blue Bag', 'Blue Bag', 1),
(91, 11, 'Standard Metal', NULL, 1),
(92, 10, 'Gold Topped', NULL, 1),
(93, 10, 'No Pin CPU/Flatback', NULL, 1),
(94, 10, 'P4 Chips', NULL, 1),
(95, 10, 'Plastic IC', NULL, 1),
(96, 10, 'Green Fiber - No Metal', NULL, 1),
(97, 10, 'AMD Black Fiber', NULL, 1),
(98, 10, 'AMD Ceramic', NULL, 1),
(99, 10, 'Pentium/Mac Ceramic', NULL, 1),
(100, 10, 'Cyrix/IBM Gold Capped 686', NULL, 1),
(101, 10, 'Pentium Pro Gold Capped', NULL, 1),
(102, 10, 'Double Sided Gold CPU', NULL, 1),
(103, 10, '386/486 Gold Capped', NULL, 1),
(104, 10, 'Motorola Ceramic Gold Capped', NULL, 1),
(105, 10, 'Gold Legged IC', NULL, 1),
(106, 12, 'Class A++++', 'Class A++++', 1),
(107, 12, 'Class A+++', 'Class A+++', 1),
(108, 12, 'Class A++', 'Clasa A++', 1),
(109, 12, 'Class A+', 'Clasa A+', 1),
(110, 12, 'Class A', 'Clasa A', 1),
(111, 12, 'Class B', 'Class B', 1),
(112, 12, 'Class C', 'Class C', 1),
(113, 12, 'Class M', 'Class M', 1),
(114, 12, 'Class A (CPU)', 'Class A (CPU)', 1),
(115, 12, 'Class B (CPU)', 'Class B (CPU)', 1),
(116, 12, 'Class C (CPU)', 'Class C (CPU)', 1),
(117, 12, 'Green Bag', 'Green Bag', 1),
(118, 12, 'Yellow Bag', 'Yellow Bag', 1),
(119, 12, 'Red Bag', 'Red Bag', 1),
(120, 12, 'Blue Bag', 'Blue Bag', 1),
(121, 10, 'Pentium 1', NULL, 1),
(122, 10, 'ByProduct', NULL, 1),
(123, 10, 'Sample Material - Shred Dust', NULL, 1),
(124, 14, 'Class A++++', 'Class A++++', 1),
(125, 14, 'Class A+++', 'Class A+++', 1),
(126, 14, 'Class A++', 'Clasa A++', 1),
(127, 14, 'Class A+', 'Clasa A+', 1),
(128, 14, 'Class A', 'Clasa A', 1),
(129, 14, 'Class B', 'Class B', 1),
(130, 14, 'Class C', 'Class C', 1),
(131, 14, 'Class M', 'Class M', 1),
(132, 14, 'Class A (CPU)', 'Class A (CPU)', 1),
(133, 14, 'Class B (CPU)', 'Class B (CPU)', 1),
(134, 14, 'Class C (CPU)', 'Class C (CPU)', 1),
(135, 14, 'Green Bag', 'Green Bag', 1),
(136, 14, 'Yellow Bag', 'Yellow Bag', 1),
(137, 14, 'Red Bag', 'Red Bag', 1),
(138, 14, 'Blue Bag', 'Blue Bag', 1),
(139, 15, 'Class A++++', 'Class A++++', 1),
(140, 15, 'Class A+++', 'Class A+++', 1),
(141, 15, 'Class A++', 'Clasa A++', 1),
(142, 15, 'Class A+', 'Clasa A+', 1),
(143, 15, 'Class A', 'Clasa A', 1),
(144, 15, 'Class B', 'Class B', 1),
(145, 15, 'Class C', 'Class C', 1),
(146, 15, 'Class M', 'Class M', 1),
(147, 15, 'Class A (CPU)', 'Class A (CPU)', 1),
(148, 15, 'Class B (CPU)', 'Class B (CPU)', 1),
(149, 15, 'Class C (CPU)', 'Class C (CPU)', 1),
(150, 15, 'Green Bag', 'Green Bag', 1),
(151, 15, 'Yellow Bag', 'Yellow Bag', 1),
(152, 15, 'Red Bag', 'Red Bag', 1),
(153, 15, 'Blue Bag', 'Blue Bag', 1),
(154, 1, 'Standard Metal', NULL, 1),
(155, 16, 'Class A++++', 'Class A++++', 1),
(156, 16, 'Class A+++', 'Class A+++', 1),
(157, 16, 'Class A++', 'Clasa A++', 1),
(158, 16, 'Class A+', 'Clasa A+', 1),
(159, 16, 'Class A', 'Clasa A', 1),
(160, 16, 'Class B', 'Class B', 1),
(161, 16, 'Class C', 'Class C', 1),
(162, 16, 'Class M', 'Class M', 1),
(163, 16, 'Class A (CPU)', 'Class A (CPU)', 1),
(164, 16, 'Class B (CPU)', 'Class B (CPU)', 1),
(165, 16, 'Class C (CPU)', 'Class C (CPU)', 1),
(166, 16, 'Green Bag', 'Green Bag', 1),
(167, 16, 'Yellow Bag', 'Yellow Bag', 1),
(168, 16, 'Red Bag', 'Red Bag', 1),
(169, 16, 'Blue Bag', 'Blue Bag', 1),
(170, 16, 'Standard Metal', '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `certificate`
--

CREATE TABLE `certificate` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `logo` varchar(255) NOT NULL,
  `signature` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `certificate`
--

INSERT INTO `certificate` (`id`, `userid`, `logo`, `signature`, `status`) VALUES
(1, 11, '11_logo_logo.jpg', '11_signature_signature.jpg', 1),
(2, 15, '', '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `city`
--

CREATE TABLE `city` (
  `id` int(11) NOT NULL,
  `countryid` int(11) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `city`
--

INSERT INTO `city` (`id`, `countryid`, `name`, `status`) VALUES
(1, 1, 'Cluj-Napocca', 1),
(2, 1, 'Zalau', 1),
(3, 1, 'Oradea', 1),
(4, 1, 'Simleu Silvaniei', 1),
(5, 1, 'Alba Iulia', 1),
(6, 1, 'Iaz', 1),
(7, 1, 'Cehei', 1),
(8, 1, 'Nusfalau', 1),
(9, 8, 'London', 1);

-- --------------------------------------------------------

--
-- Table structure for table `colors`
--

CREATE TABLE `colors` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `color` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `consignee`
--

CREATE TABLE `consignee` (
  `id` int(11) NOT NULL,
  `companyname` varchar(255) NOT NULL,
  `address` varchar(255) NOT NULL,
  `phone` varchar(25) NOT NULL,
  `fax` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(100) NOT NULL,
  `website` varchar(100) NOT NULL,
  `countryid` int(11) NOT NULL,
  `cityid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `consproductdetails`
--

CREATE TABLE `consproductdetails` (
  `id` int(11) NOT NULL,
  `inventoryproductid` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `userid` int(11) NOT NULL,
  `qtytype` varchar(255) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `consproductdetails`
--

INSERT INTO `consproductdetails` (`id`, `inventoryproductid`, `quantity`, `sysdate`, `userid`, `qtytype`, `status`) VALUES
(1, 111, 20, '2019-03-06', 12, 'Used', 1),
(2, 111, -20, '2019-03-06', 12, 'Used', 1),
(3, 627, 2, '2019-05-17', 18, 'Used', 1),
(4, 627, 2, '2019-05-17', 18, 'Used', 1),
(5, 627, 2, '2019-05-17', 18, 'Used', 1),
(6, 627, 2, '2019-05-17', 18, 'Used', 1),
(7, 627, 2, '2019-05-17', 18, 'Used', 1),
(8, 16, 5, '2019-07-25', 22, 'Used', 1),
(9, 22, 1, '2019-07-26', 22, 'Used', 1),
(10, 26, 1, '2019-07-26', 22, 'Used', 1),
(11, 22, 1, '2019-07-26', 22, 'Used', 1),
(12, 26, 1, '2019-07-26', 22, 'Used', 1),
(13, 28, 60, '2019-08-08', 22, 'Used', 1),
(14, 21, 4, '2019-08-09', 22, 'Used', 1),
(15, 22, 4, '2019-08-09', 22, 'Used', 1),
(16, 25, 2, '2019-08-13', 22, 'Used', 1),
(17, 28, 60, '2019-08-13', 22, 'Used', 1),
(18, 27, 50, '2019-08-14', 22, 'Used', 1),
(19, 28, 60, '2019-08-14', 22, 'Used', 1),
(20, 26, 5, '2019-08-14', 22, 'Used', 1),
(21, 26, 10, '2019-08-14', 22, 'Used', 1),
(22, 25, 2, '2019-08-14', 22, 'Used', 1),
(23, 21, 4, '2019-08-14', 22, 'Used', 1),
(24, 28, 60, '2019-08-19', 22, 'Used', 1),
(25, 27, 20, '2019-08-22', 22, 'Used', 1),
(26, 26, 6, '2019-08-28', 22, 'Used', 1),
(27, 28, 60, '2019-08-28', 22, 'Used', 1),
(28, 29, 3, '2019-08-28', 22, 'Used', 1),
(29, 16, 2, '2019-08-28', 22, 'Used', 1),
(30, 16, 2, '2019-08-28', 22, 'Used', 1),
(31, 17, 1, '2019-09-03', 22, 'Used', 1),
(32, 28, 60, '2019-09-07', 22, 'Used', 1),
(33, 21, 6, '2019-09-10', 22, 'Used', 1),
(34, 22, 8, '2019-09-10', 22, 'Used', 1),
(35, 28, 60, '2019-09-10', 22, 'Used', 1),
(36, 28, 60, '2019-09-14', 22, 'Used', 1),
(37, 28, 60, '2019-09-18', 22, 'Used', 1),
(38, 26, 2, '2019-09-18', 22, 'Used', 1),
(39, 22, 8, '2019-09-26', 22, 'Used', 1),
(40, 26, 8, '2019-09-26', 22, 'Used', 1),
(41, 28, 60, '2019-09-27', 22, 'Used', 1),
(42, 27, 5, '2019-10-01', 22, 'Used', 1),
(43, 16, 27, '2019-10-01', 22, 'Used', 1),
(44, 22, 2, '2019-10-01', 22, 'Used', 1),
(45, 26, 1, '2019-10-01', 22, 'Used', 1),
(46, 32, 1, '2019-10-01', 22, 'Used', 1),
(47, 28, 60, '2019-10-01', 22, 'Used', 1),
(48, 21, 1, '2019-10-07', 22, 'Used', 1),
(49, 22, 3, '2019-10-07', 22, 'Used', 1),
(50, 26, 3, '2019-10-07', 22, 'Used', 1),
(51, 28, 60, '2019-10-08', 22, 'Used', 1),
(52, 24, 1, '2019-10-09', 22, 'Used', 1),
(53, 28, 80, '2019-10-16', 22, 'Used', 1),
(54, 22, 3, '2019-10-16', 22, 'Used', 1),
(55, 21, 4, '2019-10-18', 22, 'Used', 1),
(56, 28, 60, '2019-10-18', 22, 'Used', 1),
(57, 16, 27, '2019-10-22', 22, 'Used', 1),
(58, 28, 60, '2019-10-22', 22, 'Used', 1),
(59, 32, 1, '2019-10-28', 22, 'Used', 1),
(60, 21, 2, '2019-10-29', 22, 'Used', 1),
(61, 22, 8, '2019-10-29', 22, 'Used', 1),
(62, 28, 60, '2019-10-29', 22, 'Used', 1),
(63, 24, 2, '2019-11-01', 22, 'Used', 1),
(64, 32, 1, '2019-11-01', 22, 'Used', 1),
(65, 28, 60, '2019-11-11', 22, 'Used', 1),
(66, 22, 8, '2019-11-11', 22, 'Used', 1),
(67, 26, 15, '2019-11-11', 22, 'Used', 1),
(68, 32, 1, '2019-11-11', 22, 'Used', 1),
(69, 20, 1, '2019-11-11', 22, 'Used', 1),
(70, 28, 60, '2019-11-12', 22, 'Used', 1),
(71, 19, 25, '2019-11-12', 23, 'Used', 1),
(72, 28, 40, '2019-11-15', 22, 'Used', 1),
(73, 25, 2, '2019-11-15', 22, 'Used', 1),
(74, 21, 4, '2019-11-15', 22, 'Used', 1),
(75, 33, 2, '2019-11-29', 22, 'Used', 1),
(76, 32, 1, '2019-11-29', 22, 'Used', 1),
(77, 28, 40, '2019-11-30', 22, 'Used', 1),
(78, 32, 1, '2019-11-30', 22, 'Used', 1),
(79, 16, 27, '2019-12-02', 22, 'Used', 1),
(80, 27, 20, '2019-12-03', 22, 'Used', 1),
(81, 28, 40, '2019-12-05', 22, 'Used', 1),
(82, 22, 1, '2019-12-05', 22, 'Used', 1),
(83, 28, 40, '2020-01-09', 22, 'Used', 1),
(84, 22, 14, '2020-01-13', 22, 'Used', 1),
(85, 27, 35, '2020-01-13', 22, 'Used', 1),
(86, 28, 40, '2020-01-13', 22, 'Used', 1),
(87, 33, 2, '2020-01-13', 22, 'Used', 1),
(88, 18, 5, '2020-01-15', 22, 'Used', 1),
(89, 10, 10, '2020-01-16', 31, 'Used', 1),
(90, 10, -100, '2020-01-16', 31, 'Used', 1),
(91, 10, -200, '2020-01-16', 31, 'Used', 1),
(92, 10, 10, '2020-01-16', 31, 'Used', 1),
(93, 10, -300, '2020-01-16', 31, 'Used', 1),
(94, 10, 678, '2020-01-16', 31, 'Used', 1),
(95, 10, -542789, '2020-01-17', 31, 'Used', 1),
(96, 21, 4, '2020-01-20', 22, 'Used', 1),
(97, 28, 40, '2020-01-20', 22, 'Used', 1),
(98, 10, 7897897, '2020-01-21', 31, 'Used', 1),
(99, 10, -56575789, '2020-01-21', 31, 'Used', 1),
(100, 10, 767, '2020-01-21', 31, 'Used', 1),
(101, 10, 8797, '2020-01-21', 31, 'Used', 1),
(102, 10, -10, '2020-01-23', 31, 'Used', 1),
(103, 10, 100000, '2020-01-23', 31, 'Used', 1),
(104, 10, 100, '2020-01-23', 31, 'Used', 1),
(105, 10, -1000, '2020-01-23', 31, 'Used', 1),
(106, 10, -11000, '2020-01-23', 31, 'Used', 1),
(107, 28, 40, '2020-01-24', 22, 'Used', 1),
(108, 28, 40, '2020-01-30', 22, 'Used', 1),
(109, 27, 5, '2020-02-06', 22, 'Used', 1),
(110, 26, 4, '2020-02-06', 22, 'Used', 1),
(111, 28, 40, '2020-02-10', 22, 'Used', 1),
(112, 20, 2, '2020-02-16', 22, 'Used', 1),
(113, 27, 10, '2020-02-16', 22, 'Used', 1),
(114, 28, 40, '2020-02-16', 22, 'Used', 1),
(115, 32, 2, '2020-02-16', 22, 'Used', 1),
(116, 28, 40, '2020-02-19', 22, 'Used', 1),
(117, 16, 27, '2020-02-24', 22, 'Used', 1),
(118, 26, 16, '2020-02-24', 22, 'Used', 1),
(119, 28, 40, '2020-02-24', 22, 'Used', 1),
(120, 26, 12, '2020-02-24', 22, 'Used', 1),
(121, 27, 20, '2020-02-24', 22, 'Used', 1),
(122, 22, 10, '2020-02-24', 22, 'Used', 1),
(123, 19, 5, '2020-02-24', 22, 'Used', 1),
(124, 21, 3, '2020-02-28', 22, 'Used', 1),
(125, 26, 4, '2020-02-28', 22, 'Used', 1),
(126, 32, 1, '2020-02-28', 22, 'Used', 1),
(127, 27, 20, '2020-03-02', 22, 'Used', 1),
(128, 22, 21, '2020-03-04', 22, 'Used', 1),
(129, 27, 20, '2020-03-04', 22, 'Used', 1),
(130, 28, 40, '2020-03-04', 22, 'Used', 1),
(131, 26, 20, '2020-03-04', 22, 'Used', 1),
(132, 16, 40, '2020-03-12', 22, 'Used', 1),
(133, 27, 30, '2020-03-12', 22, 'Used', 1),
(134, 28, 40, '2020-03-23', 22, 'Used', 1),
(135, 28, 40, '2020-03-23', 22, 'Used', 1),
(136, 27, 20, '2020-03-23', 22, 'Used', 1),
(137, 22, 27, '2020-03-23', 22, 'Used', 1),
(138, 26, 12, '2020-03-23', 22, 'Used', 1),
(139, 32, 1, '2020-03-23', 22, 'Used', 1),
(140, 21, 2, '2020-03-23', 22, 'Used', 1),
(141, 21, 2, '2020-03-26', 22, 'Used', 1),
(142, 22, 2, '2020-03-26', 22, 'Used', 1),
(143, 24, 2, '2020-03-26', 22, 'Used', 1),
(144, 27, 20, '2020-03-26', 22, 'Used', 1),
(145, 28, 40, '2020-03-26', 22, 'Used', 1),
(146, 33, 2, '2020-03-26', 22, 'Used', 1),
(147, 16, 27, '2020-03-26', 22, 'Used', 1),
(148, 28, 40, '2020-03-30', 22, 'Used', 1),
(149, 26, 8, '2020-03-30', 22, 'Used', 1),
(150, 22, 3, '2020-03-31', 22, 'Used', 1),
(151, 24, 1, '2020-03-31', 22, 'Used', 1),
(152, 27, 20, '2020-03-31', 22, 'Used', 1),
(153, 28, 40, '2020-04-08', 22, 'Used', 1),
(154, 27, 20, '2020-04-08', 22, 'Used', 1),
(155, 16, 40, '2020-04-14', 22, 'Used', 1),
(156, 20, 2, '2020-04-14', 22, 'Used', 1),
(157, 28, 40, '2020-04-14', 22, 'Used', 1),
(158, 27, 20, '2020-04-14', 22, 'Used', 1),
(159, 21, 2, '2020-04-14', 22, 'Used', 1),
(160, 22, 21, '2020-04-14', 22, 'Used', 1),
(161, 26, 4, '2020-04-14', 22, 'Used', 1),
(162, 28, 40, '2020-04-21', 22, 'Used', 1),
(163, 26, 4, '2020-04-21', 22, 'Used', 1),
(164, 27, 40, '2020-04-21', 22, 'Used', 1),
(165, 27, 20, '2020-04-22', 22, 'Used', 1),
(166, 28, 40, '2020-04-23', 22, 'Used', 1),
(167, 22, 30, '2020-04-23', 22, 'Used', 1),
(168, 26, 15, '2020-04-23', 22, 'Used', 1),
(169, 28, 40, '2020-04-24', 22, 'Used', 1),
(170, 26, 1, '2020-04-24', 22, 'Used', 1),
(171, 28, 40, '2020-04-28', 22, 'Used', 1),
(172, 33, 2, '2020-04-29', 22, 'Used', 1),
(173, 28, 40, '2020-05-04', 22, 'Used', 1),
(174, 26, 4, '2020-05-04', 22, 'Used', 1),
(175, 21, 7, '2020-05-04', 22, 'Used', 1),
(176, 27, 70, '2020-05-12', 22, 'Used', 1),
(177, 25, 2, '2020-05-12', 22, 'Used', 1),
(178, 28, 80, '2020-05-12', 22, 'Used', 1),
(179, 33, 2, '2020-05-12', 22, 'Used', 1),
(180, 27, 20, '2020-05-14', 22, 'Used', 1),
(181, 32, 1, '2020-05-14', 22, 'Used', 1),
(182, 27, 20, '2020-05-15', 22, 'Used', 1),
(183, 16, 30, '2020-05-18', 22, 'Used', 1),
(184, 27, 30, '2020-05-18', 22, 'Used', 1),
(185, 22, 14, '2020-05-21', 22, 'Used', 1),
(186, 26, 16, '2020-05-21', 22, 'Used', 1),
(187, 20, 1, '2020-05-21', 22, 'Used', 1),
(188, 28, 40, '2020-05-26', 22, 'Used', 1),
(189, 26, 4, '2020-05-26', 22, 'Used', 1),
(190, 27, 30, '2020-05-26', 22, 'Used', 1),
(191, 21, 4, '2020-06-19', 22, 'Used', 1),
(192, 22, 26, '2020-06-19', 22, 'Used', 1),
(193, 26, 6, '2020-06-19', 22, 'Used', 1),
(194, 27, 20, '2020-06-19', 22, 'Used', 1),
(195, 28, 80, '2020-06-19', 22, 'Used', 1),
(196, 28, 257, '2020-06-30', 22, 'Used', 1),
(197, 28, 40, '2020-06-30', 22, 'Used', 1),
(198, 26, 28, '2020-07-03', 22, 'Used', 1),
(199, 28, 40, '2020-07-03', 22, 'Used', 1),
(200, 28, 40, '2020-10-27', 22, 'Used', 1),
(201, 32, 1, '2020-10-27', 22, 'Used', 1),
(202, 33, 3, '2021-02-20', 33, 'Used', 1),
(203, 33, 1, '2021-02-20', 33, 'Used', 1),
(207, 44, 80, '2021-04-29', 0, 'Used', 1),
(208, 47, 40, '2021-09-28', 22, 'Used', 1),
(209, 49, 1211, '2021-11-23', 36, 'Added', 1),
(210, 49, 1211, '2021-11-23', 36, 'Used', 1),
(211, 49, 1211, '2021-11-23', 36, 'Added', 1),
(212, 49, 9, '2021-11-23', 36, 'Added', 1),
(213, 46, 620, '2021-11-25', 35, 'Used', 1),
(214, 78, 1, '2022-01-13', 22, NULL, 1),
(215, 81, 1, '2022-01-19', 0, NULL, 1),
(216, 79, 1, '2022-01-19', 0, NULL, 1),
(217, 66, 5, '2022-01-21', 0, NULL, 1),
(218, 65, 1, '2022-01-21', 0, NULL, 1),
(219, 67, 1, '2022-01-21', 0, NULL, 1),
(220, 75, 1, '2022-01-26', 22, NULL, 1),
(221, 78, 1, '2022-01-26', 22, NULL, 1),
(222, 81, 10, '2022-02-01', 0, NULL, 1),
(223, 80, 1, '2022-02-01', 0, NULL, 1),
(224, 54, 2, '2022-02-01', 0, NULL, 1),
(225, 67, 5, '2022-02-01', 0, NULL, 1),
(226, 66, 5, '2022-02-01', 0, NULL, 1),
(227, 48, 5, '2022-02-01', 0, NULL, 1),
(228, 58, 7, '2022-02-01', 0, NULL, 1),
(229, 85, 5, '2022-02-01', 0, NULL, 1),
(230, 63, 5, '2022-02-01', 0, NULL, 1),
(231, 84, 2, '2022-02-01', 0, NULL, 1),
(232, 60, 16, '2022-02-01', 0, NULL, 1),
(233, 59, 23, '2022-02-01', 0, NULL, 1),
(234, 52, 2, '2022-02-01', 22, NULL, 1),
(235, 70, 27, '2022-02-01', 0, NULL, 1),
(236, 83, 1, '2022-02-01', 0, NULL, 1),
(237, 81, 2, '2022-02-02', 0, NULL, 1),
(238, 69, 27, '2022-02-03', 0, NULL, 1),
(239, 66, 5, '2022-02-03', 22, NULL, 1),
(240, 81, 1, '2022-02-04', 0, NULL, 1),
(241, 67, 1, '2022-02-04', 0, NULL, 1),
(242, 74, 1, '2022-02-14', 0, NULL, 1),
(243, 81, 5, '2022-02-14', 22, NULL, 1),
(244, 80, 1, '2022-02-14', 22, NULL, 1),
(245, 67, 5, '2022-02-14', 22, NULL, 1),
(246, 66, 15, '2022-02-14', 22, NULL, 1),
(247, 65, 1, '2022-02-14', 22, NULL, 1),
(248, 64, 1, '2022-02-14', 22, NULL, 1),
(249, 80, 1, '2022-02-17', 22, NULL, 1),
(250, 84, 2, '2022-02-21', 22, NULL, 1),
(251, 69, 1, '2022-02-21', 22, NULL, 1),
(252, 68, 1, '2022-02-21', 22, NULL, 1),
(253, 67, 2, '2022-02-21', 22, NULL, 1),
(254, 66, 1, '2022-02-21', 22, NULL, 1),
(255, 65, 1, '2022-02-21', 22, NULL, 1),
(256, 58, 1, '2022-02-21', 22, NULL, 1),
(257, 48, 3, '2022-02-21', 22, NULL, 1),
(258, 70, 1, '2022-03-01', 22, NULL, 1),
(259, 81, 9, '2022-03-01', 22, NULL, 1),
(260, 80, 1, '2022-03-01', 22, NULL, 1),
(261, 69, 1, '2022-03-01', 22, NULL, 1),
(262, 67, 5, '2022-03-01', 22, NULL, 1),
(263, 59, 1, '2022-03-01', 22, NULL, 1),
(264, 60, 1, '2022-03-01', 22, NULL, 1),
(265, 50, 1, '2022-03-01', 22, NULL, 1),
(266, 48, 5, '2022-03-01', 22, NULL, 1),
(267, 84, 2, '2022-03-07', 0, NULL, 1),
(268, 81, 2, '2022-03-07', 22, NULL, 1),
(269, 70, 3, '2022-03-07', 22, NULL, 1),
(270, 69, 3, '2022-03-07', 22, NULL, 1),
(271, 62, 2, '2022-03-07', 22, NULL, 1),
(272, 61, 2, '2022-03-07', 22, NULL, 1),
(273, 58, 3, '2022-03-07', 22, NULL, 1),
(274, 48, 1, '2022-03-07', 22, NULL, 1),
(275, 60, 2, '2022-03-07', 22, NULL, 1),
(276, 59, 2, '2022-03-07', 22, NULL, 1),
(277, 48, 4, '2022-03-14', 22, NULL, 1),
(278, 88, 1, '2022-03-14', 22, NULL, 1),
(279, 84, 8, '2022-03-14', 22, NULL, 1),
(280, 80, 1, '2022-03-14', 22, NULL, 1),
(281, 78, 2, '2022-03-14', 22, NULL, 1),
(282, 74, 2, '2022-03-14', 22, NULL, 1),
(283, 67, 1, '2022-03-14', 22, NULL, 1),
(284, 79, 2, '2022-03-21', 22, NULL, 1),
(285, 81, 1, '2022-03-21', 22, NULL, 1),
(286, 67, 7, '2022-03-21', 22, NULL, 1),
(287, 66, 7, '2022-03-21', 22, NULL, 1),
(288, 65, 1, '2022-03-21', 22, NULL, 1),
(289, 58, 8, '2022-03-21', 22, NULL, 1),
(290, 62, 1, '2022-03-21', 22, NULL, 1),
(291, 61, 1, '2022-03-21', 22, NULL, 1),
(292, 60, 4, '2022-03-21', 22, NULL, 1),
(293, 59, 4, '2022-03-21', 22, NULL, 1),
(294, 54, 2, '2022-03-21', 22, NULL, 1),
(295, 50, 1, '2022-03-21', 22, NULL, 1),
(296, 81, 2, '2022-03-29', 0, NULL, 1),
(297, 48, 10, '2022-03-29', 22, NULL, 1),
(298, 80, 1, '2022-03-29', 22, NULL, 1),
(299, 70, 1, '2022-03-29', 22, NULL, 1),
(300, 69, 2, '2022-03-29', 22, NULL, 1),
(301, 68, 1, '2022-03-29', 22, NULL, 1),
(302, 67, 1, '2022-03-29', 22, NULL, 1),
(303, 65, 1, '2022-03-29', 22, NULL, 1),
(304, 88, 1, '2022-04-04', 22, NULL, 1),
(305, 81, 10, '2022-04-04', 22, NULL, 1),
(306, 80, 1, '2022-04-04', 22, NULL, 1),
(307, 67, 23, '2022-04-04', 22, NULL, 1),
(308, 66, 14, '2022-04-04', 22, NULL, 1),
(309, 65, 3, '2022-04-04', 22, NULL, 1),
(310, 64, 3, '2022-04-04', 22, NULL, 1),
(311, 62, 1, '2022-04-04', 22, NULL, 1),
(312, 61, 1, '2022-04-04', 22, NULL, 1),
(313, 60, 1, '2022-04-04', 22, NULL, 1),
(314, 59, 1, '2022-04-04', 22, NULL, 1),
(315, 81, 3, '2022-04-11', 0, NULL, 1),
(316, 80, 1, '2022-04-11', 22, NULL, 1),
(317, 79, 3, '2022-04-11', 22, NULL, 1),
(318, 67, 8, '2022-04-11', 22, NULL, 1),
(319, 66, 3, '2022-04-11', 22, NULL, 1),
(320, 64, 1, '2022-04-11', 22, NULL, 1),
(321, 58, 3, '2022-04-11', 22, NULL, 1),
(322, 48, 6, '2022-04-11', 22, NULL, 1),
(323, 55, 1, '2022-04-11', 22, NULL, 1),
(324, 81, 2, '2022-04-19', 22, NULL, 1),
(325, 84, 2, '2022-04-19', 22, NULL, 1),
(326, 78, 2, '2022-04-19', 22, NULL, 1),
(327, 75, 2, '2022-04-19', 22, NULL, 1),
(328, 65, 2, '2022-04-19', 22, NULL, 1),
(329, 58, 2, '2022-04-19', 22, NULL, 1),
(330, 56, 1, '2022-04-19', 22, NULL, 1),
(331, 48, 1, '2022-04-19', 22, NULL, 1),
(332, 240, 4, '2022-04-20', 0, NULL, 1),
(333, 240, 4, '2022-04-20', 0, NULL, 1),
(334, 251, 1, '2022-04-22', 0, NULL, 1),
(335, 252, 1, '2022-04-23', 0, NULL, 1),
(336, 227, 4, '2022-04-23', 0, NULL, 1),
(337, 88, 2, '2022-04-26', 22, NULL, 1),
(338, 84, 4, '2022-04-26', 22, NULL, 1),
(339, 81, 3, '2022-04-26', 22, NULL, 1),
(340, 80, 2, '2022-04-26', 22, NULL, 1),
(341, 67, 6, '2022-04-26', 22, NULL, 1),
(342, 66, 4, '2022-04-26', 22, NULL, 1),
(343, 65, 1, '2022-04-26', 22, NULL, 1),
(344, 64, 1, '2022-04-26', 22, NULL, 1),
(345, 58, 3, '2022-04-26', 22, NULL, 1),
(346, 48, 5, '2022-04-26', 22, NULL, 1),
(347, 62, 1, '2022-04-26', 22, NULL, 1),
(348, 59, 1, '2022-04-26', 22, NULL, 1),
(349, 60, 8, '2022-04-26', 22, NULL, 1),
(350, 81, 3, '2022-05-04', 22, NULL, 1),
(351, 78, 2, '2022-05-04', 22, NULL, 1),
(352, 74, 2, '2022-05-04', 22, NULL, 1),
(353, 68, 2, '2022-05-04', 22, NULL, 1),
(354, 67, 3, '2022-05-04', 22, NULL, 1),
(355, 66, 4, '2022-05-04', 22, NULL, 1),
(356, 65, 3, '2022-05-04', 22, NULL, 1),
(357, 64, 1, '2022-05-04', 22, NULL, 1),
(358, 81, 6, '2022-05-09', 22, NULL, 1),
(359, 80, 1, '2022-05-09', 22, NULL, 1),
(360, 67, 6, '2022-05-09', 22, NULL, 1),
(361, 66, 10, '2022-05-09', 22, NULL, 1),
(362, 48, 5, '2022-05-09', 22, NULL, 1),
(363, 81, 7, '2022-05-16', 22, NULL, 1),
(364, 80, 1, '2022-05-16', 22, NULL, 1),
(365, 79, 2, '2022-05-16', 22, NULL, 1),
(366, 78, 2, '2022-05-16', 22, NULL, 1),
(367, 74, 2, '2022-05-16', 22, NULL, 1),
(368, 67, 9, '2022-05-16', 22, NULL, 1),
(369, 66, 5, '2022-05-16', 22, NULL, 1),
(370, 65, 1, '2022-05-16', 22, NULL, 1),
(371, 64, 1, '2022-05-16', 22, NULL, 1),
(372, 48, 7, '2022-05-16', 22, NULL, 1),
(373, 252, 1, '2022-05-18', 0, NULL, 1),
(374, 80, 1, '2022-05-24', 22, NULL, 1),
(375, 81, 3, '2022-05-24', 22, NULL, 1),
(376, 79, 1, '2022-05-24', 22, NULL, 1),
(377, 67, 3, '2022-05-24', 22, NULL, 1),
(378, 65, 1, '2022-05-24', 22, NULL, 1),
(379, 64, 1, '2022-05-24', 22, NULL, 1),
(380, 48, 5, '2022-05-24', 22, NULL, 1),
(381, 185, 6, '2022-05-30', 22, NULL, 1),
(382, 67, 2, '2022-05-30', 22, NULL, 1),
(383, 66, 6, '2022-05-30', 22, NULL, 1),
(384, 81, 1, '2022-05-30', 22, NULL, 1),
(385, 65, 1, '2022-05-30', 22, NULL, 1),
(386, 64, 1, '2022-05-30', 22, NULL, 1),
(387, 81, 10, '2022-06-13', 22, NULL, 1),
(388, 80, 2, '2022-06-13', 22, NULL, 1),
(389, 67, 8, '2022-06-13', 22, NULL, 1),
(390, 64, 1, '2022-06-13', 22, NULL, 1),
(391, 62, 18, '2022-06-13', 22, NULL, 1),
(392, 48, 3, '2022-06-13', 22, NULL, 1),
(393, 60, 5, '2022-06-13', 22, NULL, 1),
(394, 59, 2, '2022-06-13', 22, NULL, 1),
(395, 48, 3, '2022-06-13', 22, NULL, 1),
(396, 65, 1, '2022-06-13', 22, NULL, 1),
(397, 67, 3, '2022-06-13', 22, NULL, 1),
(398, 66, 5, '2022-06-13', 22, NULL, 1),
(399, 67, 2, '2022-06-20', 22, NULL, 1),
(400, 80, 1, '2022-06-20', 22, NULL, 1),
(401, 66, 5, '2022-06-20', 22, NULL, 1),
(402, 65, 2, '2022-06-20', 22, NULL, 1),
(403, 64, 2, '2022-06-20', 22, NULL, 1),
(404, 81, 2, '2022-06-20', 22, NULL, 1),
(405, 58, 4, '2022-06-20', 22, NULL, 1),
(406, 81, 1, '2022-06-27', 22, NULL, 1),
(407, 66, 5, '2022-07-01', 22, NULL, 1),
(408, 84, 5, '2022-07-11', 22, NULL, 1),
(409, 81, 1, '2022-07-11', 22, NULL, 1),
(410, 80, 1, '2022-07-11', 0, NULL, 1),
(411, 79, 1, '2022-07-11', 22, NULL, 1),
(412, 67, 1, '2022-07-11', 22, NULL, 1),
(413, 59, 3, '2022-07-11', 22, NULL, 1),
(414, 58, 4, '2022-07-11', 22, NULL, 1),
(415, 48, 2, '2022-07-11', 22, NULL, 1),
(416, 81, 1, '2022-07-18', 22, NULL, 1),
(417, 66, 3, '2022-07-18', 22, NULL, 1),
(418, 70, 2, '2022-07-18', 22, NULL, 1),
(419, 69, 2, '2022-07-18', 22, NULL, 1),
(420, 50, 1, '2022-07-18', 22, NULL, 1),
(421, 48, 5, '2022-07-18', 22, NULL, 1),
(422, 55, 1, '2022-07-18', 22, NULL, 1),
(423, 81, 3, '2022-07-25', 22, NULL, 1),
(424, 85, 1, '2022-07-25', 22, NULL, 1),
(425, 63, 1, '2022-07-25', 22, NULL, 1),
(426, 58, 1, '2022-07-25', 22, NULL, 1),
(427, 48, 6, '2022-07-25', 22, NULL, 1),
(428, 185, 6, '2022-07-25', 22, NULL, 1),
(429, 84, 2, '2022-08-02', 22, NULL, 1),
(430, 79, 1, '2022-08-02', 22, NULL, 1),
(431, 78, 1, '2022-08-02', 22, NULL, 1),
(432, 66, 2, '2022-08-02', 22, NULL, 1),
(433, 185, 6, '2022-08-09', 22, NULL, 1),
(434, 85, 4, '2022-08-09', 22, NULL, 1),
(435, 81, 5, '2022-08-09', 22, NULL, 1),
(436, 80, 1, '2022-08-09', 22, NULL, 1),
(437, 78, 4, '2022-08-09', 22, NULL, 1),
(438, 70, 3, '2022-08-09', 22, NULL, 1),
(439, 69, 1, '2022-08-09', 22, NULL, 1),
(440, 67, 7, '2022-08-09', 22, NULL, 1),
(441, 66, 10, '2022-08-09', 22, NULL, 1),
(442, 65, 1, '2022-08-09', 22, NULL, 1),
(443, 64, 1, '2022-08-09', 22, NULL, 1),
(444, 63, 11, '2022-08-09', 22, NULL, 1),
(445, 52, 2, '2022-08-09', 22, NULL, 1),
(446, 53, 9, '2022-08-09', 22, NULL, 1),
(447, 50, 2, '2022-08-09', 22, NULL, 1),
(448, 48, 7, '2022-08-09', 22, NULL, 1),
(449, 55, 1, '2022-08-10', 22, NULL, 1),
(450, 81, 1, '2022-08-16', 22, NULL, 1),
(451, 80, 1, '2022-08-16', 22, NULL, 1),
(452, 70, 4, '2022-08-16', 22, NULL, 1),
(453, 69, 4, '2022-08-16', 22, NULL, 1),
(454, 67, 1, '2022-08-16', 22, NULL, 1),
(455, 66, 12, '2022-08-16', 22, NULL, 1),
(456, 61, 1, '2022-08-16', 22, NULL, 1),
(457, 48, 12, '2022-08-16', 22, NULL, 1),
(458, 60, 5, '2022-08-16', 22, NULL, 1),
(459, 59, 7, '2022-08-16', 22, NULL, 1),
(460, 66, 2, '2022-08-30', 22, NULL, 1),
(461, 84, 1, '2022-09-05', 22, NULL, 1),
(462, 81, 1, '2022-09-05', 22, NULL, 1),
(463, 70, 1, '2022-09-05', 22, NULL, 1),
(464, 69, 1, '2022-09-05', 22, NULL, 1),
(465, 66, 2, '2022-09-05', 22, NULL, 1),
(466, 65, 1, '2022-09-05', 22, NULL, 1),
(467, 48, 5, '2022-09-05', 22, NULL, 1),
(468, 57, 5, '2022-09-05', 22, NULL, 1),
(469, 84, 2, '2022-09-20', 22, NULL, 1),
(470, 81, 3, '2022-09-20', 22, NULL, 1),
(471, 50, 1, '2022-09-20', 22, NULL, 1),
(472, 48, 5, '2022-09-20', 22, NULL, 1),
(473, 70, 10, '2022-09-20', 22, NULL, 1),
(474, 69, 17, '2022-09-20', 22, NULL, 1),
(475, 67, 5, '2022-09-20', 22, NULL, 1),
(476, 66, 2, '2022-09-20', 22, NULL, 1),
(477, 61, 3, '2022-09-20', 22, NULL, 1),
(478, 58, 1, '2022-09-20', 22, NULL, 1),
(479, 55, 1, '2022-09-20', 22, NULL, 1),
(480, 60, 7, '2022-09-20', 22, NULL, 1),
(481, 59, 5, '2022-09-20', 22, NULL, 1),
(482, 68, 8, '2022-09-20', 22, NULL, 1),
(483, 68, 1, '2022-09-20', 22, NULL, 1),
(484, 80, 1, '2022-10-04', 22, NULL, 1),
(485, 67, 5, '2022-10-04', 22, NULL, 1),
(486, 66, 3, '2022-10-04', 22, NULL, 1),
(487, 63, 2, '2022-10-04', 22, NULL, 1),
(488, 60, 3, '2022-10-04', 22, NULL, 1),
(489, 59, 3, '2022-10-04', 22, NULL, 1),
(490, 48, 4, '2022-10-04', 22, NULL, 1),
(491, 254, 0, '2022-11-16', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `consumables`
--

CREATE TABLE `consumables` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `categoryid` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `details` text NOT NULL,
  `weightunit` int(11) NOT NULL DEFAULT 0,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `qrcode` varchar(255) DEFAULT NULL,
  `consumables` int(11) DEFAULT NULL,
  `reorder` int(11) NOT NULL DEFAULT 0,
  `autoemail` int(11) NOT NULL DEFAULT 0,
  `reorderemail` varchar(255) DEFAULT NULL,
  `reorderlimit` int(11) NOT NULL DEFAULT 0,
  `emailsent` int(11) NOT NULL DEFAULT 0,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `consumables`
--

INSERT INTO `consumables` (`id`, `userid`, `categoryid`, `name`, `details`, `weightunit`, `totalquantity`, `used`, `balance`, `image`, `qrcode`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `reorderlimit`, `emailsent`, `status`) VALUES
(1, 1, 0, 'Banda', '', 0, 1.00, 0.00, 1.00, '120_inv_banda.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(2, 1, 0, 'US Hammers', '', 0, 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(3, 1, 0, 'Chinese Mill Hammers', '', 0, 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(4, 1, 0, 'Chinese Mill Rods', '', 0, 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(5, 1, 0, 'Chinese Mill Rod Caps', '', 0, 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(6, 1, 0, 'Chinese Mill Rod Cap Screws', '', 0, 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(7, 1, 0, 'American Mill Rod', '', 0, 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(8, 1, 0, 'American Mill Bearings', '', 0, 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(11, 7, 1, 'Eco-Goldex E', '', 2, 35.00, 0.00, 35.00, '11_inv_P_20171010_124449.jpg', NULL, 1, 50, 1, 'john@eco-goldex.com', 10, 0, 1),
(12, 7, 1, '314 Stainless Anode/Cathode Rod', '', 7, 16.00, 0.00, 5.00, '12_inv_minirod.jpeg', NULL, 1, 20, 1, 'adrian@pfane.com, sanda@pfane.com,malikmasif@hotmail.com', 5, 1, 1),
(13, 7, 1, '5 Liter Plastic Beakers', '', 7, 2.00, 0.00, 2.00, '13_inv_download.jpeg', NULL, 1, 1, 1, 'adrian@pfane.com, sanda@pfane.com', 1, 0, 1),
(14, 7, 2, 'Ch Blades - HD460', '', 7, 60.00, 0.00, 60.00, '14_inv_images.jpeg', NULL, 1, 40, 1, 'adrian@pfane.com, sanda@pfane.com', 120, 1, 1),
(15, 7, 2, 'Ch Mill - Chrome Rods 18mm', '', 7, 12.00, 0.00, 12.00, '15_inv_download (1).jpeg', NULL, 1, 24, 1, 'adrian@pfane.com, sanda@pfane.com', 6, 0, 1),
(16, 11, 23, 'Shredder Hammers - Sanyi (Vercy SRL) - 0747428983', '', 7, 521.00, 254.00, 267.00, '16_inv_CutterShredder.jpeg', 'consumables_5c1ddad9cac0e98995a5d1f01ed0789c16.png', 1, 30, 1, 'supply@pfane.com', 28, 1, 1),
(34, 10, 6, 'Rob', '', 10, 5.00, 0.00, 5.00, NULL, NULL, 1, 10, 1, '434', 50, 1, 1),
(35, 10, 13, 'Robert', '', 1, 10.00, 0.00, 10.00, '35_inv_evotus.png', NULL, 1, 10, 1, 'rcmoore3@ncsu.edu', 10, 1, 1),
(36, 10, 6, 'dsgdf', '', 6, 10.00, 0.00, 10.00, '36_inv_suited.jpg', NULL, 1, 10, 1, 'robertcmoore92@gmail.com', 432, 1, 1),
(37, 10, 6, 'gfd', '', 7, 245.00, 0.00, 245.00, '37_inv_1549181088269.png', NULL, 1, 1, 1, 'rcmoore3@ncsu.edu', 54, 0, 1),
(38, 10, 12, '10010', '', 9, 78.00, 0.00, 78.00, '38_inv_images.jpeg', NULL, 1, 1, 1, 'r.moore@evotusinc.com', 10, 0, 1),
(39, 7, 3, 'Dale', '', 1, 3.00, 0.00, 3.00, NULL, NULL, 1, 3, 1, 'malikmasif@hotmail.com', 1, 0, 1),
(40, 7, 3, 'Developer test', '', 2, 3.00, 0.00, 3.00, '40_inv_newcpu.jpg', NULL, 1, 3, 1, 'malikmasif@hotmail.com', 1, 0, 1),
(42, 11, 22, '01 Deep Balck', '', 1, 10.00, 0.00, 10.00, '42_inv_Bare With Me.jpeg', 'consumables_5cecb4440d5d7884d097955bf3732c6942.png', 1, 1, 0, 'test@test.com', 1, 0, 1),
(44, 11, 23, 'Hammers 6 mm - quard 450  pfane ', '', 7, 200.00, 80.00, 120.00, '44_inv_1abdf301-227b-4687-ab81-d5becaa732b1.jpg', 'consumables_01d142cef5b533931d816dff14a94a8644.png', 1, 120, 0, 'csaba@pfane.com', 600, 0, 1),
(45, 11, 25, 'Screen 3cm Holes - Pfane csaba or Dale', '', 7, 1.00, 0.00, 1.00, '45_inv_WhatsApp Image 2021-05-14 at 12.42.05.jpeg', 'consumables_76cfab94c75ff31254f93ba10c06fd2045.png', 1, 0, 0, '', 0, 0, 1),
(46, 15, 68, 'PORTLAND CEMENT', 'https://www.lowes.com/pd/Sakrete-94-lb-I-Ii-Cement/4747085', 2, 1040.00, 1000.00, 40.00, '46_inv_10023907.jpg', 'consumables_3f7883203b0cca9c68d0de7dfd9c53c546.png', 1, 2200, 1, 'eric@pfane.com', 100, 1, 1),
(47, 11, 23, 'Blades - Copper Mill - CUT BLADES', '', 7, 80.00, 40.00, 40.00, '47_inv_blades1.jpeg', 'consumables_48c3c63ca19ab2b888763295c36ed53647.png', 1, 120, 1, 'csaba@pfane.com', 240, 1, 1),
(48, 11, 28, 'Universal Silicon', 'Buy From Kiraly - KIRSERV SRL -', 7, 163.00, 109.00, 54.00, '48_inv_silicon.jpeg', 'consumables_500ad815790835b54d27304606b6c59848.png', 1, 40, 1, 'csaba@pfane.com', 10, 0, 1),
(49, 11, 59, 'Cement - ROM CIM', 'Buy From Miracom SRL\r\n0753026005 - Florin', 2, 13231.00, 1211.00, 12020.00, '49_inv_6011034_1.jpg', 'consumables_ee71f3d6750b0b10c2784b1b580752ea49.png', 1, 9600, 1, 'csaba@pfane.com', 1200, 0, 1),
(50, 11, 23, 'Copper paste +1100 grade', 'Paste for bearings high degree', 7, 7.00, 6.00, 1.00, '50_inv_269897277_615204973019388_4558696286394693567_n.jpg', 'consumables_5144e608e56fd041dbb25523f3ccdfca50.png', 1, 0, 0, '', 0, 0, 1),
(51, 11, 28, 'Belt 13x950Li', 'Belt for snec 13x950Li', 7, 6.00, 0.00, 6.00, '51_inv_270348988_707804897147185_4873187063403933050_n.jpg', 'consumables_b78d09fb88ee1ba2d900a0f652d0715351.png', 1, 0, 0, '', 0, 0, 1),
(52, 11, 23, 'Belt for copper table 13x2100', '', 7, 10.00, 4.00, 6.00, '52_inv_270791391_882439169071410_6493170809809970078_n.jpg', 'consumables_af81d315d3ea95f76bae9ec9dde70e9c52.png', 1, 0, 0, '', 0, 0, 1),
(53, 11, 23, 'Belt for copper mill 22x3150Li', '', 7, 13.00, 9.00, 4.00, '53_inv_270465724_3180733368813384_478581764525261401_n.jpg', 'consumables_65b30c165e2da2402316652cfe9a3a5553.png', 1, 0, 0, '', 0, 0, 1),
(54, 11, 23, 'Bearings 2318', '', 7, 6.00, 4.00, 2.00, '54_inv_270826200_1545481959158350_3271555234801266535_n.jpg', 'consumables_1a32ae9f3c7d8c65b89e3ed187ffdeb054.png', 1, 0, 0, '', 0, 0, 1),
(55, 11, 23, 'Bearings copper line  22318MBW33', '', 7, 5.00, 4.00, 1.00, '55_inv_270188710_264663859068358_5271431295136760057_n.jpg', 'consumables_1dfc526253fe0a5af5279b8b501f6a8a55.png', 1, 0, 0, '', 0, 0, 1),
(56, 11, 23, 'Bearings banda f208', '', 7, 8.00, 1.00, 7.00, '56_inv_271242567_1305297669949436_4063961415994099737_n.jpg', 'consumables_e0a5fc27e34e56c721af016018b662d956.png', 1, 0, 0, '', 0, 0, 1),
(57, 11, 28, 'Screw nut 18', '', 7, 14.00, 5.00, 9.00, '57_inv_270185125_351680189724935_2299198846841220964_n.jpg', 'consumables_d9b9cbbed3ea057bf7e35aad02a190a857.png', 1, 0, 0, '', 0, 0, 1),
(58, 11, 28, 'screw nut 10', '', 7, 37.00, 37.00, 0.00, '58_inv_270198461_295939965704047_4065216745661659663_n.jpg', 'consumables_6ad5fda0d875b455e282ed5fd71729eb58.png', 1, 0, 0, '', 0, 0, 1),
(59, 11, 28, 'screw nut 12', '', 7, 52.00, 52.00, 0.00, '59_inv_271534177_3094328057561717_285016295903889675_n.jpg', 'consumables_23bd99e9d708f6e03b07cdfce1594fc759.png', 1, 0, 0, '', 0, 0, 1),
(60, 11, 28, 'Screw 12       7cm long', '', 7, 52.00, 52.00, 0.00, '60_inv_271388157_593672981820553_7467876233837088078_n.jpg', 'consumables_9e0a8d12167c8cf6692f35e7487d83e060.png', 1, 0, 0, '', 0, 0, 1),
(61, 11, 28, 'screw nut 14', '', 7, 19.00, 8.00, 11.00, '61_inv_270087267_500711751374092_4029857988510773006_n (1).jpg', 'consumables_7d5aa6704c4df2bb80683cb681eb38fc61.png', 1, 0, 0, '', 0, 0, 1),
(62, 11, 28, 'screw 14    7cm long ', '', 7, 25.00, 23.00, 2.00, '62_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_c8ae85ac94c9d78496201436a599c10e62.png', 1, 0, 0, '', 0, 0, 1),
(63, 11, 28, 'screw nut 16', '', 7, 32.00, 19.00, 13.00, '63_inv_270057716_660235515161122_2655122608196029691_n (1).jpg', 'consumables_855d9cf6d8e509bee78dc56980b2779a63.png', 1, 0, 0, '', 0, 0, 1),
(64, 11, 28, 'grinding disc 115 diameter', '', 7, 23.00, 14.00, 9.00, '64_inv_271588164_1583929815318384_2193265052634910207_n.jpg', 'consumables_6c43687cfc95276599a7a43bac4086d564.png', 1, 0, 0, '', 0, 0, 1),
(65, 11, 28, 'paper grinding disc 115 diameter', '', 7, 31.00, 22.00, 9.00, '65_inv_269893089_4511722388953854_9219574130016225656_n.jpg', 'consumables_e9713242b77f02c1531a56e7182ef96865.png', 1, 0, 0, '', 0, 0, 1),
(66, 11, 28, 'cutting disc 115 diameter', '', 7, 257.00, 135.00, 122.00, '66_inv_270209737_654133589109132_1748334258152065889_n.jpg', 'consumables_121fcf8a4acacb60d16e32a9a37b0d2c66.png', 1, 0, 0, '', 0, 0, 1),
(67, 11, 28, 'cutting disc 230 diameter', '', 7, 151.00, 120.00, 31.00, '67_inv_270137667_1848911188644590_2997569088067134628_n.jpg', 'consumables_b9c92e0c333886e2706f43d7223d5cf767.png', 1, 0, 0, '', 0, 0, 1),
(68, 11, 28, 'Black screw 16 diameter 6cm long', '', 7, 36.00, 13.00, 23.00, '68_inv_269883368_466041028367680_236271268648950355_n.jpg', 'consumables_3d06f936fe6910f0c4b9604eda463c7268.png', 1, 0, 0, '', 0, 0, 1),
(69, 11, 28, 'black nut 20 diameter ', '', 7, 78.00, 59.00, 19.00, '69_inv_270240867_677528483244759_4840778058049961144_n.jpg', 'consumables_5d5e194c8b890b60116ebf407a53fda269.png', 1, 0, 0, '', 0, 0, 1),
(70, 11, 28, 'black screw 20 diameter 8 cm long ', '', 7, 68.00, 52.00, 16.00, '70_inv_269821294_5056794111005856_1754169504432371633_n.jpg', 'consumables_83bdc63c5cea840b1ec801a37a37008b70.png', 1, 0, 0, '', 0, 0, 1),
(71, 11, 28, 'sita 3 cm hole', '', 7, 1.00, 0.00, 1.00, '71_inv_270188731_299238462244957_6698454157507575329_n.jpg', 'consumables_c438f548b1a602ef0779f90e9b17184171.png', 1, 0, 0, '', 0, 0, 1),
(72, 11, 60, 'Shield  105-180 Amp', '', 7, 1.00, 0.00, 1.00, '72_inv_271517133_293079862868470_4090223443703160682_n.jpg', 'consumables_50787c4e239118b625e2d47ae691a33672.png', 1, 0, 0, '', 0, 0, 1),
(73, 11, 60, 'shield 45 - 85 ', '', 7, 0.00, 0.00, 0.00, '73_inv_271435081_1651470105184674_4603633082176438668_n.jpg', 'consumables_aad3f14e7f5d372fe539f9d86d5ec32173.png', 1, 0, 0, '', 0, 0, 1),
(74, 11, 60, 'nozzle 85 amp', '', 7, 29.00, 7.00, 22.00, '74_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_309b3814935c226a246545492a1980b874.png', 1, 0, 0, '', 0, 0, 1),
(75, 11, 60, 'nozzle 105 - 125 amp', '', 7, 12.00, 3.00, 9.00, '75_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_1c4fa1f902dffffdd923a249c2232f4e75.png', 1, 0, 0, '', 0, 0, 1),
(76, 11, 60, 'nozzle 65 amp', '', 7, 10.00, 0.00, 10.00, '76_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_cc968b306c6052d9a5516d7964aadffb76.png', 1, 0, 0, '', 0, 0, 1),
(77, 11, 60, 'nozzle 45 amp', '', 7, 10.00, 0.00, 10.00, '77_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_5b23e95585a84bd0a5d192694ec0465277.png', 1, 0, 0, '', 0, 0, 1),
(78, 11, 60, 'electrode', '', 7, 21.00, 15.00, 6.00, '78_inv_271436890_1556343754729317_8541211095900471106_n.jpg', 'consumables_7d63a31d3ca9059b055ba1087004d62678.png', 1, 0, 0, '', 0, 0, 1),
(79, 11, 28, 'cutter', '', 7, 11.00, 11.00, 0.00, '79_inv_WhatsApp Image 2022-01-18 at 13.38.04.jpeg', 'consumables_2661709d44cb4654d4c78db8cb65dd4779.png', 1, 0, 0, '', 0, 0, 1),
(80, 11, 28, 'oil hand wash', '', 7, 24.00, 20.00, 4.00, '80_inv_WhatsApp Image 2022-01-18 at 13.41.24.jpeg', 'consumables_1da2379450588f5b840776328812ded980.png', 1, 0, 0, '', 0, 0, 1),
(81, 11, 28, 'glove', '', 7, 99.00, 99.00, 0.00, '81_inv_WhatsApp Image 2022-01-18 at 13.41.51.jpeg', 'consumables_e45d00c0b084e90fa3b1cd913abb8a5381.png', 1, 0, 0, '', 0, 0, 1),
(82, 11, 28, 'brake oil', '', 5, 1.00, 0.00, 1.00, '82_inv_WhatsApp Image 2022-01-18 at 13.49.58 (1).jpeg', 'consumables_c4495e4c0c89868b3e4233696441fa8482.png', 1, 0, 0, '', 0, 0, 1),
(83, 11, 28, 'servo oil', '', 5, 1.00, 1.00, 0.00, '83_inv_WhatsApp Image 2022-01-18 at 13.49.58.jpeg', 'consumables_03e15ad89a7e2efcf28ddecb0218254c83.png', 1, 0, 0, '', 0, 0, 1),
(84, 11, 28, 'screw 10', '', 7, 32.00, 30.00, 2.00, '84_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_35008f5f742530f8413f950d40e6801c84.png', 1, 0, 0, '', 0, 0, 1),
(85, 11, 28, 'screw 16', '', 7, 22.00, 10.00, 12.00, '85_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_e3020e9522c28e20bcbc043e3566e06885.png', 1, 0, 0, '', 0, 0, 1),
(86, 11, 23, 'bearings 2313', '', 7, 3.00, 0.00, 3.00, '86_inv_WhatsApp Image 2022-01-19 at 08.35.26.jpeg', 'consumables_aac94dd1ea002597a903efbc09f3ee0486.png', 1, 0, 0, '', 0, 0, 1),
(87, 11, 23, 'bearings 22313caw33', '', 7, 2.00, 0.00, 2.00, '87_inv_WhatsApp Image 2022-01-19 at 08.35.26 (1).jpeg', 'consumables_095b6f76c4c47d02f0271d6e50260d4487.png', 1, 0, 0, '', 0, 0, 1),
(88, 11, 28, 'Meters', '', 7, 5.00, 4.00, 1.00, '88_inv_WhatsApp Image 2022-01-19 at 10.08.41.jpeg', 'consumables_d0619c8d04ba7c7260e19f6f2a63ef6488.png', 1, 0, 0, '', 0, 0, 1),
(91, 15, 68, 'Male Air fittings ', 'Fitting for air tools and hoses â€œD red npt fittingâ€', 7, 10.00, 0.00, 10.00, '91_inv_A1F5FDBD-64ED-421E-BDD4-B6DE040A7F76.jpeg', 'consumables_2417517bd267e64905fc800b1171aa4d91.png', 1, 10, 0, 'eric@pfane.com', 5, 0, 1),
(92, 15, 68, 'Chlorine pucks', 'Walmart garden center', 7, 8.00, 0.00, 8.00, '92_inv_1648316521714949428284435043226.jpg', 'consumables_06bc8e09cd19571a9319d5de1c83263392.png', 1, 20, 1, 'eric@pfane.com', 4, 0, 1),
(93, 1, 8, 'Shredder Hammers - Sanyi (Vercy SRL) - 0747428983', '', 7, 0.00, 0.00, 0.00, '16_inv_CutterShredder.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e93.png', 1, 30, 1, 'supply@pfane.com', 28, 1, 1),
(94, 1, 7, '01 Deep Balck', '', 1, 0.00, 0.00, 0.00, '42_inv_Bare With Me.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e94.png', 1, 1, 0, 'supply@pfane.com', 1, 0, 1),
(95, 1, 8, 'Hammers 6 mm - quard 450  pfane ', '', 7, 0.00, 0.00, 0.00, '44_inv_1abdf301-227b-4687-ab81-d5becaa732b1.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e95.png', 1, 120, 0, 'supply@pfane.com', 600, 0, 1),
(96, 1, 89, 'Screen 3cm Holes - Pfane csaba or Dale', '', 7, 0.00, 0.00, 0.00, '45_inv_WhatsApp Image 2021-05-14 at 12.42.05.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e96.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(97, 1, 8, 'Blades - Copper Mill - CUT BLADES', '', 7, 0.00, 0.00, 0.00, '47_inv_blades1.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e97.png', 1, 120, 1, 'supply@pfane.com', 240, 1, 1),
(98, 1, 86, 'Universal Silicon', 'Buy From Kiraly - KIRSERV SRL -', 7, 0.00, 0.00, 0.00, '48_inv_silicon.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e98.png', 1, 40, 1, 'supply@pfane.com', 10, 1, 1),
(99, 1, 59, 'Cement - ROM CIM', 'Buy From Miracom SRL\r\n0753026005 - Florin', 2, 0.00, 0.00, 0.00, '49_inv_6011034_1.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e99.png', 1, 9600, 1, 'supply@pfane.com', 1200, 1, 1),
(100, 1, 8, 'Copper paste +1100 grade', 'Paste for bearings high degree', 7, 0.00, 0.00, 0.00, '50_inv_269897277_615204973019388_4558696286394693567_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e100.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(101, 1, 86, 'Belt 13x950Li', 'Belt for snec 13x950Li', 7, 0.00, 0.00, 0.00, '51_inv_270348988_707804897147185_4873187063403933050_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e101.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(102, 1, 8, 'Belt for copper table 13x2100', '', 7, 0.00, 0.00, 0.00, '52_inv_270791391_882439169071410_6493170809809970078_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e102.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(103, 1, 8, 'Belt for copper mill 22x3150Li', '', 7, 0.00, 0.00, 0.00, '53_inv_270465724_3180733368813384_478581764525261401_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e103.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(104, 1, 8, 'Bearings 2318', '', 7, 0.00, 0.00, 0.00, '54_inv_270826200_1545481959158350_3271555234801266535_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e104.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(105, 1, 8, 'Bearings copper line  22318MBW33', '', 7, 0.00, 0.00, 0.00, '55_inv_270188710_264663859068358_5271431295136760057_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e105.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(106, 1, 8, 'Bearings banda f208', '', 7, 0.00, 0.00, 0.00, '56_inv_271242567_1305297669949436_4063961415994099737_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e106.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(107, 1, 86, 'Screw nut 18', '', 7, 0.00, 0.00, 0.00, '57_inv_270185125_351680189724935_2299198846841220964_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e107.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(108, 1, 86, 'screw nut 10', '', 7, 0.00, 0.00, 0.00, '58_inv_270198461_295939965704047_4065216745661659663_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e108.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(109, 1, 86, 'screw nut 12', '', 7, 0.00, 0.00, 0.00, '59_inv_271534177_3094328057561717_285016295903889675_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e109.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(110, 1, 86, 'Screw 12       7cm long', '', 7, 0.00, 0.00, 0.00, '60_inv_271388157_593672981820553_7467876233837088078_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e110.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(111, 1, 86, 'screw nut 14', '', 7, 0.00, 0.00, 0.00, '61_inv_270087267_500711751374092_4029857988510773006_n (1).jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e111.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(112, 1, 86, 'screw 14    7cm long ', '', 7, 0.00, 0.00, 0.00, '62_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e112.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(113, 1, 86, 'screw nut 16', '', 7, 0.00, 0.00, 0.00, '63_inv_270057716_660235515161122_2655122608196029691_n (1).jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e113.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(114, 1, 86, 'grinding disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '64_inv_271588164_1583929815318384_2193265052634910207_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e114.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(115, 1, 86, 'paper grinding disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '65_inv_269893089_4511722388953854_9219574130016225656_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e115.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(116, 1, 86, 'cutting disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '66_inv_270209737_654133589109132_1748334258152065889_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e116.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(117, 1, 86, 'cutting disc 230 diameter', '', 7, 0.00, 0.00, 0.00, '67_inv_270137667_1848911188644590_2997569088067134628_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e117.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(118, 1, 86, 'Black screw 16 diameter 6cm long', '', 7, 0.00, 0.00, 0.00, '68_inv_269883368_466041028367680_236271268648950355_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e118.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(119, 1, 86, 'black nut 20 diameter ', '', 7, 0.00, 0.00, 0.00, '69_inv_270240867_677528483244759_4840778058049961144_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e119.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(120, 1, 86, 'black screw 20 diameter 8 cm long ', '', 7, 0.00, 0.00, 0.00, '70_inv_269821294_5056794111005856_1754169504432371633_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e120.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(121, 1, 86, 'sita 3 cm hole', '', 7, 0.00, 0.00, 0.00, '71_inv_270188731_299238462244957_6698454157507575329_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e121.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(122, 1, 60, 'Shield  105-180 Amp', '', 7, 0.00, 0.00, 0.00, '72_inv_271517133_293079862868470_4090223443703160682_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e122.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(123, 1, 60, 'shield 45 - 85 ', '', 7, 0.00, 0.00, 0.00, '73_inv_271435081_1651470105184674_4603633082176438668_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e123.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(124, 1, 60, 'nozzle 85 amp', '', 7, 0.00, 0.00, 0.00, '74_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e124.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(125, 1, 60, 'nozzle 105 - 125 amp', '', 7, 0.00, 0.00, 0.00, '75_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e125.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(126, 1, 60, 'nozzle 65 amp', '', 7, 0.00, 0.00, 0.00, '76_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e126.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(127, 1, 60, 'nozzle 45 amp', '', 7, 0.00, 0.00, 0.00, '77_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e127.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(128, 1, 60, 'electrode', '', 7, 0.00, 0.00, 0.00, '78_inv_271436890_1556343754729317_8541211095900471106_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e128.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(129, 1, 86, 'cutter', '', 7, 0.00, 0.00, 0.00, '79_inv_WhatsApp Image 2022-01-18 at 13.38.04.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e129.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(130, 1, 86, 'oil hand wash', '', 7, 0.00, 0.00, 0.00, '80_inv_WhatsApp Image 2022-01-18 at 13.41.24.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e130.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(131, 1, 86, 'glove', '', 7, 0.00, 0.00, 0.00, '81_inv_WhatsApp Image 2022-01-18 at 13.41.51.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e131.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(132, 1, 86, 'brake oil', '', 5, 0.00, 0.00, 0.00, '82_inv_WhatsApp Image 2022-01-18 at 13.49.58 (1).jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e132.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(133, 1, 86, 'servo oil', '', 5, 0.00, 0.00, 0.00, '83_inv_WhatsApp Image 2022-01-18 at 13.49.58.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e133.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(134, 1, 86, 'screw 10', '', 7, 0.00, 0.00, 0.00, '84_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e134.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(135, 1, 86, 'screw 16', '', 7, 0.00, 0.00, 0.00, '85_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e135.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(136, 1, 8, 'bearings 2313', '', 7, 0.00, 0.00, 0.00, '86_inv_WhatsApp Image 2022-01-19 at 08.35.26.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e136.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(137, 1, 8, 'bearings 22313caw33', '', 7, 0.00, 0.00, 0.00, '87_inv_WhatsApp Image 2022-01-19 at 08.35.26 (1).jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e137.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(138, 1, 86, 'Meters', '', 7, 0.00, 0.00, 0.00, '88_inv_WhatsApp Image 2022-01-19 at 10.08.41.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e138.png', 1, 0, 0, 'supply@pfane.com', 0, 0, 1),
(139, 15, 77, 'Shredder Hammers - Sanyi (Vercy SRL) - 0747428983', '', 7, 0.00, 0.00, 0.00, '16_inv_CutterShredder.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e139.png', 1, 30, 1, 'eric@pfane.com', 28, 1, 1),
(140, 15, 76, '01 Deep Balck', '', 1, 0.00, 0.00, 0.00, '42_inv_Bare With Me.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e140.png', 1, 1, 0, 'eric@pfane.com', 1, 0, 1),
(141, 15, 77, 'Hammers 6 mm - quard 450  pfane ', '', 7, 0.00, 0.00, 0.00, '44_inv_1abdf301-227b-4687-ab81-d5becaa732b1.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e141.png', 1, 120, 0, 'eric@pfane.com', 600, 0, 1),
(142, 15, 79, 'Screen 3cm Holes - Pfane csaba or Dale', '', 7, 0.00, 0.00, 0.00, '45_inv_WhatsApp Image 2021-05-14 at 12.42.05.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e142.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(143, 15, 77, 'Blades - Copper Mill - CUT BLADES', '', 7, 0.00, 0.00, 0.00, '47_inv_blades1.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e143.png', 1, 120, 1, 'eric@pfane.com', 240, 1, 1),
(144, 15, 82, 'Universal Silicon', 'Buy From Kiraly - KIRSERV SRL -', 7, 0.00, 0.00, 0.00, '48_inv_silicon.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e144.png', 1, 40, 1, 'eric@pfane.com', 10, 1, 1),
(146, 15, 77, 'Copper paste +1100 grade', 'Paste for bearings high degree', 7, 0.00, 0.00, 0.00, '50_inv_269897277_615204973019388_4558696286394693567_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e146.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(147, 15, 82, 'Belt 13x950Li', 'Belt for snec 13x950Li', 7, 0.00, 0.00, 0.00, '51_inv_270348988_707804897147185_4873187063403933050_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e147.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(148, 15, 77, 'Belt for copper table 13x2100', '', 7, 0.00, 0.00, 0.00, '52_inv_270791391_882439169071410_6493170809809970078_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e148.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(149, 15, 77, 'Belt for copper mill 22x3150Li', '', 7, 0.00, 0.00, 0.00, '53_inv_270465724_3180733368813384_478581764525261401_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e149.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(150, 15, 77, 'Bearings 2318', '', 7, 0.00, 0.00, 0.00, '54_inv_270826200_1545481959158350_3271555234801266535_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e150.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(151, 15, 77, 'Bearings copper line  22318MBW33', '', 7, 0.00, 0.00, 0.00, '55_inv_270188710_264663859068358_5271431295136760057_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e151.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(152, 15, 77, 'Bearings banda f208', '', 7, 0.00, 0.00, 0.00, '56_inv_271242567_1305297669949436_4063961415994099737_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e152.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(153, 15, 82, 'Screw nut 18', '', 7, 0.00, 0.00, 0.00, '57_inv_270185125_351680189724935_2299198846841220964_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e153.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(154, 15, 82, 'screw nut 10', '', 7, 0.00, 0.00, 0.00, '58_inv_270198461_295939965704047_4065216745661659663_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e154.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(155, 15, 82, 'screw nut 12', '', 7, 0.00, 0.00, 0.00, '59_inv_271534177_3094328057561717_285016295903889675_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e155.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(156, 15, 82, 'Screw 12       7cm long', '', 7, 0.00, 0.00, 0.00, '60_inv_271388157_593672981820553_7467876233837088078_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e156.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(157, 15, 82, 'screw nut 14', '', 7, 0.00, 0.00, 0.00, '61_inv_270087267_500711751374092_4029857988510773006_n (1).jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e157.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(158, 15, 82, 'screw 14    7cm long ', '', 7, 0.00, 0.00, 0.00, '62_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e158.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(159, 15, 82, 'screw nut 16', '', 7, 0.00, 0.00, 0.00, '63_inv_270057716_660235515161122_2655122608196029691_n (1).jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e159.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(160, 15, 82, 'grinding disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '64_inv_271588164_1583929815318384_2193265052634910207_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e160.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(161, 15, 82, 'paper grinding disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '65_inv_269893089_4511722388953854_9219574130016225656_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e161.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(162, 15, 82, 'cutting disc 115 diameter', '', 7, 0.00, 0.00, 0.00, '66_inv_270209737_654133589109132_1748334258152065889_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e162.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(163, 15, 82, 'cutting disc 230 diameter', '', 7, 0.00, 0.00, 0.00, '67_inv_270137667_1848911188644590_2997569088067134628_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e163.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(164, 15, 82, 'Black screw 16 diameter 6cm long', '', 7, 0.00, 0.00, 0.00, '68_inv_269883368_466041028367680_236271268648950355_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e164.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(165, 15, 82, 'black nut 20 diameter ', '', 7, 0.00, 0.00, 0.00, '69_inv_270240867_677528483244759_4840778058049961144_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e165.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(166, 15, 82, 'black screw 20 diameter 8 cm long ', '', 7, 0.00, 0.00, 0.00, '70_inv_269821294_5056794111005856_1754169504432371633_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e166.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(167, 15, 82, 'sita 3 cm hole', '', 7, 0.00, 0.00, 0.00, '71_inv_270188731_299238462244957_6698454157507575329_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e167.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(175, 15, 82, 'cutter', '', 7, 0.00, 0.00, 0.00, '79_inv_WhatsApp Image 2022-01-18 at 13.38.04.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e175.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(176, 15, 82, 'oil hand wash', 'https://www.walmart.com/ip/Fast-Orange-Pumice-Lotion-Hand-Cleaner-1-2-Gallon-25217/16776210?wmlspartner=wlpa&selectedSellerId=0', 7, 0.00, 0.00, 0.00, '80_inv_WhatsApp Image 2022-01-18 at 13.41.24.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e176.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(177, 15, 82, 'glove', '', 7, 0.00, 0.00, 0.00, '81_inv_WhatsApp Image 2022-01-18 at 13.41.51.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e177.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(178, 15, 82, 'brake oil', '', 5, 0.00, 0.00, 0.00, '82_inv_WhatsApp Image 2022-01-18 at 13.49.58 (1).jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e178.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(179, 15, 82, 'servo oil', '', 5, 0.00, 0.00, 0.00, '83_inv_WhatsApp Image 2022-01-18 at 13.49.58.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e179.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(180, 15, 82, 'screw 10', '', 7, 0.00, 0.00, 0.00, '84_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e180.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(181, 15, 82, 'screw 16', '', 7, 0.00, 0.00, 0.00, '85_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_d41d8cd98f00b204e9800998ecf8427e181.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(182, 15, 77, 'bearings 2313', '', 7, 0.00, 0.00, 0.00, '86_inv_WhatsApp Image 2022-01-19 at 08.35.26.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e182.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(183, 15, 77, 'bearings 22320caw33', '', 7, 0.00, 0.00, 0.00, '87_inv_WhatsApp Image 2022-01-19 at 08.35.26 (1).jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e183.png', 1, 0, 0, 'Heather@pfane.com', 0, 0, 1),
(184, 15, 82, 'Meters', '', 7, 0.00, 0.00, 0.00, '88_inv_WhatsApp Image 2022-01-19 at 10.08.41.jpeg', 'consumables_d41d8cd98f00b204e9800998ecf8427e184.png', 1, 0, 0, 'eric@pfane.com', 0, 0, 1),
(185, 11, 25, 'belt C-2850Li2912lw', 'hammer mill shredder', 7, 24.00, 18.00, 6.00, '185_inv_hammer mill shredder.jpeg', 'consumables_d06a7d1a4ca719ff3861c19ad477e73f185.png', 1, 0, 0, '', 0, 0, 1),
(186, 11, 23, 'belt C-2600Li2653LW', 'Copper mill ', 7, 6.00, 0.00, 6.00, '186_inv_belt copper mill.jpeg', 'consumables_75c932ee9032bfcaeda70b483650b7b2186.png', 1, 0, 0, '', 0, 0, 1),
(187, 11, 23, 'P206', 'Bearings for conveyors', 7, 10.00, 0.00, 10.00, '187_inv_bearings conveyors.jpeg', 'consumables_030a4ed64722262bc5e3b0c089f3fc95187.png', 1, 0, 0, '', 0, 0, 1),
(188, 15, 82, 'Milwaukee Impact Driver', 'https://www.homedepot.com/p/Milwaukee-M18-18-Volt-Lithium-Ion-Compact-Brushless-Cordless-1-4-in-Impact-Driver-Kit-W-1-2-0-Ah-Battery-Charger-Tool-Bag-2850-21P/305529329?source=shoppingads&locale=en-US&&mtc=Shopping-BF-F_D25T-G-D25T-025_009_PORT_POWER-Milwaukee-NA-NA-Smart-NA-NA-PortablePower_Smart&cm_mmc=Shopping-BF-F_D25T-G-D25T-025_009_PORT_POWER-Milwaukee-NA-NA-Smart-NA-NA-PortablePower_Smart-71700000084736776-58700007165824624-92700065193741186&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu14IDsvJ17RiSCf0XyVobF0E-4PEd-ldbeuGRS1STSggupMeK5Z9ONEaAgEqEALw_wcB&gclsrc=aw.ds', 1, 4.00, 0.00, 4.00, '188_inv_20220405_112951.jpg', 'consumables_355aeeacdcc83f57148ebd2be3d3f100188.png', 1, 1, 1, 'Heather@pfane.com', 3, 0, 1),
(189, 15, 82, 'Milwaukee hammer drill;', 'https://www.walmart.com/ip/Milwaukee-M12-Fuel-1-2-12V-Brushless-Hammer-Drill-Driver-Kit-2504-22-with-2Ah-Battery-4Ah-Battery-Charger-Carrying-Case/37953033?wmlspartner=wlpa&selectedSellerId=18581', 1, 4.00, 0.00, 4.00, '189_inv_20220405_112835.jpg', 'consumables_5572359fd34c45898f8c6833e5ea4e35189.png', 1, 1, 1, 'Heather@pfane.com', 3, 0, 1),
(190, 15, 82, 'Taylor Hand Scale', 'https://www.tractorsupply.com/tsc/product/taylor-hanging-scale-70-lb-capacity-1020593?cid=Shopping-Google-Product-1020593&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu14BTPyUwwkdsaRjnQ751UWPAfPthgo0k_w4coWgbWxifeSL-lm_3B0aAsCnEALw_wcB', 1, 1.00, 0.00, 1.00, '190_inv_20220405_113229.jpg', 'consumables_ecab41e432695cc9a9804ede60d5dd67190.png', 1, 1, 1, 'Heather@pfane.com', 1, 1, 1),
(191, 15, 82, 'Hercules Angle Grinder', 'https://www.harborfreight.com/7-amp-4-12-in-slide-switch-angle-grinder-56435.html', 1, 1.00, 0.00, 1.00, '191_inv_20220405_113452.jpg', 'consumables_7ea153022565b359088a26dd1348d9ee191.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(192, 15, 82, 'Pittsburgh 24', 'https://www.homedepot.com/p/Stanley-24-in-Non-Magnetic-High-Impact-ABS-Level-42-468/202317053?source=shoppingads&locale=en-US&&mtc=Shopping-CM-F_D25T-G-D25T-025_001_HAND_TOOLS-STANLEY-NA-NA-SMART-3047250-WF-HandTools_CO2&cm_mmc=Shopping-CM-F_D25T-G-D25T-025_001_HAND_TOOLS-STANLEY-NA-NA-SMART-3047250-WF-HandTools_CO2-71700000085130957-58700007246188681-92700065006063490&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu15aDE8O0kl6LT0IZGPN4I_l_CGgaH6FuMtQO2Fwn7WnQQkIkV4ikgEaAltqEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '192_inv_20220405_155322.jpg', 'consumables_f6349da6766c5508bc03b2b64792b903192.png', 1, 0, 1, 'Heather@pfane.com', 1, 1, 1),
(193, 15, 82, 'Shop Rags', 'https://www.harborfreight.com/mechanics-shop-towels-14-in-x-13-in-50-pk-63365.html', 1, 3.00, 0.00, 3.00, '193_inv_Shop Rags.jpg', 'consumables_0b7e69cbd3c0cd6c249beeb34ff6e78c193.png', 1, 1, 1, 'Heather@pfane.com', 1, 0, 1),
(194, 15, 82, 'DeWalt Drill Bits', 'https://www.amazon.com/DEWALT-DWA2FTS100-Screwdriving-Drilling-Piece/dp/B00VQCBTXS/ref=asc_df_B00VQCBTXS/?tag=hyprod-20&linkCode=df0&hvadid=309832851244&hvpos=&hvnetw=g&hvrand=17588687173255375010&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9005324&hvtargid=pla-449794672531&psc=1&tag=&ref=&adgrpid=64417494871&hvpone=&hvptwo=&hvadid=309832851244&hvpos=&hvnetw=g&hvrand=17588687173255375010&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9005324&hvtargid=pla-449794672531', 1, 1.00, 0.00, 1.00, '194_inv_20220405_114415.jpg', 'consumables_b3f908be370201f853bca4e67951c338194.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(195, 15, 82, 'Hyper Tough 77 pc Electronic Repair Kit', 'https://www.walmart.com/ip/Hyper-Tough-Tech-Repair-Tool-Kit-Including-Magnetic-Screwdriver-Standard-Size-Bits-and-Carry-Case-TS85147A/909383908?wmlspartner=wlpa&selectedSellerId=0&&adid=22222222227000000000&wl0=&wl1=g&wl2=c&wl3=42423897272&wl4=pla-51320962143&wl5=9005324&wl6=&wl7=&wl8=&wl9=pla&wl10=8175035&wl11=online&wl12=909383908&veh=sem&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16YPZlsFw00rqXR6A__U0qE_j2HpqQq8IQ49V6ynIpV7tFkJAmEzLIaAgnBEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '195_inv_20220405_114504.jpg', 'consumables_c2ac3dbb34fe4b8d79da8dbfa0fc7ec2195.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(196, 15, 82, 'Infrared Thermometer', 'https://www.walmart.com/ip/Hyper-Tough-Tech-Repair-Tool-Kit-Including-Magnetic-Screwdriver-Standard-Size-Bits-and-Carry-Case-TS85147A/909383908?wmlspartner=wlpa&selectedSellerId=0&&adid=22222222227000000000&wl0=&wl1=g&wl2=c&wl3=42423897272&wl4=pla-51320962143&wl5=9005324&wl6=&wl7=&wl8=&wl9=pla&wl10=8175035&wl11=online&wl12=909383908&veh=sem&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16YPZlsFw00rqXR6A__U0qE_j2HpqQq8IQ49V6ynIpV7tFkJAmEzLIaAgnBEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '196_inv_Ames Infrared Thermometer.jpg', 'consumables_26658cfd68480fb1139ff8fca8029dd7196.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(197, 15, 82, 'Circular Saw', 'https://www.target.com/p/porter-cable-pce300-15-amp-7-1-4-in-steel-shoe-circular-saw/-/A-81428031?ref=tgt_adv_XS000000&AFID=google_pla_df_free_online&CPNG=storefront&adgroup=85-6', 1, 1.00, 0.00, 1.00, '197_inv_Porter Cable Circ Saw.jpg', 'consumables_b1ead23d86743853d19a9282f19fe9e0197.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(198, 15, 82, 'Tube Light bulb (15pk)', 'https://www.gordonelectricsupply.com/p/Philips-381774-F96T12Dhooalto15Pk/6620085', 1, 6.00, 0.00, 6.00, '198_inv_Tube Light bulb (F96T12).jpg', 'consumables_de575ddf42911c42b83dc62c6897d525198.png', 1, 1, 1, 'Heather@pfane.com', 2, 0, 1),
(199, 15, 82, 'HD water hose', 'https://valuhomecenters.com/shop/lawn-and-garden/hoses-and-accessories/hoses/garden-hose/neverkink-58-in-dia-x-100-ft-l-extra-heavy-duty-garden-hose?SKU=705998&gsf=t', 1, 1.00, 0.00, 1.00, '199_inv_hose.png', 'consumables_0ac7220774f7133b7bc1b0d9e0a6a8ae199.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(200, 15, 82, '6\" Digital Caliper', 'https://www.harborfreight.com/6-in-composite-digital-caliper-63586.html', 1, 1.00, 0.00, 1.00, '200_inv_20220405_114614.jpg', 'consumables_7d874958a96a215fb4a9dd33f111d9a6200.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(201, 15, 82, '6 pc Spade Drill Bit set', 'https://www.lowes.com/pd/IRWIN-IRW-Spade-Bit-Set-W-2-Bonus/5002896693?cm_mmc=shp-_-c-_-vf-_-tol-_-ggl-_-SS_Irwin-_-5002896693-_-local-_-0-_-0&&ds_a_cid=279391351&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16GThibgFccuQD9ZZYuqoHBafiRKL2Df_cW4l6bWu3wUhpqawYbOVUaAmp6EALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '201_inv_20220405_114657.jpg', 'consumables_5032a3964c825697670b1435dd868964201.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(202, 15, 82, 'HD Staple Gun (5 in 1)', 'https://www.homedepot.com/p/DEWALT-5-in-1-Multi-Tacker-Stapler-and-Brad-Nailer-Multi-Tool-DWHTTR510/206604169?source=shoppingads&locale=en-US', 1, 1.00, 0.00, 1.00, '202_inv_20220405_115953.jpg', 'consumables_51740cb080a635ef9ba29225730d0292202.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(203, 15, 82, 'LED Flashlight', 'https://www.harborfreight.com/588-lumen-tactical-flashlight-black-63934.html', 1, 1.00, 0.00, 1.00, '203_inv_20220405_114910.jpg', 'consumables_28d89646b1161feae9fa69f3e35afd01203.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(204, 15, 82, 'Headlamp', 'https://www.harborfreight.com/310-lumen-headlamp-63921.html', 1, 1.00, 0.00, 1.00, '204_inv_Headlamp.webp', 'consumables_6b48109f3ffb95ca416bc7373b785c93204.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(205, 15, 82, 'Staples for Staple gun (1/2\", HD)', 'https://www.walmart.com/ip/Heavy-Duty-Staples-1-2-Size-4-Narrow-Crown-1250pk/35648783?wmlspartner=wlpa&selectedSellerId=4586', 1, 1.00, 0.00, 1.00, '205_inv_Staples (Half inch)HD.webp', 'consumables_680cbc96d4a11b5dc83003441df115c0205.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(206, 15, 82, '5/16\" HD Staples', 'https://www.tractorsupply.com/tsc/product/stanley-5-16-hd-staples-1-500-pack-tra705t-1456770?store=1401&cid=Shopping-Google-Organic_Feed-Product-1456770&cid=Shopping-Google-LOB-Local_Feed&utm_medium=Google&utm_source=Shopping&utm_campaign=LOB&utm_content=Local_Feed&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu15-ei1Q-MZHiZQv0AgRx4LUUKgPIoJShsJui62CfexlsDYIReV_HjUaAi0JEALw_wcB', 1, 1.00, 0.00, 1.00, '206_inv_5 16(th) HD Staples.jpg', 'consumables_bd4af556a6ebc647c17cd155b33d2386206.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(207, 15, 82, 'T25 Staple gun', 'https://www.google.com/shopping/product/14874719873836455032?q=jobsmart+aa+batteries&prds=epd:11432253451817076218,eto:11432253451817076218_0,rsk:PC_5479295751040561461&sa=X&ved=0ahUKEwjquOG6y5b3AhX-hHIEHfY7D2UQ9pwGCAU', 1, 1.00, 0.00, 1.00, '207_inv_T25 Arrow staple gun.jpg', 'consumables_b22bb0fa686476e26295f9ab65f05ebe207.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(208, 15, 82, 'Staples T25 3/8ths (#256)', 'https://www.newegg.com/p/2Z6-03VP-00KG1?item=9SIAKDZHYD8634&nm_mc=knc-googleadwords&cm_mmc=knc-googleadwords-_-tools%20-%20other%20hand-_-thinkstar-_-9SIAKDZHYD8634&source=region', 1, 1.00, 0.00, 1.00, '208_inv_Staples T25 3 8ths round crown.webp', 'consumables_6d8351c305e9e1e239e9f2920cc9af4e208.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(209, 15, 82, 'Staples T50 3/8th\" 10mm (Square)', 'https://www.walmart.com/ip/Arrow-3-8-Inch-T50-Staples-1-250-Count-Galvanized-Steel-Divergent-Point-Staples/14962207?wmlspartner=wlpa&selectedSellerId=1131', 1, 1.00, 0.00, 1.00, '209_inv_T50 staples.jpg', 'consumables_1fafe01bdec1f2e444e383859a1d61ac209.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(210, 15, 82, 'Multitacker (Staple gun)', 'https://www.google.com/shopping/product/1?hl=en&q=dewalt+5+in+1+multi+tacker+staple+gun&biw=1920&bih=872&dpr=1&prds=eto:8597297594738797630_1,pid:8597297594738797630&sa=X&ved=0ahUKEwj00v6x0Jb3AhVEq3IEHRn6A9QQ8gIIsA0oAA', 1, 1.00, 0.00, 1.00, '210_inv_20220405_115953.jpg', 'consumables_372d4928ff5ece59def7e0a05b4e8f6f210.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(211, 15, 82, '25\' Measuring tape', 'https://www.harborfreight.com/25-ft-x-1-in-quikfind-tape-measure-with-abs-casing-69030.html', 1, 1.00, 0.00, 1.00, '211_inv_25ft measuring tape.jpg', 'consumables_b66ab28400567c7b677eeb5b641014bb211.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(212, 15, 82, 'Exterior screws', 'https://www.homedepot.com/p/Grip-Rite-2-1-2-in-Black-All-Purpose-Screw-P212STBL40/204172246?source=shoppingads&locale=en-US', 1, 1.00, 0.00, 1.00, '212_inv_2 and half x 9 exterior screws.webp', 'consumables_daf63bada318af222950b8e9913fd114212.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(213, 15, 82, 'Steel Screws (Flat, Square head)', 'https://www.rack-a-tiers.com/product/10-robertson-square-flat-head-screws/', 1, 1.00, 0.00, 1.00, '213_inv_flatheadtype-A-cropped-longer.png', 'consumables_b0f8f0cf0fcfd5cc3fd3ec1cbd2c4927213.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(214, 15, 82, 'Pan Phillips sheet metal screws 8x1/2', 'https://www.harborfreight.com/320-piece-stainless-steel-sheet-metal-screw-set-67679.html', 1, 1.00, 0.00, 1.00, '214_inv_8x.5 sheet metal pan phillips.jpg', 'consumables_9c3119fb62727af9229624f78b9b703a214.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(215, 15, 82, '3\" hinge 5/8\" ', 'https://www.lowes.com/pd/Gatehouse-3-in-Oil-Rubbed-Bronze-5-8-in-Radius-Mortise-Door-Hinge/4772773?cm_mmc=shp-_-c-_-prd-_-hdw-_-ggl-_-LIA_HDW_213_Decorative-Hardware-_-4772773-_-local-_-0-_-0&ds_rl=1286981&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu162GLgU7Vi8fg3uTAaQZvtIhgZZlLb_l9SLLzZYQBITUnN9u67uUZsaAsXKEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '215_inv_3in hinge.webp', 'consumables_34355e4798ff7c15926f1b3eaa073ef2215.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(216, 15, 82, '4\"x1/2\" hex bolt ', 'https://www.boltdepot.com/Product-Details.aspx?product=253&qty=1&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu15b0TZqwtbqxbmriGw2_kix7qScHy-X3c8QbPff8XSwDjn32Z00P5EaAkPSEALw_wcB', 1, 4.00, 0.00, 4.00, '216_inv_20220405_120909.jpg', 'consumables_1d8bae324adc922b4eb3480ba311e5d6216.png', 1, 2, 0, 'Heather@pfane.com', 2, 0, 1),
(217, 15, 82, 'Duplex Nails', 'https://www.acehardware.com/departments/hardware/nails-and-staples/nails/53011?store=09550', 1, 1.00, 0.00, 1.00, '217_inv_20220405_121216.jpg', 'consumables_f78ac5afd3c3cb0aa131baf51530aa0c217.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(218, 15, 82, '1-3/8 in. High Carbon Steel oscillating blade', 'https://www.homedepot.com/p/Milwaukee-1-3-8-in-High-Carbon-Steel-Universal-Fit-Wood-Cutting-Multi-Tool-Oscillating-Blade-6-Pack-49-25-1103-49-25-1103/319035972?g_store=&source=shoppingads&locale=en-US&&mtc=Shopping-CM-F_D25T-G-D25T-025_009_PORT_POWER-MILWAUKEE-NA-NA-SMART-3047250-WF-SMARTSHOPPING&cm_mmc=Shopping-CM-F_D25T-G-D25T-025_009_PORT_POWER-MILWAUKEE-NA-NA-SMART-3047250-WF-SMARTSHOPPING-71700000082748908-58700007021279142-92700063177701115&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16zN8gCHnm9ZSmmpzWuHOy3ezW3KXr1RVhAEcIxTIU9hpxUjYy55xkaAm8LEALw_wcB&gclsrc=aw.ds#overlay', 1, 3.00, 0.00, 3.00, '218_inv_milwaukee-oscillating-tool-attachment.webp', 'consumables_78f1ec3d236b7ccda75d2eab9a7f587f218.png', 1, 1, 0, 'Heather@pfane.com', 1, 0, 1),
(219, 15, 82, 'Pads for Milwaukee multi-tool (6 hole, Triangle)', 'https://www.mscdirect.com/browse/tnpla/48131890?cid=ppc-google-Smart+Shopping+-+POP++Hand+Tools/Power+Tools&mkwid=%7cdc&pcrid=516119521412&rd=k&product_id=48131890&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu15UNqlRlwxxyOwN-JzLJy2ofMW0lk15Lhov6rhxirbFWW8kdjBO5tAaApWdEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '219_inv_Milwaukee Triangle sanding pads.webp', 'consumables_c84d2857ed33c30f3cfaedc2c3fba036219.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(220, 15, 82, '12-in 18-TPI Metal Cutting Reciprocating Saw Blade', 'https://www.lowes.com/pd/DEWALT-5-Pack-12-in-18-TPI-Metal-Cutting-Reciprocating-Saw-Blade/1000578917', 1, 2.00, 0.00, 2.00, '220_inv_Dewalt 12in 18TPI.webp', 'consumables_6f50a548f6f672494dc1316434efab9e220.png', 1, 1, 1, 'Heather@pfane.com', 1, 0, 1),
(221, 15, 82, '6-in 14-TPI Wood Cutting Reciprocating Saw Blade', 'https://www.lowes.com/pd/DEWALT-6-in-14-TPI-Wood-Cutting-Reciprocating-Saw-Blade/1000578853', 1, 5.00, 0.00, 5.00, '221_inv_DWAR 14TPI sawblade.webp', 'consumables_503a25748b053af6e31b2933c97ce940221.png', 1, 1, 1, 'Heather@pfane.com', 1, 0, 1),
(222, 15, 82, 'wishlist Image image-1 image-2 image-3 image-4 image-5 image-6 image-7 image-8 image-9 image-10 Roll over image to Zoom  + 5 more  Stanley InstantChange 6-5/8 in. Retractable Utility Knife', 'https://www.acehardware.com/departments/tools/hand-tools/utility-and-hobby-knives/2107472?store=16711&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu173C4ZwUfbVqIgdc3nGeYSKrttmY4Bxc2_0fc6k1rgBOgbJD_xno6kaAjrtEALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '222_inv_20220405_122207.jpg', 'consumables_4c53f9e414b198c7cbac5e14eb697679222.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(223, 15, 82, 'Kobalt utility knife', 'Kobalt Kobalt 3pk Lockback knife set 18mm 3-Blade Folding Utility Knife', 1, 1.00, 0.00, 1.00, '223_inv_20220405_122214.jpg', 'consumables_e548a6da23a4e8969413c4f040eb55c6223.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(224, 15, 82, 'Aviation Snips', 'https://www.staples.com/Irwin-Left-And-Straight-Cut-Aviation-Snip-10-in-L-1-5-16-in-Cutting-L/product_851786?cid=PS:GS:SBD:PLA:Facilities&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16MpN6s1c6c0FscBRQQqk8SfaX6o2nA1oTcBwN8lTBh99NCdco8llsaAlvwEALw_wcB', 1, 1.00, 0.00, 1.00, '224_inv_Aviation snips.webp', 'consumables_07e7b5f1710a0e9bbdff6feabf97fc1d224.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(225, 15, 82, 'DeWALT 4-1/2 in. Small Angle Grinder ', 'https://www.tractorsupply.com/tsc/product/dewalt-4-1-2-in-small-angle-grinder-with-one-touch-guard-3806811?cid=Shopping-Google-Product-3806811&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu17tihghTirzheqEXdluIGj0aS46sxWigRz_4zONyrXwIro-bmu2Z6YaAlGOEALw_wcB', 1, 1.00, 0.00, 1.00, '225_inv_Dewalt 4.5in angle grinder.jpg', 'consumables_8901f5cfd7921ad7b2e95a5d8c54f6be225.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(226, 15, 82, 'Hercules 7\" Grinding wheel (1/4\" thickness)', 'https://www.harborfreight.com/7-in-x-14-in-x-58-in-11-type-27-metal-grinding-wheel-57266.html', 1, 5.00, 0.00, 5.00, '226_inv_20220405_122727.jpg', 'consumables_95180ab8d84a002b9a8c9d168f4601c4226.png', 1, 2, 1, 'Heather@pfane.com', 2, 0, 1),
(227, 15, 82, 'Hercules Cut-off wheel 7\"x1/16\"', 'https://www.harborfreight.com/7-in-x-332-in-x-58-in-type-0141-metal-cut-off-wheel-57307.html', 1, 3.00, 4.00, -1.00, '227_inv_20220405_122817.jpg', 'consumables_59b97521d9c01d8c015593ba0e556f6d227.png', 1, 2, 1, 'Heather@pfane.com', 2, 1, 1),
(228, 15, 82, ' 7.5-Amp Variable-Speed Reciprocating Saw', 'https://www.google.com/search?q=reciprocating+saw+7.5+amp&sa=X&bih=872&biw=1920&hl=en&tbm=shop&ei=t85ZYuzCMeGa_QaY-pHwDA&ved=0ahUKEwis-pDU7Zb3AhVhTd8KHRh9BM4Q4dUDCAY&uact=5&oq=reciprocating+saw+7.5+amp&gs_lcp=Cgtwcm9kdWN0cy1jYxADMgYIABAHEB4yBggAEB4QGDIICAAQBRAeEBgyCAgAEAUQHhAYMggIABAFEB4QGDIICAAQBRAeEBgyCAgAEAUQHhAYMggIABAIEB4QGDIICAAQCBAeEBgyCAgAEAgQHhAYSgQIQRgAUABYAGCnAmgAcAB4AIABQogBQpIBATGYAQCgAQHAAQE&sclient=products-cc#spd=9024425006199246937', 1, 1.00, 0.00, 1.00, '228_inv_reciprocating-saws.webp', 'consumables_5baf614ef2d87481db95ecfb1180e0cb228.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(229, 15, 82, ' Cordless Oscillating Multi-Tool', 'https://www.homedepot.com/p/Milwaukee-M12-12-Volt-Lithium-Ion-Cordless-Oscillating-Multi-Tool-Tool-Only-2426-20/203111676?source=shoppingads&locale=en-US', 1, 1.00, 0.00, 1.00, '229_inv_milwaukee-oscillating-tools.webp', 'consumables_43e2b2530955ebe72d5e7b47a2b258b5229.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(230, 15, 82, 'Chicago Electric Orbital Jig Saw', 'https://www.harborfreight.com/5-amp-orbital-variable-speed-jig-saw-69582.html?ccdenc=eyJjb2RlIjoiNTEwMDgwOTIiLCJza3UiOiI2OTU4MiIsImlzIjoiMTkuOTkifQ%3D%3D', 1, 1.00, 0.00, 1.00, '230_inv_orbital jigsaw.jpg', 'consumables_a88afdc48c6440be335bd0f7c14bb462230.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(231, 15, 82, 'Random Orbit Sander', 'https://www.acehardware.com/departments/tools/power-tools/orbital-sanders/2437887?store=07554&gclid=Cj0KCQjwr-SSBhC9ARIsANhzu16dMRuvqEAsWfESpAjBy5y8HE1A0nxuyQICApCSaUG78iVHB64qF1EaArR-EALw_wcB&gclsrc=aw.ds', 1, 1.00, 0.00, 1.00, '231_inv_20220405_123251.jpg', 'consumables_43f5a0679554d01a53be74ba2bd453e5231.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(232, 15, 82, '(LARGE)4 Mil Disposable Nitrile Gloves (100-Box)', 'https://www.homedepot.com/p/Grease-Monkey-Large-Black-4-Mil-Disposable-Nitrile-Gloves-100-Box-23890/202638590?source=shoppingads&locale=en-US', 1, 1.00, 0.00, 1.00, '232_inv_20220405_140746.jpg', 'consumables_4a618a4d271a9a5f2cc523afaf389ca4232.png', 1, 2, 1, 'Heather@pfane.com', 1, 1, 1),
(233, 15, 82, '(Extra-Large) Black Nitrile Gloves 4 Mil (100-Box)', 'https://www.homedepot.com/p/Grease-Monkey-Extra-Large-Black-Nitrile-Gloves-4-Mil-100-Box-23892-06/204452133', 1, 1.00, 0.00, 1.00, '233_inv_20220405_140746.jpg', 'consumables_ed10a084c976af282e6a206c10169634233.png', 1, 2, 1, 'Heather@pfane.com', 1, 1, 1);
INSERT INTO `consumables` (`id`, `userid`, `categoryid`, `name`, `details`, `weightunit`, `totalquantity`, `used`, `balance`, `image`, `qrcode`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `reorderlimit`, `emailsent`, `status`) VALUES
(234, 15, 82, 'Dust Masks', 'https://www.google.com/shopping/product/16768827055195647204?q=basic+dust+mask&prds=epd:13806959475802954976,eto:13806959475802954976_0&sa=X&ved=0ahUKEwjW9o-N6pj3AhVcoXIEHcX-DQwQ9pwGCAc', 1, 1.00, 0.00, 1.00, '234_inv_Dust Mask.webp', 'consumables_4c7e03720d82329a14dfcfb56fe19636234.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(235, 15, 82, 'Multi-Surface Painterâ€™s Tape', 'https://www.amazon.com/ScotchBlueTM-Painters-Tape-Core-Yd/dp/B00004Z4DU', 1, 2.00, 0.00, 2.00, '235_inv_Blue Tape.jpg', 'consumables_2bc57edcb5024bd59e12913dbf968624235.png', 1, 1, 1, 'Heather@pfane.com', 1, 0, 1),
(236, 15, 82, 'Flex Tape', 'https://www.walmart.com/ip/Flex-Tape-Strong-Rubberized-Waterproof-Tape-4-inches-x-5-feet-White/735845730?wl13=2092&selectedSellerId=0', 1, 1.00, 0.00, 1.00, '236_inv_Flex Tape.webp', 'consumables_3a55d545f30fc68576744f29a9d70d99236.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(237, 15, 82, '24 In. Bolt Cutters', 'https://www.harborfreight.com/24-in-bolt-cutters-60699.html', 1, 1.00, 0.00, 1.00, '237_inv_20220405_141040.jpg', 'consumables_94461f45d3d27853b4314b26a5782885237.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(238, 15, 82, '1/2\" Lag shield', 'https://www.google.com/search?q=1%2F2%22+lag+shield&sa=X&biw=1920&bih=872&tbm=shop&ei=SNxaYr6kMdWzytMPmbaegAE&ved=0ahUKEwi-6Jfe7pj3AhXVmXIEHRmbBxAQ4dUDCAY&uact=5&oq=1%2F2%22+lag+shield&gs_lcp=Cgtwcm9kdWN0cy1jYxADMgQIABAYMgYIABAeEBgyCAgAEAgQHhAYOgcIABCwAxAYOgkIABCwAxAeEBg6CwgAELADEAgQHhAYSgQIQRgBULILWLILYN4uaAFwAHgAgAE_iAE_kgEBMZgBAKABAcgBA8ABAQ&sclient=products-cc', 1, 14.00, 0.00, 14.00, '238_inv_Lag shield.webp', 'consumables_41a25cc40acb9e1a86d745ab47f5c03d238.png', 1, 5, 1, 'Heather@pfane.com', 5, 0, 1),
(239, 15, 82, '8\" hex bolt', 'https://www.lowes.com/pd/Hillman-5-8-in-x-14-in-Coarse-Thread-Hex-Bolt-25-Count/4408361?cm_mmc=shp-_-c-_-prd-_-hdw-_-ggl-_-PLA_HDW_213_Decorative-Hardware-_-4408361-_-online-_-0-_-0&ds_rl=1286981&gclid=Cj0KCQjw0umSBhDrARIsAH7FCoeXJNAvxyAiUKx3alyU_-dvmbp3qRGEjgoLPO75TaJOLlo8ZffgD_gaApsSEALw_wcB&gclsrc=aw.ds', 1, 8.00, 0.00, 8.00, '239_inv_8in hex bolt.webp', 'consumables_617ff0a6bcb917cc8be64fc80e182aa7239.png', 1, 4, 1, 'Heather@pfane.com', 4, 0, 1),
(240, 15, 82, '6\" Black Zip Cable Ties ', 'https://www.amazon.com/Black-18lbs-Choose-Bolt-Dropper/dp/B07B43CCWG/ref=pd_lpo_2?pd_rd_i=B07B43CCWG&psc=1', 1, 10.00, 8.00, 2.00, '240_inv_6 zip ties.jpg', 'consumables_0ac09d601fa3b689b56b3f48918800ac240.png', 1, 50, 1, 'Heather@pfane.com', 50, 1, 1),
(241, 15, 82, '6 pc wood chisels', 'https://www.harborfreight.com/wood-chisel-set-6-pc-56364.html', 1, 1.00, 0.00, 1.00, '241_inv_6 pc wood chisel.webp', 'consumables_404bedc7658dd094a069ce9c48dfae36241.png', 1, 0, 1, 'Heather@pfane.com', 1, 1, 1),
(242, 15, 82, 'Steel Carabiners', 'https://www.walmart.com/ip/TrekProof-Heavy-Duty-Steel-Alloy-18KN-Carabiner-Clip-Set-Black-2-Pack/720564138?wmlspartner=wlpa&selectedSellerId=15007', 1, 2.00, 0.00, 2.00, '242_inv_carabiners.jpeg', 'consumables_07b649d4183f9e90845583f95512b635242.png', 1, 1, 0, 'Heather@pfane.com', 2, 0, 1),
(243, 15, 82, 'Libman Wide Broom', 'https://www.homedepot.com/p/Libman-Smooth-Surface-Push-Broom-1140/300485545?source=shoppingads&locale=en-US', 1, 3.00, 0.00, 3.00, '243_inv_Wide broom.webp', 'consumables_24015f9772d018e9fbbd043fdee0ab85243.png', 1, 2, 1, 'Heather@pfane.com', 1, 0, 1),
(244, 15, 82, 'Standard Broom W/ dustpan', 'https://www.lowes.com/pd/Libman-11-38-in-Poly-Fiber-Upright-Broom-With-Dustpan/50444964', 1, 2.00, 0.00, 2.00, '244_inv_Standard broom.webp', 'consumables_a9889d06fef188a8254905502701fef6244.png', 1, 2, 1, 'Heather@pfane.com', 1, 0, 1),
(245, 15, 82, 'Standard Sponge head mop', 'https://www.lowes.com/pd/Libman-Nitty-Gritty-Mop-Roller-Sponge-Mop/50444968', 1, 1.00, 0.00, 1.00, '245_inv_sponge head mop.webp', 'consumables_85b14a885f61a9d51c69096666458fe4245.png', 1, 1, 1, 'Heather@pfane.com', 0, 0, 1),
(246, 15, 82, 'FlexTape', 'https://www.hardwarestore.com/paint-supplies/sundries/roof-driveway/712521-flex-tape-tfsblkr0405-waterproof-tape-5-ft-l-4-in-w-rubber-backing.html?ps=060&gclid=Cj0KCQjwmPSSBhCNARIsAH3cYga8FcWG5J77uQBlzOi5ghfzGSsuP2xulB1HCPQgxRBIAKFSVSa-yOYaAl0SEALw_wcB', 1, 1.00, 0.00, 1.00, '246_inv_Flex Tape.webp', 'consumables_2b89220139ecd01012771d203e36a6b3246.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(247, 15, 82, 'Flex Seal Spray', 'https://www.hardwarestore.com/paint-supplies/sundries/roof-driveway/693026-flex-seal-fsr20-rubber-sealant-black-black-14-oz-aerosol-can.html?ps=060&gclid=Cj0KCQjwmPSSBhCNARIsAH3cYgbxI4J3i96LKisR85PXrWxSqkVsohMMAE2O-TEXp7sKkE28lTX5KDsaAnr1EALw_wcB', 1, 1.00, 0.00, 1.00, '247_inv_flex seal spray.webp', 'consumables_b15afbf47307c5987129887ffa4dd0b9247.png', 1, 1, 0, 'Heather@pfane.com', 0, 0, 1),
(248, 15, 82, 'Great Stuff Gap Filler', 'https://www.hardwarestore.com/paint-supplies/sundries/roof-driveway/693026-flex-seal-fsr20-rubber-sealant-black-black-14-oz-aerosol-can.html?ps=060&gclid=Cj0KCQjwmPSSBhCNARIsAH3cYgbxI4J3i96LKisR85PXrWxSqkVsohMMAE2O-TEXp7sKkE28lTX5KDsaAnr1EALw_wcB', 1, 2.00, 0.00, 2.00, '248_inv_great stuff gap filler.webp', 'consumables_f3289f1dfb19a183c0646ddaab732992248.png', 1, 0, 0, 'Heather@pfane.com', 0, 0, 1),
(249, 15, 82, 'QuikCrete fast setting', 'https://www.hardwarestore.com/brands/219022-quikrete-1101-80-concrete-mix-gray-gray-brown-granular-solid-80-lb-bag.html?ps=060&gclid=Cj0KCQjwmPSSBhCNARIsAH3cYga94q4knmTkTQzvxQapl-bOJbWRgNPdX8OpbB0WCoon_XUIA_32bl0aAtJTEALw_wcB', 1, 2.00, 0.00, 2.00, '249_inv_QuikCrete.webp', 'consumables_830f6dfffc15e156eb086075d5f8a0ff249.png', 1, 0, 0, 'Heather@pfane.com', 0, 0, 1),
(250, 15, 82, 'QuikCrete Water Stop', 'https://www.google.com/search?q=quikrete+water+stop&source=lnms&tbm=shop&sa=X&ved=2ahUKEwjJspLqg573AhUyknIEHTdZD_sQ_AUoAXoECAEQAw&biw=1920&bih=872&dpr=1', 1, 2.00, 0.00, 2.00, '250_inv_Quikcrete water stop.webp', 'consumables_0058a9ed05598f20a066afcf325104cd250.png', 1, 0, 0, 'Heather@pfane.com', 0, 0, 1),
(251, 15, 82, 'Scott Bathroom Tissue (8pk)', 'https://www.dollargeneral.com/products/product-page.scott-1000-sheets-per-roll-toilet-paper-bath-tissue.html?utm_source=google&utm_medium=cpc&adpos=&scid=scplp15096701&sc_intid=15096701&utm_source=google&utm_medium=cpc&utm_term=PRODUCT_GROUP&utm_campaign=Google_DGE_Shopping-Brand_Trademark-v2_All_US_____Ecomm_ROAS&gclsrc=aw.ds&', 1, 1.00, 1.00, 0.00, '251_inv_scott 8pk.jpg', 'consumables_50934eb5bf50ef74d3958ef4d7d75de8251.png', 1, 2, 1, 'Heather@pfane.com', 2, 1, 1),
(252, 15, 82, 'Paper Towels (6pk)', 'https://www.dollargeneral.com/products/product-page.trueliving-h0079-papr-twl-esse-0272902-1-1.html?utm_source=google&utm_medium=cpc&adpos=&scid=scplp27290201&sc_intid=27290201&utm_source=google&utm_medium=cpc&utm_term=PRODUCT_GROUP&utm_campaign=Google_DGE_Shopping-Brand_Trademark-v2_All_US_____Ecomm_ROAS&gclsrc=aw.ds&', 1, 1.00, 2.00, -1.00, '252_inv_Paper Towels.jpg', 'consumables_26d8f78ddde62b6c8ae8cfff2dc68872252.png', 1, 1, 1, 'Heather@pfane.com', 2, 1, 1),
(253, 15, 82, 'Blue Mountain Spring Water', ' (315) 782-5000\r\n 1011 Waterman Dr, Watertown, NY 13601\r\n(Closes 4:30pm M-Sa)', 1, 8.00, 0.00, 8.00, '253_inv_Blue Mtn Spring Water.jpeg', 'consumables_8b058320ee673a9b12dc29f60916fea2253.png', 1, 5, 1, 'Heather@pfane.com', 5, 0, 1),
(256, 15, 82, '13-Gallon Trash Bags', '', 1, 1.00, 0.00, 1.00, '256_inv_13-Gallon Trash Bags.jpeg', 'consumables_0b7cfc88902c42b3ef846760632fb84a256.png', 1, 0, 0, '', 0, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `consumables2022`
--

CREATE TABLE `consumables2022` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `categoryid` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `details` text NOT NULL,
  `weightunit` int(11) NOT NULL DEFAULT 0,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `qrcode` varchar(255) DEFAULT NULL,
  `consumables` int(11) DEFAULT NULL,
  `reorder` int(11) NOT NULL DEFAULT 0,
  `autoemail` int(11) NOT NULL DEFAULT 0,
  `reorderemail` varchar(255) DEFAULT NULL,
  `reorderlimit` int(11) NOT NULL DEFAULT 0,
  `emailsent` int(11) NOT NULL DEFAULT 0,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `consumables2022`
--

INSERT INTO `consumables2022` (`id`, `userid`, `categoryid`, `name`, `details`, `weightunit`, `totalquantity`, `used`, `balance`, `image`, `qrcode`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `reorderlimit`, `emailsent`, `status`) VALUES
(1, 1, 0, 'Banda', '', 0, 1.00, 0.00, 1.00, '120_inv_banda.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(2, 1, 0, 'US Hammers', '', 0, 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(3, 1, 0, 'Chinese Mill Hammers', '', 0, 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(4, 1, 0, 'Chinese Mill Rods', '', 0, 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(5, 1, 0, 'Chinese Mill Rod Caps', '', 0, 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(6, 1, 0, 'Chinese Mill Rod Cap Screws', '', 0, 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(7, 1, 0, 'American Mill Rod', '', 0, 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(8, 1, 0, 'American Mill Bearings', '', 0, 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', NULL, 1, 0, 0, NULL, 0, 0, 1),
(11, 7, 1, 'Eco-Goldex E', '', 2, 35.00, 0.00, 35.00, '11_inv_P_20171010_124449.jpg', NULL, 1, 50, 1, 'john@eco-goldex.com', 10, 0, 1),
(12, 7, 1, '314 Stainless Anode/Cathode Rod', '', 7, 16.00, 0.00, 5.00, '12_inv_minirod.jpeg', NULL, 1, 20, 1, 'adrian@pfane.com, sanda@pfane.com,malikmasif@hotmail.com', 5, 1, 1),
(13, 7, 1, '5 Liter Plastic Beakers', '', 7, 2.00, 0.00, 2.00, '13_inv_download.jpeg', NULL, 1, 1, 1, 'adrian@pfane.com, sanda@pfane.com', 1, 0, 1),
(14, 7, 2, 'Ch Blades - HD460', '', 7, 60.00, 0.00, 60.00, '14_inv_images.jpeg', NULL, 1, 40, 1, 'adrian@pfane.com, sanda@pfane.com', 120, 1, 1),
(15, 7, 2, 'Ch Mill - Chrome Rods 18mm', '', 7, 12.00, 0.00, 12.00, '15_inv_download (1).jpeg', NULL, 1, 24, 1, 'adrian@pfane.com, sanda@pfane.com', 6, 0, 1),
(16, 11, 23, 'Shredder Hammers - Sanyi (Vercy SRL) - 0747428983', '', 7, 521.00, 254.00, 267.00, '16_inv_CutterShredder.jpeg', 'consumables_5c1ddad9cac0e98995a5d1f01ed0789c16.png', 1, 30, 1, 'supply@pfane.com', 28, 1, 1),
(34, 10, 6, 'Rob', '', 10, 5.00, 0.00, 5.00, NULL, NULL, 1, 10, 1, '434', 50, 0, 1),
(35, 10, 13, 'Robert', '', 1, 10.00, 0.00, 10.00, '35_inv_evotus.png', NULL, 1, 10, 1, 'rcmoore3@ncsu.edu', 10, 0, 1),
(36, 10, 6, 'dsgdf', '', 6, 10.00, 0.00, 10.00, '36_inv_suited.jpg', NULL, 1, 10, 1, 'robertcmoore92@gmail.com', 432, 0, 1),
(37, 10, 6, 'gfd', '', 7, 245.00, 0.00, 245.00, '37_inv_1549181088269.png', NULL, 1, 1, 1, 'rcmoore3@ncsu.edu', 54, 0, 1),
(38, 10, 12, '10010', '', 9, 78.00, 0.00, 78.00, '38_inv_images.jpeg', NULL, 1, 1, 1, 'r.moore@evotusinc.com', 10, 0, 1),
(39, 7, 3, 'Dale', '', 1, 3.00, 0.00, 3.00, NULL, NULL, 1, 3, 1, 'malikmasif@hotmail.com', 1, 0, 1),
(40, 7, 3, 'Developer test', '', 2, 3.00, 0.00, 3.00, '40_inv_newcpu.jpg', NULL, 1, 3, 1, 'malikmasif@hotmail.com', 1, 0, 1),
(42, 11, 22, '01 Deep Balck', '', 1, 10.00, 0.00, 10.00, '42_inv_Bare With Me.jpeg', 'consumables_5cecb4440d5d7884d097955bf3732c6942.png', 1, 1, 0, 'test@test.com', 1, 0, 1),
(44, 11, 23, 'Hammers 6 mm - quard 450  pfane ', '', 7, 200.00, 80.00, 120.00, '44_inv_1abdf301-227b-4687-ab81-d5becaa732b1.jpg', 'consumables_01d142cef5b533931d816dff14a94a8644.png', 1, 120, 0, 'csaba@pfane.com', 600, 0, 1),
(45, 11, 25, 'Screen 3cm Holes - Pfane csaba or Dale', '', 7, 1.00, 0.00, 1.00, '45_inv_WhatsApp Image 2021-05-14 at 12.42.05.jpeg', 'consumables_76cfab94c75ff31254f93ba10c06fd2045.png', 1, 0, 0, '', 0, 0, 1),
(46, 15, 68, 'PORTLAND CEMENT', 'https://www.lowes.com/pd/Sakrete-94-lb-I-Ii-Cement/4747085', 1, 1000.00, 1000.00, 0.00, '46_inv_10023907.jpg', 'consumables_3f7883203b0cca9c68d0de7dfd9c53c546.png', 1, 2200, 1, 'eric@pfane.com', 100, 0, 1),
(47, 11, 23, 'Blades - Copper Mill - CUT BLADES', '', 7, 80.00, 40.00, 40.00, '47_inv_blades1.jpeg', 'consumables_48c3c63ca19ab2b888763295c36ed53647.png', 1, 120, 1, 'csaba@pfane.com', 240, 0, 1),
(48, 11, 28, 'Universal Silicon', 'Buy From Kiraly - KIRSERV SRL -', 7, 71.00, 18.00, 53.00, '48_inv_silicon.jpeg', 'consumables_500ad815790835b54d27304606b6c59848.png', 1, 40, 1, 'csaba@pfane.com', 10, 0, 1),
(49, 11, 59, 'Cement - ROM CIM', 'Buy From Miracom SRL\r\n0753026005 - Florin', 2, 13231.00, 1211.00, 12020.00, '49_inv_6011034_1.jpg', 'consumables_ee71f3d6750b0b10c2784b1b580752ea49.png', 1, 9600, 1, 'csaba@pfane.com', 1200, 0, 1),
(50, 11, 23, 'Copper paste +1100 grade', 'Paste for bearings high degree', 7, 4.00, 2.00, 2.00, '50_inv_269897277_615204973019388_4558696286394693567_n.jpg', 'consumables_5144e608e56fd041dbb25523f3ccdfca50.png', 1, 0, 0, '', 0, 0, 1),
(51, 11, 28, 'Belt 13x950Li', 'Belt for snec 13x950Li', 7, 6.00, 0.00, 6.00, '51_inv_270348988_707804897147185_4873187063403933050_n.jpg', 'consumables_b78d09fb88ee1ba2d900a0f652d0715351.png', 1, 0, 0, '', 0, 0, 1),
(52, 11, 23, 'Belt for copper table 13x2100', '', 7, 10.00, 2.00, 8.00, '52_inv_270791391_882439169071410_6493170809809970078_n.jpg', 'consumables_af81d315d3ea95f76bae9ec9dde70e9c52.png', 1, 0, 0, '', 0, 0, 1),
(53, 11, 23, 'Belt for copper mill 22x3150Li', '', 7, 13.00, 0.00, 13.00, '53_inv_270465724_3180733368813384_478581764525261401_n.jpg', 'consumables_65b30c165e2da2402316652cfe9a3a5553.png', 1, 0, 0, '', 0, 0, 1),
(54, 11, 23, 'Bearings 2318', '', 7, 6.00, 4.00, 2.00, '54_inv_270826200_1545481959158350_3271555234801266535_n.jpg', 'consumables_1a32ae9f3c7d8c65b89e3ed187ffdeb054.png', 1, 0, 0, '', 0, 0, 1),
(55, 11, 23, 'Bearings copper line  22318MBW33', '', 7, 3.00, 0.00, 3.00, '55_inv_270188710_264663859068358_5271431295136760057_n.jpg', 'consumables_1dfc526253fe0a5af5279b8b501f6a8a55.png', 1, 0, 0, '', 0, 0, 1),
(56, 11, 23, 'Bearings banda f208', '', 7, 8.00, 0.00, 8.00, '56_inv_271242567_1305297669949436_4063961415994099737_n.jpg', 'consumables_e0a5fc27e34e56c721af016018b662d956.png', 1, 0, 0, '', 0, 0, 1),
(57, 11, 28, 'Screw nut 18', '', 7, 14.00, 0.00, 14.00, '57_inv_270185125_351680189724935_2299198846841220964_n.jpg', 'consumables_d9b9cbbed3ea057bf7e35aad02a190a857.png', 1, 0, 0, '', 0, 0, 1),
(58, 11, 28, 'screw nut 10', '', 7, 19.00, 19.00, 0.00, '58_inv_270198461_295939965704047_4065216745661659663_n.jpg', 'consumables_6ad5fda0d875b455e282ed5fd71729eb58.png', 1, 0, 0, '', 0, 0, 1),
(59, 11, 28, 'screw nut 12', '', 7, 32.00, 30.00, 2.00, '59_inv_271534177_3094328057561717_285016295903889675_n.jpg', 'consumables_23bd99e9d708f6e03b07cdfce1594fc759.png', 1, 0, 0, '', 0, 0, 1),
(60, 11, 28, 'Screw 12       7cm long', '', 7, 32.00, 23.00, 9.00, '60_inv_271388157_593672981820553_7467876233837088078_n.jpg', 'consumables_9e0a8d12167c8cf6692f35e7487d83e060.png', 1, 0, 0, '', 0, 0, 1),
(61, 11, 28, 'screw nut 14', '', 7, 19.00, 3.00, 16.00, '61_inv_270087267_500711751374092_4029857988510773006_n (1).jpg', 'consumables_7d5aa6704c4df2bb80683cb681eb38fc61.png', 1, 0, 0, '', 0, 0, 1),
(62, 11, 28, 'screw 14    7cm long ', '', 7, 25.00, 3.00, 22.00, '62_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_c8ae85ac94c9d78496201436a599c10e62.png', 1, 0, 0, '', 0, 0, 1),
(63, 11, 28, 'screw nut 16', '', 7, 32.00, 5.00, 27.00, '63_inv_270057716_660235515161122_2655122608196029691_n (1).jpg', 'consumables_855d9cf6d8e509bee78dc56980b2779a63.png', 1, 0, 0, '', 0, 0, 1),
(64, 11, 28, 'grinding disc 115 diameter', '', 7, 8.00, 1.00, 7.00, '64_inv_271588164_1583929815318384_2193265052634910207_n.jpg', 'consumables_6c43687cfc95276599a7a43bac4086d564.png', 1, 0, 0, '', 0, 0, 1),
(65, 11, 28, 'paper grinding disc 115 diameter', '', 7, 11.00, 4.00, 7.00, '65_inv_269893089_4511722388953854_9219574130016225656_n.jpg', 'consumables_e9713242b77f02c1531a56e7182ef96865.png', 1, 0, 0, '', 0, 0, 1),
(66, 11, 28, 'cutting disc 115 diameter', '', 7, 82.00, 38.00, 44.00, '66_inv_270209737_654133589109132_1748334258152065889_n.jpg', 'consumables_121fcf8a4acacb60d16e32a9a37b0d2c66.png', 1, 0, 0, '', 0, 0, 1),
(67, 11, 28, 'cutting disc 230 diameter', '', 7, 36.00, 27.00, 9.00, '67_inv_270137667_1848911188644590_2997569088067134628_n.jpg', 'consumables_b9c92e0c333886e2706f43d7223d5cf767.png', 1, 0, 0, '', 0, 0, 1),
(68, 11, 28, 'Black screw 16 diameter 6cm long', '', 7, 28.00, 1.00, 27.00, '68_inv_269883368_466041028367680_236271268648950355_n.jpg', 'consumables_3d06f936fe6910f0c4b9604eda463c7268.png', 1, 0, 0, '', 0, 0, 1),
(69, 11, 28, 'black nut 20 diameter ', '', 7, 78.00, 32.00, 46.00, '69_inv_270240867_677528483244759_4840778058049961144_n.jpg', 'consumables_5d5e194c8b890b60116ebf407a53fda269.png', 1, 0, 0, '', 0, 0, 1),
(70, 11, 28, 'black screw 20 diameter 8 cm long ', '', 7, 68.00, 31.00, 37.00, '70_inv_269821294_5056794111005856_1754169504432371633_n.jpg', 'consumables_83bdc63c5cea840b1ec801a37a37008b70.png', 1, 0, 0, '', 0, 0, 1),
(71, 11, 28, 'sita 3 cm hole', '', 7, 1.00, 0.00, 1.00, '71_inv_270188731_299238462244957_6698454157507575329_n.jpg', 'consumables_c438f548b1a602ef0779f90e9b17184171.png', 1, 0, 0, '', 0, 0, 1),
(72, 11, 60, 'Shield  105-180 Amp', '', 7, 1.00, 0.00, 1.00, '72_inv_271517133_293079862868470_4090223443703160682_n.jpg', 'consumables_50787c4e239118b625e2d47ae691a33672.png', 1, 0, 0, '', 0, 0, 1),
(73, 11, 60, 'shield 45 - 85 ', '', 7, 0.00, 0.00, 0.00, '73_inv_271435081_1651470105184674_4603633082176438668_n.jpg', 'consumables_aad3f14e7f5d372fe539f9d86d5ec32173.png', 1, 0, 0, '', 0, 0, 1),
(74, 11, 60, 'nozzle 85 amp', '', 7, 19.00, 3.00, 16.00, '74_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_309b3814935c226a246545492a1980b874.png', 1, 0, 0, '', 0, 0, 1),
(75, 11, 60, 'nozzle 105 - 125 amp', '', 7, 12.00, 1.00, 11.00, '75_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_1c4fa1f902dffffdd923a249c2232f4e75.png', 1, 0, 0, '', 0, 0, 1),
(76, 11, 60, 'nozzle 65 amp', '', 7, 10.00, 0.00, 10.00, '76_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_cc968b306c6052d9a5516d7964aadffb76.png', 1, 0, 0, '', 0, 0, 1),
(77, 11, 60, 'nozzle 45 amp', '', 7, 10.00, 0.00, 10.00, '77_inv_271394102_1004890696732916_7152626513215157369_n.jpg', 'consumables_5b23e95585a84bd0a5d192694ec0465277.png', 1, 0, 0, '', 0, 0, 1),
(78, 11, 60, 'electrode', '', 7, 21.00, 4.00, 17.00, '78_inv_271436890_1556343754729317_8541211095900471106_n.jpg', 'consumables_7d63a31d3ca9059b055ba1087004d62678.png', 1, 0, 0, '', 0, 0, 1),
(79, 11, 28, 'cutter', '', 7, 6.00, 3.00, 3.00, '79_inv_WhatsApp Image 2022-01-18 at 13.38.04.jpeg', 'consumables_2661709d44cb4654d4c78db8cb65dd4779.png', 1, 0, 0, '', 0, 0, 1),
(80, 11, 28, 'oil hand wash', '', 7, 9.00, 5.00, 4.00, '80_inv_WhatsApp Image 2022-01-18 at 13.41.24.jpeg', 'consumables_1da2379450588f5b840776328812ded980.png', 1, 0, 0, '', 0, 0, 1),
(81, 11, 28, 'glove', '', 7, 39.00, 31.00, 8.00, '81_inv_WhatsApp Image 2022-01-18 at 13.41.51.jpeg', 'consumables_e45d00c0b084e90fa3b1cd913abb8a5381.png', 1, 0, 0, '', 0, 0, 1),
(82, 11, 28, 'brake oil', '', 5, 1.00, 0.00, 1.00, '82_inv_WhatsApp Image 2022-01-18 at 13.49.58 (1).jpeg', 'consumables_c4495e4c0c89868b3e4233696441fa8482.png', 1, 0, 0, '', 0, 0, 1),
(83, 11, 28, 'servo oil', '', 5, 1.00, 1.00, 0.00, '83_inv_WhatsApp Image 2022-01-18 at 13.49.58.jpeg', 'consumables_03e15ad89a7e2efcf28ddecb0218254c83.png', 1, 0, 0, '', 0, 0, 1),
(84, 11, 28, 'screw 10', '', 7, 14.00, 14.00, 0.00, '84_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_35008f5f742530f8413f950d40e6801c84.png', 1, 0, 0, '', 0, 0, 1),
(85, 11, 28, 'screw 16', '', 7, 22.00, 5.00, 17.00, '85_inv_269986540_595343701569398_5425873348863898953_n.jpg', 'consumables_e3020e9522c28e20bcbc043e3566e06885.png', 1, 0, 0, '', 0, 0, 1),
(86, 11, 23, 'bearings 2313', '', 7, 3.00, 0.00, 3.00, '86_inv_WhatsApp Image 2022-01-19 at 08.35.26.jpeg', 'consumables_aac94dd1ea002597a903efbc09f3ee0486.png', 1, 0, 0, '', 0, 0, 1),
(87, 11, 23, 'bearings 22313caw33', '', 7, 2.00, 0.00, 2.00, '87_inv_WhatsApp Image 2022-01-19 at 08.35.26 (1).jpeg', 'consumables_095b6f76c4c47d02f0271d6e50260d4487.png', 1, 0, 0, '', 0, 0, 1),
(88, 11, 28, 'Meters', '', 7, 5.00, 1.00, 4.00, '88_inv_WhatsApp Image 2022-01-19 at 10.08.41.jpeg', 'consumables_d0619c8d04ba7c7260e19f6f2a63ef6488.png', 1, 0, 0, '', 0, 0, 1),
(91, 15, 68, 'Male Air fittings ', 'Fitting for air tools and hoses â€œD red npt fittingâ€', 7, 10.00, 0.00, 10.00, '91_inv_A1F5FDBD-64ED-421E-BDD4-B6DE040A7F76.jpeg', 'consumables_2417517bd267e64905fc800b1171aa4d91.png', 1, 10, 0, '', 5, 0, 1),
(92, 15, 68, 'Chlorine pucks', 'Walmart garden center', 7, 8.00, 0.00, 8.00, '92_inv_1648316521714949428284435043226.jpg', 'consumables_06bc8e09cd19571a9319d5de1c83263392.png', 1, 20, 1, 'Eric@pfane.com', 4, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `consumables_catgeory`
--

CREATE TABLE `consumables_catgeory` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `consumables_catgeory`
--

INSERT INTO `consumables_catgeory` (`id`, `userid`, `name`, `status`) VALUES
(1, 7, 'Gold Line', 1),
(2, 7, 'Copper Line', 1),
(3, 7, 'Tin Line', 1),
(4, 7, 'Frame Shredder', 1),
(5, 7, 'Computer Shredder', 1),
(6, 10, 'a', 1),
(7, 1, 'Gold Line', 1),
(8, 1, 'Copper Line', 1),
(9, 1, 'Tin Line', 1),
(10, 1, 'Frame Shredder', 1),
(11, 1, 'Computer Shredder', 1),
(12, 10, 'Gold Line', 1),
(13, 10, 'Copper Line', 1),
(14, 10, 'Tin Line', 1),
(15, 10, 'Frame Shredder', 1),
(16, 10, 'Computer Shredder', 1),
(17, 9, 'Gold Line', 1),
(18, 9, 'Copper Line', 1),
(19, 9, 'Tin Line', 1),
(20, 9, 'Frame Shredder', 1),
(21, 9, 'Computer Shredder', 1),
(22, 11, 'Gold Line', 1),
(23, 11, 'Copper Line', 1),
(24, 11, 'Tin Line', 1),
(25, 11, 'Shredder', 1),
(26, 11, 'Computer Shredder', 1),
(27, 11, 'Office', 1),
(28, 11, 'General Shop', 1),
(29, 12, 'Class A++++', 1),
(30, 12, 'Class A+++', 1),
(31, 12, 'Class A++', 1),
(32, 12, 'Class A+', 1),
(33, 12, 'Class A', 1),
(34, 12, 'Class B', 1),
(35, 12, 'Class C', 1),
(36, 12, 'Class M', 1),
(37, 12, 'Class A (CPU)', 1),
(38, 12, 'Class B (CPU)', 1),
(39, 12, 'Class C (CPU)', 1),
(40, 12, 'Green Bag', 1),
(41, 12, 'Yellow Bag', 1),
(42, 12, 'Red Bag', 1),
(43, 12, 'Blue Bag', 1),
(44, 14, 'Class A++++', 1),
(45, 14, 'Class A+++', 1),
(46, 14, 'Class A++', 1),
(47, 14, 'Class A+', 1),
(48, 14, 'Class A', 1),
(49, 14, 'Class B', 1),
(50, 14, 'Class C', 1),
(51, 14, 'Class M', 1),
(52, 14, 'Class A (CPU)', 1),
(53, 14, 'Class B (CPU)', 1),
(54, 14, 'Class C (CPU)', 1),
(55, 14, 'Green Bag', 1),
(56, 14, 'Yellow Bag', 1),
(57, 14, 'Red Bag', 1),
(58, 14, 'Blue Bag', 1),
(59, 11, 'Brick Line', 1),
(60, 11, 'CNC Machine', 1),
(85, 1, 'Office', 1),
(68, 15, 'Class M', 1),
(84, 15, 'CNC Machine', 1),
(83, 15, 'Brick Line', 1),
(82, 15, 'General Shop', 1),
(81, 15, 'Office', 1),
(80, 15, 'Computer Shredder', 1),
(79, 15, 'Shredder', 1),
(78, 15, 'Tin Line', 1),
(77, 15, 'Copper Line', 1),
(76, 15, 'Gold Line', 1),
(86, 1, 'General Shop', 1),
(87, 1, 'Brick Line', 1),
(88, 1, 'CNC Machine', 1),
(89, 1, 'Shredder', 1),
(90, 16, 'Class A++++', 1),
(91, 16, 'Class A+++', 1),
(92, 16, 'Class A++', 1),
(93, 16, 'Class A+', 1),
(94, 16, 'Class A', 1),
(95, 16, 'Class B', 1),
(96, 16, 'Class C', 1),
(97, 16, 'Class M', 1),
(98, 16, 'Class A (CPU)', 1),
(99, 16, 'Class B (CPU)', 1),
(100, 16, 'Class C (CPU)', 1),
(101, 16, 'Green Bag', 1),
(102, 16, 'Yellow Bag', 1),
(103, 16, 'Red Bag', 1),
(104, 16, 'Blue Bag', 1),
(105, 16, 'Standard Metal', 1);

-- --------------------------------------------------------

--
-- Table structure for table `consumables_units`
--

CREATE TABLE `consumables_units` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `consumables_units`
--

INSERT INTO `consumables_units` (`id`, `name`, `status`) VALUES
(1, 'lbs', 1),
(2, 'kgs', 1),
(3, 'grams', 1),
(4, 'oz', 1),
(5, 'liters', 1),
(6, 'gallons', 1),
(7, 'pcs', 1),
(8, 'units', 1),
(9, 'inches', 1),
(10, 'cm', 1);

-- --------------------------------------------------------

--
-- Table structure for table `contactperson`
--

CREATE TABLE `contactperson` (
  `id` int(11) NOT NULL,
  `consigneeid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `designation` varchar(100) NOT NULL,
  `phone` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `containers`
--

CREATE TABLE `containers` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `shipmentdetailid` int(11) NOT NULL,
  `containersizeid` int(11) NOT NULL,
  `tripcostid` int(11) NOT NULL,
  `containerdetail` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `containersize`
--

CREATE TABLE `containersize` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `contracts`
--

CREATE TABLE `contracts` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `title` varchar(500) NOT NULL,
  `details` text NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `contracts`
--

INSERT INTO `contracts` (`id`, `userid`, `title`, `details`, `sysdate`, `status`) VALUES
(1, 1, 'Contract1', '<p>\r\n	Congratulations, $Supplier Company Name,</p>\r\n<p>\r\n	%ViewPasAdmin User Company Name has agreed to purchase the following materials from you at the offer price mentioned here within. Please scroll to the bottom of this message to accept the offer for payment.</p>\r\n', '2019-05-10', 1),
(2, 1, 'Contract2', '<p style=\"background-color: transparent; color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	Congratulations, $Supplier Company Name,</p>\r\n<p style=\"background-color: transparent; color: rgb(34, 34, 34); font-family: Arial,Verdana,sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	%ViewPasAdmin User Company Name has agreed to process the following materials based on the terms laid out in the contract attached to the link in your Suppliers login.&nbsp; Please login here to view your new contract and approve the processing of your materials.</p>', '2019-05-10', 1);

-- --------------------------------------------------------

--
-- Table structure for table `country`
--

CREATE TABLE `country` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `country`
--

INSERT INTO `country` (`id`, `name`, `status`) VALUES
(1, 'Romania', 1),
(2, 'United States', 1),
(3, 'Germany', 1),
(4, 'France', 1),
(5, 'Hungary', 1),
(6, 'Canada', 1),
(7, 'Slovakia', 1),
(8, 'United Kingdom', 1),
(9, 'Anywhere', 1);

-- --------------------------------------------------------

--
-- Table structure for table `courier`
--

CREATE TABLE `courier` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `details` text NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `courier`
--

INSERT INTO `courier` (`id`, `userid`, `name`, `details`, `status`) VALUES
(1, 1, 'Viorelle', 'Contact Viorele', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cronsent`
--

CREATE TABLE `cronsent` (
  `id` int(11) NOT NULL,
  `rfqid` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `email` varchar(100) NOT NULL,
  `sysdate` date NOT NULL,
  `status` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `currency`
--

CREATE TABLE `currency` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `rate` float(13,2) DEFAULT NULL,
  `symbol` varchar(10) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `currency`
--

INSERT INTO `currency` (`id`, `userid`, `name`, `rate`, `symbol`, `status`) VALUES
(1, 1, 'RON', 4.30, 'RON', 1),
(2, 1, 'EURO', 0.91, 'EUR', 1),
(3, 1, 'USD', 1.00, 'USD', 1),
(4, 1, 'GBP', 0.78, 'GBP', 1),
(5, 1, 'HUF', 300.84, 'HUF', 1),
(6, 1, 'CAD', 1.32, 'CAD', 1),
(7, 1, 'AED', 3.67, 'AED', 1),
(8, 1, 'Serbian Dinar', 108.90, 'RSD', 1);

-- --------------------------------------------------------

--
-- Table structure for table `datasets`
--

CREATE TABLE `datasets` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `dataset` varchar(500) NOT NULL,
  `datasetid` varchar(500) NOT NULL,
  `foldername` varchar(255) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `datasets`
--

INSERT INTO `datasets` (`id`, `name`, `userid`, `dataset`, `datasetid`, `foldername`, `status`) VALUES
(1, 'MotherBoards', 1, 'MotherBoards', 'ICN2556984659137265664', 'motherboard', 1),
(2, 'Laptop_Boards', 1, 'Laptop Boards', 'ICN239530807134257152', 'Laptop_Boards', 1),
(3, 'Ram', 1, 'Ram', 'ICN3203040099432398848', 'Ram', 1),
(4, 'Extension_Cards', 1, 'Extension_Cards', 'ICN2261506302335254528', 'Extension_Cards', 1),
(5, 'Copper_Frames_and_Blanks', 1, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Copper_Frames_and_Blanks', 1),
(6, 'Gold_Plated_Blanks', 1, 'Gold Plated Blanks', 'ICN5348152100851286016', 'Gold_Plated_Blanks', 1),
(7, 'Server_Boards', 1, 'Server Boards ', 'ICN237138269832216576', 'Server_Boards', 1),
(8, 'CellPhone_Boards', 1, 'CellPhone_Boards', 'ICN7017588983815208960', 'CellPhone_Boards', 1),
(9, 'Processors', 1, 'Processor', 'ICN8294737710174699520', 'Processors', 1),
(11, 'Telecom_Boards', 1, 'Telecom_Boards', 'ICN3800330000012410880', 'Telecom_Boards', 1),
(12, 'Printer_Boards', 1, 'Printer_Boards', 'ICN5491985813950431232', 'Printer_Boards', 1),
(14, 'CRT_Boards', 1, 'CRT_Boards', 'ICN7981429672816672768', 'CRT_Boards', 1),
(15, 'Automatic BETA', 1, 'Automatic BETA', 'ICN7314078891314774016', NULL, 0),
(16, 'Whole_Printers', 1, 'Whole_Printers', 'ICN6909537777130405888', 'Whole_Printers', 1);

-- --------------------------------------------------------

--
-- Table structure for table `datasets-21-12-19`
--

CREATE TABLE `datasets-21-12-19` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `dataset` varchar(500) NOT NULL,
  `datasetid` varchar(500) NOT NULL,
  `foldername` varchar(255) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `datasets-21-12-19`
--

INSERT INTO `datasets-21-12-19` (`id`, `name`, `userid`, `dataset`, `datasetid`, `foldername`, `status`) VALUES
(1, 'MotherBoards', 1, 'MotherBoards', 'ICN2556984659137265664', 'motherboard', 1),
(2, 'Laptop_Boards', 1, 'Laptop Boards', 'ICN6193062173998597390', NULL, 1),
(3, 'Ram', 1, 'Ram', 'ICN9055675874563173188', NULL, 1),
(4, 'Extension_Cards', 1, 'Extension_Cards', 'ICN9118051636822650169', NULL, 1),
(5, 'Copper_Frames_and_Blanks', 1, 'Copper Frames and Blanks', 'ICN5080750872976162816', 'Copper_Frames_and_Blanks', 1),
(6, 'Gold_Plated_Blanks', 1, 'Gold Plated Blanks', 'ICN5348152100851286016', 'Gold_Plated_Blanks', 1),
(7, 'Server_Boards', 1, 'Server Boards ', 'ICN4271510314933026816', NULL, 1),
(8, 'CellPhone_Boards', 1, 'CellPhone_Boards', 'ICN1343889082165493760', NULL, 1),
(9, 'Processors', 1, 'Processor', 'ICN8294737710174699520', 'Processors', 1),
(11, 'Telecom_Boards', 1, 'Telecom_Boards', 'ICN8790309591045898240', NULL, 1),
(12, 'Printer_Boards', 1, 'Printer_Boards', 'ICN5491985813950431232', 'Printer_Boards', 1),
(14, 'CRT_Boards', 1, 'CRT_Boards', 'ICN7981429672816672768', 'CRT_Boards', 1),
(15, 'Automatic BETA', 1, 'Automatic BETA', 'ICN7314078891314774016', NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `dbversion`
--

CREATE TABLE `dbversion` (
  `dbversion` decimal(5,1) NOT NULL DEFAULT 0.0
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `dbversion`
--

INSERT INTO `dbversion` (`dbversion`) VALUES
(1.4);

-- --------------------------------------------------------

--
-- Table structure for table `deductions`
--

CREATE TABLE `deductions` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `price` float(13,2) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `deductions`
--

INSERT INTO `deductions` (`id`, `userid`, `name`, `price`, `status`) VALUES
(1, 1, 'Base Metal Refining Fee', 770.00, 1),
(2, 1, 'Waste Material Processing Fee', 22.00, 1),
(3, 1, 'Granulation Fee', 330.00, 1),
(4, 1, 'Precious Metal Refining Fee', 6600.00, 1),
(5, 1, 'Sorting And Preprocessing Fee', 355.00, 1),
(6, 1, 'Material Separation Fee', 45.00, 1),
(7, 1, 'Depollution Fee', 80.00, 1),
(8, 7, 'Base Metal Refining Fee', 750.00, 1),
(9, 7, 'Waste Water Treatment', 150.00, 1),
(10, 7, 'Granulation Fee', 550.00, 1),
(11, 7, 'Precious Metal Refining Fee', 1200.00, 1),
(12, 7, 'Preprocessing Fee', 1500.00, 1),
(13, 7, 'CircuitBoard Depopulation Fee', 250.00, 1),
(14, 7, 'Sorting Fee', 110.00, 1),
(15, 10, 'Fixed Costs', 2467.00, 1),
(16, 10, 'Chemicals', 2712.00, 1),
(17, 10, 'Labor', 5868.00, 1),
(18, 10, 'Misc', 373.00, 1),
(19, 10, 'Energy', 86.00, 1),
(20, 10, 'Material Separation Fee', 45.00, 0),
(21, 10, 'Depollution Fee', 80.00, 0),
(22, 11, 'Base Metal Refining Fee', 770.00, 1),
(23, 11, 'Waste Material Processing Fee', 22.00, 1),
(24, 11, 'Granulation Fee', 330.00, 1),
(25, 11, 'Precious Metal Refining Fee', 890.00, 1),
(26, 11, 'Sorting And Preprocessing Fee', 355.00, 1),
(27, 11, 'Material Separation Fee', 45.00, 1),
(28, 11, 'Depollution Fee', 80.00, 1),
(29, 12, 'Base Metal Refining Fee', 770.00, 1),
(30, 12, 'Waste Material Processing Fee', 22.00, 1),
(31, 12, 'Granulation Fee', 330.00, 1),
(32, 12, 'Precious Metal Refining Fee', 6600.00, 1),
(33, 12, 'Sorting And Preprocessing Fee', 355.00, 1),
(34, 12, 'Material Separation Fee', 45.00, 1),
(35, 12, 'Depollution Fee', 80.00, 1),
(36, 14, 'C', 0.00, 1),
(37, 14, 'B', 0.00, 1),
(38, 14, 'A', 0.00, 1),
(39, 14, 'Skip Charge', 10.00, 1),
(40, 14, 'Plant / Processing Fee', 272.00, 1),
(41, 14, 'International Shipping Fee', 210.00, 1),
(42, 14, 'Preparation Fee', 37.00, 1),
(43, 15, 'Base Metal Refining Fee', 1200.00, 1),
(44, 15, 'Waste Material Processing Fee', 600.00, 1),
(45, 15, 'Granulation Fee', 330.00, 1),
(46, 15, 'Precious Metal Refining Fee', 4500.00, 1),
(47, 15, 'Sorting And Preprocessing Fee', 355.00, 1),
(48, 15, 'Material Separation Fee', 155.00, 1),
(49, 15, 'Depollution Fee', 250.00, 1),
(50, 16, 'Base Metal Refining Fee', 770.00, 1),
(51, 16, 'Waste Material Processing Fee', 22.00, 1),
(52, 16, 'Granulation Fee', 330.00, 1),
(53, 16, 'Precious Metal Refining Fee', 6600.00, 1),
(54, 16, 'Sorting And Preprocessing Fee', 355.00, 1),
(55, 16, 'Material Separation Fee', 45.00, 1),
(56, 16, 'Depollution Fee', 80.00, 1);

-- --------------------------------------------------------

--
-- Table structure for table `deliverydate`
--

CREATE TABLE `deliverydate` (
  `id` int(11) NOT NULL,
  `supplyorderid` int(11) NOT NULL,
  `delivery_date` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `deliverydate`
--

INSERT INTO `deliverydate` (`id`, `supplyorderid`, `delivery_date`, `status`) VALUES
(1, 23, '2018-06-26', 1);

-- --------------------------------------------------------

--
-- Table structure for table `documentchecklist`
--

CREATE TABLE `documentchecklist` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `shipmentdetailid` int(11) NOT NULL,
  `poid` int(11) NOT NULL,
  `ocdate` date NOT NULL,
  `saleinvoice` int(11) NOT NULL,
  `saleinvoiceremarks` varchar(255) NOT NULL,
  `packinglist` int(11) NOT NULL,
  `packinglistremarks` varchar(255) NOT NULL,
  `billoflading` int(11) NOT NULL,
  `billofladingremarks` varchar(255) NOT NULL,
  `certificateoforigin` int(11) NOT NULL,
  `certificateremarks` varchar(255) NOT NULL,
  `insurancepolicy` int(11) NOT NULL,
  `insurancepolicyremarks` varchar(255) NOT NULL,
  `technicalsheet` int(11) NOT NULL,
  `technicalsheetremarks` varchar(255) NOT NULL,
  `benfdetail` int(11) NOT NULL,
  `benfremarks` varchar(255) NOT NULL,
  `quantity` int(11) NOT NULL,
  `quantityremarks` varchar(255) NOT NULL,
  `rate` int(11) NOT NULL,
  `rateremarks` varchar(255) NOT NULL,
  `amount` int(11) NOT NULL,
  `amountremarks` varchar(255) NOT NULL,
  `breakdown` int(11) NOT NULL,
  `breakdownremarks` varchar(255) NOT NULL,
  `seal` int(11) NOT NULL,
  `sealremarks` varchar(255) NOT NULL,
  `packing_benfdetail` int(11) NOT NULL,
  `packing_benfremarks` varchar(255) NOT NULL,
  `packing_quantity` int(11) NOT NULL,
  `packing_quantityremarks` varchar(255) NOT NULL,
  `packing_hscode` int(11) NOT NULL,
  `packing_hscoderemarks` varchar(255) NOT NULL,
  `packing_noofpallets` int(11) NOT NULL,
  `packing_noofpalletsremarks` varchar(255) NOT NULL,
  `packing_detail` int(11) NOT NULL,
  `packing_detailremarks` varchar(255) NOT NULL,
  `packing_breakdown` int(11) NOT NULL,
  `packing_breakdownremarks` varchar(255) NOT NULL,
  `bill_consignee` int(11) NOT NULL,
  `bill_consigneeremarks` varchar(255) NOT NULL,
  `bill_notify` int(11) NOT NULL,
  `bill_notifyremarks` varchar(255) NOT NULL,
  `bill_product` int(11) NOT NULL,
  `bill_productremarks` varchar(255) NOT NULL,
  `bill_noofpallets` int(11) NOT NULL,
  `bill_noofpalletsremarks` varchar(255) NOT NULL,
  `certificate_product` int(11) NOT NULL,
  `certificate_productremarks` varchar(255) NOT NULL,
  `certificate_origin` int(11) NOT NULL,
  `certificate_originremarks` varchar(255) NOT NULL,
  `pipreaparedby` varchar(255) NOT NULL,
  `preperationdate` date NOT NULL,
  `pireviewedby` varchar(255) NOT NULL,
  `pireviewdate` date NOT NULL,
  `piaccepted` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `documentsdeliverymode`
--

CREATE TABLE `documentsdeliverymode` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `emaillog`
--

CREATE TABLE `emaillog` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `emailid` int(11) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `sysdate` datetime DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `emaillog`
--

INSERT INTO `emaillog` (`id`, `userid`, `supplierid`, `emailid`, `email`, `sysdate`, `status`) VALUES
(1, 1, 5, 1, 'info-europe@cicor.com', '2017-04-25 13:17:00', 1),
(2, 1, 4, 1, 'none@none.com', '2017-04-25 13:17:00', 1),
(3, 1, 3, 1, ' info@connectgroup.com', '2017-04-25 13:17:00', 1),
(4, 1, 1, 1, 'dale@pfane.com', '2017-04-25 13:17:00', 1),
(5, 1, 1, 2, 'dale@pfane.com', '2017-04-26 01:54:00', 1),
(6, 1, 18, 3, 'accounting@hanna.ro', '2017-04-26 07:45:00', 1),
(7, 1, 17, 3, ' info@leoni.com', '2017-04-26 07:45:00', 1),
(8, 1, 16, 3, 'officedeva@sews-e.com', '2017-04-26 07:45:00', 1),
(9, 1, 14, 3, 'pressa@draexlmaier.de', '2017-04-26 07:45:00', 1),
(10, 1, 12, 3, 'oradea@celestica.com', '2017-04-26 07:45:00', 1),
(11, 1, 11, 3, 'cariera@zollner.ro', '2017-04-26 07:45:00', 1),
(12, 1, 10, 3, 'oradea@emerson.com', '2017-04-26 07:45:00', 1),
(13, 1, 9, 3, 'contact@ar-elektronik.com', '2017-04-26 07:45:00', 1),
(14, 1, 8, 3, 'electronics@ergad.eu', '2017-04-26 07:45:00', 1),
(15, 1, 6, 3, 'office@cbelectric.ro', '2017-04-26 07:45:00', 1),
(16, 1, 1, 3, 'dale@pfane.com', '2017-04-26 07:45:00', 1);

-- --------------------------------------------------------

--
-- Table structure for table `emailserver`
--

CREATE TABLE `emailserver` (
  `id` int(11) NOT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(100) NOT NULL,
  `port` varchar(100) NOT NULL,
  `server` varchar(100) NOT NULL,
  `fromaddress` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `employees`
--

CREATE TABLE `employees` (
  `empfullname` varchar(50) NOT NULL DEFAULT '',
  `tstamp` bigint(14) DEFAULT NULL,
  `employee_passwd` varchar(25) NOT NULL DEFAULT '',
  `displayname` varchar(50) NOT NULL DEFAULT '',
  `email` varchar(75) NOT NULL DEFAULT '',
  `groups` varchar(50) NOT NULL DEFAULT '',
  `office` varchar(50) NOT NULL DEFAULT '',
  `admin` tinyint(1) NOT NULL DEFAULT 0,
  `reports` tinyint(1) NOT NULL DEFAULT 0,
  `time_admin` tinyint(1) NOT NULL DEFAULT 0,
  `disabled` tinyint(1) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `employees`
--

INSERT INTO `employees` (`empfullname`, `tstamp`, `employee_passwd`, `displayname`, `email`, `groups`, `office`, `admin`, `reports`, `time_admin`, `disabled`) VALUES
('admin', NULL, 'xyHtsIY6HyLN6', 'administrator', 'malikmasif@hotmail.com', '', '1', 1, 1, 1, 0),
('bela', NULL, 'xyw.ZRNHD66EU', 'bela', 'time@pfane.com', 'Group 1', 'Pfane', 0, 0, 0, 0),
('levi', NULL, 'xyy75rlf5ANb.', 'levi', 'time@pfane.com', 'Group 1', 'Pfane', 0, 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `gapshippmentlot`
--

CREATE TABLE `gapshippmentlot` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `gapshippmentot`
--

CREATE TABLE `gapshippmentot` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `googleusers`
--

CREATE TABLE `googleusers` (
  `uid` int(11) NOT NULL,
  `username` varchar(45) DEFAULT NULL,
  `email` varchar(120) DEFAULT NULL,
  `password` varchar(200) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `profile_pic` varchar(200) DEFAULT NULL,
  `google_auth_code` varchar(16) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `googleusers`
--

INSERT INTO `googleusers` (`uid`, `username`, `email`, `password`, `name`, `profile_pic`, `google_auth_code`) VALUES
(1, 'malikmasif', 'malikmasif@hotmail.com', 'ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f', 'malik', NULL, ''),
(2, 'PfaneSci', 'cell@pfane.com', 'ef797c8118f02dfb649607dd5d3f8c7623048c9c063d532cc95c5ed7a898a64f', 'Pfane Scientific', NULL, '76XU5J3T2THCVNL6'),
(3, 'smart', 'smartwebbers@gmail.com', '15e2b0d3c33891ebb0f1ef609ec419420c20e320ce94c65fbc8c3312448eb225', 'Malik', NULL, 'X5RT76VDIFV4S7VG');

-- --------------------------------------------------------

--
-- Table structure for table `groups`
--

CREATE TABLE `groups` (
  `groupname` varchar(50) NOT NULL DEFAULT '',
  `groupid` int(10) NOT NULL,
  `officeid` int(10) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `groups`
--

INSERT INTO `groups` (`groupname`, `groupid`, `officeid`) VALUES
('Group 1', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `guarantee`
--

CREATE TABLE `guarantee` (
  `id` int(11) NOT NULL,
  `companyname` varchar(255) NOT NULL,
  `guaranteepdf` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `hedging`
--

CREATE TABLE `hedging` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `materialtype` varchar(500) NOT NULL,
  `quantity` float(13,2) NOT NULL,
  `amount` float(13,2) NOT NULL,
  `total` float(13,2) NOT NULL,
  `requestkey` varchar(500) NOT NULL,
  `sysdate` datetime NOT NULL,
  `sell` int(11) NOT NULL,
  `selldate` datetime NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `hedging`
--

INSERT INTO `hedging` (`id`, `userid`, `materialtype`, `quantity`, `amount`, `total`, `requestkey`, `sysdate`, `sell`, `selldate`, `status`) VALUES
(1, 1, 'XAG', 3.00, 14.95, 44.84, 'pce845996290f2dd9d78d1b23c5eb5f04dc898a744ec1', '2019-04-24 18:37:00', 1, '2019-05-10 05:07:00', 1),
(2, 1, 'XAU', 3.20, 1275.29, 4080.93, 'pce845996290f2dd9d78d1b23c5eb5f04dc898a744ec2', '2019-04-24 18:42:00', 1, '2019-04-24 18:50:00', 1),
(3, 1, 'XPD', 1.60, 1412.87, 2260.59, 'pce845996290f2dd9d78d1b23c5eb5f04dc898a744ec3', '2019-04-24 18:43:00', 1, '2019-05-10 05:07:00', 1),
(4, 1, 'XPT', 2.36, 883.70, 2085.53, 'pce845996290f2dd9d78d1b23c5eb5f04dc898a744ec4', '2019-04-24 18:43:00', 1, '2019-04-24 18:50:00', 1),
(5, 1, 'XAU', 5.00, 1285.86, 6429.30, 'pce845996290f2dd9d78d1b23c5eb5f04dc898a744ec5', '2019-05-16 18:46:00', 1, '2019-05-16 18:47:00', 1);

-- --------------------------------------------------------

--
-- Table structure for table `imagegroup`
--

CREATE TABLE `imagegroup` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `adminid` int(11) NOT NULL,
  `inventoryid` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `orderid` int(11) DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `total` float(13,3) NOT NULL,
  `myprice` float(13,2) NOT NULL,
  `quantity` float(13,3) NOT NULL,
  `grouptype` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `imagegroup`
--

INSERT INTO `imagegroup` (`id`, `userid`, `adminid`, `inventoryid`, `supplierid`, `orderid`, `name`, `total`, `myprice`, `quantity`, `grouptype`, `sysdate`, `status`) VALUES
(1, 1, 1, 0, 0, 0, 'Malik  Test', 2.546, 0.00, 0.000, 0, '2018-12-30', 1),
(2, 1, 1, 0, 0, 0, 'Tgxggcg', 2.629, 0.00, 0.000, 0, '2018-12-30', 1),
(4, 1, 1, 0, 0, 0, 'New Test', 5.184, 0.00, 0.000, 0, '2018-12-30', 1),
(5, 1, 1, 0, 56, 0, 'Truck323', 2.542, 0.00, 0.000, 0, '2018-12-30', 1),
(7, 1, 0, 0, 56, 0, 'Ebay cell boards top bid', 5.963, 0.00, 0.000, 0, '2019-01-07', 1),
(8, 1, 0, 0, 56, 0, 'Price Group', 2.955, 0.00, 0.000, 2, '2019-01-07', 1),
(9, 1, 0, 0, 56, 0, 'Whole Truck', 3.526, 0.00, 0.000, 2, '2019-01-07', 1),
(10, 1, 1, 0, 0, 0, 'all my suff', 7.108, 0.00, 0.000, 2, '2019-01-10', 1),
(14, 1, 1, 0, 0, 0, 'Kinda cool', 14.400, 0.00, 0.000, 2, '2019-01-11', 1),
(48, 1, 0, 0, 1, 0, 'ProcessorTest 1', 20.928, 0.00, 0.000, 1, '2019-01-21', 1),
(53, 1, 0, 0, 1, 0, 'ALKU Delivery6 - 19tons Cu Frames', 0.206, 2328.00, 19100.000, 2, '2019-01-21', 1),
(54, 1, 0, 0, 1, 0, 'Jack Brought To The Shop', 6.655, 4376.00, 450.000, 2, '2019-01-21', 1),
(56, 1, 0, 12, 0, 0, 'This one', 15.383, 0.00, 0.000, 2, '2019-01-26', 1),
(57, 1, 0, 0, 1, 0, 'Lucians Delivery 211', 22.033, 6372.00, 477.000, 2, '2019-01-26', 1),
(58, 1, 0, 12, 0, 0, 'This', 15.383, 0.00, 60.000, 2, '2019-01-26', 1),
(59, 1, 1, 0, 0, 0, 'Ram Test 1', 3.993, 0.00, 0.000, 2, '2019-01-27', 1),
(60, 1, 1, 0, 56, 6, 'just quick', 1.426, 7000.00, 1000.000, 2, '2019-01-27', 1),
(62, 1, 1, 0, 0, 0, 'My Title', 4.657, 0.00, 0.000, 2, '2019-01-27', 1),
(63, 1, 1, 0, 56, 5, 'THis Group', 4.853, 3975.80, 1980.000, 2, '2019-01-27', 1),
(65, 1, 1, 0, 56, 4, 'Motherboards Test', 1.367, 1050.00, 500.000, 2, '2019-01-27', 1),
(66, 1, 0, 12, 0, 0, 'SomeMore', 20.805, 0.00, 1600.000, 2, '2019-01-28', 1),
(67, 1, 0, 12, 0, 0, 'Some Motherboards', 20.805, 0.00, 444.000, 2, '2019-01-29', 1),
(68, 1, 0, 12, 0, 0, 'Motherboards', 20.805, 0.00, 0.000, 2, '2019-01-29', 1),
(69, 1, 0, 12, 56, 5, 'Stuff', 20.805, 1000.00, 50.000, 2, '2019-01-29', 1),
(70, 1, 0, 15, 59, 11, 'Order 61', 1.930, 11000.00, 5000.000, 2, '2019-02-14', 1),
(71, 1, 0, 0, 1, 0, 'Cellphones From Poland', 18.115, 17500.00, 1000.000, 2, '2019-02-14', 1),
(72, 1, 0, 12, 56, 12, 'DereksTruck', 19.622, 88000.00, 8500.000, 2, '2019-03-14', 1),
(80, 7, 7, 0, 0, 0, 'Order18', 0.000, 0.00, 0.000, 2, '2019-05-10', 1),
(81, 7, 7, 0, 0, 0, 'malikdemo', 4.675, 0.00, 0.000, 2, '2019-05-10', 1),
(83, 7, 7, 0, 0, 0, 'FOR18', 5.100, 0.00, 0.000, 2, '2019-05-10', 1),
(84, 7, 7, 0, 0, 0, 'malikdemo', 4.675, 0.00, 0.000, 2, '2019-05-10', 1),
(88, 7, 0, 18, 61, 24, 'Order 24', 4.250, 210.00, 70.000, 2, '2019-05-16', 1),
(90, 10, 10, 0, 64, 29, 'Blue Sky 1st Batch', 213.190, 2000.00, 10.000, 2, '2019-05-21', 1),
(91, 10, 10, 0, 64, 29, 'test', 5.310, 20.00, 10.000, 2, '2019-05-21', 1),
(93, 10, 10, 0, 0, 0, '', 143.100, 0.00, 0.000, 2, '2019-06-05', 1),
(94, 10, 10, 0, 0, 0, '', 143.100, 0.00, 0.000, 2, '2019-06-05', 1),
(95, 10, 0, 20, 64, 35, 'Test Group', 190.223, 36000.00, 200.000, 2, '2019-06-05', 1),
(96, 10, 10, 0, 0, 0, 'Test 2 Images', 161.120, 0.00, 0.000, 2, '2019-06-05', 1),
(97, 10, 10, 0, 0, 0, 'test 2', 161.120, 0.00, 0.000, 2, '2019-06-05', 1),
(98, 10, 10, 0, 64, 36, 'Test 2', 161.120, 141900.00, 1010.000, 2, '2019-06-05', 1),
(99, 10, 10, 0, 0, 0, 'test 2', 112.023, 0.00, 0.000, 2, '2019-06-05', 1),
(100, 10, 10, 0, 0, 0, 'Assay for Test 2 ', 190.223, 0.00, 0.000, 2, '2019-06-05', 1),
(101, 1, 1, 0, 0, 0, 'Aurenis 001-crt', 0.386, 0.00, 0.000, 2, '2019-06-12', 1),
(102, 1, 1, 0, 0, 0, 'Aurenis 001-crt', 0.386, 1930.00, 5000.000, 2, '2019-06-12', 1),
(103, 10, 0, 20, 0, 0, 'Pentium Pros', 188.320, 0.00, 0.000, 2, '2019-06-18', 1),
(104, 10, 10, 0, 0, 0, '', 63.230, 0.00, 0.000, 2, '2019-06-19', 1),
(105, 10, 10, 0, 0, 0, '', 94.257, 0.00, 0.000, 2, '2019-06-19', 1),
(107, 11, 11, 0, 66, 41, 'Alku 41', 0.310, 10495.83, 21990.000, 2, '2019-08-02', 1),
(108, 11, 0, 23, 66, 42, 'Alku 42', 0.310, 10495.83, 21990.000, 2, '2019-08-02', 1),
(109, 11, 11, 0, 66, 43, 'ALKU43', 0.320, 10489.23, 21990.000, 2, '2019-08-02', 1),
(110, 10, 10, 0, 64, 40, 'cpu', 175.050, 0.00, 0.000, 2, '2019-08-13', 1),
(111, 11, 11, 0, 67, 45, 'Remat 44', 0.380, 8516.40, 18120.000, 2, '2019-08-14', 1),
(112, 11, 0, 22, 70, 44, 'Tesla 45', 0.410, 7955.28, 15660.000, 2, '2019-08-14', 1),
(113, 11, 11, 0, 66, 46, 'ALKU9', 0.385, 10468.56, 21780.000, 2, '2019-08-14', 1),
(114, 11, 11, 0, 68, 47, 'Aurenis3', 0.320, 6489.50, 20720.000, 2, '2019-08-14', 1),
(115, 11, 11, 0, 66, 48, 'ALKU4', 0.310, 6200.00, 20000.000, 2, '2019-08-14', 1),
(116, 11, 11, 0, 0, 0, 'malik', 0.293, 0.00, 0.000, 2, '2019-08-19', 1),
(117, 10, 0, 21, 0, 0, 'test 1', 0.000, 0.00, 0.000, 2, '2019-09-03', 1),
(118, 10, 0, 21, 0, 0, 'test 1', 79.000, 0.00, 0.000, 2, '2019-09-03', 1),
(119, 10, 10, 0, 73, 54, '', 254.870, 75000.00, 500.000, 2, '2019-09-03', 1),
(120, 10, 10, 0, 73, 55, '', 197.560, 14000.00, 700.000, 2, '2019-09-03', 1),
(121, 10, 10, 0, 0, 0, 'Test Order', 222.345, 0.00, 0.000, 2, '2019-09-04', 1),
(122, 10, 10, 0, 0, 0, '', 222.345, 0.00, 0.000, 2, '2019-09-04', 1),
(123, 10, 10, 0, 75, 58, '', 222.345, 40000.00, 200.000, 2, '2019-09-04', 1),
(124, 10, 10, 0, 0, 0, '', 138.057, 0.00, 0.000, 2, '2019-09-04', 1),
(125, 10, 10, 0, 75, 59, '', 227.435, 20000.00, 100.000, 2, '2019-09-04', 1),
(126, 11, 11, 0, 76, 60, 'Sept04', 0.376, 4384.00, 22420.000, 2, '2019-09-06', 1),
(127, 10, 0, 21, 73, 56, 'Test group name', 102.040, 0.00, 100.000, 2, '2019-09-11', 1),
(128, 10, 0, 21, 0, 0, 'Test group name', 0.000, 0.00, 0.000, 2, '2019-09-12', 1),
(129, 11, 11, 0, 76, 63, 'Murvai ', 0.380, 3088.80, 17160.000, 2, '2019-09-13', 1),
(130, 10, 10, 0, 77, 72, 'Client #5', 232.230, 114.31, 114.310, 2, '2019-10-03', 1),
(131, 11, 11, 0, 69, 73, '4564', 0.350, 226.80, 226.800, 2, '2019-10-03', 1),
(132, 11, 11, 0, 0, 0, '+33 6 14 30 20 59', 26.600, 226.80, 226.800, 2, '2019-10-04', 1),
(133, 11, 11, 0, 78, 77, 'Hungary - Emil', 0.380, 1134.00, 226.800, 2, '2019-10-04', 1),
(134, 11, 11, 0, 67, 78, 'Remat Contract', 0.380, 231.33, 231.330, 2, '2019-10-07', 1),
(135, 7, 7, 0, 61, 79, 'trtr', 4.160, 1665.00, 555.000, 2, '2019-10-07', 1),
(136, 11, 11, 0, 67, 80, 'Remat2', 0.340, 9290.40, 22120.000, 2, '2019-10-07', 1),
(137, 7, 7, 0, 61, 82, '2222', 1.300, 4444.00, 2222.000, 2, '2019-10-08', 1),
(138, 11, 11, 0, 78, 85, 'Hungary2', 0.340, 11045.00, 23500.000, 2, '2019-10-12', 1),
(139, 11, 11, 0, 68, 88, 'Aurenis Doo', 0.350, 7037.00, 22700.000, 2, '2019-10-17', 1),
(140, 11, 11, 0, 69, 49, 'Developer test', 4.400, 40.30, 8.000, 2, '2019-10-18', 1),
(141, 11, 11, 0, 0, 0, 'Aurenis Doo Standard Truck', 0.330, 0.00, 0.000, 2, '2019-10-21', 1),
(142, 11, 11, 0, 68, 94, 'Aurenis Standard', 0.330, 7037.00, 22700.000, 2, '2019-10-21', 1),
(143, 11, 11, 0, 78, 98, 'HungaryMaterialoct', 0.350, 12890.80, 24790.000, 2, '2019-10-23', 1),
(144, 10, 10, 0, 80, 100, 'y group', 5.310, 181.44, 90.720, 2, '2019-10-23', 1),
(145, 10, 10, 0, 80, 101, 'product1', 0.000, 68.00, 6.800, 2, '2019-10-24', 1),
(146, 10, 10, 0, 80, 102, 'Dale', 148.580, 68.00, 6.800, 2, '2019-10-24', 1),
(147, 10, 10, 0, 80, 103, 'ram', 12.660, 1995.80, 226.796, 2, '2019-10-24', 1),
(148, 10, 10, 0, 80, 104, 'ram', 25.320, 4535.92, 226.796, 2, '2019-10-24', 1),
(149, 10, 0, 19, 0, 0, 'STUFF FROM TODAY', 84.882, 0.00, 0.000, 2, '2019-10-26', 1),
(151, 10, 10, 0, 0, 0, 'ok', 21.100, 0.00, 0.000, 2, '2019-10-26', 1),
(152, 10, 10, 0, 80, 110, 'Name1', 80.063, 1107.33, 14.969, 2, '2019-10-27', 1),
(153, 10, 10, 0, 80, 111, 'test1', 25.530, 2550.76, 220.463, 2, '2019-10-27', 1),
(154, 7, 7, 0, 61, 112, 'Dale Test', 0.540, 6.16, 10.000, 2, '2019-10-27', 1),
(155, 10, 10, 0, 80, 113, 'Developer test', 57.660, 524.71, 22.046, 2, '2019-10-27', 1),
(156, 10, 10, 0, 80, 115, 'RAM1', 59.405, 1102.31, 1102.312, 2, '2019-10-28', 1),
(157, 10, 10, 0, 80, 120, 'PROC', 78.275, 4850.17, 4850.170, 2, '2019-10-28', 1),
(158, 10, 10, 0, 80, 121, '2222', 78.275, 1007.88, 1007.883, 2, '2019-10-28', 1),
(159, 10, 10, 0, 0, 0, '500', 67.060, 0.00, 0.000, 2, '2019-10-28', 1),
(160, 10, 10, 0, 80, 122, '5002', 67.060, 680.39, 226.796, 2, '2019-10-28', 1),
(161, 10, 10, 0, 80, 128, '600', 78.275, 544.31, 272.155, 2, '2019-10-28', 1),
(162, 10, 0, 24, 80, 129, '1000', 0.910, 0.00, 453.592, 2, '2019-10-29', 1),
(163, 10, 0, 24, 80, 119, 'Developer test', 0.910, 0.00, 226.796, 2, '2019-10-29', 1),
(164, 10, 0, 24, 80, 129, 'Developer', 0.910, 0.00, 453.592, 2, '2019-10-29', 1),
(165, 10, 0, 24, 80, 130, 'pfanepro', 190.860, 0.00, 114.305, 2, '2019-10-29', 1),
(166, 10, 0, 24, 80, 131, 'pfane malik', 149.363, 0.00, 226.796, 2, '2019-10-29', 1),
(167, 10, 0, 24, 80, 132, 'Final test', 149.363, 0.00, 226.796, 2, '2019-10-29', 1),
(168, 10, 10, 0, 80, 133, 'RAM', 66.390, 2721.55, 226.796, 2, '2019-10-30', 1),
(172, 11, 11, 0, 67, 143, 'Remat', 0.330, 10332.00, 22960.000, 2, '2019-11-01', 1),
(173, 11, 11, 0, 78, 145, 'Hungary', 0.250, 13509.70, 25490.000, 2, '2019-11-11', 1),
(174, 11, 11, 0, 0, 0, 'ALKU', 0.365, 0.00, 0.000, 2, '2019-11-15', 1),
(178, 11, 11, 0, 0, 0, 'Developer test', 0.505, 0.00, 0.000, 2, '2019-11-15', 1),
(179, 11, 11, 0, 0, 0, 'Developer test', 0.460, 0.00, 0.000, 2, '2019-11-15', 1),
(181, 11, 11, 0, 67, 146, 'rematsa21', 0.460, 11509.20, 25020.000, 2, '2019-11-29', 1),
(182, 11, 11, 0, 0, 0, 'Jan3', 11.650, 0.00, 0.000, 2, '2020-01-05', 1),
(184, 7, 7, 0, 0, 0, 'group', 2.860, 0.00, 0.000, 2, '2020-01-11', 1),
(185, 7, 7, 0, 71, 152, 'Developer test', 2.860, 63.70, 20.000, 2, '2020-01-11', 1),
(186, 7, 7, 0, 71, 153, '230', 0.630, 126.50, 230.000, 2, '2020-01-11', 1),
(187, 11, 11, 0, 78, 151, 'group1', 0.720, 11842.50, 18190.000, 2, '2020-01-13', 1),
(205, 7, 0, 18, 0, 0, 'supercalafrajalistic1231', 5.370, 0.00, 0.000, 2, '2020-01-21', 1),
(206, 10, 10, 0, 77, 156, 'kjhg', 119.360, 453.60, 11.340, 2, '2020-01-21', 1),
(207, 11, 11, 0, 68, 157, 'AurenisJan14', 0.785, 6585.80, 19560.000, 2, '2020-01-22', 1),
(208, 11, 11, 0, 67, 159, 'Remat21', 0.250, 9531.20, 20720.000, 2, '2020-01-30', 1),
(209, 11, 11, 0, 90, 160, 'PaperGroup', 0.270, 3985.80, 10220.000, 2, '2020-01-30', 1),
(210, 11, 11, 0, 90, 161, 'Paper21', 0.410, 3556.80, 9120.000, 2, '2020-01-30', 1),
(211, 10, 10, 0, 77, 162, '', 207.240, 21545.62, 226.796, 2, '2020-02-05', 1),
(212, 10, 10, 0, 0, 0, 'xyzzy', 207.410, 0.00, 0.000, 2, '2020-02-06', 1),
(213, 10, 10, 0, 77, 164, 'xyzzy', 207.410, 23700.22, 249.476, 2, '2020-02-06', 1),
(214, 14, 14, 0, 95, 168, 'this', 3.610, 2000.00, 1000.000, 2, '2020-02-11', 1),
(215, 7, 7, 0, 0, 0, '1500', 2.710, 0.00, 0.000, 2, '2020-02-11', 1),
(216, 7, 7, 0, 0, 0, 'this2', 2.710, 0.00, 0.000, 2, '2020-02-11', 1),
(221, 7, 7, 0, 0, 0, 'DeveloperTest', 6.960, 0.00, 0.000, 2, '2020-02-12', 1),
(228, 11, 11, 0, 0, 0, 'group111', 14.797, 0.00, 0.000, 2, '2021-04-07', 1),
(230, 11, 11, 0, 40, 7, 'new group', 0.980, 17175.00, 18500.000, 2, '2021-12-15', 1),
(234, 15, 15, 0, 0, 0, '', 0.392, 0.00, 0.000, 2, '2022-02-18', 1),
(235, 15, 15, 0, 0, 0, 'SunTech12', 0.392, 0.00, 0.000, 2, '2022-02-18', 1),
(237, 11, 11, 0, 60, 0, 'Rafal1', 1.002, 21840.00, 24000.000, 2, '2022-02-21', 1),
(239, 11, 11, 0, 60, 0, 'FOR RAFAL', 1.035, 18800.00, 20000.000, 2, '2022-02-21', 1),
(241, 11, 11, 0, 131, 0, 'my test', 0.943, 2.74, 3.000, 2, '2022-02-21', 1),
(242, 11, 11, 0, 111, 0, 'Rafal2', 0.925, 22405.00, 25500.000, 2, '2022-02-22', 1),
(243, 11, 11, 0, 136, 0, '443-100t', 1.380, 124740.00, 99000.000, 2, '2022-09-01', 1);

-- --------------------------------------------------------

--
-- Table structure for table `imagegroupdetail`
--

CREATE TABLE `imagegroupdetail` (
  `id` int(11) NOT NULL,
  `imageid` int(11) NOT NULL,
  `groupid` int(11) NOT NULL,
  `myprice` float(13,2) NOT NULL,
  `quantity` float(13,3) NOT NULL,
  `totalscore` float(13,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `imagegroupdetail`
--

INSERT INTO `imagegroupdetail` (`id`, `imageid`, `groupid`, `myprice`, `quantity`, `totalscore`) VALUES
(1, 6, 1, 0.00, 0.000, 2.30),
(2, 5, 1, 0.00, 0.000, 2.80),
(3, 4, 1, 0.00, 0.000, 2.43),
(4, 3, 1, 0.00, 0.000, 2.65),
(5, 5, 2, 0.00, 0.000, 2.80),
(6, 4, 2, 0.00, 0.000, 2.43),
(7, 3, 2, 0.00, 0.000, 2.65),
(8, 2, 4, 0.00, 0.000, 5.24),
(9, 1, 4, 0.00, 0.000, 5.13),
(10, 4, 5, 0.00, 0.000, 2.43),
(11, 3, 5, 0.00, 0.000, 2.65),
(12, 18, 6, 0.00, 0.000, 2.18),
(13, 15, 6, 0.00, 0.000, 0.00),
(14, 16, 7, 0.00, 0.000, 6.69),
(15, 14, 7, 0.00, 0.000, 5.24),
(16, 18, 8, 0.00, 0.000, 2.18),
(17, 16, 8, 0.00, 0.000, 6.69),
(18, 15, 8, 0.00, 0.000, 0.00),
(19, 18, 9, 0.00, 0.000, 2.18),
(20, 16, 9, 0.00, 0.000, 6.69),
(21, 15, 9, 0.00, 0.000, 0.00),
(22, 14, 9, 0.00, 0.000, 5.24),
(23, 50, 10, 0.00, 0.000, 10.67),
(24, 9, 10, 0.00, 0.000, 2.14),
(25, 8, 10, 0.00, 0.000, 2.55),
(26, 7, 10, 0.00, 0.000, 23.82),
(27, 5, 10, 0.00, 0.000, 2.80),
(28, 3, 10, 0.00, 0.000, 2.65),
(29, 1, 10, 0.00, 0.000, 5.13),
(39, 105, 14, 0.00, 0.000, 1.49),
(40, 103, 14, 0.00, 0.000, 27.31),
(149, 180, 48, 0.00, 0.000, 27.78),
(150, 179, 48, 0.00, 0.000, 22.42),
(151, 175, 48, 0.00, 0.000, 27.85),
(152, 164, 48, 0.00, 0.000, 8.44),
(153, 162, 48, 0.00, 0.000, 18.15),
(184, 215, 53, 0.14, 4000.000, 0.22),
(185, 213, 53, 0.10, 4000.000, 0.19),
(186, 212, 53, 0.13, 4000.000, 0.19),
(187, 209, 53, 0.15, 4000.000, 0.27),
(188, 207, 53, 0.08, 3100.000, 0.16),
(189, 195, 54, 4.50, 120.000, 4.64),
(190, 181, 54, 2.15, 40.000, 2.31),
(191, 178, 54, 3.00, 50.000, 3.04),
(192, 176, 54, 15.00, 240.000, 16.63),
(196, 226, 56, 0.00, 0.000, 11.05),
(197, 225, 56, 0.00, 0.000, 35.10),
(198, 223, 56, 0.00, 0.000, 0.00),
(199, 227, 57, 40.00, 120.000, 43.56),
(200, 217, 57, 16.00, 12.000, 17.90),
(201, 195, 57, 4.00, 345.000, 4.64),
(202, 226, 58, 0.00, 10.000, 11.05),
(203, 225, 58, 0.00, 20.000, 35.10),
(204, 224, 58, 0.00, 30.000, 0.00),
(205, 222, 59, 0.00, 0.000, 1.42),
(206, 221, 59, 0.00, 0.000, 1.27),
(207, 218, 59, 0.00, 0.000, 11.87),
(208, 205, 59, 0.00, 0.000, 1.41),
(209, 222, 60, 3.00, 100.000, 1.42),
(210, 205, 60, 5.00, 200.000, 1.41),
(211, 166, 60, 7.00, 300.000, 0.69),
(212, 165, 60, 9.00, 400.000, 2.18),
(215, 218, 62, 0.00, 0.000, 11.87),
(216, 205, 62, 0.00, 0.000, 1.41),
(217, 166, 62, 0.00, 0.000, 0.69),
(218, 222, 63, 1.11, 560.000, 1.42),
(219, 221, 63, 1.11, 1220.000, 1.27),
(220, 218, 63, 10.00, 200.000, 11.87),
(226, 222, 65, 2.00, 200.000, 1.42),
(227, 221, 65, 2.50, 100.000, 1.27),
(228, 205, 65, 2.00, 200.000, 1.41),
(229, 230, 66, 0.00, 800.000, 24.42),
(230, 229, 66, 0.00, 800.000, 17.19),
(231, 230, 67, 0.00, 222.000, 24.42),
(232, 229, 67, 0.00, 222.000, 17.19),
(233, 230, 68, 0.00, 0.000, 24.42),
(234, 229, 68, 0.00, 0.000, 17.19),
(235, 230, 69, 20.00, 25.000, 24.42),
(236, 229, 69, 20.00, 25.000, 17.19),
(237, 330, 70, 2.50, 4000.000, 2.42),
(238, 328, 70, 1.00, 1000.000, 1.44),
(239, 325, 71, 17.50, 500.000, 17.87),
(240, 324, 71, 17.50, 500.000, 18.36),
(241, 233, 72, 2.00, 5000.000, 2.42),
(242, 232, 72, 30.00, 1000.000, 34.46),
(243, 230, 72, 20.00, 2000.000, 24.42),
(244, 229, 72, 16.00, 500.000, 17.19),
(251, 413, 81, 0.00, 0.000, 4.25),
(252, 412, 81, 0.00, 0.000, 5.10),
(253, 412, 83, 0.00, 0.000, 5.10),
(254, 413, 84, 0.00, 0.000, 4.25),
(255, 412, 84, 0.00, 0.000, 5.10),
(259, 413, 88, 3.00, 70.000, 4.25),
(261, 434, 90, 200.00, 10.000, 213.19),
(262, 424, 91, 2.00, 10.000, 5.31),
(267, 497, 93, 0.00, 0.000, 143.10),
(268, 497, 94, 0.00, 0.000, 143.10),
(269, 473, 94, 0.00, 0.000, 143.10),
(270, 472, 94, 0.00, 0.000, 143.10),
(271, 501, 95, 180.00, 50.000, 190.55),
(272, 500, 95, 180.00, 100.000, 191.80),
(273, 498, 95, 180.00, 50.000, 188.32),
(274, 497, 96, 0.00, 0.000, 143.10),
(275, 483, 96, 0.00, 0.000, 197.16),
(276, 473, 96, 0.00, 0.000, 143.10),
(277, 497, 97, 0.00, 0.000, 143.10),
(278, 483, 97, 0.00, 0.000, 197.16),
(279, 473, 97, 0.00, 0.000, 143.10),
(280, 497, 98, 140.00, 500.000, 143.10),
(281, 483, 98, 190.00, 10.000, 197.16),
(282, 473, 98, 140.00, 500.000, 143.10),
(283, 501, 99, 0.00, 0.000, 190.55),
(284, 500, 99, 0.00, 0.000, 191.80),
(285, 498, 99, 0.00, 0.000, 188.32),
(286, 471, 99, 0.00, 0.000, 143.10),
(287, 470, 99, 0.00, 0.000, 37.97),
(288, 469, 99, 0.00, 0.000, 37.97),
(289, 442, 99, 0.00, 0.000, 0.00),
(290, 434, 99, 0.00, 0.000, 213.19),
(291, 424, 99, 0.00, 0.000, 5.31),
(292, 501, 100, 0.00, 0.000, 190.55),
(293, 500, 100, 0.00, 0.000, 191.80),
(294, 498, 100, 0.00, 0.000, 188.32),
(295, 532, 101, 0.00, 0.000, 0.40),
(296, 530, 101, 0.00, 0.000, 0.42),
(297, 529, 101, 0.00, 0.000, 0.36),
(298, 528, 101, 0.00, 0.000, 0.39),
(299, 527, 101, 0.00, 0.000, 0.36),
(300, 532, 102, 0.40, 1000.000, 0.40),
(301, 530, 102, 0.42, 1000.000, 0.42),
(302, 529, 102, 0.36, 1000.000, 0.36),
(303, 528, 102, 0.39, 1000.000, 0.39),
(304, 527, 102, 0.36, 1000.000, 0.36),
(305, 498, 103, 0.00, 0.000, 188.32),
(306, 722, 104, 0.00, 0.000, 33.15),
(307, 721, 104, 0.00, 0.000, 88.57),
(308, 720, 104, 0.00, 0.000, 50.96),
(309, 718, 104, 0.00, 0.000, 64.65),
(310, 717, 104, 0.00, 0.000, 142.05),
(311, 716, 104, 0.00, 0.000, 0.00),
(312, 727, 105, 0.00, 0.000, 18.51),
(313, 724, 105, 0.00, 0.000, 18.51),
(314, 723, 105, 0.00, 0.000, 0.44),
(315, 722, 105, 0.00, 0.000, 33.15),
(316, 721, 105, 0.00, 0.000, 88.57),
(317, 720, 105, 0.00, 0.000, 50.96),
(318, 718, 105, 0.00, 0.000, 64.65),
(319, 717, 105, 0.00, 0.000, 142.05),
(320, 716, 105, 0.00, 0.000, 0.00),
(321, 714, 105, 0.00, 0.000, 0.00),
(322, 688, 105, 0.00, 0.000, 147.70),
(323, 669, 105, 0.00, 0.000, 182.09),
(324, 640, 105, 0.00, 0.000, 197.56),
(325, 638, 105, 0.00, 0.000, 178.16),
(326, 637, 105, 0.00, 0.000, 0.00),
(327, 631, 105, 0.00, 0.000, 0.00),
(328, 629, 105, 0.00, 0.000, 0.00),
(329, 625, 105, 0.00, 0.000, 0.00),
(330, 560, 105, 0.00, 0.000, 25.32),
(331, 559, 105, 0.00, 0.000, 10.31),
(332, 558, 105, 0.00, 0.000, 167.44),
(333, 557, 105, 0.00, 0.000, 65.75),
(334, 556, 105, 0.00, 0.000, 120.30),
(335, 555, 105, 0.00, 0.000, 182.09),
(336, 541, 105, 0.00, 0.000, 238.01),
(337, 540, 105, 0.00, 0.000, 207.93),
(338, 539, 105, 0.00, 0.000, 178.16),
(339, 538, 105, 0.00, 0.000, 0.00),
(340, 537, 105, 0.00, 0.000, 6.47),
(341, 501, 105, 0.00, 0.000, 190.55),
(342, 500, 105, 0.00, 0.000, 191.80),
(343, 498, 105, 0.00, 0.000, 188.32),
(344, 497, 105, 0.00, 0.000, 143.10),
(345, 483, 105, 0.00, 0.000, 197.16),
(346, 473, 105, 0.00, 0.000, 143.10),
(347, 472, 105, 0.00, 0.000, 143.10),
(348, 471, 105, 0.00, 0.000, 143.10),
(349, 470, 105, 0.00, 0.000, 37.97),
(350, 469, 105, 0.00, 0.000, 37.97),
(351, 442, 105, 0.00, 0.000, 0.00),
(352, 434, 105, 0.00, 0.000, 213.19),
(353, 424, 105, 0.00, 0.000, 5.31),
(358, 858, 107, 0.48, 21990.000, 0.31),
(359, 860, 108, 0.48, 10000.000, 0.31),
(360, 859, 108, 0.48, 11990.000, 0.31),
(361, 856, 109, 0.48, 21990.000, 0.32),
(362, 752, 110, 150.00, 0.000, 152.54),
(363, 640, 110, 150.00, 0.000, 197.56),
(364, 885, 111, 0.47, 18120.000, 0.38),
(365, 891, 112, 0.51, 15660.000, 0.41),
(366, 887, 113, 0.48, 11780.000, 0.40),
(367, 886, 113, 0.48, 10000.000, 0.37),
(368, 864, 114, 0.31, 20720.000, 0.32),
(369, 897, 115, 0.25, 5000.000, 0.18),
(370, 896, 115, 0.35, 5000.000, 0.39),
(371, 895, 115, 0.29, 5000.000, 0.31),
(372, 894, 115, 0.35, 5000.000, 0.36),
(373, 897, 116, 0.00, 0.000, 0.18),
(374, 896, 116, 0.00, 0.000, 0.39),
(375, 895, 116, 0.00, 0.000, 0.31),
(376, 867, 118, 0.00, 0.000, 79.00),
(377, 954, 119, 150.00, 500.000, 254.87),
(378, 640, 120, 20.00, 700.000, 197.56),
(379, 964, 121, 0.00, 0.000, 200.00),
(380, 955, 121, 0.00, 0.000, 244.69),
(381, 964, 122, 0.00, 0.000, 200.00),
(382, 955, 122, 0.00, 0.000, 244.69),
(383, 964, 123, 200.00, 100.000, 200.00),
(384, 955, 123, 200.00, 100.000, 244.69),
(385, 962, 124, 0.00, 0.000, 179.61),
(386, 961, 124, 0.00, 0.000, 0.00),
(387, 960, 124, 0.00, 0.000, 234.56),
(388, 955, 125, 200.00, 50.000, 200.00),
(389, 954, 125, 200.00, 50.000, 254.87),
(390, 963, 126, 0.20, 5000.000, 0.38),
(391, 948, 126, 0.19, 5000.000, 0.41),
(392, 947, 126, 0.20, 5000.000, 0.34),
(393, 946, 126, 0.19, 5000.000, 0.39),
(394, 945, 126, 0.20, 2420.000, 0.36),
(395, 807, 127, 0.00, 100.000, 102.04),
(396, 972, 128, 0.00, 0.000, 0.00),
(397, 965, 129, 0.18, 17160.000, 0.38),
(398, 1025, 130, 0.00, 0.000, 232.23),
(399, 1023, 131, 0.00, 0.000, 0.35),
(400, 1031, 132, 0.00, 0.000, 26.81),
(401, 1030, 132, 0.00, 0.000, 26.39),
(402, 963, 133, 0.47, 22900.000, 0.38),
(403, 965, 134, 0.42, 20120.000, 0.38),
(404, 1015, 135, 3.00, 555.000, 4.16),
(405, 1022, 136, 0.42, 22120.000, 0.34),
(406, 658, 137, 2.00, 2222.000, 1.30),
(407, 1022, 138, 0.47, 23500.000, 0.34),
(408, 1023, 139, 0.31, 22700.000, 0.35),
(409, 1043, 140, 2.10, 3.000, 2.42),
(410, 1042, 140, 6.80, 5.000, 6.38),
(411, 1049, 141, 0.00, 0.000, 0.33),
(412, 1049, 142, 0.31, 22700.000, 0.33),
(413, 1023, 143, 0.52, 24790.000, 0.35),
(414, 424, 144, 2.00, 91.000, 5.31),
(415, 1058, 145, 10.00, 6.800, 0.00),
(416, 959, 146, 10.00, 6.800, 148.58),
(417, 631, 147, 16.00, 90.718, 0.00),
(418, 560, 147, 4.00, 136.078, 25.32),
(419, 560, 148, 20.00, 226.796, 25.32),
(420, 1068, 149, 0.00, 0.000, 62.13),
(421, 1067, 149, 0.00, 0.000, 67.09),
(422, 1065, 149, 0.00, 0.000, 67.21),
(423, 471, 149, 0.00, 0.000, 143.10),
(425, 1077, 151, 0.00, 0.000, 21.10),
(426, 1077, 152, 16.43, 5.897, 16.43),
(427, 1070, 152, 155.55, 4.536, 156.55),
(428, 1064, 152, 67.21, 4.536, 67.21),
(429, 1081, 153, 3.00, 72.753, 4.67),
(430, 1080, 153, 30.00, 72.753, 67.06),
(431, 1079, 153, 2.00, 74.957, 4.86),
(432, 1047, 154, 0.77, 3.000, 0.55),
(433, 1046, 154, 0.55, 7.000, 0.53),
(434, 1077, 155, 7.00, 6.614, 16.43),
(435, 1070, 155, 71.00, 6.614, 156.55),
(436, 1069, 155, 1.00, 8.818, 0.00),
(437, 1080, 156, 1.00, 551.156, 67.06),
(438, 1063, 156, 1.00, 551.156, 51.75),
(439, 1070, 157, 1.00, 4409.245, 156.55),
(440, 1061, 157, 1.00, 440.925, 0.00),
(441, 1070, 158, 1.00, 907.185, 156.55),
(442, 1061, 158, 1.00, 100.698, 0.00),
(443, 1080, 159, 0.00, 0.000, 67.06),
(444, 1080, 160, 3.00, 226.796, 67.06),
(445, 1070, 161, 2.00, 181.437, 156.55),
(446, 1061, 161, 2.00, 90.718, 0.00),
(447, 1086, 162, 0.00, 1000.000, 0.91),
(448, 1086, 163, 0.00, 500.000, 0.91),
(449, 1086, 164, 0.00, 453.592, 0.91),
(450, 1088, 165, 1.00, 90.720, 211.58),
(451, 1087, 165, 1.00, 23.590, 170.14),
(452, 1089, 166, 1.00, 90.720, 66.37),
(453, 1088, 166, 1.00, 68.040, 211.58),
(454, 1087, 166, 1.00, 68.040, 170.14),
(455, 1089, 167, 1.00, 90.720, 66.37),
(456, 1088, 167, 1.00, 68.040, 211.58),
(457, 1087, 167, 1.00, 68.040, 170.14),
(458, 1091, 168, 5.00, 226.800, 66.39),
(463, 1085, 172, 0.45, 22960.000, 0.33),
(464, 1275, 173, 0.53, 25490.000, 0.25),
(465, 1287, 174, 0.00, 0.000, 0.38),
(466, 1286, 174, 0.00, 0.000, 0.35),
(473, 1287, 178, 0.00, 0.000, 0.25),
(474, 1286, 178, 0.00, 0.000, 0.76),
(475, 1287, 179, 0.00, 0.000, 0.23),
(476, 1286, 179, 0.00, 0.000, 0.69),
(478, 1369, 181, 0.46, 25020.000, 0.46),
(479, 1516, 182, 0.82, 9840.000, 0.92),
(480, 1152, 182, 19.12, 211.000, 22.38),
(482, 1553, 184, 0.82, 100.000, 0.63),
(483, 1545, 184, 5.05, 22.000, 5.09),
(484, 1553, 185, 0.88, 10.000, 0.63),
(485, 1545, 185, 5.49, 10.000, 5.09),
(486, 1553, 186, 0.55, 230.000, 0.63),
(487, 1556, 187, 0.75, 8190.000, 1.16),
(488, 1515, 187, 0.57, 10000.000, 0.28),
(493, 1596, 205, 0.00, 9.979, 5.09),
(494, 1589, 205, 0.00, 9.979, 11.02),
(495, 1588, 205, 0.00, 9.979, 0.00),
(496, 1631, 206, 40.00, 11.340, 119.36),
(497, 1613, 207, 0.32, 18140.000, 0.41),
(498, 1556, 207, 0.55, 1420.000, 1.16),
(499, 1719, 208, 0.46, 20720.000, 0.25),
(500, 1705, 209, 0.39, 10220.000, 0.27),
(501, 1613, 210, 0.39, 9120.000, 0.41),
(502, 1727, 211, 95.00, 226.796, 207.24),
(503, 1727, 212, 94.00, 249.476, 207.41),
(504, 1727, 213, 95.00, 249.476, 207.41),
(505, 1679, 214, 2.00, 1000.000, 3.61),
(506, 1728, 215, 0.00, 0.000, 2.71),
(507, 1728, 216, 0.00, 0.000, 2.71),
(512, 1729, 221, 0.00, 0.000, 9.55),
(513, 1728, 221, 0.00, 0.000, 4.37),
(523, 2003, 228, 0.00, 0.000, 42.51),
(524, 2000, 228, 0.00, 0.000, 0.92),
(525, 1999, 228, 0.00, 0.000, 0.96),
(529, 2061, 230, 1.10, 1000.000, 2.62),
(530, 2056, 230, 0.49, 2500.000, 0.32),
(531, 2055, 230, 0.99, 15000.000, 0.00),
(547, 2230, 234, 0.00, 0.000, 0.58),
(548, 2229, 234, 0.00, 0.000, 0.17),
(549, 2228, 234, 0.00, 0.000, 0.29),
(550, 2227, 234, 0.00, 0.000, 0.46),
(551, 2226, 234, 0.00, 0.000, 0.45),
(552, 2225, 234, 0.00, 0.000, 0.39),
(553, 2224, 234, 0.00, 0.000, 0.44),
(554, 2222, 234, 0.00, 0.000, 0.47),
(555, 2221, 234, 0.00, 0.000, 0.36),
(556, 2220, 234, 0.00, 0.000, 0.48),
(557, 2219, 234, 0.00, 0.000, 0.22),
(558, 2230, 235, 0.00, 0.000, 0.58),
(559, 2229, 235, 0.00, 0.000, 0.17),
(560, 2228, 235, 0.00, 0.000, 0.29),
(561, 2227, 235, 0.00, 0.000, 0.46),
(562, 2226, 235, 0.00, 0.000, 0.45),
(563, 2225, 235, 0.00, 0.000, 0.39),
(564, 2224, 235, 0.00, 0.000, 0.44),
(565, 2222, 235, 0.00, 0.000, 0.47),
(566, 2221, 235, 0.00, 0.000, 0.36),
(567, 2220, 235, 0.00, 0.000, 0.48),
(568, 2219, 235, 0.00, 0.000, 0.22),
(571, 2238, 237, 0.97, 4000.000, 1.07),
(572, 2237, 237, 0.91, 4000.000, 1.00),
(573, 2236, 237, 0.79, 4000.000, 0.87),
(574, 2235, 237, 0.87, 4000.000, 0.96),
(575, 2234, 237, 0.90, 4000.000, 0.99),
(576, 2233, 237, 1.02, 4000.000, 1.12),
(581, 2238, 239, 0.97, 10000.000, 1.07),
(582, 2237, 239, 0.91, 10000.000, 1.00),
(586, 2237, 241, 0.93, 1.000, 1.00),
(587, 2236, 241, 0.88, 1.000, 0.87),
(588, 2235, 241, 0.93, 1.000, 0.96),
(589, 2237, 242, 0.91, 5000.000, 1.00),
(590, 2236, 242, 0.79, 3000.000, 0.87),
(591, 2234, 242, 0.90, 5000.000, 0.99),
(592, 2233, 242, 1.03, 6500.000, 1.12),
(593, 2232, 242, 0.91, 3000.000, 1.00),
(594, 2231, 242, 0.52, 3000.000, 0.57),
(595, 2420, 243, 1.26, 33000.000, 1.38),
(596, 2419, 243, 1.26, 33000.000, 1.38),
(597, 2418, 243, 1.26, 33000.000, 1.38);

-- --------------------------------------------------------

--
-- Table structure for table `image_averages`
--

CREATE TABLE `image_averages` (
  `id` int(11) NOT NULL,
  `averageid` int(11) DEFAULT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `imageid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `image_averages`
--

INSERT INTO `image_averages` (`id`, `averageid`, `userid`, `supplierid`, `imageid`, `status`) VALUES
(1, 1, 11, 0, 1830, 1),
(2, 1, 11, 0, 1825, 1),
(3, 1, 11, 0, 1816, 1),
(5, 2, 11, 0, 1834, 1),
(7, 2, 11, 0, 1830, 1),
(8, 2, 11, 0, 1828, 1),
(9, 3, 11, 0, 1848, 1),
(10, 3, 11, 0, 1847, 1),
(11, 3, 11, 0, 1845, 1),
(13, 5, 11, 0, 1859, 1),
(14, 5, 11, 0, 1857, 1),
(15, 5, 11, 0, 1856, 1),
(16, 5, 11, 0, 1853, 1),
(17, 5, 11, 0, 1852, 1),
(18, 7, 11, 0, 1873, 1),
(19, 7, 11, 0, 1872, 1),
(20, 7, 11, 0, 1871, 1),
(21, 8, 11, 0, 1848, 1),
(22, 8, 11, 0, 1820, 1),
(23, 9, 11, 0, 1915, 1),
(24, 9, 11, 0, 1914, 1),
(25, 9, 11, 0, 1913, 1),
(26, 9, 11, 0, 1912, 1),
(27, 10, 11, 0, 1974, 1),
(28, 10, 11, 0, 1973, 1),
(29, 10, 11, 0, 1972, 1),
(30, 10, 11, 0, 1968, 1),
(31, 10, 11, 0, 1967, 1),
(32, 11, 11, 0, 2003, 1),
(33, 11, 11, 0, 2000, 1),
(34, 11, 11, 0, 1999, 1),
(35, 13, 15, 0, 2025, 1),
(36, 13, 15, 0, 2022, 1),
(37, 13, 15, 0, 2021, 1),
(38, 15, 15, 0, 2230, 1),
(39, 15, 15, 0, 2229, 1),
(40, 15, 15, 0, 2228, 1),
(41, 15, 15, 0, 2227, 1),
(42, 15, 15, 0, 2226, 1),
(43, 16, 11, 0, 2420, 1),
(44, 16, 11, 0, 2419, 1),
(45, 16, 11, 0, 2418, 1);

-- --------------------------------------------------------

--
-- Table structure for table `imgaverage`
--

CREATE TABLE `imgaverage` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `imgaverage`
--

INSERT INTO `imgaverage` (`id`, `userid`, `supplierid`, `status`) VALUES
(1, 11, 0, 1),
(2, 11, 0, 1),
(3, 11, 0, 1),
(4, 11, 0, 1),
(5, 11, 0, 1),
(6, 11, 0, 1),
(7, 11, 0, 1),
(8, 11, 0, 1),
(9, 11, 0, 1),
(10, 11, 0, 1),
(11, 11, 0, 1),
(12, 11, 0, 1),
(13, 15, 0, 1),
(14, 11, 0, 1),
(15, 15, 0, 1),
(16, 11, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `industrialmetals`
--

CREATE TABLE `industrialmetals` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `priceperkg` float(13,2) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `industrialmetals`
--

INSERT INTO `industrialmetals` (`id`, `name`, `priceperkg`, `sysdate`, `status`) VALUES
(1, 'aluminum', 2.15, '2023-12-01', 1),
(2, 'copper', 8.49, '2023-12-01', 1),
(3, 'lead', 2.11, '2023-12-01', 1),
(4, 'nickel', 16.57, '2023-12-01', 1),
(5, 'zinc', 2.51, '2023-12-01', 1);

-- --------------------------------------------------------

--
-- Table structure for table `industrialmetals-27-12`
--

CREATE TABLE `industrialmetals-27-12` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `priceperkg` float(13,2) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `industrialmetals-27-12`
--

INSERT INTO `industrialmetals-27-12` (`id`, `name`, `priceperkg`, `sysdate`, `status`) VALUES
(1, 'aluminum', 1.91, '2017-04-11', 1),
(2, 'copper', 5.75, '2017-04-11', 1),
(3, 'lead', 2.26, '2017-04-11', 1),
(4, 'nickel', 10.09, '2017-04-11', 1),
(5, 'zinc', 2.59, '2017-04-11', 1);

-- --------------------------------------------------------

--
-- Table structure for table `industrialmetals23nov2021`
--

CREATE TABLE `industrialmetals23nov2021` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `priceperkg` float(13,2) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `industrialmetals23nov2021`
--

INSERT INTO `industrialmetals23nov2021` (`id`, `name`, `priceperkg`, `sysdate`, `status`) VALUES
(1, 'aluminum', 2.63, '2021-11-18', 1),
(2, 'copper', 9.50, '2021-11-18', 1),
(3, 'lead', 2.29, '2021-11-18', 1),
(4, 'nickel', 19.50, '2021-11-18', 1),
(5, 'zinc', 3.19, '2021-11-18', 1);

-- --------------------------------------------------------

--
-- Table structure for table `info`
--

CREATE TABLE `info` (
  `fullname` varchar(50) NOT NULL DEFAULT '',
  `inout` varchar(50) NOT NULL DEFAULT '',
  `timestamp` bigint(14) DEFAULT NULL,
  `notes` varchar(250) DEFAULT NULL,
  `ipaddress` varchar(39) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproduct`
--

CREATE TABLE `inventoryproduct` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `consumables` int(11) NOT NULL,
  `reorder` int(11) NOT NULL DEFAULT 0,
  `autoemail` int(11) NOT NULL DEFAULT 0,
  `reorderemail` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproduct`
--

INSERT INTO `inventoryproduct` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1, 1, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 4310.97, 0.00, 4310.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(2, 1, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 4310.97, 0.00, 4310.97, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(3, 1, 0, 'x86 Motherboard', 'x86 Motherboard', 4310.97, 0.00, 4310.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(4, 1, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 4310.97, 0.00, 4310.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(5, 1, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 4310.97, 0.00, 4310.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(6, 1, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 4310.97, 0.00, 4310.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(7, 1, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4310.97, 0.00, 4310.97, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(8, 1, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 4310.97, 0.00, 4310.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(9, 1, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 4310.97, 0.00, 4310.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(10, 1, 0, 'Green Fiber Processors', 'Green Fiber Processors', 4310.97, 0.00, 4310.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(11, 1, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 4310.97, 0.00, 4310.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(12, 1, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 4310.97, 0.00, 4310.97, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(13, 1, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 4310.97, 0.00, 4310.97, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(14, 1, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(15, 1, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(16, 1, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 4310.97, 0.00, 4310.97, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(17, 1, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 4310.97, 0.00, 4310.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(18, 1, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(19, 1, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(20, 1, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 285.50, 0.00, 285.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(21, 1, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 4310.97, 0.00, 4310.97, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(22, 1, 0, 'Floppy Drive', 'Floppy Drive', 4310.97, 0.00, 4310.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(23, 1, 0, 'CD/DVD Drive', 'CD/DVD Drive', 4310.97, 0.00, 4310.97, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(24, 1, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(25, 1, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(26, 1, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 4310.97, 0.00, 4310.97, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(27, 1, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4310.97, 0.00, 4310.97, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(28, 1, 0, 'Cellphone Board', 'Cellphone Board', 4310.97, 0.00, 4310.97, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(29, 1, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 41.50, 25.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(30, 1, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(32, 1, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 994.00, -958.45, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(33, 1, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(34, 1, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(35, 1, 35, 'Copper Powder', 'Copper Powder', 5293.44, 5230.94, 62.50, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(36, 1, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(37, 1, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(38, 1, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(39, 1, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(40, 1, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 3286.42, 62339.90, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(41, 1, 0, 'Deplated CPU', 'Deplated CPU', 4310.97, 0.00, 4310.97, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(42, 1, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(43, 1, 43, 'GOLD', 'GOLD', 1009.23, 1007.23, 2.00, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(44, 1, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 4310.97, 0.00, 4310.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(46, 1, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 4310.97, 0.00, 4310.97, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(47, 1, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(48, 1, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 4310.97, 0.00, 4310.97, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(49, 1, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 694.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(52, 1, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(53, 1, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 1087.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(54, 1, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 12129.42, 0.10, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(55, 1, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21460.50, 21345.84, 114.66, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(56, 1, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(57, 1, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 4310.97, 0.00, 4310.97, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(58, 1, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(60, 1, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(63, 1, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(64, 1, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(65, 1, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(66, 1, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 4310.97, 0.00, 4310.97, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(67, 1, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 4310.97, 0.00, 4310.97, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(68, 1, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(69, 1, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(70, 1, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 4310.97, 0.00, 4310.97, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(71, 1, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(72, 1, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 4310.97, 0.00, 4310.97, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(73, 1, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 4310.97, 0.00, 4310.97, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(74, 1, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 4310.97, 0.00, 4310.97, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(75, 1, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 4310.97, 0.00, 4310.97, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(76, 1, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(77, 1, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(78, 1, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 4310.97, 0.00, 4310.97, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(79, 1, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(80, 1, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(81, 1, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 4310.97, 0.00, 4310.97, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(82, 1, 0, 'Laptop Boards', 'Laptop Boards', 4310.97, 0.00, 4310.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(84, 1, 84, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(85, 1, 85, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(86, 1, 86, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(87, 1, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(88, 1, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(89, 1, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(90, 1, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(91, 1, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(92, 1, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(93, 1, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(94, 1, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(95, 1, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(96, 1, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(97, 1, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(98, 1, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(99, 1, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(100, 1, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(101, 1, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(102, 1, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(103, 1, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(104, 1, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(105, 1, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(106, 1, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(107, 1, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(108, 1, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(109, 1, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(112, 1, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(113, 1, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(114, 1, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(115, 1, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(116, 1, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(117, 1, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(120, 1, NULL, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(124, 1, NULL, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(125, 1, NULL, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(126, 1, NULL, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(127, 1, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(129, 1, NULL, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(130, 1, NULL, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(131, 1, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(132, 1, NULL, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(133, 1, NULL, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(134, 1, NULL, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(135, 1, NULL, 'American Mill Rod', 'American Mill Rod', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(136, 1, NULL, 'American Mill Bearings', 'American Mill Bearings', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(137, 1, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(138, 1, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(139, 4, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 4310.97, 0.00, 4310.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(140, 4, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 4310.97, 0.00, 4310.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(141, 4, 0, 'x86 Motherboard', 'x86 Motherboard', 4310.97, 0.00, 4310.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(142, 4, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 4310.97, 0.00, 4310.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(143, 4, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 4310.97, 0.00, 4310.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(144, 4, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 4310.97, 0.00, 4310.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(145, 4, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4310.97, 0.00, 4310.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(146, 4, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 4310.97, 0.00, 4310.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(147, 4, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 4310.97, 0.00, 4310.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(148, 4, 0, 'Green Fiber Processors', 'Green Fiber Processors', 4310.97, 0.00, 4310.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(149, 4, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 4310.97, 0.00, 4310.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(150, 4, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 4310.97, 0.00, 4310.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(151, 4, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 4310.97, 0.00, 4310.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(152, 4, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(153, 4, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(154, 4, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 4310.97, 0.00, 4310.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(155, 4, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 4310.97, 0.00, 4310.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(156, 4, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(157, 4, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(158, 4, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(159, 4, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 4310.97, 0.00, 4310.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(160, 4, 0, 'Floppy Drive', 'Floppy Drive', 4310.97, 0.00, 4310.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(161, 4, 0, 'CD/DVD Drive', 'CD/DVD Drive', 4310.97, 0.00, 4310.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(162, 4, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(163, 4, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(164, 4, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 4310.97, 0.00, 4310.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(165, 4, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4310.97, 0.00, 4310.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(166, 4, 0, 'Cellphone Board', 'Cellphone Board', 4310.97, 0.00, 4310.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(167, 4, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(168, 4, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(169, 4, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(170, 4, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(171, 4, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(172, 4, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(173, 4, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(174, 4, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(175, 4, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(176, 4, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(177, 4, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(178, 4, 0, 'Deplated CPU', 'Deplated CPU', 4310.97, 0.00, 4310.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(179, 4, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(180, 4, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(181, 4, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 4310.97, 0.00, 4310.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(182, 4, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 4310.97, 0.00, 4310.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(183, 4, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(184, 4, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 4310.97, 0.00, 4310.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(185, 4, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(186, 4, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(187, 4, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(188, 4, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 34119.52, 0.00, 34119.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(189, 4, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(190, 4, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(191, 4, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 4310.97, 0.00, 4310.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(192, 4, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(193, 4, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(194, 4, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(195, 4, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(196, 4, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(197, 4, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 4310.97, 0.00, 4310.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(198, 4, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 4310.97, 0.00, 4310.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(199, 4, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(200, 4, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(201, 4, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 4310.97, 0.00, 4310.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(202, 4, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(203, 4, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 4310.97, 0.00, 4310.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(204, 4, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 4310.97, 0.00, 4310.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(205, 4, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 4310.97, 0.00, 4310.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(206, 4, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 4310.97, 0.00, 4310.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(207, 4, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(208, 4, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(209, 4, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 4310.97, 0.00, 4310.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(210, 4, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(211, 4, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(212, 4, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 4310.97, 0.00, 4310.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(213, 4, 0, 'Laptop Boards', 'Laptop Boards', 4310.97, 0.00, 4310.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(214, 4, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(215, 4, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(216, 4, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(217, 4, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(218, 4, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(219, 4, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(220, 4, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(221, 4, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(222, 4, 92, 'High_Grade', 'High_Grade', 23.00, 0.00, 23.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(223, 4, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(224, 4, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(225, 4, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(226, 4, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(227, 4, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(228, 4, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(229, 4, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(230, 4, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(231, 4, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(232, 4, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(233, 4, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(234, 4, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(235, 4, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(236, 4, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(237, 4, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(238, 4, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(239, 4, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(240, 4, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(241, 4, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(242, 4, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(243, 4, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(244, 4, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(245, 4, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(246, 4, 0, 'Banda', 'Banda', 4310.97, 0.00, 4310.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(247, 4, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 4310.97, 0.00, 4310.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(248, 4, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 4310.97, 0.00, 4310.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(249, 4, 0, 'Whole Computers', 'Whole Computers', 4310.97, 0.00, 4310.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(250, 4, 205, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(251, 4, 0, 'US Hammers', 'US Hammers', 4310.97, 0.00, 4310.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(252, 4, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 4310.97, 0.00, 4310.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(253, 4, 206, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(254, 4, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 4310.97, 0.00, 4310.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(255, 4, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 4310.97, 0.00, 4310.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(256, 4, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 4310.97, 0.00, 4310.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(257, 4, 0, 'American Mill Rod', 'American Mill Rod', 4310.97, 0.00, 4310.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(258, 4, 0, 'American Mill Bearings', 'American Mill Bearings', 4310.97, 0.00, 4310.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(259, 4, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(260, 4, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(261, 5, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 4310.97, 0.00, 4310.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(262, 5, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 4310.97, 0.00, 4310.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(263, 5, 0, 'x86 Motherboard', 'x86 Motherboard', 4310.97, 0.00, 4310.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(264, 5, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 4310.97, 0.00, 4310.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(265, 5, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 4310.97, 0.00, 4310.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(266, 5, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 4310.97, 0.00, 4310.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(267, 5, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4310.97, 0.00, 4310.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(268, 5, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 4310.97, 0.00, 4310.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(269, 5, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 4310.97, 0.00, 4310.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(270, 5, 0, 'Green Fiber Processors', 'Green Fiber Processors', 4310.97, 0.00, 4310.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(271, 5, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 4310.97, 0.00, 4310.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(272, 5, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 4310.97, 0.00, 4310.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(273, 5, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 4310.97, 0.00, 4310.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(274, 5, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(275, 5, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -961.00, 0.00, -961.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(276, 5, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 4310.97, 0.00, 4310.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(277, 5, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 4310.97, 0.00, 4310.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(278, 5, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(279, 5, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(280, 5, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(281, 5, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 4310.97, 0.00, 4310.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(282, 5, 0, 'Floppy Drive', 'Floppy Drive', 4310.97, 0.00, 4310.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(283, 5, 0, 'CD/DVD Drive', 'CD/DVD Drive', 4310.97, 0.00, 4310.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(284, 5, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(285, 5, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(286, 5, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 4310.97, 0.00, 4310.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(287, 5, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4310.97, 0.00, 4310.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(288, 5, 0, 'Cellphone Board', 'Cellphone Board', 4310.97, 0.00, 4310.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(289, 5, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(290, 5, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(291, 5, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(292, 5, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(293, 5, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(294, 5, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(295, 5, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(296, 5, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(297, 5, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(298, 5, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(299, 5, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(300, 5, 0, 'Deplated CPU', 'Deplated CPU', 4310.97, 0.00, 4310.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(301, 5, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(302, 5, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(303, 5, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 4310.97, 0.00, 4310.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(304, 5, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 4310.97, 0.00, 4310.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(305, 5, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(306, 5, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 4310.97, 0.00, 4310.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(307, 5, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(308, 5, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(309, 5, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(310, 5, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(311, 5, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(312, 5, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(313, 5, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 4310.97, 0.00, 4310.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(314, 5, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(315, 5, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(316, 5, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(317, 5, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(318, 5, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(319, 5, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 4310.97, 0.00, 4310.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(320, 5, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 4310.97, 0.00, 4310.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(321, 5, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(322, 5, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(323, 5, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 4310.97, 0.00, 4310.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(324, 5, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(325, 5, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 4310.97, 0.00, 4310.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(326, 5, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 4310.97, 0.00, 4310.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(327, 5, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 4310.97, 0.00, 4310.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(328, 5, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 4310.97, 0.00, 4310.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(329, 5, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(330, 5, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(331, 5, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 4310.97, 0.00, 4310.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(332, 5, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(333, 5, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(334, 5, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 4310.97, 0.00, 4310.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(335, 5, 0, 'Laptop Boards', 'Laptop Boards', 4310.97, 0.00, 4310.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(336, 5, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(337, 5, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(338, 5, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(339, 5, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(340, 5, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(341, 5, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(342, 5, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(343, 5, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(344, 5, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(345, 5, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(346, 5, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(347, 5, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(348, 5, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(349, 5, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(350, 5, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(351, 5, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(352, 5, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(353, 5, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(354, 5, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(355, 5, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(356, 5, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(357, 5, 105, 'Empty', 'Empty', 900.00, 0.00, 900.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(358, 5, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', -700.00, 0.00, -700.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(359, 5, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(360, 5, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(361, 5, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 8.73, 0.00, 8.73, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(362, 5, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 645.79, 0.00, 645.79, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(363, 5, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(364, 5, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(365, 5, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(366, 5, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(367, 5, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(368, 5, 0, 'Banda', 'Banda', 4510.97, 0.00, 4510.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(369, 5, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 4310.97, 0.00, 4310.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(370, 5, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 4310.97, 0.00, 4310.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(371, 5, 0, 'Whole Computers', 'Whole Computers', 4310.97, 0.00, 4310.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(372, 5, 280, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(373, 5, 0, 'US Hammers', 'US Hammers', 4310.97, 0.00, 4310.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(374, 5, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 4310.97, 0.00, 4310.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(375, 5, 281, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(376, 5, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 4310.97, 0.00, 4310.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(377, 5, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 4310.97, 0.00, 4310.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(378, 5, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 4310.97, 0.00, 4310.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(379, 5, 0, 'American Mill Rod', 'American Mill Rod', 4310.97, 0.00, 4310.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(380, 5, 0, 'American Mill Bearings', 'American Mill Bearings', 4310.97, 0.00, 4310.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(381, 5, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(382, 5, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(383, 6, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 4310.97, 0.00, 4310.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(384, 6, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 4310.97, 0.00, 4310.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(385, 6, 0, 'x86 Motherboard', 'x86 Motherboard', 4310.97, 0.00, 4310.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(386, 6, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 4310.97, 0.00, 4310.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(387, 6, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 4310.97, 0.00, 4310.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(388, 6, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 4310.97, 0.00, 4310.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(389, 6, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4310.97, 0.00, 4310.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(390, 6, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 4310.97, 0.00, 4310.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(391, 6, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 4310.97, 0.00, 4310.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(392, 6, 0, 'Green Fiber Processors', 'Green Fiber Processors', 4310.97, 0.00, 4310.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(393, 6, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 4310.97, 0.00, 4310.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(394, 6, 0, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 4310.97, 0.00, 4310.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(395, 6, 0, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 4310.97, 0.00, 4310.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(396, 6, 14, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 927.50, 0.00, 927.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(397, 6, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 659.80, 0.00, 659.80, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(398, 6, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 4310.97, 0.00, 4310.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(399, 6, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 4310.97, 0.00, 4310.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(400, 6, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(401, 6, 19, 'Mid_Grade', 'Mid_Grade', 12287.00, 0.00, 12287.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(402, 6, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(403, 6, 0, 'Low_Grade', 'Low_Grade', 4310.97, 0.00, 4310.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(404, 6, 0, 'High_Grade', 'High_Grade', 4310.97, 0.00, 4310.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(405, 6, 0, 'High_Grade', 'High_Grade', 4310.97, 0.00, 4310.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(406, 6, 24, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(407, 6, 25, 'Mid_Grade', 'Mid_Grade', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(408, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 4310.97, 0.00, 4310.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(409, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 4310.97, 0.00, 4310.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(410, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 4310.97, 0.00, 4310.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(411, 6, 29, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(412, 6, 30, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 447.74, 0.00, 447.74, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(413, 6, 32, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(414, 6, 33, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 4393.01, 0.00, 4393.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(415, 6, 34, 'Empty', 'Empty', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(416, 6, 35, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(417, 6, 36, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 35.00, 0.00, 35.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(418, 6, 37, 'MidRange_Ceramic', 'MidRange_Ceramic', 2061.50, 0.00, 2061.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(419, 6, 38, 'LowYeild_Plastic', 'LowYeild_Plastic', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(420, 6, 39, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(421, 6, 40, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(422, 6, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 4310.97, 0.00, 4310.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(423, 6, 42, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(424, 6, 43, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(425, 6, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 4310.97, 0.00, 4310.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(426, 6, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 4310.97, 0.00, 4310.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(427, 6, 47, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(428, 6, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 4310.97, 0.00, 4310.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(429, 6, 49, 'Whole Computers', 'Whole Computers', 3624.00, 0.00, 3624.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(430, 6, 355, 'FIBER Bricks', 'FIBER Bricks', 4092.50, 1567.00, 2525.50, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(431, 6, 53, 'Copper Pipes', 'Copper Pipes', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(432, 6, 54, 'Something Gold', 'Something Gold', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(433, 6, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(434, 6, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(435, 6, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 4310.97, 0.00, 4310.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(436, 6, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(437, 6, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(438, 6, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(439, 6, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(440, 6, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(441, 6, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 4310.97, 0.00, 4310.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(442, 6, 0, 'Gold Plated Pins', 'Gold Plated Pins', 4310.97, 0.00, 4310.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(443, 6, 68, 'Gold Powder', 'Gold Powder', -6.00, 0.00, -6.00, '443_color_Gold Powder.jpg', 0, 1, 0, 0, NULL, 1),
(444, 6, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(445, 6, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 4310.97, 0.00, 4310.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(446, 6, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(447, 6, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 4310.97, 0.00, 4310.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(448, 6, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 4310.97, 0.00, 4310.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(449, 6, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 4310.97, 0.00, 4310.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(450, 6, 0, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 4310.97, 0.00, 4310.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(451, 6, 76, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(452, 6, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(453, 6, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 4310.97, 0.00, 4310.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(454, 6, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(455, 6, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(456, 6, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 4310.97, 0.00, 4310.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(457, 6, 0, 'Dry Ceramic Mud', 'Dry Ceramic Mud', 4310.97, 0.00, 4310.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(458, 6, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(459, 6, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(460, 6, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(461, 6, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(462, 6, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(463, 6, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(464, 6, 90, 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(465, 6, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(466, 6, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(467, 6, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(468, 6, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(469, 6, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(470, 6, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(471, 6, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(472, 6, 98, 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(473, 6, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(474, 6, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(475, 6, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(476, 6, 102, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(477, 6, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 181.44, 0.00, 181.44, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(478, 6, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(479, 6, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(480, 6, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(481, 6, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(482, 6, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(483, 6, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 352.99, 0.00, 352.99, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(484, 6, 112, 'Mid_Grade', 'Mid_Grade', 374.95, 0.00, 374.95, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(485, 6, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 2286.28, 0.00, 2286.28, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(486, 6, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(487, 6, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(488, 6, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(489, 6, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(490, 6, 0, 'Banda', 'Banda', 4310.97, 0.00, 4310.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(491, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 4310.97, 0.00, 4310.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(492, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 4310.97, 0.00, 4310.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(493, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 4310.97, 0.00, 4310.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(494, 6, 0, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 4310.97, 0.00, 4310.97, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(495, 6, 0, 'US Hammers', 'US Hammers', 4310.97, 0.00, 4310.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(496, 6, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 4310.97, 0.00, 4310.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(497, 6, 356, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(498, 6, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 4310.97, 0.00, 4310.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(499, 6, 0, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 4310.97, 0.00, 4310.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(500, 6, 0, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 4310.97, 0.00, 4310.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(501, 6, 0, 'MidRange_Ceramic', 'MidRange_Ceramic', 4310.97, 0.00, 4310.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(502, 6, 0, 'LowYeild_Plastic', 'LowYeild_Plastic', 4310.97, 0.00, 4310.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(503, 6, 132, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(504, 6, 285, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(627, 7, NULL, 'Nitric Acid', '', 7200.00, 10.00, 7190.00, '627_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(628, 1, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(629, 1, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(630, 1, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(631, 1, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(632, 1, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(633, 1, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(754, 1, 515, 'Mixed CPU', 'Mixed CPU', 1984.48, 0.00, 1984.48, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(755, 1, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(756, 1, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(757, 1, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(758, 1, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(759, 1, 520, '1k Gold Bar', '1k Gold Bar', 861.55, 0.00, 861.55, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(760, 1, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(761, 10, NULL, 'Nitric Acid', 'Nitric Acid', 5000.00, 0.00, 5000.00, '761_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(762, 1, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(763, 1, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(764, 1, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(765, 1, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(766, 1, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(767, 1, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(768, 1, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(769, 1, 543, 'AMD', 'AMD', 521.64, 250.00, 271.64, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(908, 6, 304, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(909, 5, 229, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 1974.00, 0.00, 1974.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(910, 4, 154, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(912, 12, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 4310.97, 0.00, 4310.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(913, 12, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 4310.97, 0.00, 4310.97, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(914, 12, 0, 'x86 Motherboard', 'x86 Motherboard', 4310.97, 0.00, 4310.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(915, 12, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 4310.97, 0.00, 4310.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(916, 12, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 4310.97, 0.00, 4310.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(917, 12, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 4337.37, 0.00, 4337.37, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(918, 12, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4310.97, 0.00, 4310.97, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(919, 12, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 4310.97, 0.00, 4310.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(920, 12, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 4822.98, 0.00, 4822.98, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(921, 12, 0, 'Green Fiber Processors', 'Green Fiber Processors', 4332.97, 0.00, 4332.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(922, 12, 0, 'FiberGlass Resin', 'FiberGlass Resin', 4442.58, 0.00, 4442.58, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(923, 12, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 4310.97, 0.00, 4310.97, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(924, 12, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 4310.97, 0.00, 4310.97, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(925, 12, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(926, 12, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(927, 12, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 4310.97, 0.00, 4310.97, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(928, 12, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 4310.97, 0.00, 4310.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(929, 12, 18, 'Gold Plated Pins', 'Gold Plated Pins', 62.38, 0.00, 62.38, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(930, 12, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(931, 12, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(932, 12, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 4310.97, 0.00, 4310.97, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(933, 12, 0, 'Floppy Drive', 'Floppy Drive', 4310.97, 0.00, 4310.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(934, 12, 0, 'CD/DVD Drive', 'CD/DVD Drive', 4310.97, 0.00, 4310.97, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(935, 12, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(936, 12, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(937, 12, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 4310.97, 0.00, 4310.97, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(938, 12, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4310.97, 0.00, 4310.97, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(939, 12, 0, 'Cellphone Board', 'Cellphone Board', 4310.97, 0.00, 4310.97, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(940, 12, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 0.00, 66.50, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(941, 12, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(942, 12, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 994.00, -958.45, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(943, 12, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(944, 12, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(945, 12, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(946, 12, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(947, 12, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(948, 12, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(949, 12, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(950, 12, 40, 'High_Grade', 'High_Grade', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(951, 12, 0, 'Deplated CPU', 'Deplated CPU', 4310.97, 0.00, 4310.97, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(952, 12, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(953, 12, 43, 'GOLD', 'GOLD', 1009.23, 0.00, 1009.23, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(954, 12, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 4310.97, 0.00, 4310.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(955, 12, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 4310.97, 0.00, 4310.97, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(956, 12, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(957, 12, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 4310.97, 0.00, 4310.97, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(958, 12, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(959, 12, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(960, 12, 53, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 127987.00, -10015.00, 138002.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(961, 12, 54, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 131145.20, 0.00, 131145.20, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(962, 12, 55, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 50960.50, 0.00, 50960.50, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(963, 12, 56, 'Empty', 'Empty', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(964, 12, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 4310.97, 0.00, 4310.97, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(965, 12, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(966, 12, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 4310.97, 0.00, 4310.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(967, 12, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(968, 12, 64, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(969, 12, 65, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(970, 12, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 4310.97, 0.00, 4310.97, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(971, 12, 0, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 4310.97, 0.00, 4310.97, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(972, 12, 68, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(973, 12, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15906.00, 0.00, 15906.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(974, 12, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 4310.97, 0.00, 4310.97, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(975, 12, 71, 'Crumble / Pins', 'Crumble / Pins', 248.28, 0.00, 248.28, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(976, 12, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 4310.97, 0.00, 4310.97, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(977, 12, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 4310.97, 0.00, 4310.97, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(978, 12, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 4310.97, 0.00, 4310.97, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(979, 12, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 4310.97, 0.00, 4310.97, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(980, 12, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(981, 12, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(982, 12, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 4310.97, 0.00, 4310.97, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(983, 12, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(984, 12, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(985, 12, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 4310.97, 0.00, 4310.97, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(986, 12, 0, 'Laptop Boards', 'Laptop Boards', 4310.97, 0.00, 4310.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(987, 12, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(988, 12, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(989, 12, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(990, 12, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(991, 12, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(992, 12, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 63654.00, 0.00, 63654.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(993, 12, 90, 'Low_Grade', 'Low_Grade', 2768.10, 0.00, 2768.10, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(994, 12, 91, 'Mid_Grade', 'Mid_Grade', 440.10, 0.00, 440.10, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(995, 12, 92, 'High_Grade', 'High_Grade', 10898.00, 0.00, 10898.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(996, 12, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(997, 12, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(998, 12, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(999, 12, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1000, 12, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1001, 12, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1002, 12, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1003, 12, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1004, 12, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1005, 12, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1006, 12, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1007, 12, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 407.00, 0.00, 407.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1008, 12, 105, 'Empty', 'Empty', 2.00, 0.00, 2.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1009, 12, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1010, 12, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1011, 12, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '1011_color_remotes.jpeg', 0, 0, 0, 0, NULL, 1),
(1012, 12, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 48696.00, 0.00, 48696.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1013, 12, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 6.10, 0.00, 6.10, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1014, 12, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 44.00, 0.00, 44.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1015, 12, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 257.70, 0.00, 257.70, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1016, 12, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 34.30, 0.00, 34.30, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1017, 12, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 12.90, 0.00, 12.90, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1018, 12, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1019, 12, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 4310.97, 0.00, 4310.97, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1020, 12, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 4310.97, 0.00, 4310.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1021, 12, 0, 'Whole Computers', 'Whole Computers', 4610.97, 0.00, 4610.97, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1022, 12, 127, 'FIBER Bricks', 'FIBER Bricks', 2139.00, 0.00, 2139.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1023, 12, 131, 'Copper Pipes', 'Copper Pipes', 237.00, 0.00, 237.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1024, 12, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1025, 12, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(1026, 12, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(1027, 12, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1028, 12, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1029, 12, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1030, 12, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1031, 12, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1032, 12, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1033, 12, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1034, 12, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1035, 12, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1036, 12, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1037, 12, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(1038, 12, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1039, 12, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1040, 12, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1041, 12, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1042, 12, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1043, 12, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1044, 12, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1045, 12, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1046, 12, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1047, 1, 708, 'Pentium Pro ', 'Pentium Pro ', 951.56, 0.00, 951.56, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1048, 1, 709, 'Pentium 1', 'Pentium 1', 390.55, 0.00, 390.55, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1),
(1428, 11, 544, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', -1.00, 0.00, -1.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1429, 11, 545, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 17656.00, 17656.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1430, 11, 546, 'Gold Plated Pins', 'Gold Plated Pins', 16066.00, 16065.00, 1.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1431, 11, 547, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1432, 11, 548, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1433, 11, 549, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 17000.00, 0.00, 17000.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1434, 11, 550, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1435, 11, 551, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1436, 11, 552, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1437, 11, 553, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1438, 11, 554, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1439, 11, 555, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1440, 11, 556, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1441, 11, 557, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1442, 11, 558, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1443, 11, 559, 'Metal Parts', 'Metal Parts', 0.00, 0.00, 0.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1444, 11, 560, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(1445, 11, 561, 'FiberGlass Resin', 'FiberGlass Resin', 401608.69, 0.00, 401608.69, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(1446, 11, 562, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1447, 11, 563, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(1448, 11, 564, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1449, 11, 565, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1450, 11, 566, 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 242939.47, 12000.00, 230939.50, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(1451, 11, 567, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1452, 11, 568, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1453, 11, 569, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1454, 11, 570, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1455, 11, 571, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 263.00, 0.00, 263.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1456, 11, 572, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1457, 11, 573, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1458, 11, 574, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1459, 11, 575, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1460, 11, 576, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1461, 11, 577, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1462, 11, 578, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1463, 11, 579, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1464, 11, 580, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1465, 11, 581, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1466, 11, 582, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1467, 11, 583, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1468, 11, 584, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1469, 11, 585, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1470, 11, 586, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1471, 11, 587, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1472, 11, 588, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(1473, 11, 589, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(1474, 11, 590, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1475, 11, 591, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1476, 11, 592, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1477, 11, 593, 'Low_Grade', 'Low_Grade', 2477.00, 2477.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1478, 11, 594, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1479, 11, 595, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1480, 11, 596, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1481, 11, 597, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1482, 11, 598, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1483, 11, 599, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 246181.00, 364109.97, -117929.02, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1484, 11, 600, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 127061.00, 144735.95, -17674.95, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1485, 11, 601, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 21356.00, 21356.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1486, 11, 602, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1487, 11, 603, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1488, 11, 604, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1489, 11, 605, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1490, 11, 606, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1491, 11, 607, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1492, 11, 608, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1493, 11, 609, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1494, 11, 610, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1495, 11, 611, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1496, 11, 612, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1497, 11, 613, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1498, 11, 614, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1499, 11, 615, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1500, 11, 616, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1501, 11, 617, 'FIBER Bricks', 'FIBER Bricks', 0.00, 198.00, -198.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1502, 11, 618, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1503, 11, 619, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1504, 11, 620, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1505, 11, 621, 'Low_Quality_PMs', 'Low_Quality_PMs', 17656.00, 0.00, 17656.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1506, 11, 622, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 37656.00, 0.00, 37656.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1507, 11, 623, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1508, 11, 624, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1509, 11, 625, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1510, 7, 357, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 1768.00, 1658.00, 110.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1511, 7, 358, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 6371.07, 6236.00, 135.07, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1512, 7, 359, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1513, 7, 360, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1514, 7, 361, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 10.43, 0.00, 10.43, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1515, 7, 362, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 5576.69, 425.79, 5150.90, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1516, 7, 363, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1517, 7, 364, 'Tantilum capacitors', 'Tantilum capacitors', 40.00, 6.00, 34.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1518, 7, 365, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1519, 7, 366, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1520, 7, 367, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 839.17, 18.00, 821.17, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1521, 7, 368, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1522, 7, 369, 'Copper Powder', 'Copper Powder', 65.00, 0.00, 65.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1523, 7, 370, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1524, 7, 371, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1525, 7, 372, 'Metal Parts', 'Metal Parts', 746.00, 0.00, 746.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1526, 7, 373, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 2021.00, 0.00, 2021.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(1527, 7, 374, 'FiberGlass Resin', 'FiberGlass Resin', 4231.00, 4110.00, 121.00, '40_color_Aluminium Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1528, 7, 375, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1529, 7, 376, 'Karat Gold Alloy', 'Karat Gold Alloy', 1.00, 0.00, 1.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(1530, 7, 377, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1531, 7, 378, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 122.50, 0.00, 122.50, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1532, 7, 379, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 2050.00, 250.00, 1800.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(1533, 7, 380, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 6141.00, 500.00, 5641.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1534, 7, 381, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 1044.30, 1027.30, 17.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1535, 7, 382, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1536, 7, 383, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1537, 7, 384, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1538, 7, 385, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1539, 7, 386, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1540, 7, 387, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1541, 7, 388, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1542, 7, 389, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1543, 7, 390, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1544, 7, 391, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1545, 7, 392, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1546, 7, 393, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1547, 7, 394, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 685.38, 623.38, 62.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1548, 7, 395, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 79.28, 0.00, 79.28, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1549, 7, 396, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 200.00, 0.00, 200.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1550, 7, 397, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1551, 7, 398, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1552, 7, 399, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1553, 7, 400, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1554, 7, 401, 'Mid_Grade', 'Mid_Grade', 12222.00, 12222.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(1555, 7, 402, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(1556, 7, 403, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1557, 7, 404, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1558, 7, 405, 'High_Grade', 'High_Grade', 6447.50, 6111.00, 336.50, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1559, 7, 406, 'Low_Grade', 'Low_Grade', 9.76, 0.00, 9.76, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1560, 7, 407, 'Mid_Grade', 'Mid_Grade', 2.91, 0.00, 2.91, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1561, 7, 408, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1562, 7, 409, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1563, 7, 410, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1564, 7, 411, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1565, 7, 412, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 6110.00, 6110.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1566, 7, 413, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1567, 7, 414, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1568, 7, 415, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1569, 7, 416, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1570, 7, 417, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1571, 7, 418, 'MidRange_Ceramic', 'MidRange_Ceramic', 22.00, 0.00, 22.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1572, 7, 419, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1573, 7, 420, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 525.50, 0.00, 525.50, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1574, 7, 421, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 338.26, 0.00, 338.26, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1575, 7, 422, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 319.94, 0.00, 319.94, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1576, 7, 423, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 422.88, 0.00, 422.88, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1577, 7, 424, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 329.72, 0.00, 329.72, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1578, 7, 425, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1579, 7, 426, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 141.07, 175.07, -34.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1580, 7, 427, '99.99 Copper Sheet', '99.99 Copper Sheet', 932.40, 45.00, 887.40, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1581, 7, 428, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 50.00, 50.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1582, 7, 429, 'Whole Computers', 'Whole Computers', 1330.00, 2524.00, -1194.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1583, 7, 430, 'FIBER Bricks', 'FIBER Bricks', 4930.00, 0.00, 4930.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1584, 7, 431, 'Copper Pipes', 'Copper Pipes', 45.00, 0.00, 45.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1585, 7, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1586, 7, 526, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1587, 7, 527, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1588, 7, 528, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1589, 7, 529, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1590, 7, 537, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 118.40, 0.00, 118.40, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1591, 7, 538, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 81.60, 0.00, 81.60, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1592, 7, 539, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1665, 10, 440, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 22.41, 0.00, 22.41, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1666, 10, 441, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1667, 10, 442, 'Gold Plated Pins', 'Gold Plated Pins', 0.27, 0.00, 0.27, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1668, 10, 443, 'Gold Powder', 'Gold Powder', 0.00, 0.00, 0.00, '443_color_Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1669, 10, 444, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1670, 10, 445, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1671, 10, 446, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1672, 10, 450, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1673, 10, 451, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1674, 10, 457, 'Dry Ceramic Mud', 'Dry Ceramic Mud', 0.00, 0.00, 0.00, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(1675, 10, 458, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1676, 10, 460, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1677, 10, 461, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1678, 10, 463, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1679, 10, 464, 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1680, 10, 466, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1681, 10, 467, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1682, 10, 471, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1683, 10, 472, 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 14.00, 0.00, 14.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1684, 10, 473, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1685, 10, 474, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1686, 10, 475, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1687, 10, 476, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1688, 10, 477, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1689, 10, 478, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1690, 10, 479, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1691, 10, 480, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1692, 10, 481, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1693, 10, 482, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1694, 10, 483, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1695, 10, 484, 'Mid_Grade', 'Mid_Grade', 90.72, 0.00, 90.72, '91_color_7.jpg', 0, 0, 0, 0, NULL, 0),
(1696, 10, 485, 'High_Grade', 'High_Grade', 453.59, 0.00, 453.59, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 0),
(1697, 10, 486, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1698, 10, 487, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1699, 10, 488, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1700, 10, 489, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1701, 10, 490, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1702, 10, 491, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1703, 10, 492, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1704, 10, 493, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1705, 10, 494, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1706, 10, 495, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1707, 10, 496, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1708, 10, 497, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1709, 10, 498, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1710, 10, 499, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 141.97, 0.00, 141.97, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1711, 10, 500, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 352.08, 0.00, 352.08, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1712, 10, 501, 'MidRange_Ceramic', 'MidRange_Ceramic', 25.85, 0.00, 25.85, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1713, 10, 502, 'LowYeild_Plastic', 'LowYeild_Plastic', 25.40, 0.00, 25.40, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 0),
(1714, 10, 503, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1715, 10, 504, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1716, 10, 505, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1717, 10, 506, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1718, 10, 507, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1719, 10, 508, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1720, 10, 509, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1721, 10, 512, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1722, 10, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1723, 10, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1724, 10, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1725, 10, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1726, 10, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1727, 10, 520, '1kg Gold Bar', '1kg Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 1, 0, 0, 0, NULL, 1),
(1728, 10, 530, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1729, 10, 531, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1730, 10, 532, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1731, 10, 533, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1732, 10, 540, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1733, 10, 541, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1734, 10, 542, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1735, 10, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1736, 10, 708, 'Pentium Pro ', 'Pentium Pro ', 0.00, 0.00, 0.00, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1737, 10, 709, 'Pentium 1', 'Pentium 1', 0.00, 0.00, 0.00, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1),
(1738, 1, 710, 'Insulation', 'Insulation', 0.00, 0.00, 0.00, '710_color_pl19511332-heating_insulation_refrigerator_vacuum_insulated_panel_for_beverage_coolers.jpg', 1, 0, 0, 0, NULL, 1),
(1739, 1, 711, 'Refrigerant (Freon)', 'Refrigerant (Freon)', 0.00, 0.00, 0.00, '711_color_Refrigerant-r22.jpg', 1, 0, 0, 0, NULL, 1),
(1740, 1, 712, 'Refrigerator', 'Refrigerator', 0.00, 0.00, 0.00, '712_color_csm_anlagen_maschine_rpww_04_123e67368a.jpg', 0, 0, 0, 0, NULL, 1),
(1741, 1, 713, 'Stoves', 'Stoves', 7.80, 45.60, -37.80, '', 0, 0, 0, 0, NULL, 1),
(1742, 1, 714, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1743, 1, 715, 'Gold Legged IC', 'Gold Legged IC', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1744, 1, 713, 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 0.00, 30.60, -23.80, '713_color_dust.jpg', 0, 0, 0, 0, NULL, 1),
(1745, 1, 714, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1746, 2, 715, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1747, 2, 715, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1748, 3, 716, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1749, 3, 716, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1750, 4, 717, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1751, 4, 717, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1752, 5, 718, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1753, 5, 718, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1754, 6, 719, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1755, 6, 719, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1756, 7, 720, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1757, 7, 720, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1758, 8, 721, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1759, 8, 721, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1760, 9, 722, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1761, 9, 722, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1762, 10, 723, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1763, 10, 723, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1764, 11, 724, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1765, 11, 724, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1766, 12, 725, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1767, 12, 725, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1768, 1, 726, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1769, 2, 727, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1770, 3, 728, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1771, 4, 729, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1772, 5, 730, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1773, 6, 731, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1774, 7, 732, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1775, 8, 733, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1776, 9, 734, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1777, 10, 735, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1778, 11, 736, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1779, 12, 737, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1780, 1, 738, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1781, 2, 739, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1782, 3, 740, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1783, 4, 741, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1784, 5, 742, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1785, 6, 743, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1786, 7, 744, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1787, 8, 745, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1788, 9, 746, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1789, 10, 747, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1790, 11, 748, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1791, 12, 749, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1939, 1, 835, 'Analog Electric Meters', 'Analog Electric Meters', 321111.00, 0.00, 321111.00, '835_color_cuz.jpeg', 0, 0, 0, 0, NULL, 1),
(1940, 1, 836, 'Digital Electric Meter', 'Digital Electric Meter', 0.00, 0.00, 0.00, '836_color_cuz2.jpeg', 0, 0, 0, 0, NULL, 1),
(1941, 1, 837, 'Mixed Small Appliances', 'Mixed Small Appliances', 0.00, 0.00, 0.00, '837_color_mixedappliances.jpeg', 0, 0, 0, 0, NULL, 1),
(1942, 1, 838, 'Developer test', 'Developer test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1943, 1, 839, 'Developer test2', 'Developer test2', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1944, 1, 840, 'Therefore Change THis', 'Therefore Change THis', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1945, 1, 841, 'Whole Computers / Servers', 'Whole Computers / Servers', 1375.00, 1395.00, -20.00, '841_color_unnamed.jpg', 0, 0, 0, 0, NULL, 1),
(1946, 1, 842, 'Large Printers', 'Large Printers', 0.00, 0.00, 0.00, '842_color_356_large_pile_pcb.jpg', 0, 0, 0, 0, NULL, 1),
(1947, 1, 843, 'Printers - Assorted', 'Printers - Assorted', 131900.00, 77200.00, 54700.00, '843_color_Printer.png', 0, 0, 0, 0, NULL, 1),
(1948, 1, 844, 'Keyboard (w/ cable)', 'Keyboard (w/ cable)', 17000.00, 16800.00, 200.00, '844_color_Keyboard (plugged).png', 0, 0, 0, 0, NULL, 1),
(1949, 1, 845, 'AC Adaptor Plug', 'AC Adaptor Plug', 1000.00, 0.00, 1000.00, '845_color_AC Adaptor Plug (no cable).png', 0, 0, 0, 0, NULL, 1),
(1950, 1, 846, 'HDD - Complete', 'HDD - Complete', 450.00, 0.00, 450.00, '846_color_HDD.png', 0, 0, 0, 0, NULL, 1),
(1951, 1, 847, 'LED / LCD Monitor', 'LED / LCD Monitor', 2260.00, 0.00, 2260.00, '847_color_LCD Monitor.png', 0, 0, 0, 0, NULL, 1),
(1952, 1, 848, 'Shredded eWaste', 'Shredded eWaste', 2500.00, 0.00, 2500.00, '848_color_Shredded HDD.png', 0, 0, 0, 0, NULL, 1),
(1953, 1, 849, 'Small Domestic Appliances', 'Small Domestic Appliances', 4305.00, 0.00, 4305.00, '849_color_Small Domestic Appliances.webp', 0, 0, 0, 0, NULL, 1),
(1954, 1, 850, 'Small Medical Devices', 'Small Medical Devices', 0.00, 0.00, 0.00, '850_color_medsma.jpeg', 0, 0, 0, 0, NULL, 1),
(1956, 1, 852, 'Toner Powder', 'Toner Powder', 15600.00, 0.00, 15600.00, '852_color_toner1.jpg', 1, 0, 0, 0, NULL, 1),
(1957, 14, 750, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 0.00, 0.00, 0.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1958, 14, 751, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1959, 14, 752, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1960, 14, 753, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1961, 14, 754, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1962, 14, 755, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1963, 14, 756, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1964, 14, 757, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1965, 14, 758, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1966, 14, 759, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1967, 14, 760, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1968, 14, 761, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1969, 14, 762, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1970, 14, 763, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1971, 14, 764, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1972, 14, 765, 'Metal Parts', 'Metal Parts', 0.00, 0.00, 0.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1973, 14, 766, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(1974, 14, 767, 'FiberGlass Resin', 'FiberGlass Resin', 0.00, 0.00, 0.00, '40_color_Aluminium Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1975, 14, 768, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1976, 14, 769, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(1977, 14, 770, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1978, 14, 771, 'Aluminum Rods / Heat Sink', 'Aluminum Rods / Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1979, 14, 772, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(1980, 14, 773, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1981, 14, 774, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1982, 14, 775, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 35000.00, 0.00, 35000.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1983, 14, 776, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1984, 14, 777, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1985, 14, 778, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1986, 14, 779, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1987, 14, 780, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1988, 14, 781, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1989, 14, 782, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1990, 14, 783, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1991, 14, 784, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1992, 14, 785, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1993, 14, 786, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1994, 14, 787, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1995, 14, 788, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1996, 14, 789, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1997, 14, 790, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1998, 14, 791, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1999, 14, 792, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(2000, 14, 793, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(2001, 14, 794, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(2002, 14, 795, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(2003, 14, 796, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(2004, 14, 797, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(2005, 14, 798, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(2006, 14, 799, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(2007, 14, 800, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(2008, 14, 801, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(2009, 14, 802, 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(2010, 14, 803, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(2011, 14, 804, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(2012, 14, 805, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(2013, 14, 806, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(2014, 14, 807, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(2015, 14, 808, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(2016, 14, 809, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(2017, 14, 810, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(2018, 14, 811, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(2019, 14, 812, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(2020, 14, 813, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(2021, 14, 814, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(2022, 14, 815, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2023, 14, 816, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(2024, 14, 817, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(2025, 14, 818, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(2026, 14, 819, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(2027, 14, 820, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(2028, 14, 821, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(2029, 14, 822, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(2030, 14, 825, 'High_Grade_High_PMs', 'High_Grade_High_PMs', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(2031, 14, 826, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(2032, 14, 827, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(2033, 14, 828, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(2034, 14, 829, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(2035, 14, 830, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(2036, 14, 831, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2037, 14, 832, 'UltraHG_HardCoat', 'UltraHG_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(2038, 14, 833, 'LowYeild_Metal', 'LowYeild_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(2039, 14, 834, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(2040, 14, 835, 'Analog Electric Meters', 'Analog Electric Meters', 0.00, 0.00, 0.00, '835_color_cuz.jpeg', 0, 0, 0, 0, NULL, 1),
(2041, 14, 836, 'Digital Electric Meter', 'Digital Electric Meter', 0.00, 0.00, 0.00, '836_color_cuz2.jpeg', 0, 0, 0, 0, NULL, 1),
(2042, 14, 837, 'Mixed Small Appliances', 'Mixed Small Appliances', 0.00, 0.00, 0.00, '837_color_mixedappliances.jpeg', 0, 0, 0, 0, NULL, 1),
(2043, 14, 843, 'Printers - Assorted', 'Printers - Assorted', 0.00, 0.00, 0.00, '843_color_Printer.png', 0, 0, 0, 0, NULL, 1),
(2044, 14, 844, 'Toner Cartridges', 'Toner Cartridges', 0.00, 0.00, 0.00, '844_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(2045, 14, 845, 'AC Adaptor Plug', 'AC Adaptor Plug', 0.00, 0.00, 0.00, '845_color_AC Adaptor Plug (no cable).png', 0, 0, 0, 0, NULL, 1),
(2046, 14, 846, 'HDD - Complete', 'HDD - Complete', 0.00, 0.00, 0.00, '846_color_HDD.png', 0, 0, 0, 0, NULL, 1),
(2047, 14, 847, 'LED / LCD Monitor', 'LED / LCD Monitor', 0.00, 0.00, 0.00, '847_color_LCD Monitor.png', 0, 0, 0, 0, NULL, 1),
(2048, 14, 848, 'Shredded eWaste', 'Shredded eWaste', 0.00, 0.00, 0.00, '848_color_Shredded HDD.png', 0, 0, 0, 0, NULL, 1),
(2049, 14, 849, 'Small Domestic Appliances', 'Small Domestic Appliances', 0.00, 0.00, 0.00, '849_color_Small Domestic Appliances.webp', 0, 0, 0, 0, NULL, 1),
(2050, 14, 850, 'Small Medical Devices', 'Small Medical Devices', 0.00, 0.00, 0.00, '850_color_medsma.jpeg', 0, 0, 0, 0, NULL, 1),
(2051, 14, 851, 'Computer Fan', 'Computer Fan', 0.00, 0.00, 0.00, '851_color_Computer Fan.png', 0, 0, 0, 0, NULL, 1),
(2052, 14, 852, 'Toner Powder', 'Toner Powder', 0.00, 0.00, 0.00, '852_color_toner1.jpg', 1, 0, 0, 0, NULL, 1),
(2062, 1, 861, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2063, 1, 862, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '862_color_images (4).jpg', 0, 0, 0, 0, NULL, 1),
(2064, 1, 863, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2089, 1, 863, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2090, 2, 864, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2091, 2, 864, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2092, 3, 865, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2093, 3, 865, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2094, 4, 866, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(2095, 4, 866, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2096, 5, 867, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2097, 5, 867, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2098, 6, 868, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2099, 6, 868, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2100, 7, 869, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 210.00, 210.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2101, 7, 869, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2102, 8, 870, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2103, 8, 870, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2104, 9, 871, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2105, 9, 871, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2106, 10, 872, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2107, 10, 872, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2108, 11, 873, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2109, 11, 873, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2110, 12, 874, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2111, 12, 874, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2112, 14, 875, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2113, 14, 875, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2114, 1, 876, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2115, 2, 877, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2116, 3, 878, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2117, 4, 879, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2118, 5, 880, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2119, 6, 881, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2120, 7, 882, 'Small_And_AllInOne', 'Small_And_AllInOne', 2150.00, 2150.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2121, 8, 883, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2122, 9, 884, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2123, 10, 885, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2124, 11, 886, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2125, 12, 887, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2126, 14, 888, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2127, 11, 889, 'PC Fans', 'PC Fans', 0.00, 0.00, 0.00, '889_color_fans.jpeg', 0, 0, 0, 0, NULL, 1),
(2129, 11, 891, 'Aluminum Heat Sync', 'Aluminum Heat Sync', 0.00, 0.00, 0.00, '891_color_heatsync.jpeg', 1, 0, 0, 0, NULL, 1),
(2130, 11, 892, 'Computer Wires/Connectors', 'Computer Wires/Connectors', 0.00, 0.00, 0.00, '892_color_cables.jpeg', 1, 0, 0, 0, NULL, 1),
(2131, 11, 893, 'Hard Disk Drives', 'Hard Disk Drives', 0.00, 0.00, 0.00, '893_color_HDD.jpeg', 0, 0, 0, 0, NULL, 1),
(2132, 11, 894, 'Mixed Metals ', 'Mixed Metals ', 0.00, 0.00, 0.00, '894_color_IMG-20200416-WA0010.jpg', 1, 0, 0, 0, NULL, 1),
(2133, 11, 895, 'Hard Drive Circuit Boards', 'Hard Drive Circuit Boards', 0.00, 0.00, 0.00, '895_color_15870347664122092202541234945665.jpg', 0, 0, 0, 0, NULL, 1),
(2134, 11, 896, 'Water', 'Water', 0.00, 0.00, 0.00, '896_color_drops-of-water-water-nature-liquid-40784.jpeg', 0, 0, 0, 0, NULL, 1),
(2135, 11, 897, 'Remote Controls Whole', 'Remote Controls Whole', 6143.00, 6525.00, -382.00, '897_color_remote.jpg', 0, 0, 0, 0, NULL, 1),
(2136, 7, 898, 'Remote Controls', 'Remote Controls', 40.00, 40.00, 0.00, '898_color_remotes.jpg', 0, 0, 0, 0, NULL, 1),
(2137, 7, 899, 'mobile phone', 'mobile phone', 2490.00, 2490.00, 0.00, '899_color_cellphones.jpg', 0, 0, 0, 0, NULL, 1),
(2138, 7, 900, 'Computer Cases Fe', 'Computer Cases Fe', 1609.50, 0.00, 1609.50, '900_color_computermetal.jpg', 0, 0, 0, 0, NULL, 1),
(2139, 7, 901, 'Cables / Wires Cu/Al', 'Cables / Wires Cu/Al', 141.00, 141.00, 0.00, '901_color_wires.jpg', 0, 0, 0, 0, NULL, 1),
(2140, 7, 902, 'Batteries / Li / Pb', 'Batteries / Li / Pb', 1016.00, 0.00, 1016.00, '902_color_batteries.jpg', 1, 0, 0, 0, NULL, 1),
(2141, 7, 903, 'Black Decorative Stone From Melting Slag', 'Black Decorative Stone From Melting Slag', 89.90, 0.00, 89.90, '903_color_blackstones.jpg', 1, 0, 0, 0, NULL, 1),
(2142, 11, 904, 'Mixed IT Equipment', 'Mixed IT Equipment', 0.00, 0.00, 0.00, '904_color_we-buy-computer-it-scrap.jpg', 0, 0, 0, 0, NULL, 1),
(2143, 15, 905, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 58.78, 57.31, 1.47, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(2144, 15, 906, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(2145, 15, 907, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(2146, 15, 908, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(2147, 15, 909, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 1169.00, 0.00, 1169.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(2148, 15, 910, 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(2149, 15, 911, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 5.00, 55.10, -50.10, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(2150, 15, 912, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(2151, 15, 913, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(2152, 15, 914, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(2153, 15, 915, 'Depopulated Circuit Board (SILVER SOLDER)', 'Depopulated Circuit Board (SILVER SOLDER)', 25.00, 25.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(2154, 15, 916, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(2155, 15, 917, 'Copper Powder', 'Copper Powder', 38.80, 0.00, 38.80, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(2156, 15, 918, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 56.70, 38.00, 18.70, '36_color_14_inv_1490604347436973696850.jpg', 0, 0, 0, 0, NULL, 1),
(2157, 15, 919, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(2158, 15, 920, 'Metal Parts', 'Metal Parts', 364.17, 0.00, 364.17, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(2159, 15, 921, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 186.20, 0.00, 186.20, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(2160, 15, 922, 'FiberGlass Resin', 'FiberGlass Resin', 11237.93, 0.00, 11237.93, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(2161, 15, 923, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(2162, 15, 924, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(2163, 15, 925, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(2164, 15, 926, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(2165, 15, 927, 'Copper Concentrates (AU AG PT PD) BLUE BAG', 'Copper Concentrates (AU AG PT PD) BLUE BAG', 8940.20, 0.00, 8940.20, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(2166, 15, 928, 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', 3821.20, 0.00, 3821.20, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(2167, 15, 929, 'Copper and Precious Metals For Inhouse Refining Yellow Bag', 'Copper and Precious Metals For Inhouse Refining Yellow Bag', 113.44, 91.38, 22.06, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(2168, 15, 930, 'High Grade Copper Only RED BAG', 'High Grade Copper Only RED BAG', 2000.00, 0.00, 2000.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(2169, 15, 931, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(2170, 15, 932, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 6.70, 0.00, 6.70, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(2171, 15, 933, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(2172, 15, 934, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(2173, 15, 935, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(2174, 15, 936, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(2175, 15, 937, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(2176, 15, 938, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(2177, 15, 939, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(2178, 15, 940, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(2179, 15, 941, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2180, 15, 942, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(2181, 15, 943, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(2182, 15, 944, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(2183, 15, 945, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(2184, 15, 946, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(2185, 15, 947, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(2186, 15, 948, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(2187, 15, 949, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(2188, 15, 950, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(2189, 15, 951, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(2190, 15, 952, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(2191, 15, 953, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(2192, 15, 954, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(2193, 15, 955, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(2194, 15, 956, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(2195, 15, 957, 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(2196, 15, 958, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(2197, 15, 959, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(2198, 15, 960, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(2199, 15, 961, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 27522.00, 13906.00, 13616.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(2200, 15, 962, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(2201, 15, 963, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(2202, 15, 964, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(2203, 15, 965, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(2204, 15, 966, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(2205, 15, 967, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(2206, 15, 968, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(2207, 15, 969, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(2208, 15, 970, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2209, 15, 971, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(2210, 15, 972, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(2211, 15, 973, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 1.00, -1.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(2212, 15, 974, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(2213, 15, 975, '99.99 Copper Sheet', '99.99 Copper Sheet', 32.58, 0.00, 32.58, '124_color_soym1-500x500.jpg', 1, 0, 0, 0, NULL, 1),
(2214, 15, 976, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(2216, 15, 978, 'Circuit Fiber for bricks and pavement', 'Circuit Fiber for bricks and pavement', 0.45, 0.00, 0.45, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(2217, 15, 979, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(2218, 15, 980, 'High_Grade_High_PMs', 'High_Grade_High_PMs', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(2219, 15, 981, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(2220, 15, 982, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(2221, 15, 983, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(2222, 15, 984, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(2223, 15, 985, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(2224, 15, 986, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2225, 15, 987, 'UltraHG_HardCoat', 'UltraHG_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(2226, 15, 988, 'LowYeild_Metal', 'LowYeild_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(2227, 15, 989, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(2228, 15, 990, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2229, 15, 991, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2230, 15, 992, 'Remote Controls', 'Remote Controls', 47085.00, 11097.00, 35988.00, '992_color_best_universal_remote_lead-1-f13a157.jpg', 0, 0, 0, 0, NULL, 1),
(2231, 15, 993, 'Computer Keyboards', 'Computer Keyboards', 23669.10, 0.00, 23669.10, '993_color_keyboards.jpg', 0, 0, 0, 0, NULL, 1),
(2232, 15, 994, 'Desktop Phones', 'Desktop Phones', 23710.10, 50.00, 23660.10, '994_color_hqdefault.jpg', 0, 0, 0, 0, NULL, 1),
(2233, 11, 995, 'Desktop Telephones', 'Desktop Telephones', -5898.00, 0.00, -5898.00, '995_color_hqdefault.jpg', 0, 0, 0, 0, NULL, 1),
(2234, 11, 996, 'Keyboards', 'Keyboards', 16000.00, 0.00, 16000.00, '996_color_keys.jpg', 0, 0, 0, 0, NULL, 1),
(2235, 11, 997, '', '', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(2236, 11, 998, '', '', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(2237, 11, 999, 'ABS Black Regrind ', 'ABS Black Regrind ', 2694.00, 0.00, 2694.00, '999_color_ansblack.jpg', 1, 0, 0, 0, NULL, 1),
(2238, 11, 1000, 'ABS LIGHT Regrind', 'ABS LIGHT Regrind', 0.00, 0.00, 0.00, '1000_color_whiteABS.jpg', 1, 0, 0, 0, NULL, 1),
(2239, 11, 1001, 'ABS Sorted Plastic', 'ABS Sorted Plastic', 3013.00, 3013.00, 0.00, '1001_color_Mixed-ABS-Scrap.jpg', 0, 0, 0, 0, NULL, 1),
(2240, 11, 1002, 'Keypad Mylar', 'Keypad Mylar', 0.00, 0.00, 0.00, '1002_color_mylar.jpg', 0, 0, 0, 0, NULL, 1),
(2241, 11, 1003, 'Desktop Phone Circuit Boards', 'Desktop Phone Circuit Boards', 0.00, 0.00, 0.00, '1003_color_suntech3.jpeg', 0, 0, 0, 0, NULL, 1),
(2242, 11, 1004, 'Remote Circuit Boards', 'Remote Circuit Boards', 1568.00, 1568.00, 0.00, '1004_color_P90521-131100.jpg', 0, 0, 0, 0, NULL, 1),
(2243, 11, 1005, 'Mixed Plastic PLA', 'Mixed Plastic PLA', 316.00, 0.00, 316.00, '1005_color_PLAframes.jpeg', 1, 0, 0, 0, NULL, 1),
(2244, 11, 1006, 'Rubber Membranes', 'Rubber Membranes', 777.00, 0.00, 777.00, '1006_color_rubber.jpeg', 1, 0, 0, 0, NULL, 1),
(2245, 15, 1007, 'Sorted ABS (Remotes Keyboards)', 'Sorted ABS (Remotes Keyboards)', 9030.39, 0.00, 9030.39, '1007_color_Mixed-ABS-Scrap.jpg', 1, 0, 0, 0, NULL, 1),
(2246, 15, 1008, 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', 500.10, 0.00, 500.10, '1008_color_rubber.jpeg', 1, 0, 0, 0, NULL, 1),
(2247, 15, 1009, 'PP Silver Mylar', 'PP Silver Mylar', 20.20, 0.20, 20.00, '1009_color_mylar PP.jpeg', 1, 0, 0, 0, NULL, 1),
(2248, 15, 1010, 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', 0.20, 0.20, 0.00, '1010_color_varies.jpeg', 0, 0, 0, 0, NULL, 1),
(2249, 15, 1011, 'Remote Circuit Boards', 'Remote Circuit Boards', 1309.00, 0.00, 1309.00, '1011_color_phones.jpeg', 0, 0, 0, 0, NULL, 1),
(2250, 11, 1012, 'Copper Foil', 'Copper Foil', 1000.00, 48696.00, -47696.00, '1012_color_copper.jpeg', 0, 0, 0, 0, NULL, 1),
(2251, 15, 1013, 'Flash Drives', 'Flash Drives', 6.10, 0.00, 6.10, '1013_color_pile-of-usb-sticks-kingston-1920x1080.jpg', 0, 0, 0, 0, NULL, 1),
(2252, 15, 1014, 'Cables Connectors and Chords', 'Cables Connectors and Chords', 10.82, 39.68, -28.86, '1014_color_cables-bunch-tangled-audio-pile-141604812.jpg', 0, 0, 0, 0, NULL, 1),
(2253, 15, 1015, 'Whole Computers / Servers', 'Whole Computers / Servers', 257.70, 0.00, 257.70, '1015_color_service7.jpg', 0, 0, 0, 0, NULL, 1),
(2254, 15, 1016, 'Printers Scanners Fax Machines', 'Printers Scanners Fax Machines', 34.30, 0.00, 34.30, '1016_color_printers-old-abandoned-recycling.jpg', 0, 0, 0, 0, NULL, 1),
(2255, 15, 1017, 'LCD / PLasma / OLED Displays', 'LCD / PLasma / OLED Displays', 12.90, 0.00, 12.90, '1017_color_used-lcd-monitor-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(2256, 15, 1018, 'Circuit Boards Phones Keyboards and Remotes', 'Circuit Boards Phones Keyboards and Remotes', 317.50, 12.50, 305.00, '1018_color_rema1.jpeg', 0, 0, 0, 0, NULL, 1),
(2257, 15, 1019, 'RIbbon Cables with Connectors', 'RIbbon Cables with Connectors', 0.00, 0.00, 0.00, '1019_color_5277-c03d21291a8d4f72790c72ff49ce99cb.jpg', 0, 0, 0, 0, NULL, 1),
(2258, 15, 1020, 'Copper Etching Foils', 'Copper Etching Foils', 0.00, 0.00, 0.00, '1020_color_IMG-20220715-WA0002.jpg', 0, 0, 0, 0, NULL, 1),
(2259, 15, 1021, 'Flatscreen TV Monitor', 'Flatscreen TV Monitor', 0.00, 300.00, -300.00, '1021_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2260, 15, 1022, 'Mixed Computer / IT Scrap', 'Mixed Computer / IT Scrap', 0.00, 423.73, -423.73, '1022_color_this.jpg', 0, 0, 0, 0, NULL, 1),
(2261, 15, 1023, 'Wire Insulation', 'Wire Insulation', 16.75, 16.76, -0.01, '1023_color_Wire_Cables.jpg', 0, 0, 0, 0, NULL, 1),
(2262, 16, 1024, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 0.00, 0.00, 0.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(2263, 16, 1025, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(2264, 16, 1026, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(2265, 16, 1027, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(2266, 16, 1028, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(2267, 16, 1029, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(2268, 16, 1030, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(2269, 16, 1031, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(2270, 16, 1032, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(2271, 16, 1033, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(2272, 16, 1034, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(2273, 16, 1035, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(2274, 16, 1036, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(2275, 16, 1037, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(2276, 16, 1038, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(2277, 16, 1039, 'Metal Parts', 'Metal Parts', 0.00, 0.00, 0.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(2278, 16, 1040, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(2279, 16, 1041, 'FiberGlass Resin', 'FiberGlass Resin', 0.00, 0.00, 0.00, '40_color_Aluminium Powder.jpg', 0, 0, 0, 0, NULL, 1),
(2280, 16, 1042, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(2281, 16, 1043, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(2282, 16, 1044, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(2283, 16, 1045, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(2284, 16, 1046, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(2285, 16, 1047, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(2286, 16, 1048, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(2287, 16, 1049, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(2288, 16, 1050, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(2289, 16, 1051, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(2290, 16, 1052, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(2291, 16, 1053, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(2292, 16, 1054, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(2293, 16, 1055, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(2294, 16, 1056, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(2295, 16, 1057, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(2296, 16, 1058, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(2297, 16, 1059, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(2298, 16, 1060, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2299, 16, 1061, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(2300, 16, 1062, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(2301, 16, 1063, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(2302, 16, 1064, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(2303, 16, 1065, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(2304, 16, 1066, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 100.00, 50.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(2305, 16, 1067, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(2306, 16, 1068, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(2307, 16, 1069, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(2308, 16, 1070, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(2309, 16, 1071, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(2310, 16, 1072, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(2311, 16, 1073, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(2312, 16, 1074, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(2313, 16, 1075, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(2314, 16, 1076, 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(2315, 16, 1077, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(2316, 16, 1078, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(2317, 16, 1079, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(2318, 16, 1080, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(2319, 16, 1081, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(2320, 16, 1082, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(2321, 16, 1083, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(2322, 16, 1084, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(2323, 16, 1085, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(2324, 16, 1086, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(2325, 16, 1087, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(2326, 16, 1088, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(2327, 16, 1089, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2328, 16, 1090, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(2329, 16, 1091, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(2330, 16, 1092, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(2331, 16, 1093, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(2332, 16, 1094, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(2333, 16, 1095, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(2334, 16, 1096, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(2335, 16, 1097, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(2336, 16, 1098, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(2337, 16, 1099, 'High_Grade_High_PMs', 'High_Grade_High_PMs', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(2338, 16, 1100, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(2339, 16, 1101, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(2340, 16, 1102, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(2341, 16, 1103, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(2342, 16, 1104, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(2343, 16, 1105, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(2344, 16, 1106, 'UltraHG_HardCoat', 'UltraHG_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(2345, 16, 1107, 'LowYeild_Metal', 'LowYeild_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(2346, 16, 1108, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(2347, 16, 1109, 'Large_Printers_Copiers', 'Large_Printers_Copiers', 0.00, 0.00, 0.00, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 0, 0, 0, 0, NULL, 1),
(2348, 16, 1110, 'Small_And_AllInOne', 'Small_And_AllInOne', 0.00, 0.00, 0.00, '876_color_862_color_image.jpg', 0, 0, 0, 0, NULL, 1),
(2349, 11, 1111, 'Graphite Powder', 'Graphite Powder', 11959.00, 0.00, 11959.00, '1111_color_phpptp.jpg', 1, 0, 0, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproduct08102019`
--

CREATE TABLE `inventoryproduct08102019` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `consumables` int(11) NOT NULL,
  `reorder` int(11) NOT NULL DEFAULT 0,
  `autoemail` int(11) NOT NULL DEFAULT 0,
  `reorderemail` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproduct08102019`
--

INSERT INTO `inventoryproduct08102019` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1, 1, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(2, 1, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(3, 1, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(4, 1, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(5, 1, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(6, 1, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(7, 1, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(8, 1, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(9, 1, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(10, 1, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(11, 1, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(12, 1, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(13, 1, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1894.00, 0.00, 1894.00, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(14, 1, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(15, 1, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(16, 1, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(17, 1, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(18, 1, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(19, 1, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(20, 1, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 285.50, 0.00, 285.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(21, 1, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(22, 1, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(23, 1, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(24, 1, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(25, 1, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(26, 1, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(27, 1, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(28, 1, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(29, 1, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 41.50, 25.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(30, 1, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(32, 1, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 0.00, 35.55, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(33, 1, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(34, 1, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(35, 1, 35, 'Copper Powder', 'Copper Powder', 5293.44, 5230.94, 62.50, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(36, 1, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(37, 1, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(38, 1, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(39, 1, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(40, 1, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 3286.42, 62339.90, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(41, 1, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(42, 1, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(43, 1, 43, 'GOLD', 'GOLD', 1009.23, 1007.23, 2.00, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(44, 1, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(46, 1, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(47, 1, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(48, 1, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(49, 1, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 694.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(52, 1, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(53, 1, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 1087.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(54, 1, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 12129.42, 0.10, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(55, 1, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21460.50, 21345.84, 114.66, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(56, 1, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(57, 1, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(58, 1, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(60, 1, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(63, 1, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(64, 1, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(65, 1, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(66, 1, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(67, 1, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(68, 1, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(69, 1, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(70, 1, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(71, 1, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(72, 1, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(73, 1, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(74, 1, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(75, 1, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(76, 1, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(77, 1, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(78, 1, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(79, 1, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(80, 1, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(81, 1, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(82, 1, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(84, 1, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(85, 1, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(86, 1, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(87, 1, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(88, 1, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(89, 1, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(90, 1, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(91, 1, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(92, 1, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(93, 1, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(94, 1, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(95, 1, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(96, 1, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(97, 1, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(98, 1, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(99, 1, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(100, 1, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(101, 1, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(102, 1, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(103, 1, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(104, 1, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(105, 1, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(106, 1, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(107, 1, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(108, 1, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(109, 1, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(112, 1, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(113, 1, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(114, 1, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(115, 1, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(116, 1, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(117, 1, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(120, 1, NULL, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(124, 1, NULL, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(125, 1, NULL, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(126, 1, NULL, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(127, 1, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(129, 1, NULL, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(130, 1, NULL, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(131, 1, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(132, 1, NULL, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(133, 1, NULL, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(134, 1, NULL, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(135, 1, NULL, 'American Mill Rod', 'American Mill Rod', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(136, 1, NULL, 'American Mill Bearings', 'American Mill Bearings', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(137, 1, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(138, 1, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(139, 4, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(140, 4, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(141, 4, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(142, 4, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(143, 4, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(144, 4, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(145, 4, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(146, 4, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(147, 4, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(148, 4, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(149, 4, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(150, 4, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(151, 4, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1894.00, 0.00, 1894.00, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(152, 4, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(153, 4, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(154, 4, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(155, 4, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(156, 4, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(157, 4, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(158, 4, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(159, 4, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(160, 4, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(161, 4, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(162, 4, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(163, 4, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(164, 4, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(165, 4, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(166, 4, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(167, 4, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(168, 4, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(169, 4, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 0.00, 16.50, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(170, 4, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(171, 4, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(172, 4, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(173, 4, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(174, 4, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(175, 4, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(176, 4, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(177, 4, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(178, 4, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(179, 4, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(180, 4, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(181, 4, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(182, 4, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(183, 4, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(184, 4, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(185, 4, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(186, 4, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(187, 4, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(188, 4, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 34119.52, 0.00, 34119.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(189, 4, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(190, 4, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(191, 4, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(192, 4, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(193, 4, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(194, 4, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(195, 4, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(196, 4, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(197, 4, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(198, 4, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(199, 4, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(200, 4, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(201, 4, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(202, 4, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(203, 4, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(204, 4, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(205, 4, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(206, 4, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 542.00, 0.00, 542.00, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(207, 4, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(208, 4, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(209, 4, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(210, 4, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(211, 4, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(212, 4, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(213, 4, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(214, 4, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(215, 4, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(216, 4, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(217, 4, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(218, 4, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(219, 4, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(220, 4, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(221, 4, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(222, 4, 92, 'High_Grade', 'High_Grade', 23.00, 0.00, 23.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(223, 4, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(224, 4, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(225, 4, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(226, 4, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(227, 4, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(228, 4, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(229, 4, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(230, 4, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(231, 4, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(232, 4, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(233, 4, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(234, 4, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(235, 4, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(236, 4, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(237, 4, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(238, 4, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(239, 4, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(240, 4, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(241, 4, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(242, 4, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(243, 4, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(244, 4, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(245, 4, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(246, 4, 0, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(247, 4, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(248, 4, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(249, 4, 0, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(250, 4, 205, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(251, 4, 0, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(252, 4, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(253, 4, 206, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(254, 4, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(255, 4, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(256, 4, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(257, 4, 0, 'American Mill Rod', 'American Mill Rod', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(258, 4, 0, 'American Mill Bearings', 'American Mill Bearings', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(259, 4, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(260, 4, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(261, 5, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(262, 5, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 40240.00, 0.00, 40240.00, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(263, 5, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(264, 5, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(265, 5, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(266, 5, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(267, 5, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(268, 5, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(269, 5, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(270, 5, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(271, 5, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(272, 5, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(273, 5, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1894.00, 0.00, 1894.00, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(274, 5, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(275, 5, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -961.00, 0.00, -961.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(276, 5, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 3170.00, 0.00, 3170.00, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(277, 5, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(278, 5, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(279, 5, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(280, 5, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(281, 5, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(282, 5, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(283, 5, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(284, 5, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(285, 5, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(286, 5, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(287, 5, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(288, 5, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(289, 5, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(290, 5, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(291, 5, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 0.00, 16.50, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(292, 5, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(293, 5, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(294, 5, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(295, 5, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(296, 5, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(297, 5, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(298, 5, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(299, 5, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(300, 5, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(301, 5, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(302, 5, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(303, 5, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(304, 5, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(305, 5, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(306, 5, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(307, 5, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(308, 5, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(309, 5, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(310, 5, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(311, 5, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(312, 5, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(313, 5, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(314, 5, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(315, 5, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(316, 5, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(317, 5, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(318, 5, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(319, 5, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(320, 5, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(321, 5, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(322, 5, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(323, 5, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(324, 5, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(325, 5, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(326, 5, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(327, 5, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(328, 5, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(329, 5, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(330, 5, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(331, 5, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(332, 5, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(333, 5, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(334, 5, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(335, 5, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(336, 5, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(337, 5, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(338, 5, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(339, 5, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(340, 5, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(341, 5, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(342, 5, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(343, 5, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(344, 5, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(345, 5, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(346, 5, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(347, 5, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(348, 5, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(349, 5, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(350, 5, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(351, 5, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(352, 5, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(353, 5, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(354, 5, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(355, 5, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(356, 5, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(357, 5, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(358, 5, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 300.00, 0.00, 300.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(359, 5, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(360, 5, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(361, 5, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(362, 5, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 230.00, 0.00, 230.00, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct08102019` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(363, 5, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(364, 5, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(365, 5, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(366, 5, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(367, 5, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(368, 5, 0, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(369, 5, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(370, 5, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(371, 5, 0, 'Whole Computers', 'Whole Computers', 25.00, 0.00, 25.00, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(372, 5, 280, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(373, 5, 0, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(374, 5, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(375, 5, 281, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(376, 5, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(377, 5, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(378, 5, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(379, 5, 0, 'American Mill Rod', 'American Mill Rod', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(380, 5, 0, 'American Mill Bearings', 'American Mill Bearings', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(381, 5, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(382, 5, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(383, 6, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(384, 6, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(385, 6, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(386, 6, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(387, 6, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(388, 6, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(389, 6, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(390, 6, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(391, 6, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(392, 6, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(393, 6, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(394, 6, 0, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 74.00, 0.00, 74.00, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(395, 6, 0, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 2844.00, 0.00, 2844.00, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(396, 6, 14, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 729.50, 0.00, 729.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(397, 6, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 659.80, 0.00, 659.80, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(398, 6, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(399, 6, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(400, 6, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(401, 6, 19, 'Mid_Grade', 'Mid_Grade', 65.00, 0.00, 65.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(402, 6, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(403, 6, 0, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(404, 6, 0, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(405, 6, 0, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(406, 6, 24, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(407, 6, 25, 'Mid_Grade', 'Mid_Grade', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(408, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(409, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(410, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 200.00, 0.00, 200.00, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(411, 6, 29, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(412, 6, 30, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 447.74, 0.00, 447.74, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(413, 6, 32, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 16.50, 0.00, 16.50, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(414, 6, 33, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(415, 6, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(416, 6, 35, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(417, 6, 36, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(418, 6, 37, 'MidRange_Ceramic', 'MidRange_Ceramic', 2061.50, 0.00, 2061.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(419, 6, 38, 'LowYeild_Plastic', 'LowYeild_Plastic', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(420, 6, 39, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(421, 6, 40, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(422, 6, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(423, 6, 42, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(424, 6, 43, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(425, 6, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 14000.00, 0.00, 14000.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(426, 6, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(427, 6, 47, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(428, 6, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(429, 6, 49, 'Whole Computers', 'Whole Computers', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(430, 6, 355, 'FIBER Bricks', 'FIBER Bricks', 4092.50, 0.00, 4092.50, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(431, 6, 53, 'Copper Pipes', 'Copper Pipes', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(432, 6, 54, 'Something Gold', 'Something Gold', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(433, 6, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(434, 6, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(435, 6, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(436, 6, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(437, 6, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(438, 6, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(439, 6, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(440, 6, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(441, 6, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', -1010.00, 0.00, -1010.00, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(442, 6, 0, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(443, 6, 68, 'Gold Powder', 'Gold Powder', -6.00, 0.00, -6.00, '443_color_Gold Powder.jpg', 0, 1, 0, 0, NULL, 1),
(444, 6, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(445, 6, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(446, 6, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(447, 6, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(448, 6, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(449, 6, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(450, 6, 0, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(451, 6, 76, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(452, 6, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(453, 6, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(454, 6, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(455, 6, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(456, 6, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(457, 6, 0, 'Dry Ceramic Mud', 'Dry Ceramic Mud', 1000.00, 0.00, 1000.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(458, 6, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(459, 6, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(460, 6, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(461, 6, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(462, 6, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(463, 6, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(464, 6, 90, 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(465, 6, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(466, 6, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(467, 6, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(468, 6, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(469, 6, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(470, 6, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(471, 6, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(472, 6, 98, 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(473, 6, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(474, 6, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(475, 6, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(476, 6, 102, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(477, 6, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(478, 6, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(479, 6, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(480, 6, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(481, 6, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(482, 6, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(483, 6, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(484, 6, 112, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(485, 6, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(486, 6, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(487, 6, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(488, 6, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(489, 6, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(490, 6, 0, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(491, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(492, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(493, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(494, 6, 0, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(495, 6, 0, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(496, 6, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(497, 6, 356, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(498, 6, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(499, 6, 0, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 162.00, 0.00, 162.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(500, 6, 0, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(501, 6, 0, 'MidRange_Ceramic', 'MidRange_Ceramic', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(502, 6, 0, 'LowYeild_Plastic', 'LowYeild_Plastic', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(503, 6, 132, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(504, 6, 285, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(505, 7, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(506, 7, 0, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(507, 7, 0, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(508, 7, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(509, 7, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(510, 7, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(511, 7, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(512, 7, 0, 'Whole Computers', 'Whole Computers', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(513, 7, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(514, 7, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(515, 7, 0, 'Mixed CPU', 'Mixed CPU', 6828.00, 0.00, 6828.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(516, 7, 0, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(517, 7, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1904.00, 0.00, 1904.00, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(518, 7, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(519, 7, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(520, 7, 0, '1kg Gold Bar', '1kg Gold Bar', 8.00, 0.00, 8.00, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(521, 7, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(522, 7, 18, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(523, 7, 19, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(524, 7, 20, 'Low_Quality_PMs', 'Low_Quality_PMs', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(525, 7, 0, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(526, 7, 0, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(527, 7, 0, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(528, 7, 24, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(529, 7, 25, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(530, 7, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(531, 7, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(532, 7, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(533, 7, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(534, 7, 30, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(535, 7, 32, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 16.50, 0.00, 16.50, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(536, 7, 33, 'High_End_CRTs', 'High_End_CRTs', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(537, 7, 34, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(538, 7, 35, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(539, 7, 36, 'High_End_CRTs', 'High_End_CRTs', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(540, 7, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(541, 7, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(542, 7, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(543, 7, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(544, 7, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(545, 7, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(546, 7, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(547, 7, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(548, 7, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(549, 7, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(550, 7, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(551, 7, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(552, 7, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(553, 7, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(554, 7, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 34119.52, 0.00, 34119.52, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(555, 7, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(556, 7, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(557, 7, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(558, 7, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(559, 7, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(560, 7, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(561, 7, 64, 'FiberGlass Resin', 'FiberGlass Resin', 92791.00, 0.00, 92791.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(562, 7, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(563, 7, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 1.00, 0.00, 1.00, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(564, 7, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(566, 7, 69, 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 55977.00, 57595.50, -1618.50, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(567, 7, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(568, 7, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(569, 7, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 923.00, 0.00, 923.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(570, 7, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(571, 7, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(572, 7, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(573, 7, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(574, 7, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(575, 7, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(576, 7, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(577, 7, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(578, 7, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(579, 7, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(580, 7, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(581, 7, 85, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(582, 7, 86, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(583, 7, 87, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(584, 7, 88, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(585, 7, 89, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(586, 7, 90, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(587, 7, 91, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(588, 7, 92, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(589, 7, 93, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(590, 7, 94, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(591, 7, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(592, 7, 96, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(593, 7, 97, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(594, 7, 98, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(595, 7, 99, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(596, 7, 100, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(597, 7, 101, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(598, 7, 102, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(599, 7, 103, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 91810.00, 0.00, 91810.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(600, 7, 104, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 61260.00, 0.00, 61260.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(601, 7, 105, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 17160.00, 0.00, 17160.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(602, 7, 106, 'Empty', 'Empty', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(603, 7, 107, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(604, 7, 108, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(605, 7, 109, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(606, 7, 112, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(607, 7, 113, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(608, 7, 114, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(609, 7, 115, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(610, 7, 116, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(611, 7, 117, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(612, 7, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 0, 0, 0, NULL, 1),
(613, 7, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(614, 7, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(616, 7, 0, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(617, 7, 0, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 0, 0, 0, NULL, 1),
(618, 7, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 0, 0, 0, NULL, 1),
(619, 7, 0, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(620, 7, 0, 'Mid_Grade', 'Mid_Grade', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 0, 0, 0, NULL, 1),
(621, 7, 0, 'Low_Quality_PMs', 'Low_Quality_PMs', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 0, 0, 0, NULL, 1),
(622, 7, 0, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 0, 0, 0, NULL, 1),
(623, 7, 0, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 0, 0, 0, NULL, 1),
(624, 7, 0, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 0, 0, 0, NULL, 1),
(627, 7, NULL, 'Nitric Acid', '', 7200.00, 10.00, 7190.00, '627_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(628, 1, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(629, 1, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(630, 1, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(631, 1, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(632, 1, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(633, 1, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 0.00, 0.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(634, 10, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(635, 10, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(636, 10, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(637, 10, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(638, 10, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(639, 10, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(642, 10, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(643, 10, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(644, 10, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(648, 10, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -873.00, 0.00, -873.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(651, 10, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(671, 10, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(673, 10, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(677, 10, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(686, 10, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(697, 10, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(698, 10, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(699, 10, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(700, 10, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(731, 10, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(732, 10, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(733, 10, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(754, 1, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(755, 1, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(756, 1, 517, 'Waste Liquid', 'Waste Liquid', 0.00, 0.00, 0.00, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(757, 1, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(758, 1, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(759, 1, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(760, 1, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(761, 10, NULL, 'Nitric Acid', 'Nitric Acid', 5000.00, 0.00, 5000.00, '761_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(762, 1, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(763, 1, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(764, 1, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(765, 1, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(766, 1, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(767, 1, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(768, 1, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(769, 1, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(770, 11, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(771, 11, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(772, 11, 0, 'x86 Motherboard', 'x86 Motherboard', 0.00, 0.00, 0.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(773, 11, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.00, 0.00, 0.00, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(774, 11, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(775, 11, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(776, 11, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 0.00, 0.00, 0.00, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(777, 11, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.00, 0.00, 0.00, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(778, 11, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(779, 11, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.00, 0.00, 0.00, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(780, 11, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(781, 11, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(782, 11, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 0.00, 0.00, 0.00, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(783, 11, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 0.00, 0.00, 0.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(784, 11, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(785, 11, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(786, 11, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 0.00, 0.00, 0.00, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(787, 11, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(788, 11, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(789, 11, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(790, 11, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(791, 11, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(792, 11, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(793, 11, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(794, 11, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(795, 11, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 0.00, 0.00, 0.00, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(796, 11, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 0.00, 0.00, 0.00, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(797, 11, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(798, 11, 29, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(799, 11, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(800, 11, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(801, 11, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(802, 11, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(803, 11, 35, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(804, 11, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(805, 11, 37, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(806, 11, 38, 'Metal Parts', 'Metal Parts', 0.00, 0.00, 0.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(807, 11, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(808, 11, 40, 'FiberGlass Resin', 'FiberGlass Resin', 61119.00, 0.00, 61119.00, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(809, 11, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(810, 11, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 0.00, 0.00, 0.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(811, 11, 43, 'GOLD', 'GOLD', 0.00, 0.00, 0.00, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(812, 11, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(813, 11, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 0.00, 0.00, 0.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(814, 11, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(815, 11, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 0.00, 0.00, 0.00, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(816, 11, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(817, 11, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(818, 11, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(819, 11, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(820, 11, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 920.00, 0.00, 920.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(821, 11, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(822, 11, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct08102019` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(823, 11, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(824, 11, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(825, 11, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(826, 11, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(827, 11, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(828, 11, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(829, 11, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(830, 11, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(831, 11, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(832, 11, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 0.00, 0.00, 0.00, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(833, 11, 71, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(834, 11, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(835, 11, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(836, 11, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(837, 11, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(838, 11, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(839, 11, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(840, 11, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 0.00, 0.00, 0.00, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(841, 11, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(842, 11, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(843, 11, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 0.00, 0.00, 0.00, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(844, 11, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(845, 11, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(846, 11, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(847, 11, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(848, 11, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(849, 11, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(850, 11, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(851, 11, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(852, 11, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(853, 11, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(854, 11, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(855, 11, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(856, 11, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(857, 11, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(858, 11, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(859, 11, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(860, 11, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(861, 11, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(862, 11, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(863, 11, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(864, 11, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(865, 11, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(866, 11, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(867, 11, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(868, 11, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(869, 11, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(870, 11, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(871, 11, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(872, 11, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(873, 11, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(874, 11, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(875, 11, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(876, 11, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(877, 11, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(878, 11, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(879, 11, 0, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(880, 11, 617, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(881, 11, 618, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(889, 11, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 0.00, 0.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(890, 11, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(891, 11, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(892, 11, 517, 'Waste Liquid', 'Waste Liquid', 0.00, 0.00, 0.00, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(893, 11, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(894, 11, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(895, 11, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(897, 11, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(898, 11, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(899, 11, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(900, 11, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(901, 11, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(902, 11, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(903, 11, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(904, 11, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(907, 7, 379, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(908, 6, 304, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(909, 5, 229, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(910, 4, 154, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(911, 14, 52, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(912, 12, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(913, 12, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(914, 12, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(915, 12, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(916, 12, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(917, 12, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(918, 12, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(919, 12, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(920, 12, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(921, 12, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(922, 12, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(923, 12, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(924, 12, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1894.00, 0.00, 1894.00, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(925, 12, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(926, 12, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(927, 12, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(928, 12, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(929, 12, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(930, 12, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(931, 12, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(932, 12, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(933, 12, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(934, 12, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(935, 12, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(936, 12, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(937, 12, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(938, 12, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(939, 12, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(940, 12, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 0.00, 66.50, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(941, 12, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(942, 12, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 0.00, 35.55, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(943, 12, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(944, 12, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(945, 12, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(946, 12, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(947, 12, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(948, 12, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(949, 12, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(950, 12, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(951, 12, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(952, 12, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(953, 12, 43, 'GOLD', 'GOLD', 1009.23, 0.00, 1009.23, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(954, 12, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(955, 12, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(956, 12, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(957, 12, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(958, 12, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(959, 12, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(960, 12, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(961, 12, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(962, 12, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21460.50, 0.00, 21460.50, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(963, 12, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(964, 12, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(965, 12, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(966, 12, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(967, 12, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(968, 12, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(969, 12, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(970, 12, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(971, 12, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(972, 12, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(973, 12, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(974, 12, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(975, 12, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(976, 12, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(977, 12, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(978, 12, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(979, 12, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(980, 12, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(981, 12, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(982, 12, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(983, 12, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(984, 12, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(985, 12, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(986, 12, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(987, 12, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(988, 12, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(989, 12, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(990, 12, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(991, 12, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(992, 12, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(993, 12, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(994, 12, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(995, 12, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(996, 12, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(997, 12, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(998, 12, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(999, 12, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1000, 12, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1001, 12, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1002, 12, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1003, 12, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1004, 12, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1005, 12, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1006, 12, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1007, 12, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1008, 12, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1009, 12, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1010, 12, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1011, 12, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1012, 12, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1013, 12, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1014, 12, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1015, 12, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1016, 12, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1017, 12, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1018, 12, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1019, 12, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1020, 12, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1021, 12, 0, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1022, 12, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1023, 12, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1024, 12, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1025, 12, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(1026, 12, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(1027, 12, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1028, 12, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1029, 12, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1030, 12, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1031, 12, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 0.00, 0.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1032, 12, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1033, 12, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1034, 12, 517, 'Waste Liquid', 'Waste Liquid', 0.00, 0.00, 0.00, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1035, 12, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1036, 12, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1037, 12, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(1038, 12, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1039, 12, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1040, 12, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1041, 12, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1042, 12, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1043, 12, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1044, 12, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1045, 12, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1046, 12, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1047, 1, 708, 'Pentium Pro ', 'Pentium Pro ', 0.00, 0.00, 0.00, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1048, 1, 709, 'Pentium 1', 'Pentium 1', 0.00, 0.00, 0.00, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproduct27-3-2020`
--

CREATE TABLE `inventoryproduct27-3-2020` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `consumables` int(11) NOT NULL,
  `reorder` int(11) NOT NULL DEFAULT 0,
  `autoemail` int(11) NOT NULL DEFAULT 0,
  `reorderemail` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproduct27-3-2020`
--

INSERT INTO `inventoryproduct27-3-2020` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1, 1, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 5304.97, 0.00, 5304.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(2, 1, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 5304.97, 0.00, 5304.97, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(3, 1, 0, 'x86 Motherboard', 'x86 Motherboard', 5304.97, 0.00, 5304.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(4, 1, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 5304.97, 0.00, 5304.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(5, 1, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 5304.97, 0.00, 5304.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(6, 1, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 5304.97, 0.00, 5304.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(7, 1, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 5304.97, 0.00, 5304.97, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(8, 1, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 5304.97, 0.00, 5304.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(9, 1, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 5304.97, 0.00, 5304.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(10, 1, 0, 'Green Fiber Processors', 'Green Fiber Processors', 5304.97, 0.00, 5304.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(11, 1, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 5304.97, 0.00, 5304.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(12, 1, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 5304.97, 0.00, 5304.97, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(13, 1, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 5304.97, 0.00, 5304.97, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(14, 1, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(15, 1, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(16, 1, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 5304.97, 0.00, 5304.97, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(17, 1, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 5304.97, 0.00, 5304.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(18, 1, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(19, 1, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(20, 1, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 285.50, 0.00, 285.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(21, 1, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 5304.97, 0.00, 5304.97, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(22, 1, 0, 'Floppy Drive', 'Floppy Drive', 5304.97, 0.00, 5304.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(23, 1, 0, 'CD/DVD Drive', 'CD/DVD Drive', 5304.97, 0.00, 5304.97, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(24, 1, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(25, 1, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(26, 1, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 5304.97, 0.00, 5304.97, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(27, 1, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 5304.97, 0.00, 5304.97, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(28, 1, 0, 'Cellphone Board', 'Cellphone Board', 5304.97, 0.00, 5304.97, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(29, 1, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 41.50, 25.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(30, 1, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(32, 1, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 994.00, -958.45, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(33, 1, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(34, 1, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(35, 1, 35, 'Copper Powder', 'Copper Powder', 5293.44, 5230.94, 62.50, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(36, 1, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(37, 1, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(38, 1, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(39, 1, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(40, 1, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 3286.42, 62339.90, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(41, 1, 0, 'Deplated CPU', 'Deplated CPU', 5304.97, 0.00, 5304.97, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(42, 1, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(43, 1, 43, 'GOLD', 'GOLD', 1009.23, 1007.23, 2.00, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(44, 1, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 5304.97, 0.00, 5304.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(46, 1, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5304.97, 0.00, 5304.97, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(47, 1, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(48, 1, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 5304.97, 0.00, 5304.97, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(49, 1, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 694.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(52, 1, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(53, 1, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 1087.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(54, 1, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 12129.42, 0.10, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(55, 1, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21460.50, 21345.84, 114.66, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(56, 1, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(57, 1, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 5304.97, 0.00, 5304.97, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(58, 1, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(60, 1, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(63, 1, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(64, 1, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(65, 1, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(66, 1, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 5304.97, 0.00, 5304.97, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(67, 1, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 5304.97, 0.00, 5304.97, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(68, 1, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(69, 1, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(70, 1, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 5304.97, 0.00, 5304.97, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(71, 1, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(72, 1, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 5304.97, 0.00, 5304.97, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(73, 1, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 5304.97, 0.00, 5304.97, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(74, 1, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 5304.97, 0.00, 5304.97, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(75, 1, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 5304.97, 0.00, 5304.97, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(76, 1, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(77, 1, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(78, 1, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 5304.97, 0.00, 5304.97, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(79, 1, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(80, 1, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(81, 1, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 5304.97, 0.00, 5304.97, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(82, 1, 0, 'Laptop Boards', 'Laptop Boards', 5304.97, 0.00, 5304.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(84, 1, 84, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(85, 1, 85, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(86, 1, 86, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(87, 1, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(88, 1, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(89, 1, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(90, 1, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(91, 1, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(92, 1, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(93, 1, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(94, 1, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(95, 1, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(96, 1, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(97, 1, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(98, 1, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(99, 1, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(100, 1, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(101, 1, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(102, 1, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(103, 1, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(104, 1, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(105, 1, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(106, 1, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(107, 1, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(108, 1, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(109, 1, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(112, 1, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(113, 1, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(114, 1, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(115, 1, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(116, 1, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(117, 1, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(120, 1, NULL, 'Banda', 'Banda', 1.00, 0.00, 1.00, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(124, 1, NULL, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(125, 1, NULL, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(126, 1, NULL, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(127, 1, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(129, 1, NULL, 'US Hammers', 'US Hammers', 47.00, 0.00, 47.00, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(130, 1, NULL, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 12.00, 0.00, 12.00, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(131, 1, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(132, 1, NULL, 'Chinese Mill Rods', 'Chinese Mill Rods', 6.00, 0.00, 6.00, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(133, 1, NULL, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 12.00, 0.00, 12.00, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(134, 1, NULL, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 12.00, 0.00, 12.00, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(135, 1, NULL, 'American Mill Rod', 'American Mill Rod', 4.00, 0.00, 4.00, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(136, 1, NULL, 'American Mill Bearings', 'American Mill Bearings', 2.00, 0.00, 2.00, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(137, 1, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(138, 1, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(139, 4, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 5304.97, 0.00, 5304.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(140, 4, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 5304.97, 0.00, 5304.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(141, 4, 0, 'x86 Motherboard', 'x86 Motherboard', 5304.97, 0.00, 5304.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(142, 4, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 5304.97, 0.00, 5304.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(143, 4, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 5304.97, 0.00, 5304.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(144, 4, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 5304.97, 0.00, 5304.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(145, 4, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 5304.97, 0.00, 5304.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(146, 4, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 5304.97, 0.00, 5304.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(147, 4, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 5304.97, 0.00, 5304.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(148, 4, 0, 'Green Fiber Processors', 'Green Fiber Processors', 5304.97, 0.00, 5304.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(149, 4, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 5304.97, 0.00, 5304.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(150, 4, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 5304.97, 0.00, 5304.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(151, 4, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 5304.97, 0.00, 5304.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(152, 4, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(153, 4, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(154, 4, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 5304.97, 0.00, 5304.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(155, 4, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 5304.97, 0.00, 5304.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(156, 4, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(157, 4, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(158, 4, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(159, 4, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 5304.97, 0.00, 5304.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(160, 4, 0, 'Floppy Drive', 'Floppy Drive', 5304.97, 0.00, 5304.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(161, 4, 0, 'CD/DVD Drive', 'CD/DVD Drive', 5304.97, 0.00, 5304.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(162, 4, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(163, 4, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(164, 4, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 5304.97, 0.00, 5304.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(165, 4, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 5304.97, 0.00, 5304.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(166, 4, 0, 'Cellphone Board', 'Cellphone Board', 5304.97, 0.00, 5304.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(167, 4, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(168, 4, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(169, 4, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(170, 4, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(171, 4, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(172, 4, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(173, 4, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(174, 4, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(175, 4, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(176, 4, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(177, 4, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(178, 4, 0, 'Deplated CPU', 'Deplated CPU', 5304.97, 0.00, 5304.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(179, 4, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(180, 4, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(181, 4, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 5304.97, 0.00, 5304.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(182, 4, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5304.97, 0.00, 5304.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(183, 4, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(184, 4, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 5304.97, 0.00, 5304.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(185, 4, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(186, 4, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(187, 4, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(188, 4, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 34119.52, 0.00, 34119.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(189, 4, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(190, 4, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(191, 4, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 5304.97, 0.00, 5304.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(192, 4, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(193, 4, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(194, 4, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(195, 4, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(196, 4, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(197, 4, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 5304.97, 0.00, 5304.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(198, 4, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 5304.97, 0.00, 5304.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(199, 4, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(200, 4, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(201, 4, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 5304.97, 0.00, 5304.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(202, 4, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(203, 4, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 5304.97, 0.00, 5304.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(204, 4, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 5304.97, 0.00, 5304.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(205, 4, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 5304.97, 0.00, 5304.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(206, 4, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 5304.97, 0.00, 5304.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(207, 4, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(208, 4, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(209, 4, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 5304.97, 0.00, 5304.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(210, 4, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(211, 4, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(212, 4, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 5304.97, 0.00, 5304.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(213, 4, 0, 'Laptop Boards', 'Laptop Boards', 5304.97, 0.00, 5304.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(214, 4, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(215, 4, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(216, 4, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(217, 4, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(218, 4, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(219, 4, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(220, 4, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(221, 4, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(222, 4, 92, 'High_Grade', 'High_Grade', 23.00, 0.00, 23.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(223, 4, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(224, 4, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(225, 4, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(226, 4, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(227, 4, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(228, 4, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(229, 4, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(230, 4, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(231, 4, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(232, 4, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(233, 4, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(234, 4, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(235, 4, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(236, 4, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(237, 4, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(238, 4, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(239, 4, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(240, 4, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(241, 4, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(242, 4, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(243, 4, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(244, 4, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(245, 4, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(246, 4, 0, 'Banda', 'Banda', 5304.97, 0.00, 5304.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(247, 4, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 5304.97, 0.00, 5304.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(248, 4, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 5304.97, 0.00, 5304.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(249, 4, 0, 'Whole Computers', 'Whole Computers', 5304.97, 0.00, 5304.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(250, 4, 205, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(251, 4, 0, 'US Hammers', 'US Hammers', 5304.97, 0.00, 5304.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(252, 4, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 5304.97, 0.00, 5304.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(253, 4, 206, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(254, 4, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 5304.97, 0.00, 5304.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(255, 4, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 5304.97, 0.00, 5304.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(256, 4, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 5304.97, 0.00, 5304.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(257, 4, 0, 'American Mill Rod', 'American Mill Rod', 5304.97, 0.00, 5304.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(258, 4, 0, 'American Mill Bearings', 'American Mill Bearings', 5304.97, 0.00, 5304.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(259, 4, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(260, 4, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(261, 5, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 5304.97, 0.00, 5304.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(262, 5, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 5304.97, 0.00, 5304.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(263, 5, 0, 'x86 Motherboard', 'x86 Motherboard', 5304.97, 0.00, 5304.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(264, 5, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 5304.97, 0.00, 5304.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(265, 5, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 5304.97, 0.00, 5304.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(266, 5, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 5304.97, 0.00, 5304.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(267, 5, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 5304.97, 0.00, 5304.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(268, 5, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 5304.97, 0.00, 5304.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(269, 5, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 5304.97, 0.00, 5304.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(270, 5, 0, 'Green Fiber Processors', 'Green Fiber Processors', 5304.97, 0.00, 5304.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(271, 5, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 5304.97, 0.00, 5304.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(272, 5, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 5304.97, 0.00, 5304.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(273, 5, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 5304.97, 0.00, 5304.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(274, 5, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(275, 5, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -961.00, 0.00, -961.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(276, 5, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 5304.97, 0.00, 5304.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(277, 5, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 5304.97, 0.00, 5304.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(278, 5, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(279, 5, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(280, 5, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(281, 5, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 5304.97, 0.00, 5304.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(282, 5, 0, 'Floppy Drive', 'Floppy Drive', 5304.97, 0.00, 5304.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(283, 5, 0, 'CD/DVD Drive', 'CD/DVD Drive', 5304.97, 0.00, 5304.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(284, 5, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(285, 5, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(286, 5, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 5304.97, 0.00, 5304.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(287, 5, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 5304.97, 0.00, 5304.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(288, 5, 0, 'Cellphone Board', 'Cellphone Board', 5304.97, 0.00, 5304.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(289, 5, 29, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(290, 5, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(291, 5, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(292, 5, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(293, 5, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(294, 5, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(295, 5, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(296, 5, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(297, 5, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(298, 5, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(299, 5, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(300, 5, 0, 'Deplated CPU', 'Deplated CPU', 5304.97, 0.00, 5304.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(301, 5, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(302, 5, 43, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(303, 5, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 5304.97, 0.00, 5304.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(304, 5, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5304.97, 0.00, 5304.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(305, 5, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(306, 5, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 5304.97, 0.00, 5304.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(307, 5, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(308, 5, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(309, 5, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(310, 5, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(311, 5, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(312, 5, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(313, 5, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 5304.97, 0.00, 5304.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(314, 5, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(315, 5, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(316, 5, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(317, 5, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(318, 5, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(319, 5, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 5304.97, 0.00, 5304.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(320, 5, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 5304.97, 0.00, 5304.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(321, 5, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 1, 0, 0, NULL, 1),
(322, 5, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(323, 5, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 5304.97, 0.00, 5304.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(324, 5, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(325, 5, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 5304.97, 0.00, 5304.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(326, 5, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 5304.97, 0.00, 5304.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(327, 5, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 5304.97, 0.00, 5304.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(328, 5, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 5304.97, 0.00, 5304.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(329, 5, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(330, 5, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(331, 5, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 5304.97, 0.00, 5304.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(332, 5, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(333, 5, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(334, 5, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 5304.97, 0.00, 5304.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(335, 5, 0, 'Laptop Boards', 'Laptop Boards', 5304.97, 0.00, 5304.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(336, 5, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(337, 5, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(338, 5, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(339, 5, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(340, 5, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(341, 5, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(342, 5, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(343, 5, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(344, 5, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(345, 5, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(346, 5, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(347, 5, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(348, 5, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(349, 5, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(350, 5, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(351, 5, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(352, 5, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(353, 5, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(354, 5, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(355, 5, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(356, 5, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(357, 5, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(358, 5, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', -700.00, 0.00, -700.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct27-3-2020` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(359, 5, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(360, 5, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(361, 5, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 8.73, 0.00, 8.73, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(362, 5, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 645.79, 0.00, 645.79, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(363, 5, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(364, 5, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(365, 5, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(366, 5, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(367, 5, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(368, 5, 0, 'Banda', 'Banda', 5304.97, 0.00, 5304.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(369, 5, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 5304.97, 0.00, 5304.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(370, 5, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 5304.97, 0.00, 5304.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(371, 5, 0, 'Whole Computers', 'Whole Computers', 5304.97, 0.00, 5304.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(372, 5, 280, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(373, 5, 0, 'US Hammers', 'US Hammers', 5304.97, 0.00, 5304.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(374, 5, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 5304.97, 0.00, 5304.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(375, 5, 281, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(376, 5, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 5304.97, 0.00, 5304.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(377, 5, 0, 'Chinese Mill Rod Caps', 'Chinese Mill Rod Caps', 5304.97, 0.00, 5304.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(378, 5, 0, 'Chinese Mill Rod Cap Screws', 'Chinese Mill Rod Cap Screws', 5304.97, 0.00, 5304.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(379, 5, 0, 'American Mill Rod', 'American Mill Rod', 5304.97, 0.00, 5304.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(380, 5, 0, 'American Mill Bearings', 'American Mill Bearings', 5304.97, 0.00, 5304.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(381, 5, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(382, 5, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(383, 6, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 5304.97, 0.00, 5304.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1, 0, 0, NULL, 1),
(384, 6, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 5304.97, 0.00, 5304.97, '2_color_intel-pentium.jpg', 0, 1, 0, 0, NULL, 1),
(385, 6, 0, 'x86 Motherboard', 'x86 Motherboard', 5304.97, 0.00, 5304.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1, 0, 0, NULL, 1),
(386, 6, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 5304.97, 0.00, 5304.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1, 0, 0, NULL, 1),
(387, 6, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 5304.97, 0.00, 5304.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1, 0, 0, NULL, 1),
(388, 6, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 5304.97, 0.00, 5304.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1, 0, 0, NULL, 1),
(389, 6, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 5304.97, 0.00, 5304.97, '7_color_images (1).jpg', 0, 1, 0, 0, NULL, 1),
(390, 6, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 5304.97, 0.00, 5304.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1, 0, 0, NULL, 1),
(391, 6, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 5304.97, 0.00, 5304.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1, 0, 0, NULL, 1),
(392, 6, 0, 'Green Fiber Processors', 'Green Fiber Processors', 5304.97, 0.00, 5304.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1, 0, 0, NULL, 1),
(393, 6, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 5304.97, 0.00, 5304.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1, 0, 0, NULL, 1),
(394, 6, 0, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 5304.97, 0.00, 5304.97, '12_color_images (2).jpg', 0, 1, 0, 0, NULL, 1),
(395, 6, 0, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 5304.97, 0.00, 5304.97, '13_color_1737_6.jpg', 0, 1, 0, 0, NULL, 1),
(396, 6, 14, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 927.50, 0.00, 927.50, '14_color_Tulip_494_ATA.jpg', 0, 1, 0, 0, NULL, 1),
(397, 6, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 659.80, 0.00, 659.80, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1, 0, 0, NULL, 1),
(398, 6, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 5304.97, 0.00, 5304.97, '16_color_Foxconn_45CM.jpg', 0, 1, 0, 0, NULL, 1),
(399, 6, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 5304.97, 0.00, 5304.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1, 0, 0, NULL, 1),
(400, 6, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1, 0, 0, NULL, 1),
(401, 6, 19, 'Mid_Grade', 'Mid_Grade', 65.00, 0.00, 65.00, '19_color_bedding_sand.jpg', 0, 1, 0, 0, NULL, 1),
(402, 6, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 1, 0, 0, NULL, 1),
(403, 6, 0, 'Low_Grade', 'Low_Grade', 5304.97, 0.00, 5304.97, '21_color_harddrive1.gif', 0, 1, 0, 0, NULL, 1),
(404, 6, 0, 'High_Grade', 'High_Grade', 5304.97, 0.00, 5304.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1, 0, 0, NULL, 1),
(405, 6, 0, 'High_Grade', 'High_Grade', 5304.97, 0.00, 5304.97, '23_color_38d7.jpg', 0, 1, 0, 0, NULL, 1),
(406, 6, 24, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1, 0, 0, NULL, 1),
(407, 6, 25, 'Mid_Grade', 'Mid_Grade', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(408, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 5304.97, 0.00, 5304.97, '26_color_8885.jpeg', 0, 1, 0, 0, NULL, 1),
(409, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 5304.97, 0.00, 5304.97, '27_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(410, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 5304.97, 0.00, 5304.97, '28_color_downloadcell.jpg', 0, 1, 0, 0, NULL, 1),
(411, 6, 29, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 41.50, 0.00, 41.50, '29_color_tantilum.jpg', 0, 1, 0, 0, NULL, 1),
(412, 6, 30, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 447.74, 0.00, 447.74, '30_color_12_inv_$_1.JPG', 0, 1, 0, 0, NULL, 1),
(413, 6, 32, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 16.50, 994.00, -958.45, '32_color_oscilators.jpg', 0, 1, 0, 0, NULL, 1),
(414, 6, 33, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 1, 0, 0, NULL, 1),
(415, 6, 34, 'Empty', 'Empty', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1, 0, 0, NULL, 1),
(416, 6, 35, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 0, 1, 0, 0, NULL, 1),
(417, 6, 36, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 35.00, 0.00, 35.00, '36_color_14_inv_1490604347436973696850.jpg', 0, 1, 0, 0, NULL, 1),
(418, 6, 37, 'MidRange_Ceramic', 'MidRange_Ceramic', 2061.50, 0.00, 2061.50, '37_color_2_inv_1490602912483463053580.jpg', 0, 1, 0, 0, NULL, 1),
(419, 6, 38, 'LowYeild_Plastic', 'LowYeild_Plastic', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 0, 1, 0, 0, NULL, 1),
(420, 6, 39, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1, 0, 0, NULL, 1),
(421, 6, 40, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 0, 1, 0, 0, NULL, 1),
(422, 6, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 5304.97, 0.00, 5304.97, '41_color_CPU-Deplated.jpg', 0, 1, 0, 0, NULL, 1),
(423, 6, 42, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 1, 0, 0, NULL, 1),
(424, 6, 43, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 0, 1, 0, 0, NULL, 1),
(425, 6, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 5304.97, 0.00, 5304.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 1, 0, 0, NULL, 1),
(426, 6, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 5304.97, 0.00, 5304.97, '46_color_p1050142.jpg', 0, 1, 0, 0, NULL, 1),
(427, 6, 47, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 1, 0, 0, NULL, 1),
(428, 6, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 5304.97, 0.00, 5304.97, '48_color_1IBM.jpg', 0, 1, 0, 0, NULL, 1),
(429, 6, 49, 'Whole Computers', 'Whole Computers', 694.00, 0.00, 694.00, '49_color_1hear.png', 0, 1, 0, 0, NULL, 1),
(430, 6, 355, 'FIBER Bricks', 'FIBER Bricks', 4092.50, 1567.00, 2525.50, '52_color_1s1.jpg', 0, 1, 0, 0, NULL, 1),
(431, 6, 53, 'Copper Pipes', 'Copper Pipes', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 0, 1, 0, 0, NULL, 1),
(432, 6, 54, 'Something Gold', 'Something Gold', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 0, 1, 0, 0, NULL, 1),
(433, 6, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 0.00, 21360.50, '55_color_3s.jpg', 0, 1, 0, 0, NULL, 1),
(434, 6, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 1, 0, 0, NULL, 1),
(435, 6, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 5304.97, 0.00, 5304.97, '57_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(436, 6, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 1, 0, 0, NULL, 1),
(437, 6, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 1, 0, 0, NULL, 1),
(438, 6, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(439, 6, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 1, 0, 0, NULL, 1),
(440, 6, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 1, 0, 0, NULL, 1),
(441, 6, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 5304.97, 0.00, 5304.97, '66_color_ikH1HEN.jpg', 0, 1, 0, 0, NULL, 1),
(442, 6, 0, 'Gold Plated Pins', 'Gold Plated Pins', 5304.97, 0.00, 5304.97, '67_color_IMG_5747.JPG', 0, 1, 0, 0, NULL, 1),
(443, 6, 68, 'Gold Powder', 'Gold Powder', -6.00, 0.00, -6.00, '443_color_Gold Powder.jpg', 0, 1, 0, 0, NULL, 1),
(444, 6, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 1, 0, 0, NULL, 1),
(445, 6, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 5304.97, 0.00, 5304.97, '70_color_IMG_5750.JPG', 0, 1, 0, 0, NULL, 1),
(446, 6, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 1, 0, 0, NULL, 1),
(447, 6, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 5304.97, 0.00, 5304.97, '72_color_download.jpg', 0, 1, 0, 0, NULL, 1),
(448, 6, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 5304.97, 0.00, 5304.97, '73_color_s-l300.jpg', 0, 1, 0, 0, NULL, 1),
(449, 6, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 5304.97, 0.00, 5304.97, '74_color_download (1).jpg', 0, 1, 0, 0, NULL, 1),
(450, 6, 0, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 5304.97, 0.00, 5304.97, '75_color_IMG-20180719-WA0000.jpg', 0, 1, 0, 0, NULL, 1),
(451, 6, 76, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 1, 0, 0, NULL, 1),
(452, 6, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 1, 0, 0, NULL, 1),
(453, 6, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 5304.97, 0.00, 5304.97, '78_color_coppercopper.jpeg', 0, 1, 0, 0, NULL, 1),
(454, 6, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 1, 0, 0, NULL, 1),
(455, 6, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(456, 6, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 5304.97, 0.00, 5304.97, '81_color_REJECT.jpeg', 0, 1, 0, 0, NULL, 1),
(457, 6, 0, 'Dry Ceramic Mud', 'Dry Ceramic Mud', 5304.97, 0.00, 5304.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 1, 0, 0, NULL, 1),
(458, 6, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 1, 0, 0, NULL, 1),
(459, 6, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 1, 0, 0, NULL, 1),
(460, 6, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 1, 0, 0, NULL, 1),
(461, 6, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 1, 0, 0, NULL, 1),
(462, 6, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 1, 0, 0, NULL, 1),
(463, 6, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 1, 0, 0, NULL, 1),
(464, 6, 90, 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 1, 0, 0, NULL, 1),
(465, 6, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 1, 0, 0, NULL, 1),
(466, 6, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 1, 0, 0, NULL, 1),
(467, 6, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 1, 0, 0, NULL, 1),
(468, 6, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 1, 0, 0, NULL, 1),
(469, 6, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 1, 0, 0, NULL, 1),
(470, 6, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 1, 0, 0, NULL, 1),
(471, 6, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 1, 0, 0, NULL, 1),
(472, 6, 98, 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 1, 0, 0, NULL, 1),
(473, 6, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 1, 0, 0, NULL, 1),
(474, 6, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 1, 0, 0, NULL, 1),
(475, 6, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 1, 0, 0, NULL, 1),
(476, 6, 102, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 1, 0, 0, NULL, 1),
(477, 6, 103, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 181.44, 0.00, 181.44, '103_color_stuffe.jpg', 0, 1, 0, 0, NULL, 1),
(478, 6, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 1, 0, 0, NULL, 1),
(479, 6, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 1, 0, 0, NULL, 1),
(480, 6, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 1, 0, 0, NULL, 1),
(481, 6, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 1, 0, 0, NULL, 1),
(482, 6, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 1, 0, 0, NULL, 1),
(483, 6, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 352.99, 0.00, 352.99, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 1, 0, 0, NULL, 1),
(484, 6, 112, 'Mid_Grade', 'Mid_Grade', 374.95, 0.00, 374.95, '112_color_oNDYNAE.jpg', 0, 1, 0, 0, NULL, 1),
(485, 6, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 2286.28, 0.00, 2286.28, '113_color_images.jpg', 0, 1, 0, 0, NULL, 1),
(486, 6, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 1, 0, 0, NULL, 1),
(487, 6, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 1, 0, 0, NULL, 1),
(488, 6, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 1, 0, 0, NULL, 1),
(489, 6, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 1, 0, 0, NULL, 1),
(490, 6, 0, 'Banda', 'Banda', 5304.97, 0.00, 5304.97, '120_inv_banda.jpeg', 0, 1, 0, 0, NULL, 1),
(491, 6, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 5304.97, 0.00, 5304.97, '124_color_soym1-500x500.jpg', 0, 1, 0, 0, NULL, 1),
(492, 6, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 5304.97, 0.00, 5304.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 1, 0, 0, NULL, 1),
(493, 6, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 5304.97, 0.00, 5304.97, '126_color_resize.jpg', 0, 1, 0, 0, NULL, 1),
(494, 6, 0, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 5304.97, 0.00, 5304.97, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0, 1, 0, 0, NULL, 1),
(495, 6, 0, 'US Hammers', 'US Hammers', 5304.97, 0.00, 5304.97, '129_inv_ushammers.jpeg', 0, 1, 0, 0, NULL, 1),
(496, 6, 0, 'Chinese Mill Hammers', 'Chinese Mill Hammers', 5304.97, 0.00, 5304.97, '130_inv_WhatsApp Image 2019-03-05 at 14.28.56.jpeg', 0, 1, 0, 0, NULL, 1),
(497, 6, 356, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 0, 1, 0, 0, NULL, 1),
(498, 6, 0, 'Chinese Mill Rods', 'Chinese Mill Rods', 5304.97, 0.00, 5304.97, '132_inv_WhatsApp Image 2019-03-05 at 14.28.59.jpeg', 0, 1, 0, 0, NULL, 1),
(499, 6, 0, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 5304.97, 0.00, 5304.97, '133_inv_WhatsApp Image 2019-03-05 at 14.29.10.jpeg', 0, 1, 0, 0, NULL, 1),
(500, 6, 0, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 5304.97, 0.00, 5304.97, '134_inv_WhatsApp Image 2019-03-05 at 14.29.20.jpeg', 0, 1, 0, 0, NULL, 1),
(501, 6, 0, 'MidRange_Ceramic', 'MidRange_Ceramic', 5304.97, 0.00, 5304.97, '135_inv_WhatsApp Image 2019-03-05 at 14.40.23.jpeg', 0, 1, 0, 0, NULL, 1),
(502, 6, 0, 'LowYeild_Plastic', 'LowYeild_Plastic', 5304.97, 0.00, 5304.97, '136_inv_WhatsApp Image 2019-03-05 at 14.30.04(2).jpeg', 0, 1, 0, 0, NULL, 1),
(503, 6, 132, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '', 0, 1, 0, 0, NULL, 1),
(504, 6, 285, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 1, 0, 0, NULL, 1),
(627, 7, NULL, 'Nitric Acid', '', 7200.00, 10.00, 7190.00, '627_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(628, 1, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(629, 1, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(630, 1, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(631, 1, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(632, 1, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(633, 1, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(754, 1, 515, 'Mixed CPU', 'Mixed CPU', 1984.48, 0.00, 1984.48, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(755, 1, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(756, 1, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(757, 1, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(758, 1, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(759, 1, 520, '1k Gold Bar', '1k Gold Bar', 861.55, 0.00, 861.55, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(760, 1, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(761, 10, NULL, 'Nitric Acid', 'Nitric Acid', 5000.00, 0.00, 5000.00, '761_inv_download.jpg', 0, 1, 0, 0, NULL, 1),
(762, 1, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(763, 1, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(764, 1, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(765, 1, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(766, 1, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(767, 1, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(768, 1, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(769, 1, 543, 'AMD', 'AMD', 521.64, 250.00, 271.64, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(908, 6, 304, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(909, 5, 229, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(910, 4, 154, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(911, 14, 52, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(912, 12, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 5304.97, 0.00, 5304.97, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(913, 12, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 5304.97, 0.00, 5304.97, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(914, 12, 0, 'x86 Motherboard', 'x86 Motherboard', 5304.97, 0.00, 5304.97, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(915, 12, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 5304.97, 0.00, 5304.97, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(916, 12, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 5304.97, 0.00, 5304.97, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(917, 12, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 5304.97, 0.00, 5304.97, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(918, 12, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 5304.97, 0.00, 5304.97, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(919, 12, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 5304.97, 0.00, 5304.97, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(920, 12, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 5304.97, 0.00, 5304.97, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(921, 12, 0, 'Green Fiber Processors', 'Green Fiber Processors', 5304.97, 0.00, 5304.97, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(922, 12, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 5304.97, 0.00, 5304.97, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(923, 12, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 5304.97, 0.00, 5304.97, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(924, 12, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 5304.97, 0.00, 5304.97, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(925, 12, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(926, 12, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(927, 12, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 5304.97, 0.00, 5304.97, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(928, 12, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 5304.97, 0.00, 5304.97, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(929, 12, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(930, 12, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(931, 12, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(932, 12, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 5304.97, 0.00, 5304.97, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(933, 12, 0, 'Floppy Drive', 'Floppy Drive', 5304.97, 0.00, 5304.97, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(934, 12, 0, 'CD/DVD Drive', 'CD/DVD Drive', 5304.97, 0.00, 5304.97, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(935, 12, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(936, 12, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(937, 12, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 5304.97, 0.00, 5304.97, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(938, 12, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 5304.97, 0.00, 5304.97, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(939, 12, 0, 'Cellphone Board', 'Cellphone Board', 5304.97, 0.00, 5304.97, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(940, 12, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 0.00, 66.50, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(941, 12, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(942, 12, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 994.00, -958.45, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(943, 12, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(944, 12, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(945, 12, 35, 'Copper Powder', 'Copper Powder', 5293.44, 0.00, 5293.44, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(946, 12, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(947, 12, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(948, 12, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(949, 12, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 55.00, 0.00, 55.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(950, 12, 40, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 0.00, 65626.32, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(951, 12, 0, 'Deplated CPU', 'Deplated CPU', 5304.97, 0.00, 5304.97, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(952, 12, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(953, 12, 43, 'GOLD', 'GOLD', 1009.23, 0.00, 1009.23, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(954, 12, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 5304.97, 0.00, 5304.97, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(955, 12, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5304.97, 0.00, 5304.97, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(956, 12, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(957, 12, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 5304.97, 0.00, 5304.97, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(958, 12, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(959, 12, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(960, 12, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(961, 12, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 0.00, 12129.52, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(962, 12, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21460.50, 0.00, 21460.50, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(963, 12, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(964, 12, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 5304.97, 0.00, 5304.97, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(965, 12, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(966, 12, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 5304.97, 0.00, 5304.97, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(967, 12, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(968, 12, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(969, 12, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(970, 12, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 5304.97, 0.00, 5304.97, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(971, 12, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 5304.97, 0.00, 5304.97, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(972, 12, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(973, 12, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(974, 12, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 5304.97, 0.00, 5304.97, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(975, 12, 71, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(976, 12, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 5304.97, 0.00, 5304.97, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(977, 12, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 5304.97, 0.00, 5304.97, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(978, 12, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 5304.97, 0.00, 5304.97, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(979, 12, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 5304.97, 0.00, 5304.97, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(980, 12, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(981, 12, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(982, 12, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 5304.97, 0.00, 5304.97, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(983, 12, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(984, 12, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(985, 12, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 5304.97, 0.00, 5304.97, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(986, 12, 0, 'Laptop Boards', 'Laptop Boards', 5304.97, 0.00, 5304.97, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(987, 12, 84, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(988, 12, 85, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(989, 12, 86, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(990, 12, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(991, 12, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(992, 12, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(993, 12, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(994, 12, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(995, 12, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(996, 12, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(997, 12, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(998, 12, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(999, 12, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1000, 12, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1001, 12, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1002, 12, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1003, 12, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1004, 12, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1005, 12, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1006, 12, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1007, 12, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1008, 12, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1009, 12, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1010, 12, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1011, 12, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1012, 12, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1013, 12, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1014, 12, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1015, 12, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1016, 12, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1017, 12, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1018, 12, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1019, 12, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 5304.97, 0.00, 5304.97, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1020, 12, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 5304.97, 0.00, 5304.97, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1021, 12, 0, 'Whole Computers', 'Whole Computers', 5304.97, 0.00, 5304.97, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1022, 12, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1023, 12, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1024, 12, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1025, 12, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(1026, 12, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(1027, 12, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1028, 12, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1029, 12, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1030, 12, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1031, 12, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1032, 12, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1033, 12, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1034, 12, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1035, 12, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1036, 12, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1037, 12, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(1038, 12, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1039, 12, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1040, 12, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1041, 12, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1042, 12, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1043, 12, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1044, 12, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1045, 12, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1046, 12, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1047, 1, 708, 'Pentium Pro ', 'Pentium Pro ', 951.56, 0.00, 951.56, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1048, 1, 709, 'Pentium 1', 'Pentium 1', 390.55, 0.00, 390.55, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1),
(1428, 11, 544, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', -1.00, 0.00, -1.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1429, 11, 545, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1430, 11, 546, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1431, 11, 547, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1432, 11, 548, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 1875.00, 0.00, 1875.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1433, 11, 549, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 1420.00, 1420.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1434, 11, 550, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1435, 11, 551, 'Tantilum capacitors', 'Tantilum capacitors', 0.00, 0.00, 0.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1436, 11, 552, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1437, 11, 553, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1438, 11, 554, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 21990.00, 21990.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1439, 11, 555, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1440, 11, 556, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1441, 11, 557, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1442, 11, 558, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1443, 11, 559, 'Metal Parts', 'Metal Parts', 8190.00, 0.00, 8190.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1444, 11, 560, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 960.00, 0.00, 960.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(1445, 11, 561, 'FiberGlass Resin', 'FiberGlass Resin', 400318.69, 22600.00, 377718.69, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(1446, 11, 562, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1447, 11, 563, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(1448, 11, 564, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1449, 11, 565, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1450, 11, 566, 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 162335.00, 75411.00, 84562.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(1451, 11, 567, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 658.00, 0.00, 658.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1452, 11, 568, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1453, 11, 569, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1454, 11, 570, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1455, 11, 571, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1456, 11, 572, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1457, 11, 573, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1458, 11, 574, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1459, 11, 575, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1460, 11, 576, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1461, 11, 577, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1462, 11, 578, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1463, 11, 579, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1464, 11, 580, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1465, 11, 581, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1466, 11, 582, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1467, 11, 583, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1468, 11, 584, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1469, 11, 585, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1470, 11, 586, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1471, 11, 587, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1472, 11, 588, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(1473, 11, 589, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct27-3-2020` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1474, 11, 590, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1475, 11, 591, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1476, 11, 592, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1477, 11, 593, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1478, 11, 594, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1479, 11, 595, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1480, 11, 596, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1481, 11, 597, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1482, 11, 598, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1483, 11, 599, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 326813.00, 315783.00, 11030.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1484, 11, 600, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 265159.94, 260977.95, 4182.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1485, 11, 601, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 32548.30, 32548.30, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1486, 11, 602, 'Empty', 'Empty', 1978.65, 1978.65, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1487, 11, 603, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1488, 11, 604, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1489, 11, 605, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1490, 11, 606, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1491, 11, 607, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1492, 11, 608, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1493, 11, 609, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1494, 11, 610, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1495, 11, 611, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1496, 11, 612, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1497, 11, 613, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1498, 11, 614, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1499, 11, 615, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1500, 11, 616, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1501, 11, 617, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1502, 11, 618, 'Copper Pipes', 'Copper Pipes', 0.00, 0.00, 0.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1503, 11, 619, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1504, 11, 620, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1505, 11, 621, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1506, 11, 622, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1507, 11, 623, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1508, 11, 624, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 8190.00, 8190.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1509, 11, 625, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1510, 7, 357, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 10.00, 0.00, 10.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1511, 7, 358, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 260.07, 125.00, 135.07, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1512, 7, 359, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1513, 7, 360, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1514, 7, 361, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 8.73, 0.00, 8.73, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1515, 7, 362, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 5576.69, 425.79, 5150.90, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1516, 7, 363, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1517, 7, 364, 'Tantilum capacitors', 'Tantilum capacitors', 40.00, 6.00, 34.00, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1518, 7, 365, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1519, 7, 366, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 0.00, 0.00, 0.00, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1520, 7, 367, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 839.17, 18.00, 821.17, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1521, 7, 368, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1522, 7, 369, 'Copper Powder', 'Copper Powder', 65.00, 0.00, 65.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1523, 7, 370, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 0.00, 0.00, 0.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1524, 7, 371, 'Processor Caps', 'Processor Caps', 0.00, 0.00, 0.00, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1525, 7, 372, 'Metal Parts', 'Metal Parts', 0.00, 0.00, 0.00, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1526, 7, 373, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 1, 0, 0, 0, NULL, 1),
(1527, 7, 374, 'FiberGlass Resin', 'FiberGlass Resin', 121.00, 0.00, 121.00, '40_color_Aluminium Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1528, 7, 375, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1529, 7, 376, 'Karat Gold Alloy', 'Karat Gold Alloy', 0.00, 0.00, 0.00, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 1, 0, 0, 0, NULL, 1),
(1530, 7, 377, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1531, 7, 378, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1532, 7, 379, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', 50.00, 250.00, -200.00, '52_color_1s1.jpg', 1, 0, 0, 0, NULL, 1),
(1533, 7, 380, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 30.00, 500.00, -470.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1534, 7, 381, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 67.00, 50.00, 17.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1535, 7, 382, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1536, 7, 383, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1537, 7, 384, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1538, 7, 385, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1539, 7, 386, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1540, 7, 387, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1541, 7, 388, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1542, 7, 389, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1543, 7, 390, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1544, 7, 391, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1545, 7, 392, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1546, 7, 393, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1547, 7, 394, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 685.38, 623.38, 62.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1548, 7, 395, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 79.28, 0.00, 79.28, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1549, 7, 396, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 200.00, 0.00, 200.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1550, 7, 397, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1551, 7, 398, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1552, 7, 399, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1553, 7, 400, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1554, 7, 401, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(1555, 7, 402, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(1556, 7, 403, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1557, 7, 404, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1558, 7, 405, 'High_Grade', 'High_Grade', 336.50, 0.00, 336.50, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1559, 7, 406, 'Low_Grade', 'Low_Grade', 9.76, 0.00, 9.76, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1560, 7, 407, 'Mid_Grade', 'Mid_Grade', 2.91, 0.00, 2.91, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1561, 7, 408, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1562, 7, 409, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1563, 7, 410, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1564, 7, 411, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1565, 7, 412, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1566, 7, 413, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1567, 7, 414, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1568, 7, 415, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1569, 7, 416, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1570, 7, 417, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1571, 7, 418, 'MidRange_Ceramic', 'MidRange_Ceramic', 22.00, 0.00, 22.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1572, 7, 419, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1573, 7, 420, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 525.50, 0.00, 525.50, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1574, 7, 421, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 338.26, 0.00, 338.26, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1575, 7, 422, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 319.94, 0.00, 319.94, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1576, 7, 423, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 422.88, 0.00, 422.88, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1577, 7, 424, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 329.72, 0.00, 329.72, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1578, 7, 425, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1579, 7, 426, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 141.07, 175.07, -34.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1580, 7, 427, '99.99 Copper Sheet', '99.99 Copper Sheet', 45.00, 45.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1581, 7, 428, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 50.00, 50.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1582, 7, 429, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1583, 7, 430, 'FIBER Bricks', 'FIBER Bricks', 0.00, 0.00, 0.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1584, 7, 431, 'Copper Pipes', 'Copper Pipes', 45.00, 0.00, 45.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1585, 7, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1586, 7, 526, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1587, 7, 527, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1588, 7, 528, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1589, 7, 529, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1590, 7, 537, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 118.40, 0.00, 118.40, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1591, 7, 538, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 81.60, 0.00, 81.60, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1592, 7, 539, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1665, 10, 440, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', 22.41, 0.00, 22.41, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1666, 10, 441, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1667, 10, 442, 'Gold Plated Pins', 'Gold Plated Pins', 0.27, 0.00, 0.27, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1668, 10, 443, 'Gold Powder', 'Gold Powder', 0.00, 0.00, 0.00, '443_color_Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1669, 10, 444, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 1, 0, 0, 0, NULL, 1),
(1670, 10, 445, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1671, 10, 446, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1672, 10, 450, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1673, 10, 451, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1674, 10, 457, 'Dry Ceramic Mud', 'Dry Ceramic Mud', 0.00, 0.00, 0.00, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(1675, 10, 458, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', 0.00, 0.00, 0.00, '42_color_tv-nometal.jpeg', 0, 0, 0, 0, NULL, 1),
(1676, 10, 460, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1677, 10, 461, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 0.00, 0.00, 0.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1678, 10, 463, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 0.00, 0.00, 0.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1679, 10, 464, 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 0.00, 0.00, 0.00, '54_color_2s.jpg', 0, 0, 0, 0, NULL, 1),
(1680, 10, 466, 'Back Plate Connector Card', 'Back Plate Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1681, 10, 467, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5746.JPG', 0, 0, 0, 0, NULL, 1),
(1682, 10, 471, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1683, 10, 472, 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 14.00, 0.00, 14.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 0, 0, 0, 0, NULL, 1),
(1684, 10, 473, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1685, 10, 474, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1686, 10, 475, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1687, 10, 476, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1688, 10, 477, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1689, 10, 478, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1690, 10, 479, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1691, 10, 480, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1692, 10, 481, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1693, 10, 482, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1694, 10, 483, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1695, 10, 484, 'Mid_Grade', 'Mid_Grade', 90.72, 0.00, 90.72, '91_color_7.jpg', 0, 0, 0, 0, NULL, 0),
(1696, 10, 485, 'High_Grade', 'High_Grade', 453.59, 0.00, 453.59, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 0),
(1697, 10, 486, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1698, 10, 487, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1699, 10, 488, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1700, 10, 489, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1701, 10, 490, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1702, 10, 491, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1703, 10, 492, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1704, 10, 493, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1705, 10, 494, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1706, 10, 495, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1707, 10, 496, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1708, 10, 497, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1709, 10, 498, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1710, 10, 499, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 141.97, 0.00, 141.97, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1711, 10, 500, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 352.08, 0.00, 352.08, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1712, 10, 501, 'MidRange_Ceramic', 'MidRange_Ceramic', 25.85, 0.00, 25.85, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1713, 10, 502, 'LowYeild_Plastic', 'LowYeild_Plastic', 25.40, 0.00, 25.40, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 0),
(1714, 10, 503, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 0.00, 0.00, 0.00, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 0, 0, 0, 0, NULL, 1),
(1715, 10, 504, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1716, 10, 505, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1717, 10, 506, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1718, 10, 507, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1719, 10, 508, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1720, 10, 509, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1721, 10, 512, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1722, 10, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1723, 10, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1724, 10, 517, 'Waste Liquid', 'Waste Liquid', 7.92, 0.00, 7.92, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1725, 10, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1726, 10, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1727, 10, 520, '1kg Gold Bar', '1kg Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 1, 0, 0, 0, NULL, 1),
(1728, 10, 530, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1729, 10, 531, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '523_color_P90521-123049.jpg', 0, 0, 0, 0, NULL, 1),
(1730, 10, 532, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1731, 10, 533, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1732, 10, 540, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1733, 10, 541, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1734, 10, 542, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1735, 10, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1736, 10, 708, 'Pentium Pro ', 'Pentium Pro ', 0.00, 0.00, 0.00, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1737, 10, 709, 'Pentium 1', 'Pentium 1', 0.00, 0.00, 0.00, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1),
(1738, 1, 710, 'Insulation', 'Insulation', 0.00, 0.00, 0.00, '710_color_pl19511332-heating_insulation_refrigerator_vacuum_insulated_panel_for_beverage_coolers.jpg', 1, 0, 0, 0, NULL, 1),
(1739, 1, 711, 'Refrigerant (Freon)', 'Refrigerant (Freon)', 0.00, 0.00, 0.00, '711_color_Refrigerant-r22.jpg', 1, 0, 0, 0, NULL, 1),
(1740, 1, 712, 'Refrigerator', 'Refrigerator', 0.00, 0.00, 0.00, '712_color_csm_anlagen_maschine_rpww_04_123e67368a.jpg', 0, 0, 0, 0, NULL, 1),
(1741, 1, 713, 'Stoves', 'Stoves', 7.80, 45.60, -37.80, '', 0, 0, 0, 0, NULL, 1),
(1742, 1, 714, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1743, 1, 715, 'Gold Legged IC', 'Gold Legged IC', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1744, 1, 713, 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 0.00, 30.60, -23.80, '713_color_dust.jpg', 0, 0, 0, 0, NULL, 1),
(1745, 1, 714, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1746, 2, 715, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1747, 2, 715, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1748, 3, 716, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1749, 3, 716, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1750, 4, 717, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1751, 4, 717, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1752, 5, 718, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1753, 5, 718, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1754, 6, 719, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1755, 6, 719, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1756, 7, 720, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1757, 7, 720, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1758, 8, 721, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1759, 8, 721, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1760, 9, 722, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1761, 9, 722, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1762, 10, 723, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1763, 10, 723, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1764, 11, 724, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1765, 11, 724, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1766, 12, 725, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1767, 12, 725, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1768, 1, 726, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1769, 2, 727, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1770, 3, 728, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1771, 4, 729, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1772, 5, 730, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1773, 6, 731, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1774, 7, 732, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1775, 8, 733, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1776, 9, 734, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1777, 10, 735, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1778, 11, 736, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1779, 12, 737, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1780, 1, 738, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1781, 2, 739, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1782, 3, 740, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1783, 4, 741, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1784, 5, 742, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1785, 6, 743, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1786, 7, 744, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1787, 8, 745, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1788, 9, 746, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1789, 10, 747, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1790, 11, 748, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1791, 12, 749, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1792, 14, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 0, 0, NULL, 1),
(1793, 14, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 0, 0, NULL, 1),
(1794, 14, 0, 'x86 Motherboard', 'x86 Motherboard', 0.00, 0.00, 0.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 0, 0, NULL, 1),
(1795, 14, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.00, 0.00, 0.00, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 0, 0, NULL, 1),
(1796, 14, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 0, 0, NULL, 1),
(1797, 14, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 0, 0, NULL, 1),
(1798, 14, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 0.00, 0.00, 0.00, '7_color_images (1).jpg', 0, 0, 0, 0, NULL, 1),
(1799, 14, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.00, 0.00, 0.00, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 0, 0, NULL, 1),
(1800, 14, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 0, 0, NULL, 1),
(1801, 14, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.00, 0.00, 0.00, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 0, 0, NULL, 1),
(1802, 14, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 0, 0, NULL, 1),
(1803, 14, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 0, 0, NULL, 1),
(1804, 14, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 0.00, 0.00, 0.00, '13_color_1737_6.jpg', 0, 0, 0, 0, NULL, 1),
(1805, 14, 14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 0.00, 0.00, 0.00, '14_color_Tulip_494_ATA.jpg', 0, 0, 0, 0, NULL, 1),
(1806, 14, 15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', -973.00, 0.00, -973.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1807, 14, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 0, 0, 0, NULL, 1),
(1808, 14, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 0.00, 0.00, 0.00, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 0, 0, NULL, 1),
(1809, 14, 18, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 0, 0, NULL, 1),
(1810, 14, 19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 0, 0, NULL, 1),
(1811, 14, 20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 0.00, 0.00, 0.00, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 0, 0, NULL, 1),
(1812, 14, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 0, 0, NULL, 1),
(1813, 14, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 0, 0, NULL, 1),
(1814, 14, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 0, 0, NULL, 1),
(1815, 14, 24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 0, 0, NULL, 1),
(1816, 14, 25, 'HDD Circuit Boards', 'HDD Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1817, 14, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 0.00, 0.00, 0.00, '26_color_8885.jpeg', 0, 0, 0, 0, NULL, 1),
(1818, 14, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 0.00, 0.00, 0.00, '27_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1819, 14, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 0, 0, NULL, 1),
(1820, 14, 29, 'Tantilum capacitors', 'Tantilum capacitors', 66.50, 0.00, 66.50, '29_color_tantilum.jpg', 1, 0, 0, 0, NULL, 1),
(1821, 14, 30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 0, 0, NULL, 1),
(1822, 14, 32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 35.55, 994.00, -958.45, '32_color_oscilators.jpg', 1, 0, 0, 0, NULL, 1),
(1823, 14, 33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1824, 14, 34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 0, 0, NULL, 1),
(1825, 14, 35, 'Copper Powder', 'Copper Powder', 0.00, 0.00, 0.00, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 0, 0, NULL, 1),
(1826, 14, 36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 0, 0, NULL, 1),
(1827, 14, 37, 'Processor Caps', 'Processor Caps', 1974.50, 0.00, 1974.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 0, 0, NULL, 1),
(1828, 14, 38, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 0, 0, NULL, 1),
(1829, 14, 39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 0, 0, NULL, 1),
(1830, 14, 40, 'FiberGlass Resin', 'FiberGlass Resin', 0.00, 0.00, 0.00, '40_color_Aluminium Powder.jpg', 1, 0, 0, 0, NULL, 1),
(1831, 14, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 0, 0, NULL, 1),
(1832, 14, 42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 0.00, 0.00, 0.00, '42_color_thisine.jpg', 0, 0, 0, 0, NULL, 1),
(1833, 14, 43, 'GOLD', 'GOLD', 1009.23, 0.00, 1009.23, '43_color_Gold-Kilobar-1.jpg', 1, 0, 0, 0, NULL, 1),
(1834, 14, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 0, 0, NULL, 1),
(1835, 14, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 0.00, 0.00, 0.00, '46_color_p1050142.jpg', 0, 0, 0, 0, NULL, 1),
(1836, 14, 47, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 0, 0, NULL, 1),
(1837, 14, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 0.00, 0.00, 0.00, '48_color_1IBM.jpg', 0, 0, 0, 0, NULL, 1),
(1838, 14, 49, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 0.00, 694.00, '49_color_1hear.png', 1, 0, 0, 0, NULL, 1),
(1839, 14, 52, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 0.00, 0.00, 0.00, '52_color_1s1.jpg', 0, 0, 0, 0, NULL, 1),
(1840, 14, 53, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 0.00, 1087.00, '53_color_1s.jpg', 1, 0, 0, 0, NULL, 1),
(1841, 14, 54, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 0.00, 0.00, 0.00, '54_color_2s.jpg', 1, 0, 0, 0, NULL, 1),
(1842, 14, 55, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 0.00, 0.00, 0.00, '55_color_3s.jpg', 1, 0, 0, 0, NULL, 1),
(1843, 14, 56, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 0, 0, NULL, 1),
(1844, 14, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1845, 14, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 0, 0, NULL, 1),
(1846, 14, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 0, 0, NULL, 1),
(1847, 14, 63, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1848, 14, 64, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 0, 0, NULL, 1),
(1849, 14, 65, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 0, 0, NULL, 1),
(1850, 14, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 0, 0, 0, NULL, 1),
(1851, 14, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 0, 0, NULL, 1),
(1852, 14, 68, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 0, 0, NULL, 1),
(1853, 14, 69, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 0.00, 0.00, 0.00, '69_color_IMG_5758.JPG', 0, 0, 0, 0, NULL, 1),
(1854, 14, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 0.00, 0.00, 0.00, '70_color_IMG_5750.JPG', 0, 0, 0, 0, NULL, 1),
(1855, 14, 71, 'Crumble / Pins', 'Crumble / Pins', 0.00, 0.00, 0.00, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 0, 0, NULL, 1),
(1856, 14, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 0, 0, NULL, 1),
(1857, 14, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 0, 0, NULL, 1),
(1858, 14, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 0, 0, NULL, 1),
(1859, 14, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 0, 0, NULL, 1),
(1860, 14, 76, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 0.00, 0.00, 0.00, '76_color_tv-metal.jpeg', 0, 0, 0, 0, NULL, 1),
(1861, 14, 77, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 0.00, 0.00, 0.00, '77_color_heavy.jpeg', 0, 0, 0, 0, NULL, 1),
(1862, 14, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 0.00, 0.00, 0.00, '78_color_coppercopper.jpeg', 0, 0, 0, 0, NULL, 1),
(1863, 14, 79, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 0.00, 0.00, 0.00, '79_color_sat-routers.jpeg', 0, 0, 0, 0, NULL, 1),
(1864, 14, 80, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 0.00, 0.00, 0.00, '80_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1865, 14, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 0.00, 0.00, 0.00, '81_color_REJECT.jpeg', 0, 0, 0, 0, NULL, 1),
(1866, 14, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 0, 0, NULL, 1),
(1867, 14, 84, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 0, 0, NULL, 1),
(1868, 14, 85, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 0, 0, NULL, 1),
(1869, 14, 86, 'Low_Yield', 'Low_Yield', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 0, 0, NULL, 1),
(1870, 14, 87, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 0, 0, NULL, 1),
(1871, 14, 88, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 0, 0, NULL, 1),
(1872, 14, 89, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 0, 0, NULL, 1),
(1873, 14, 90, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 0, 0, NULL, 1),
(1874, 14, 91, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 0, 0, NULL, 1),
(1875, 14, 92, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 0, 0, NULL, 1),
(1876, 14, 93, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 0, 0, NULL, 1),
(1877, 14, 94, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 0, 0, NULL, 1),
(1878, 14, 95, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 0, 0, NULL, 1),
(1879, 14, 96, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 0, 0, NULL, 1),
(1880, 14, 97, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 0, 0, NULL, 1),
(1881, 14, 98, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 0, 0, NULL, 1),
(1882, 14, 99, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 0, 0, NULL, 1),
(1883, 14, 100, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 0, 0, NULL, 1),
(1884, 14, 101, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 0, 0, NULL, 1),
(1885, 14, 102, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 0, 0, NULL, 1),
(1886, 14, 103, 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 0, 0, NULL, 1),
(1887, 14, 104, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 0, 0, NULL, 1),
(1888, 14, 105, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 0, 0, NULL, 1),
(1889, 14, 106, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 0, 0, NULL, 1),
(1890, 14, 107, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 0, 0, NULL, 1),
(1891, 14, 108, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 0, 0, NULL, 1),
(1892, 14, 109, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 0, 0, NULL, 1),
(1893, 14, 112, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 0, 0, NULL, 1),
(1894, 14, 113, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1895, 14, 114, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 0, 0, NULL, 1),
(1896, 14, 115, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 0, 0, NULL, 1),
(1897, 14, 116, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 0, 0, NULL, 1),
(1898, 14, 117, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 0, 0, NULL, 1),
(1899, 14, 0, '99.99 Copper Sheet', '99.99 Copper Sheet', 0.00, 0.00, 0.00, '124_color_soym1-500x500.jpg', 0, 0, 0, 0, NULL, 1),
(1900, 14, 0, 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 0.00, 0.00, 0.00, '125_color_copper-anodes-1512122324-3483179.jpeg', 0, 0, 0, 0, NULL, 1),
(1901, 14, 0, 'Whole Computers', 'Whole Computers', 0.00, 0.00, 0.00, '126_color_resize.jpg', 0, 0, 0, 0, NULL, 1),
(1902, 14, 127, 'FIBER Bricks', 'FIBER Bricks', 645.00, 0.00, 645.00, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 1, 0, 0, 0, NULL, 1),
(1903, 14, 131, 'Copper Pipes', 'Copper Pipes', 225.00, 0.00, 225.00, '131_color_CopperSmall.jpg', 1, 0, 0, 0, NULL, 1),
(1904, 14, 132, 'Test', 'Test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1905, 14, 285, 'Boards', 'Boards', 0.00, 0.00, 0.00, '285_color_mainscreenboss.png', 0, 0, 0, 0, NULL, 1),
(1906, 14, 432, 'Something Gold', 'Something Gold', 0.00, 0.00, 0.00, '432_color_668091-ewaste-040418.jpg', 0, 0, 0, 0, NULL, 1),
(1907, 14, 433, 'FinalTest', 'FinalTest', 0.00, 0.00, 0.00, '433_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1),
(1908, 14, 434, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1909, 14, 437, 'malikdemo', 'malikdemo', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1910, 14, 438, 'Yummy', 'Yummy', 0.00, 0.00, 0.00, '438_color_grreencpus.jpg', 0, 0, 0, 0, NULL, 1);
INSERT INTO `inventoryproduct27-3-2020` (`id`, `userid`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `reorder`, `autoemail`, `reorderemail`, `status`) VALUES
(1911, 14, 439, 'Sale Item Adding', 'Sale Item Adding', 0.00, 450.00, -450.00, '439_color_668091-ewaste-040418.jpg', 1, 0, 0, 0, NULL, 1),
(1912, 14, 515, 'Mixed CPU', 'Mixed CPU', 0.00, 0.00, 0.00, '515_color_IMG_2092.JPG', 0, 0, 0, 0, NULL, 1),
(1913, 14, 516, 'Dissolved Gold Solution', 'Dissolved Gold Solution', 0.00, 0.00, 0.00, '516_color_Dissolved Gold Solution.jpg', 0, 0, 0, 0, NULL, 1),
(1914, 14, 517, 'Waste Liquid', 'Waste Liquid', 0.00, 0.00, 0.00, '517_color_Waste Liquid.jpg', 0, 0, 0, 0, NULL, 1),
(1915, 14, 518, 'Refined Gold for Melting', 'Refined Gold for Melting', 0.00, 0.00, 0.00, '518_color_Refined Gold Powder.jpg', 0, 0, 0, 0, NULL, 1),
(1916, 14, 519, 'Melted Gold', 'Melted Gold', 0.00, 0.00, 0.00, '519_color_Melted Gold.jpg', 0, 0, 0, 0, NULL, 1),
(1917, 14, 520, '1k Gold Bar', '1k Gold Bar', 0.00, 0.00, 0.00, '520_color_Gold Bar.jpg', 0, 0, 0, 0, NULL, 1),
(1918, 14, 521, 'TEST ', 'TEST ', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1919, 14, 522, 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 0.00, 0.00, 0.00, '522_color_P90521-135739.jpg', 0, 0, 0, 0, NULL, 1),
(1920, 14, 523, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1921, 14, 524, 'Low_Quality_PMs', 'Low_Quality_PMs', 0.00, 0.00, 0.00, '524_color_P90522-171952.jpg', 0, 0, 0, 0, NULL, 1),
(1922, 14, 525, 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 0.00, 0.00, 0.00, '525_color_P90521-122733.jpg', 0, 0, 0, 0, NULL, 1),
(1923, 14, 534, 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 0.00, 0.00, 0.00, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 0, 0, 0, 0, NULL, 1),
(1924, 14, 535, 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 0.00, 0.00, 0.00, '535_color_circuit-boards.jpg', 0, 0, 0, 0, NULL, 1),
(1925, 14, 536, 'High_End_CRTs', 'High_End_CRTs', 0.00, 0.00, 0.00, '536_color_images.jpg', 0, 0, 0, 0, NULL, 1),
(1926, 14, 543, 'AMD', 'AMD', 0.00, 0.00, 0.00, '543_color_bfc2.jpg', 0, 0, 0, 0, NULL, 1),
(1927, 14, 708, 'Pentium Pro ', 'Pentium Pro ', 0.00, 0.00, 0.00, '708_color_IMG_0956.JPG', 0, 0, 0, 0, NULL, 1),
(1928, 14, 709, 'Pentium 1', 'Pentium 1', 0.00, 0.00, 0.00, '709_color_IMG_0957 2.JPG', 0, 0, 0, 0, NULL, 1),
(1929, 14, 710, 'Insulation', 'Insulation', 0.00, 0.00, 0.00, '710_color_pl19511332-heating_insulation_refrigerator_vacuum_insulated_panel_for_beverage_coolers.jpg', 1, 0, 0, 0, NULL, 1),
(1930, 14, 711, 'Refrigerant (Freon)', 'Refrigerant (Freon)', 0.00, 0.00, 0.00, '711_color_Refrigerant-r22.jpg', 1, 0, 0, 0, NULL, 1),
(1931, 14, 712, 'Refrigerator', 'Refrigerator', 0.00, 0.00, 0.00, '712_color_csm_anlagen_maschine_rpww_04_123e67368a.jpg', 0, 0, 0, 0, NULL, 1),
(1932, 14, 713, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1933, 14, 714, 'Stoves', 'Stoves', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1934, 14, 715, 'Gold Legged IC', 'Gold Legged IC', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1935, 14, 713, 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 0.00, 0.00, 0.00, '713_color_dust.jpg', 0, 0, 0, 0, NULL, 1),
(1936, 14, 714, 'UltraHD_HardCoat', 'UltraHD_HardCoat', 0.00, 0.00, 0.00, '714_color_IMG-20190612-WA0016.jpeg', 0, 0, 0, 0, NULL, 1),
(1937, 14, 726, 'LowYield_Metal', 'LowYield_Metal', 0.00, 0.00, 0.00, '726_color_123.png', 0, 0, 0, 0, NULL, 1),
(1938, 14, 738, 'Ultra_High_Grade', 'Ultra_High_Grade', 0.00, 0.00, 0.00, '738_color_234.png', 0, 0, 0, 0, NULL, 1),
(1939, 1, 835, 'Analog Electric Meters', 'Analog Electric Meters', 321111.00, 0.00, 321111.00, '835_color_cuz.jpeg', 0, 0, 0, 0, NULL, 1),
(1940, 1, 836, 'Digital Electric Meter', 'Digital Electric Meter', 0.00, 0.00, 0.00, '836_color_cuz2.jpeg', 0, 0, 0, 0, NULL, 1),
(1941, 1, 837, 'Mixed Small Appliances', 'Mixed Small Appliances', 0.00, 0.00, 0.00, '837_color_mixedappliances.jpeg', 0, 0, 0, 0, NULL, 1),
(1942, 1, 838, 'Developer test', 'Developer test', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1943, 1, 839, 'Developer test2', 'Developer test2', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1944, 1, 840, 'Therefore Change THis', 'Therefore Change THis', 0.00, 0.00, 0.00, '', 0, 0, 0, 0, NULL, 1),
(1945, 1, 841, 'Whole Computers / Servers', 'Whole Computers / Servers', 1375.00, 0.00, 1375.00, '841_color_unnamed.jpg', 0, 0, 0, 0, NULL, 1),
(1946, 1, 842, 'Large Printers', 'Large Printers', 0.00, 0.00, 0.00, '842_color_356_large_pile_pcb.jpg', 0, 0, 0, 0, NULL, 1),
(1947, 1, 843, 'Printers - Assorted', 'Printers - Assorted', 58700.00, 27200.00, 31500.00, '843_color_Printer.png', 0, 0, 0, 0, NULL, 1),
(1948, 1, 844, 'Keyboard (w/ cable)', 'Keyboard (w/ cable)', 2000.00, 1800.00, 200.00, '844_color_Keyboard (plugged).png', 0, 0, 0, 0, NULL, 1),
(1949, 1, 845, 'AC Adaptor Plug', 'AC Adaptor Plug', 1000.00, 0.00, 1000.00, '845_color_AC Adaptor Plug (no cable).png', 0, 0, 0, 0, NULL, 1),
(1950, 1, 846, 'HDD - Complete', 'HDD - Complete', 450.00, 0.00, 450.00, '846_color_HDD.png', 0, 0, 0, 0, NULL, 1),
(1951, 1, 847, 'LED / LCD Monitor', 'LED / LCD Monitor', 2260.00, 0.00, 2260.00, '847_color_LCD Monitor.png', 0, 0, 0, 0, NULL, 1),
(1952, 1, 848, 'Shredded eWaste', 'Shredded eWaste', 2500.00, 0.00, 2500.00, '848_color_Shredded HDD.png', 0, 0, 0, 0, NULL, 1),
(1953, 1, 849, 'Small Domestic Appliances', 'Small Domestic Appliances', 4305.00, 0.00, 4305.00, '849_color_Small Domestic Appliances.webp', 0, 0, 0, 0, NULL, 1),
(1954, 1, 850, 'Small Medical Devices', 'Small Medical Devices', 0.00, 0.00, 0.00, '850_color_medsma.jpeg', 0, 0, 0, 0, NULL, 1),
(1955, 1, 851, 'Computer Fan', 'Computer Fan', 200.00, 0.00, 200.00, '851_color_Computer Fan.png', 0, 0, 0, 0, NULL, 1),
(1956, 1, 852, 'Toner Powder', 'Toner Powder', 600.00, 0.00, 600.00, '852_color_toner1.jpg', 1, 0, 0, 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproductdetails`
--

CREATE TABLE `inventoryproductdetails` (
  `id` int(11) NOT NULL,
  `inventoryproductid` int(11) DEFAULT NULL,
  `quantity` float(13,2) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `update_user` int(11) DEFAULT NULL,
  `update_date` date DEFAULT NULL,
  `processcompleteid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproductdetails`
--

INSERT INTO `inventoryproductdetails` (`id`, `inventoryproductid`, `quantity`, `baskets`, `image`, `userid`, `sysdate`, `update_user`, `update_date`, `processcompleteid`, `status`) VALUES
(1, 38, 1.00, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 18, 1),
(2, 32, 0.50, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 18, 1),
(3, 38, 2.00, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 17, 1),
(4, 29, 0.50, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 17, 1),
(5, 32, 1.00, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 19, 1),
(6, 35, 25.00, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 20, 1),
(7, 40, 57.00, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 20, 1),
(8, 0, 0.02, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 21, 1),
(9, 40, 8.47, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 21, 1),
(10, 0, 0.05, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 22, 1),
(11, 38, 0.45, 0, '', 8, '2017-04-21', NULL, '0000-00-00', 22, 1),
(12, 35, 251.50, 0, '', 5, '2017-05-17', NULL, '0000-00-00', 23, 1),
(13, 40, 1548.50, 0, '', 5, '2017-05-17', NULL, '0000-00-00', 23, 1),
(14, 35, 100.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(15, 35, 100.00, 2, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(16, 35, 100.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(17, 35, 818.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(18, 35, 1254.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(19, 35, 2.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(20, 35, 1.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(21, 35, 1.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(22, 35, 1.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(23, 35, 1.00, 0, NULL, 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(24, 35, 918.00, 0, '72_pcd_24203762_2033373626877851_955908829_n.jpg', 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(25, 35, 1254.00, 0, '73_pcd_material-product-pfane.jpg', 5, '2018-02-10', NULL, '0000-00-00', 26, 1),
(26, 35, 1945.00, 6, '74_pcd_WhatsApp Image 2017-09-12 at 10.09.49 PM.jpeg', 5, '2018-02-14', NULL, '0000-00-00', 26, 1),
(27, 35, 200.00, 0, NULL, 8, '2018-02-15', NULL, '0000-00-00', 28, 1),
(28, 40, 157.00, 0, NULL, 8, '2018-02-15', NULL, '0000-00-00', 28, 1),
(29, 37, 4.50, 0, NULL, 5, '2018-02-21', NULL, '0000-00-00', 32, 1),
(30, 46, 20.00, 1, '30_invdetails_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, NULL, 1),
(31, 60, 2.00, 1, '31_invdetails_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, NULL, 1),
(32, 54, 3100.00, 0, '32_pcd_material-product-pfane.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(33, 54, 100.00, 0, '33_pcd_material-product-pfane.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(34, 54, 1.00, 0, '34_pcd_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(35, 53, 5.00, 0, '35_pcd_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(36, 54, 200.00, 0, '36_pcd_material-product-pfane.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(37, 53, 5.00, 0, NULL, NULL, NULL, 5, '2018-07-04', 70, NULL),
(38, 53, 5.00, 0, '38_pcd_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(39, 53, 5.00, 0, '39_pcd_Basmati-Rice-1.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(40, 54, 3000.00, 0, '40_pcd_material-product-pfane.jpg', 5, '2018-07-04', NULL, NULL, 70, 1),
(41, 40, 3000.00, 0, '41_pcd_1anumber3.jpeg', 5, '2018-07-04', NULL, NULL, 70, 1),
(42, 70, 1.00, 0, NULL, 5, '2018-07-05', NULL, NULL, NULL, 1),
(43, 46, -40.00, 0, NULL, 5, '2018-07-05', NULL, NULL, NULL, 1),
(44, 27, 4.50, 1, '44_invdetails_WhatsApp Image 2018-07-04 at 15.43.33.jpeg', 5, '2018-07-05', NULL, NULL, NULL, 1),
(45, 71, 96.00, 2, '45_invdetails_WhatsApp Image 2018-07-04 at 15.43.35(3).jpeg', 5, '2018-07-05', NULL, NULL, NULL, 1),
(46, 43, 0.25, 0, '46_pcd_dalecard.png', 5, '2018-07-05', NULL, NULL, 73, 1),
(47, 40, 6.75, 0, '47_pcd_1anumber3.jpeg', 5, '2018-07-05', NULL, NULL, 73, 1),
(48, 53, 120.00, 0, '48_pcd_material-product-pfane.jpg', 5, '2018-07-05', NULL, NULL, 74, 1),
(49, 54, 100.00, 0, '49_pcd_WhatsApp Image 2017-09-15 at 12.37.50 PM.jpeg', 5, '2018-07-05', NULL, NULL, 74, 1),
(50, 40, 173.00, 0, '50_pcd_24197325_2033365286878685_1148552771_o.jpg', 5, '2018-07-05', NULL, NULL, 74, 1),
(51, 54, 450.00, 0, '51_pcd_WhatsApp Image 2017-09-15 at 12.37.50 PM.jpeg', 5, '2018-07-06', NULL, NULL, 75, 1),
(52, 40, 650.00, 0, '52_pcd_24197325_2033365286878685_1148552771_o.jpg', 5, '2018-07-06', NULL, NULL, 75, 1),
(53, 54, 900.00, 0, '53_pcd_24203762_2033373626877851_955908829_n.jpg', 5, '2018-07-06', NULL, NULL, 75, 1),
(54, 49, 122.00, 0, '54_pcd_WhatsApp Image 2018-07-04 at 15.43.38(1).jpeg', 5, '2018-07-06', NULL, NULL, 75, 1),
(55, 55, 2500.00, 0, '55_pcd_copper.jpeg', 14, '2018-07-09', NULL, NULL, 75, 1),
(56, 40, 2990.00, 0, '56_pcd_fiber.jpeg', 14, '2018-07-09', NULL, NULL, 75, 1),
(57, 53, 122.50, 0, NULL, 14, '2018-07-09', NULL, NULL, 76, 1),
(58, 54, 157.50, 0, NULL, 14, '2018-07-09', NULL, NULL, 76, 1),
(59, 43, 0.09, 0, NULL, 14, '2018-07-09', NULL, NULL, 77, 1),
(60, 40, 0.90, 0, NULL, 14, '2018-07-09', NULL, NULL, 77, 1),
(61, 54, 59.01, 0, '61_pcd_copper.jpeg', 14, '2018-07-09', NULL, NULL, 78, 1),
(62, 53, 6.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 80, 1),
(63, 54, 111.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 80, 1),
(64, 38, 201.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 80, 1),
(65, 40, 328.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 80, 1),
(66, 53, 8.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 81, 1),
(67, 54, 144.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 81, 1),
(68, 55, 87.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 81, 1),
(69, 40, 658.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 81, 1),
(70, 38, 13.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 82, 1),
(71, 53, 1.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 82, 1),
(72, 54, 12.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 82, 1),
(73, 55, 9.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 82, 1),
(74, 40, 28.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 82, 1),
(75, 53, 2.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 84, 1),
(76, 54, 7.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 84, 1),
(77, 55, 9.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 84, 1),
(78, 40, 59.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 84, 1),
(79, 53, 6.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 85, 1),
(80, 54, 28.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 85, 1),
(81, 55, 16.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 85, 1),
(82, 40, 0.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 85, 1),
(83, 40, 150.00, 0, NULL, NULL, NULL, 5, '2018-08-21', 85, NULL),
(84, 54, 13.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 86, 1),
(85, 53, 13.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 86, 1),
(86, 54, 64.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 86, 1),
(87, 55, 52.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 86, 1),
(88, 40, 402.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 86, 1),
(89, 53, 31.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 87, 1),
(90, 54, 34.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 87, 1),
(91, 55, 48.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 87, 1),
(92, 40, 404.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 87, 1),
(93, 55, 314.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 88, 1),
(94, 40, 899.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 88, 1),
(95, 53, 14.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 89, 1),
(96, 54, 88.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 89, 1),
(97, 55, 74.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 89, 1),
(98, 40, 606.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 89, 1),
(99, 38, 121.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(100, 49, 44.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(101, 53, 21.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(102, 54, 64.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(103, 55, 114.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(104, 54, 74.00, 0, NULL, NULL, NULL, 5, '2018-08-21', 90, NULL),
(105, 40, 892.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 90, 1),
(106, 55, 39.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 91, 1),
(107, 40, 114.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 91, 1),
(108, 53, 2.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 92, 1),
(109, 54, 6.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 92, 1),
(110, 55, 4.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 92, 1),
(111, 40, 48.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 92, 1),
(112, 53, 2.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 93, 1),
(113, 54, 8.50, 0, NULL, 5, '2018-08-21', NULL, NULL, 93, 1),
(114, 55, 5.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 93, 1),
(115, 40, 79.00, 0, NULL, 5, '2018-08-21', NULL, NULL, 93, 1),
(116, 53, 0.05, 0, NULL, 5, '2018-08-21', NULL, NULL, 94, 1),
(117, 53, 0.15, 0, NULL, 5, '2018-08-21', NULL, NULL, 95, 1),
(118, 53, 0.30, 0, NULL, 5, '2018-08-21', NULL, NULL, 96, 1),
(119, 30, 36.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 97, 1),
(120, 49, 362.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 97, 1),
(121, 29, 41.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 97, 1),
(122, 38, 188.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 97, 1),
(123, 32, 15.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 97, 1),
(124, 30, 160.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 98, 1),
(125, 38, 788.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 98, 1),
(126, 43, 0.35, 0, NULL, 5, '2018-12-28', NULL, NULL, 99, 1),
(127, 38, 67.65, 0, NULL, 5, '2018-12-28', NULL, NULL, 99, 1),
(128, 55, 632.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 100, 1),
(129, 54, 255.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 100, 1),
(130, 40, 1313.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 100, 1),
(131, 54, 191.50, 0, NULL, 5, '2018-12-28', NULL, NULL, 101, 1),
(132, 40, 28.50, 0, NULL, 5, '2018-12-28', NULL, NULL, 101, 1),
(133, 53, 500.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 102, 1),
(134, 54, 22.00, 0, NULL, 5, '2018-12-28', NULL, NULL, 102, 1),
(135, 54, 1000.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 103, 1),
(136, 52, 1000.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 103, 1),
(137, 55, 1000.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 103, 1),
(138, 52, 1200.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 103, 1),
(139, 40, 14800.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 103, 1),
(140, 54, 1000.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 104, 1),
(141, 54, 1000.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 104, 1),
(142, 52, 800.00, 0, NULL, 5, '2019-01-21', NULL, NULL, 104, 1),
(143, 52, 211.00, 0, NULL, NULL, NULL, 5, '2019-01-21', 104, NULL),
(144, 54, 10.00, 0, NULL, NULL, NULL, 5, '2019-01-21', 104, NULL),
(145, 54, 1000.00, 0, NULL, NULL, NULL, 5, '2019-01-21', 104, NULL),
(146, 110, 100.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(147, 110, 100.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(148, 110, 50.00, 0, NULL, NULL, NULL, 5, '2019-01-25', 104, NULL),
(149, 110, 100.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(150, 110, 50.00, 0, NULL, NULL, NULL, 5, '2019-01-25', 104, NULL),
(151, 110, 100.00, 0, NULL, NULL, NULL, 5, '2019-01-25', 104, NULL),
(152, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(153, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(154, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(155, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(156, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(157, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(158, 110, 10.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(159, 110, 15.00, 0, NULL, 5, '2019-01-25', NULL, NULL, 104, 1),
(160, 40, 2000.00, 0, NULL, 12, '2019-01-31', NULL, NULL, 106, 1),
(161, 54, 1200.00, 0, NULL, 12, '2019-01-31', NULL, NULL, 107, 1),
(162, 40, 2800.00, 0, NULL, 12, '2019-01-31', NULL, NULL, 107, 1),
(163, 55, 12000.00, 0, NULL, 12, '2019-01-31', NULL, NULL, 108, 1),
(164, 43, 1000.00, 0, NULL, 12, '2019-01-31', NULL, NULL, 109, 1),
(165, 43, 1.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 111, 1),
(166, 40, 0.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 112, 1),
(167, 40, 372.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 112, 1),
(168, 38, 746.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 113, 1),
(169, 43, 4.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 113, 1),
(170, 52, 600.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 114, 1),
(171, 55, 1184.00, 0, NULL, 15, '2019-02-14', NULL, NULL, 114, 1),
(172, 40, 2091.50, 0, NULL, 15, '2019-02-14', NULL, NULL, 114, 1),
(173, 55, 1.50, 0, NULL, 15, '2019-02-14', NULL, NULL, 114, 1),
(174, 37, 1970.00, 0, '174_pcd_18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', 5, '2019-04-22', NULL, NULL, 123, 1),
(175, 55, 100.00, 0, NULL, 18, '2019-05-12', NULL, NULL, 128, 1),
(176, 29, 25.00, 0, '176_pcd_PVI1.jpeg', 18, '2019-05-12', NULL, NULL, 129, 1),
(177, 39, 55.00, 0, '177_pcd_Ram1.jpeg', 18, '2019-05-12', NULL, NULL, 129, 1),
(178, 32, 19.05, 0, NULL, 18, '2019-05-12', NULL, NULL, 129, 1),
(179, 43, 0.95, 0, NULL, 18, '2019-05-12', NULL, NULL, 129, 1),
(180, 127, 600.00, 0, NULL, 18, '2019-05-12', NULL, NULL, 130, 1),
(181, 131, 0.50, 0, NULL, 18, '2019-05-12', NULL, NULL, 134, 1),
(182, 430, 1.50, 0, NULL, 18, '2019-05-12', NULL, NULL, 134, 1),
(183, 43, 0.50, 0, NULL, 18, '2019-05-16', NULL, NULL, 139, 1),
(184, 131, 24.50, 0, NULL, 18, '2019-05-16', NULL, NULL, 139, 1),
(185, 127, 25.00, 0, '185_pcd_7AFD14404DAA6B5D1D25140A026AFF51.jpg', 18, '2019-05-17', NULL, NULL, 141, 1),
(186, 131, 200.00, 0, '186_pcd_1951893.jpg', 18, '2019-05-21', NULL, NULL, 145, 1),
(187, 43, 2.00, 0, '187_pcd_Retrospective.jpg', 18, '2019-05-21', NULL, NULL, 148, 1),
(188, 222, 23.00, 0, '188_pcd_Retired.jpg', 18, '2019-05-21', NULL, NULL, 148, 1),
(189, 127, 20.00, 0, NULL, 18, '2019-05-21', NULL, NULL, 152, 1),
(190, 206, 542.00, 0, NULL, 18, '2019-05-21', NULL, NULL, 154, 1),
(191, 457, 1000.00, 0, NULL, 20, '2019-06-05', NULL, NULL, 160, 1),
(192, 457, 1000.00, 0, NULL, 20, '2019-06-05', NULL, NULL, 160, 1),
(193, 457, 1000.00, 0, NULL, 20, '2019-06-05', NULL, NULL, 160, 1),
(194, 520, 6.00, 0, NULL, 20, '2019-06-05', NULL, NULL, 163, 1),
(195, 569, 920.00, 0, NULL, 23, '2019-08-09', NULL, NULL, 164, 1),
(196, 566, 30.00, 0, '196_pcd_15657694458361640640640986223938.jpg', 22, '2019-08-14', NULL, NULL, 164, 1),
(197, 566, 6202.00, 0, NULL, 23, '2019-08-14', NULL, NULL, 165, 1),
(198, 566, 6050.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 166, 1),
(199, 561, 15730.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 166, 1),
(200, 566, 3629.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 164, 1),
(201, 561, 17411.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 164, 1),
(202, 566, 4660.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 167, 1),
(203, 561, 16060.00, 0, NULL, 22, '2019-08-14', NULL, NULL, 167, 1),
(204, 566, 812.00, 0, NULL, 23, '2019-08-16', NULL, NULL, 168, 1),
(205, 566, 1160.00, 1, '205_pcd_IMG_20190814_215507 (1).jpg', 23, '2019-08-16', NULL, NULL, 168, 1),
(206, 566, 760.00, 1, NULL, 23, '2019-08-19', NULL, NULL, 168, 1),
(207, 566, 0.00, 0, NULL, 22, '2019-08-19', NULL, NULL, 168, 1),
(208, 566, 835.00, 1, NULL, 23, '2019-08-20', NULL, NULL, 168, 1),
(209, 563, 2.00, 0, NULL, 22, '2019-08-21', NULL, NULL, 171, 1),
(210, 569, 1.00, 0, NULL, 22, '2019-08-21', NULL, NULL, 172, 1),
(211, 561, 1.00, 0, NULL, 22, '2019-08-21', NULL, NULL, 172, 1),
(212, 569, 2.00, 0, NULL, 22, '2019-08-21', NULL, NULL, 173, 1),
(213, 566, 716.00, 1, NULL, 23, '2019-08-22', NULL, NULL, 168, 1),
(214, 561, 11377.00, 1, NULL, 23, '2019-08-22', NULL, NULL, 168, 1),
(215, 561, 11377.00, 1, NULL, 23, '2019-08-22', NULL, NULL, 168, 1),
(216, 520, 2.00, 0, NULL, 20, '2019-09-04', NULL, NULL, 179, 1),
(217, 566, 860.00, 1, NULL, 23, '2019-09-06', NULL, NULL, 185, 1),
(218, 566, 640.00, 1, NULL, 23, '2019-09-09', NULL, NULL, 185, 1),
(219, 566, 300.00, 1, NULL, 23, '2019-09-09', NULL, NULL, 185, 1),
(220, 566, 950.00, 1, NULL, 23, '2019-09-10', NULL, NULL, 185, 1),
(221, 566, 320.00, 1, NULL, 23, '2019-09-11', NULL, NULL, 185, 1),
(222, 566, 320.00, 1, NULL, 23, '2019-09-11', NULL, NULL, 185, 1),
(223, 566, 410.00, 1, NULL, 23, '2019-09-11', NULL, NULL, 185, 1),
(224, 566, 670.00, 1, NULL, 23, '2019-09-11', NULL, NULL, 185, 1),
(225, 561, 18260.00, 0, NULL, 23, '2019-09-11', NULL, NULL, 185, 1),
(226, 566, 260.00, 1, NULL, 23, '2019-09-16', NULL, NULL, 187, 1),
(227, 566, 285.00, 1, NULL, 23, '2019-09-16', NULL, NULL, 187, 1),
(228, 566, 613.00, 1, NULL, 23, '2019-09-16', NULL, NULL, 187, 1),
(229, 566, 370.00, 1, NULL, 23, '2019-09-16', NULL, NULL, 187, 1),
(230, 566, 390.00, 1, NULL, 23, '2019-09-17', NULL, NULL, 187, 1),
(231, 566, 570.00, 1, NULL, 23, '2019-09-18', NULL, NULL, 187, 1),
(232, 566, 720.00, 1, NULL, 23, '2019-09-19', NULL, NULL, 187, 1),
(233, 561, 13952.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 187, 1),
(234, 566, 1500.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(235, 566, 1330.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(236, 566, 350.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(237, 566, 750.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(238, 566, 686.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(239, 566, 620.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(240, 566, 700.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(241, 566, 435.00, 0, NULL, 22, '2019-10-07', NULL, NULL, 189, 1),
(242, 566, 706.00, 0, NULL, 22, '2019-10-08', NULL, NULL, 190, 1),
(243, 1220, 5.00, 0, NULL, 7, '2019-10-08', NULL, NULL, NULL, 1),
(244, 1253, 2222.00, 0, NULL, 7, '2019-10-08', NULL, NULL, NULL, 1),
(245, 1253, 2222.00, 0, NULL, 7, '2019-10-08', NULL, NULL, NULL, 1),
(246, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(247, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(248, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(249, 1710, 90.72, 0, NULL, 10, '2019-10-09', NULL, NULL, NULL, 1),
(250, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(251, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(252, 1511, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(253, 1520, 155.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(254, 1520, 1000.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(255, 1520, 422.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(256, 1511, 645.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 191, 1),
(257, 1532, 500.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 192, 1),
(258, 1527, 1077.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 192, 1),
(259, 1512, 155.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 193, 1),
(260, 1527, 490.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 193, 1),
(261, 1583, 1567.00, 0, NULL, 18, '2019-10-09', NULL, NULL, 194, 1),
(262, 1529, 1.22, 0, NULL, 18, '2019-10-09', NULL, NULL, 195, 1),
(263, 1525, 153.78, 0, NULL, 18, '2019-10-09', NULL, NULL, 195, 1),
(264, 1450, 670.00, 0, NULL, 22, '2019-10-09', NULL, NULL, 190, 1),
(265, 1450, 750.00, 0, NULL, 22, '2019-10-10', NULL, NULL, 190, 1),
(266, 1450, 640.00, 0, NULL, 22, '2019-10-10', NULL, NULL, 190, 1),
(267, 1445, 13749.00, 0, NULL, 22, '2019-10-11', NULL, NULL, 189, 1),
(268, 1445, 6724.00, 0, NULL, 22, '2019-10-11', NULL, NULL, 190, 1),
(269, 1483, 23500.00, 0, NULL, 11, '2019-10-12', NULL, NULL, NULL, 1),
(270, 1579, 141.07, 6, NULL, 7, '2019-10-13', NULL, NULL, NULL, 1),
(271, 1515, 231.79, 12, NULL, 7, '2019-10-13', NULL, NULL, NULL, 1),
(272, 1547, 685.38, 31, NULL, 7, '2019-10-13', NULL, NULL, NULL, 1),
(273, 1548, 85.28, 3, NULL, 7, '2019-10-13', NULL, NULL, NULL, 1),
(274, 1514, 8.73, 0, NULL, 7, '2019-10-13', NULL, NULL, NULL, 1),
(275, 1534, 12.00, 1, NULL, 18, '2019-10-13', NULL, NULL, 198, 1),
(276, 1450, 1.00, 0, '276_pcd_15710360568846708008671388536960.jpg', 22, '2019-10-14', NULL, NULL, 196, 1),
(277, 1511, 35.00, 1, NULL, 18, '2019-10-14', NULL, NULL, 199, 1),
(278, 1520, 172.79, 0, NULL, 18, '2019-10-14', NULL, NULL, 199, 1),
(279, 1533, 30.00, 0, NULL, 18, '2019-10-14', NULL, NULL, 200, 1),
(280, 1527, 5.00, 0, NULL, 18, '2019-10-14', NULL, NULL, 200, 1),
(281, 1450, 230.00, 0, NULL, 22, '2019-10-14', NULL, NULL, 196, 1),
(282, 1450, 320.00, 0, '282_pcd_15710540311814602914652021714135.jpg', 22, '2019-10-14', NULL, NULL, 196, 1),
(283, 1450, 10600.00, 0, '283_pcd_15711155598209089190446950949299.jpg', 22, '2019-10-15', NULL, NULL, 196, 1),
(284, 1428, 10.00, 0, NULL, 23, '2019-10-15', NULL, NULL, 198, 1),
(285, 1446, 5.00, 1, NULL, 23, '2019-10-15', NULL, NULL, 198, 1),
(286, 1450, 9000.00, 0, '286_pcd_15711368371964572743957657934520.jpg', 22, '2019-10-15', NULL, NULL, 196, 1),
(287, 1428, 50.00, 1, NULL, 23, '2019-10-15', NULL, NULL, 198, 1),
(288, 1450, 1.00, 0, NULL, 22, '2019-10-15', NULL, NULL, 196, 1),
(289, 1, 0.00, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(290, 1, 181.44, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(291, 1712, 181.44, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(292, 1712, 181.44, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(293, 1, 0.00, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(294, 1712, 181.44, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(295, 1, 0.00, 0, NULL, 10, '2019-10-15', NULL, NULL, NULL, 1),
(296, 1450, 106.00, 0, '296_pcd_15712037332922684876383089158289.jpg', 22, '2019-10-16', NULL, NULL, 196, 1),
(297, 1450, 770.00, 0, '297_pcd_15712226871517055171536824578171.jpg', 22, '2019-10-16', NULL, NULL, 196, 1),
(298, 1515, 200.00, 1, NULL, 7, '2019-10-16', NULL, NULL, NULL, 1),
(299, 1549, 200.00, 1, NULL, 7, '2019-10-16', NULL, NULL, NULL, 1),
(300, 1047, 90.72, 0, NULL, 10, '2019-10-16', NULL, NULL, NULL, 1),
(301, 1483, 22700.00, 0, NULL, 11, '2019-10-17', NULL, NULL, NULL, 1),
(302, 1450, 1000.00, 0, '302_pcd_15712948578122749250621784286749.jpg', 22, '2019-10-17', NULL, NULL, 196, 1),
(303, 1450, 954.00, 0, NULL, 22, '2019-10-17', NULL, NULL, 196, 1),
(304, 1511, 25.00, 1, NULL, 18, '2019-10-17', NULL, NULL, 201, 1),
(305, 1520, 598.38, 0, NULL, 18, '2019-10-17', NULL, NULL, 201, 1),
(306, 1048, 272.16, 0, NULL, 10, '2019-10-18', NULL, NULL, NULL, 1),
(307, 1450, 920.00, 0, '307_pcd_15713747148228387845217134111605.jpg', 22, '2019-10-18', NULL, NULL, 196, 1),
(308, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(309, 1574, 3.38, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(310, 1575, 0.22, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(311, 1576, 0.09, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(312, 1577, 0.01, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(313, 1558, 336.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(314, 1559, 9.76, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(315, 1560, 2.91, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(316, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(317, 1574, 3.38, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(318, 1575, 0.22, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(319, 1576, 0.09, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(320, 1577, 0.01, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(321, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(322, 1574, 10.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(323, 1575, 6.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(324, 1576, 40.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(325, 1577, 9.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(326, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(327, 1574, 10.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(328, 1575, 6.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(329, 1576, 40.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(330, 1577, 9.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(331, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(332, 1574, 10.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(333, 1575, 6.50, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(334, 1576, 40.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(335, 1577, 9.90, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(336, 1592, 0.00, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(337, 1590, 118.40, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(338, 1591, 81.60, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(339, 1573, 32.20, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(340, 1573, 32.30, 0, NULL, 7, '2019-10-20', NULL, NULL, NULL, 1),
(341, 1486, 820.95, 0, NULL, 11, '2019-10-20', NULL, NULL, NULL, 1),
(342, 1483, 8041.10, 0, NULL, 11, '2019-10-20', NULL, NULL, NULL, 1),
(343, 1485, 6041.35, 0, NULL, 11, '2019-10-20', NULL, NULL, NULL, 1),
(344, 1484, 6167.65, 0, NULL, 11, '2019-10-20', NULL, NULL, NULL, 1),
(345, 1485, 1628.95, 0, NULL, 11, '2019-10-20', NULL, NULL, NULL, 1),
(346, 1445, 16285.00, 0, NULL, 23, '2019-10-20', NULL, NULL, 196, 1),
(347, 1486, 1157.70, 0, NULL, 11, '2019-10-21', NULL, NULL, NULL, 1),
(348, 1483, 8172.00, 0, NULL, 11, '2019-10-21', NULL, NULL, NULL, 1),
(349, 1485, 7718.00, 0, NULL, 11, '2019-10-21', NULL, NULL, NULL, 1),
(350, 1484, 5652.30, 0, NULL, 11, '2019-10-21', NULL, NULL, NULL, 1),
(351, 1450, 170.00, 0, NULL, 22, '2019-10-21', NULL, NULL, 202, 1),
(352, 1450, 250.00, 0, NULL, 22, '2019-10-21', NULL, NULL, 202, 1),
(353, 1450, 510.00, 0, '353_pcd_15716551788082536784665392907142.jpg', 22, '2019-10-21', NULL, NULL, 202, 1),
(354, 1450, 520.00, 0, '354_pcd_15716838174565852024003195626865.jpg', 22, '2019-10-21', NULL, NULL, 202, 1),
(355, 1445, 1157.70, 0, NULL, 22, '2019-10-21', NULL, NULL, 203, 1),
(356, 1047, 226.80, 0, NULL, 10, '2019-10-21', NULL, NULL, NULL, 1),
(357, 1450, 440.00, 0, '357_pcd_15717418414924709115333957169278.jpg', 22, '2019-10-22', NULL, NULL, 202, 1),
(358, 1450, 350.00, 0, '358_pcd_15717707938133772302731708229296.jpg', 22, '2019-10-22', NULL, NULL, 202, 1),
(359, 754, 90.72, 0, NULL, 10, '2019-10-22', NULL, NULL, NULL, 1),
(360, 1667, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(361, 1450, 670.00, 0, '361_pcd_15718280204414039379235857281278.jpg', 22, '2019-10-23', NULL, NULL, 202, 1),
(362, 1483, 24790.00, 0, NULL, 11, '2019-10-23', NULL, NULL, NULL, 1),
(363, 1695, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(364, 1710, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(365, 1670, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(366, 1688, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(367, 1696, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(368, 1670, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(369, 1670, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(370, 1048, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(371, 1667, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(372, 1667, 0.45, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(373, 1695, 90.72, 0, NULL, 10, '2019-10-23', NULL, NULL, NULL, 1),
(374, 1450, 500.00, 0, NULL, 22, '2019-10-23', NULL, NULL, 206, 1),
(375, 1450, 1134.00, 0, '375_pcd_15718567979463347459483008565521.jpg', 22, '2019-10-23', NULL, NULL, 206, 1),
(376, 1670, 6.80, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(377, 1670, 6.81, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(378, 1522, 65.00, 0, NULL, 18, '2019-10-24', NULL, NULL, 198, 1),
(379, 1527, 58.00, 0, NULL, 18, '2019-10-24', NULL, NULL, 198, 1),
(380, 1511, 0.07, 0, NULL, 18, '2019-10-24', NULL, NULL, 198, 1),
(381, 1450, 591.00, 0, '381_pcd_15719142563222731559500906508087.jpg', 22, '2019-10-24', NULL, NULL, 206, 1),
(382, 1686, 6.80, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(383, 1696, 90.72, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(384, 1694, 136.08, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(385, 1695, 226.80, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(386, 1450, 1120.00, 0, '386_pcd_15719438886413368087962692898633.jpg', 22, '2019-10-24', NULL, NULL, 206, 1),
(387, 1710, 113.40, 0, NULL, 10, '2019-10-24', NULL, NULL, NULL, 1),
(388, 1515, 199.90, 0, NULL, 7, '2019-10-25', NULL, NULL, NULL, 1),
(389, 1710, 34.38, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(390, 1713, 2.72, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(391, 1712, 0.82, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(392, 1711, 7.44, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(393, 1696, 66.04, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(394, 1694, 18.78, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(395, 1695, 5.90, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(396, 1, 4.54, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(397, 1, 0.45, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(398, 1, 0.45, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(399, 1670, 0.45, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(400, 1670, 0.45, 0, NULL, 10, '2019-10-25', NULL, NULL, NULL, 1),
(401, 1698, 13.99, 0, NULL, 10, '2019-10-26', NULL, NULL, NULL, 1),
(402, 1697, 8.69, 0, NULL, 10, '2019-10-26', NULL, NULL, NULL, 1),
(403, 1667, 204.12, 0, NULL, 10, '2019-10-26', NULL, NULL, NULL, 1),
(404, 1713, 4.54, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(405, 1048, 4.54, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(406, 1673, 5.90, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(407, 1695, 45.36, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(408, 1515, 10.00, 0, NULL, 7, '2019-10-27', NULL, NULL, NULL, 1),
(409, 1670, 4.54, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(410, 1688, 90.72, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(411, 1670, 45.36, 0, NULL, 10, '2019-10-27', NULL, NULL, NULL, 1),
(412, 1491, 9172.30, 0, NULL, 11, '2019-10-27', NULL, NULL, NULL, 1),
(413, 1492, 4239.09, 0, NULL, 11, '2019-10-27', NULL, NULL, NULL, 1),
(414, 1493, 6767.67, 0, NULL, 11, '2019-10-27', NULL, NULL, NULL, 1),
(415, 1494, 1735.30, 0, NULL, 11, '2019-10-27', NULL, NULL, NULL, 1),
(416, 1495, 2850.85, 0, NULL, 11, '2019-10-27', NULL, NULL, NULL, 1),
(417, 1450, 856.00, 0, NULL, 22, '2019-10-28', NULL, NULL, 206, 1),
(418, 1450, 868.00, 0, NULL, 22, '2019-10-28', NULL, NULL, 206, 1),
(419, 1511, 90.00, 1, '419_pcd_motherboards1.jpg', 18, '2019-10-28', NULL, NULL, 207, 1),
(420, 1517, 40.00, 1, NULL, 18, '2019-10-28', NULL, NULL, 207, 1),
(421, 1520, 68.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 207, 1),
(422, 1534, 50.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 208, 1),
(423, 1527, 40.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 208, 1),
(424, 1532, 0.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 209, 1),
(425, 1527, 18.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 209, 1),
(426, 1581, 50.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 210, 1),
(427, 1580, 45.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 211, 1),
(428, 1534, 5.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 211, 1),
(429, 1584, 45.00, 0, NULL, 18, '2019-10-28', NULL, NULL, 212, 1),
(430, 1670, 1102.31, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(431, 1450, 776.00, 0, '431_pcd_15722640872322791500959540567760.jpg', 22, '2019-10-28', NULL, NULL, 206, 1),
(432, 1688, 4409.24, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(433, 1712, 449.74, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(434, 1688, 4409.24, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(435, 1689, 440.93, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(436, 1719, 113.40, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(437, 1048, 113.40, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(438, 1694, 113.40, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(439, 1695, 113.40, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(440, 1710, 907.18, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(441, 1712, 90.72, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(442, 1710, 907.18, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(443, 1712, 100.70, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(444, 1696, 923.74, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(445, 1694, 77.16, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(446, 1695, 101.41, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(447, 1696, 190.06, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(448, 1694, 15.88, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(449, 1695, 20.87, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(450, 1696, 190.06, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(451, 1694, 15.88, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(452, 1695, 20.87, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(453, 1670, 2204.62, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(454, 1670, 453.59, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(455, 1670, 453.59, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(456, 1670, 453.59, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(457, 1688, 90.72, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(458, 1670, 0.45, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(459, 1670, 453.60, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(460, 1696, 1025.35, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(461, 1694, 85.65, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(462, 1695, 112.57, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(463, 1696, 210.96, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(464, 1694, 17.62, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(465, 1695, 23.16, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(466, 1696, 210.96, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(467, 1694, 17.62, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(468, 1695, 23.16, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(469, 1696, 210.96, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(470, 1694, 17.62, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(471, 1695, 23.16, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(472, 1696, 206.78, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(473, 1694, 17.27, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(474, 1695, 22.70, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(475, 1047, 90.72, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(476, 769, 181.44, 0, NULL, 10, '2019-10-28', NULL, NULL, NULL, 1),
(477, 1450, 790.00, 0, NULL, 22, '2019-10-29', NULL, NULL, 206, 1),
(478, 1708, 453.59, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(479, 1450, 440.00, 0, NULL, 22, '2019-10-29', NULL, NULL, 206, 1),
(480, 1710, 30.75, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(481, 1713, 2.81, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(482, 1712, 5.44, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(483, 1711, 51.62, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(484, 1710, 16.10, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(485, 1713, 0.73, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(486, 1712, 1.40, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(487, 1711, 6.81, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(488, 1711, 6.81, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(489, 1047, 113.40, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(490, 1711, 113.40, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(491, 1710, 68.04, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(492, 1047, 68.04, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(493, 1696, 90.72, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(494, 1, 0.00, 0, NULL, 10, '2019-10-29', NULL, NULL, NULL, 1),
(495, 1450, 920.00, 0, NULL, 22, '2019-10-30', NULL, NULL, 206, 1),
(496, 1696, 90.72, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(497, 1695, 136.08, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(498, 1696, 117.93, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(499, 1694, 113.40, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(500, 1694, 113.40, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(501, 1695, 50.35, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(502, 1666, 25.35, 0, '502_pcd_12.jpeg', 24, '2019-10-30', NULL, NULL, 213, 1),
(503, 759, 75.76, 0, '503_pcd_24-karat-gold-flakes-500x500.jpg', 24, '2019-10-30', NULL, NULL, 213, 1),
(504, 1668, 10.00, 0, '504_pcd_IMG_20190814_215507 (1).jpg', 24, '2019-10-30', NULL, NULL, 213, 1),
(505, 1667, 25.35, 0, '505_pcd_motherboards1.jpg', 24, '2019-10-30', NULL, NULL, 214, 1),
(506, 759, 10.01, 0, '506_pcd_CRTTruckPano1.jpg', 24, '2019-10-30', NULL, NULL, 215, 1),
(507, 759, 25.35, 0, '507_pcd_12.jpeg', 24, '2019-10-30', NULL, NULL, 216, 1),
(508, 1450, 898.00, 0, '508_pcd_15724362778038809862677960310673.jpg', 22, '2019-10-30', NULL, NULL, 206, 1),
(509, 1678, 280.00, 0, NULL, 24, '2019-10-30', NULL, NULL, 217, 1),
(510, 759, 250.00, 0, NULL, 24, '2019-10-30', NULL, NULL, 218, 1),
(511, 1696, 113.40, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(512, 769, 113.40, 0, NULL, 10, '2019-10-30', NULL, NULL, NULL, 1),
(513, 1666, 250.00, 0, NULL, 24, '2019-10-30', NULL, NULL, 219, 1),
(514, 759, 250.00, 0, NULL, 24, '2019-10-30', NULL, NULL, 220, 1),
(515, 759, 250.00, 0, NULL, 24, '2019-10-30', NULL, NULL, 221, 1),
(516, 1450, 584.00, 0, NULL, 22, '2019-10-31', NULL, NULL, 206, 1),
(517, 1696, 453.59, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(518, 754, 90.72, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(519, 1695, 90.72, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(520, 754, 90.72, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(521, 1, 0.00, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(522, 1, 0.00, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(523, 754, 90.72, 0, NULL, 10, '2019-10-31', NULL, NULL, NULL, 1),
(524, 1450, 198.00, 0, NULL, 22, '2019-11-01', NULL, NULL, 202, 1),
(525, 1483, 22960.00, 0, NULL, 11, '2019-11-01', NULL, NULL, NULL, 1),
(526, 1450, 726.00, 0, NULL, 22, '2019-11-01', NULL, NULL, 222, 1),
(527, 1445, 15313.00, 0, NULL, 23, '2019-11-01', NULL, NULL, 206, 1),
(528, 1741, 6.80, 0, NULL, 10, '2019-11-01', NULL, NULL, NULL, 1),
(529, 1450, 700.00, 0, NULL, 22, '2019-11-02', NULL, NULL, 222, 1),
(530, 1450, 220.00, 0, NULL, 22, '2019-11-02', NULL, NULL, 222, 1),
(531, 1483, 22920.00, 0, NULL, 11, '2019-11-04', NULL, NULL, NULL, 1),
(532, 1450, 580.00, 0, NULL, 22, '2019-11-04', NULL, NULL, 202, 1),
(533, 1450, 540.00, 0, '533_pcd_15728973957764608939179146966686.jpg', 22, '2019-11-04', NULL, NULL, 222, 1),
(534, 1450, 510.00, 0, '534_pcd_15729548100173496801073606250444.jpg', 22, '2019-11-05', NULL, NULL, 222, 1),
(535, 1450, 144.00, 0, NULL, 22, '2019-11-05', NULL, NULL, 202, 1),
(536, 1450, 390.00, 0, '536_pcd_15729838022404331981776199008090.jpg', 22, '2019-11-05', NULL, NULL, 222, 1),
(537, 1450, 215.00, 0, NULL, 22, '2019-11-06', NULL, NULL, 222, 1),
(538, 1450, 370.00, 0, NULL, 22, '2019-11-07', NULL, NULL, 222, 1),
(539, 1450, 690.00, 0, '539_pcd_15731560339072948089034562851303.jpg', 22, '2019-11-07', NULL, NULL, 222, 1),
(540, 1450, 530.00, 0, NULL, 22, '2019-11-08', NULL, NULL, 222, 1),
(541, 1450, 778.00, 0, NULL, 22, '2019-11-08', NULL, NULL, 222, 1),
(542, 1450, 770.00, 0, NULL, 22, '2019-11-11', NULL, NULL, 222, 1),
(543, 1483, 25490.00, 0, NULL, 11, '2019-11-11', NULL, NULL, NULL, 1),
(544, 1445, 16521.00, 0, NULL, 22, '2019-11-11', NULL, NULL, 222, 1),
(545, 1450, 648.00, 0, NULL, 22, '2019-11-11', NULL, NULL, 223, 1),
(546, 1450, 830.00, 0, NULL, 22, '2019-11-12', NULL, NULL, 223, 1),
(547, 1450, 550.00, 0, '547_pcd_15735592196131787384541271838783.jpg', 22, '2019-11-12', NULL, NULL, 223, 1),
(548, 1450, 240.00, 0, NULL, 22, '2019-11-16', NULL, NULL, 223, 1),
(549, 1450, 1050.00, 0, NULL, 22, '2019-11-16', NULL, NULL, 223, 1),
(550, 1450, 830.00, 0, '550_pcd_15739053989311892260455213980979.jpg', 22, '2019-11-16', NULL, NULL, 223, 1),
(551, 1450, 960.00, 0, '551_pcd_15739339597851609048078773594713.jpg', 22, '2019-11-16', NULL, NULL, 223, 1),
(552, 1445, 8172.00, 0, NULL, 22, '2019-11-17', NULL, NULL, 205, 1),
(553, 1445, 2320.00, 0, NULL, 22, '2019-11-17', NULL, NULL, 202, 1),
(554, 1445, 7718.00, 0, NULL, 22, '2019-11-17', NULL, NULL, 204, 1),
(555, 1450, 950.00, 0, NULL, 22, '2019-11-18', NULL, NULL, 223, 1),
(556, 1450, 700.00, 0, NULL, 22, '2019-11-18', NULL, NULL, 223, 1),
(557, 1450, 800.00, 0, '557_pcd_15741643896228267936248817849666.jpg', 22, '2019-11-19', NULL, NULL, 223, 1),
(558, 1450, 540.00, 0, NULL, 22, '2019-11-19', NULL, NULL, 223, 1),
(559, 1450, 420.00, 0, NULL, 22, '2019-11-19', NULL, NULL, 223, 1),
(560, 1445, 16972.00, 0, NULL, 22, '2019-11-29', NULL, NULL, 223, 1),
(561, 1483, 25020.00, 0, NULL, 11, '2019-11-29', NULL, NULL, NULL, 1),
(562, 1450, 167.00, 0, NULL, 22, '2019-12-02', NULL, NULL, 224, 1),
(563, 1450, 350.00, 0, NULL, 22, '2019-12-02', NULL, NULL, 224, 1),
(564, 1450, 710.00, 0, NULL, 22, '2019-12-02', NULL, NULL, 224, 1),
(565, 1450, 610.00, 0, NULL, 22, '2019-12-02', NULL, NULL, 224, 1),
(566, 1450, 700.00, 0, '566_pcd_15753170117744176204113301257650.jpg', 22, '2019-12-02', NULL, NULL, 224, 1),
(567, 1450, 640.00, 0, NULL, 22, '2019-12-03', NULL, NULL, 224, 1),
(568, 1450, 720.00, 0, '568_pcd_15754029703511364869548354482249.jpg', 22, '2019-12-03', NULL, NULL, 224, 1),
(569, 1450, 610.00, 0, NULL, 22, '2019-12-05', NULL, NULL, 224, 1),
(570, 1450, 318.00, 0, NULL, 22, '2019-12-05', NULL, NULL, 224, 1),
(571, 1450, 690.00, 0, NULL, 22, '2019-12-05', NULL, NULL, 224, 1),
(572, 1450, 780.00, 0, NULL, 22, '2019-12-05', NULL, NULL, 224, 1),
(573, 1450, 760.00, 0, NULL, 22, '2019-12-09', NULL, NULL, 224, 1),
(574, 1450, 410.00, 0, NULL, 22, '2019-12-09', NULL, NULL, 224, 1),
(575, 1445, 17555.00, 0, NULL, 22, '2020-01-06', NULL, NULL, 224, 1),
(576, 1515, 2000.00, 0, NULL, 7, '2020-01-10', NULL, NULL, NULL, 1),
(577, 754, 226.80, 0, NULL, 10, '2020-01-10', NULL, NULL, NULL, 1),
(578, 1047, 0.00, 0, NULL, 10, '2020-01-10', NULL, NULL, NULL, 1),
(579, 1047, 226.80, 0, NULL, 10, '2020-01-10', NULL, NULL, NULL, 1),
(580, 1508, 8190.00, 0, NULL, 11, '2020-01-11', NULL, NULL, NULL, 1),
(581, 1484, 10000.00, 0, NULL, 11, '2020-01-11', NULL, NULL, NULL, 1),
(582, 1511, 100.00, 0, NULL, 7, '2020-01-11', NULL, NULL, NULL, 1),
(583, 1571, 22.00, 0, NULL, 7, '2020-01-11', NULL, NULL, NULL, 1),
(584, 1515, 230.00, 0, NULL, 7, '2020-01-11', NULL, NULL, NULL, 1),
(585, 1510, 10.00, 0, NULL, 18, '2020-01-12', NULL, NULL, 225, 1),
(586, 1511, 10.00, 0, NULL, 18, '2020-01-12', NULL, NULL, 225, 1),
(587, 1451, 600.00, 0, NULL, 22, '2020-01-13', NULL, NULL, 226, 1),
(588, 1450, 714.00, 0, NULL, 22, '2020-01-13', NULL, NULL, 226, 1),
(589, 1450, 176.00, 0, NULL, 22, '2020-01-15', NULL, NULL, 226, 1),
(590, 1450, 140.00, 0, NULL, 22, '2020-01-15', NULL, NULL, 226, 1),
(591, 1450, 270.00, 0, NULL, 22, '2020-01-15', NULL, NULL, 226, 1),
(592, 1450, 800.00, 0, NULL, 22, '2020-01-15', NULL, NULL, 226, 1),
(593, 1450, 260.00, 0, NULL, 22, '2020-01-16', NULL, NULL, 226, 1),
(594, 1450, 530.00, 0, NULL, 22, '2020-01-20', NULL, NULL, 226, 1),
(595, 1450, 416.00, 0, NULL, 22, '2020-01-20', NULL, NULL, 226, 1),
(596, 1450, 130.00, 0, NULL, 22, '2020-01-20', NULL, NULL, 226, 1),
(597, 1450, 130.00, 0, NULL, 22, '2020-01-20', NULL, NULL, 226, 1),
(598, 1667, 0.50, 1, NULL, 31, '2020-01-21', NULL, NULL, 227, 1),
(599, 1665, 14.49, 1, NULL, 31, '2020-01-21', NULL, NULL, 227, 1),
(600, 756, 14.49, 1, NULL, 31, '2020-01-21', NULL, NULL, 227, 1),
(601, 1683, 14.00, 1, NULL, 31, '2020-01-21', NULL, NULL, 227, 1),
(602, 1741, 1.00, 1, NULL, 31, '2020-01-21', NULL, NULL, 227, 1),
(603, 754, 453.59, 0, NULL, 10, '2020-01-21', NULL, NULL, NULL, 1),
(604, 769, 226.80, 0, NULL, 10, '2020-01-21', NULL, NULL, NULL, 1),
(605, 754, 11.34, 0, NULL, 10, '2020-01-21', NULL, NULL, NULL, 1),
(606, 1484, 18140.00, 0, NULL, 11, '2020-01-22', NULL, NULL, NULL, 1),
(607, 1433, 1420.00, 0, NULL, 11, '2020-01-22', NULL, NULL, NULL, 1),
(608, 1450, 600.00, 0, NULL, 22, '2020-01-22', NULL, NULL, 228, 1),
(609, 1450, 300.00, 0, NULL, 22, '2020-01-23', NULL, NULL, 228, 1),
(610, 1450, 700.00, 0, NULL, 22, '2020-01-23', NULL, NULL, 228, 1),
(611, 1450, 530.00, 0, NULL, 22, '2020-01-23', NULL, NULL, 228, 1),
(612, 1450, 660.00, 0, NULL, 22, '2020-01-24', NULL, NULL, 228, 1),
(613, 1450, 480.00, 0, NULL, 22, '2020-01-25', NULL, NULL, 228, 1),
(614, 1450, 260.00, 0, NULL, 22, '2020-01-25', NULL, NULL, 228, 1),
(615, 1939, 1000.00, 0, NULL, 14, '2020-01-26', NULL, NULL, NULL, 1),
(616, 1484, 20720.00, 0, NULL, 11, '2020-01-30', NULL, NULL, NULL, 1),
(617, 1483, 10220.00, 0, NULL, 11, '2020-01-30', NULL, NULL, NULL, 1),
(618, 1483, 9120.00, 0, NULL, 11, '2020-01-30', NULL, NULL, NULL, 1),
(619, 1483, 9120.00, 0, NULL, 11, '2020-01-30', NULL, NULL, NULL, 1),
(620, 1450, 400.00, 0, NULL, 22, '2020-01-30', NULL, NULL, 230, 1),
(621, 1450, 2913.00, 0, NULL, 22, '2020-01-30', NULL, NULL, 231, 1),
(622, 1450, 450.00, 0, NULL, 22, '2020-01-30', NULL, NULL, 230, 1),
(623, 1450, 644.00, 0, NULL, 22, '2020-01-30', NULL, NULL, 230, 1),
(624, 1450, 340.00, 0, NULL, 22, '2020-01-31', NULL, NULL, 230, 1),
(625, 1450, 898.00, 0, NULL, 22, '2020-01-31', NULL, NULL, 230, 1),
(626, 1450, 780.00, 0, NULL, 22, '2020-02-03', NULL, NULL, 230, 1),
(627, 1450, 837.00, 0, NULL, 22, '2020-02-04', NULL, NULL, 230, 1),
(628, 1450, 1100.00, 0, NULL, 22, '2020-02-04', NULL, NULL, 230, 1),
(629, 1450, 794.00, 0, NULL, 22, '2020-02-05', NULL, NULL, 230, 1),
(630, 1450, 166.00, 0, NULL, 22, '2020-02-05', NULL, NULL, 230, 1),
(631, 754, 226.80, 0, NULL, 10, '2020-02-05', NULL, NULL, NULL, 1),
(632, 1711, 260.36, 0, NULL, 10, '2020-02-05', NULL, NULL, NULL, 1),
(633, 1713, 25.40, 0, NULL, 10, '2020-02-05', NULL, NULL, NULL, 1),
(634, 1710, 141.97, 0, NULL, 10, '2020-02-05', NULL, NULL, NULL, 1),
(635, 1712, 25.85, 0, NULL, 10, '2020-02-05', NULL, NULL, NULL, 1),
(636, 754, 249.48, 0, NULL, 10, '2020-02-06', NULL, NULL, NULL, 1),
(637, 1515, 1200.00, 0, NULL, 7, '2020-02-09', NULL, NULL, NULL, 1),
(638, 0, 200.00, 0, NULL, 14, '2020-02-09', NULL, NULL, NULL, 1),
(639, 0, 1000.00, 0, NULL, 14, '2020-02-11', NULL, NULL, NULL, 1),
(640, 1515, 1500.00, 0, NULL, 7, '2020-02-11', NULL, NULL, NULL, 1),
(641, 1443, 8190.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 233, 1),
(642, 1445, 6264.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 226, 1),
(643, 1445, 14610.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 228, 1),
(644, 1444, 960.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 234, 1),
(645, 1451, 58.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 234, 1),
(646, 1445, 402.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 234, 1),
(647, 1445, 14689.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 230, 1),
(648, 1445, 0.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 231, 1),
(649, 1445, 6207.00, 0, NULL, 22, '2020-02-12', NULL, NULL, 231, 1),
(650, 1484, 20600.00, 0, NULL, 11, '2020-02-12', NULL, NULL, NULL, 1),
(651, 1450, 7446.00, 0, NULL, 22, '2020-02-13', NULL, NULL, 235, 1),
(652, 1445, 13154.00, 0, NULL, 22, '2020-02-13', NULL, NULL, 235, 1),
(653, 0, 23119.00, 0, NULL, 14, '2020-02-13', NULL, NULL, NULL, 1),
(654, 1483, 23450.00, 0, NULL, 11, '2020-02-19', NULL, NULL, NULL, 1),
(655, 0, 1234.00, 0, NULL, 14, '2020-02-19', NULL, NULL, NULL, 1),
(656, 1484, 12500.00, 0, NULL, 11, '2020-02-19', NULL, NULL, NULL, 1),
(657, 1432, 1850.00, 0, NULL, 11, '2020-02-19', NULL, NULL, NULL, 1),
(658, 1484, 12240.00, 0, NULL, 11, '2020-02-19', NULL, NULL, NULL, 1),
(659, 1515, 10.00, 0, NULL, 7, '2020-02-19', NULL, NULL, NULL, 1),
(660, 1450, 108.00, 0, NULL, 22, '2020-02-20', NULL, NULL, 236, 1),
(661, 1450, 922.00, 0, NULL, 22, '2020-02-20', NULL, NULL, 236, 1),
(662, 1450, 554.00, 0, NULL, 22, '2020-02-20', NULL, NULL, 236, 1),
(663, 1939, 100000.00, 0, NULL, 14, '2020-02-20', NULL, NULL, NULL, 1),
(664, 1939, 1111.00, 0, NULL, 14, '2020-02-20', NULL, NULL, NULL, 1),
(665, 1939, 100000.00, 0, NULL, 14, '2020-02-20', NULL, NULL, NULL, 1),
(666, 1939, 23000.00, 0, NULL, 14, '2020-02-21', NULL, NULL, NULL, 1),
(667, 1484, 11720.00, 0, NULL, 11, '2020-02-21', NULL, NULL, NULL, 1),
(668, 1450, 970.00, 0, NULL, 22, '2020-02-21', NULL, NULL, 236, 1),
(669, 0, 1000.00, 0, NULL, 14, '2020-02-21', NULL, NULL, NULL, 1),
(670, 1450, 870.00, 0, NULL, 22, '2020-02-22', NULL, NULL, 236, 1),
(671, 1450, 540.00, 0, NULL, 22, '2020-02-22', NULL, NULL, 236, 1),
(672, 1450, 2913.00, 0, NULL, 22, '2020-02-23', NULL, NULL, 237, 1),
(673, 1450, 4276.00, 0, NULL, 22, '2020-02-23', NULL, NULL, 238, 1),
(676, 1515, 5.00, 0, NULL, 7, '2020-02-24', NULL, NULL, NULL, 1),
(677, 1450, 680.00, 0, NULL, 22, '2020-02-24', NULL, NULL, 236, 1),
(678, 1450, 820.00, 0, NULL, 22, '2020-02-24', NULL, NULL, 236, 1),
(679, 1450, 980.00, 0, NULL, 22, '2020-02-25', NULL, NULL, 236, 1),
(680, 1450, 562.00, 0, NULL, 22, '2020-02-25', NULL, NULL, 236, 1),
(681, 1483, 23490.00, 0, NULL, 11, '2020-02-26', NULL, NULL, NULL, 1),
(682, 1939, 50000.00, 0, NULL, 14, '2020-02-26', NULL, NULL, NULL, 1),
(683, 0, 100.00, 0, NULL, 14, '2020-03-01', NULL, NULL, NULL, 1),
(684, 1450, 324.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(685, 1450, 180.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(686, 1450, 502.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(687, 1450, 828.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(688, 1450, 740.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(689, 1450, 458.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(690, 1450, 928.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(691, 1445, 7964.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 238, 1),
(692, 0, 2270.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(693, 0, 450.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(694, 0, 375.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(695, 0, 90.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(696, 0, 1000.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(697, 0, 450.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(698, 0, 13365.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(699, 1451, 1.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(700, 1947, 6500.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(701, 1951, 2260.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(702, 1948, 200.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(703, 1950, 450.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(704, 1949, 1000.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(705, 1952, 2500.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(706, 1953, 1455.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(707, 1, 0.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(708, 0, 1.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(709, 1451, 1.00, 0, NULL, 22, '2020-03-02', NULL, NULL, 241, 1),
(710, 1, 0.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(711, 0, 600.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(712, 1953, 1305.00, 0, NULL, 14, '2020-03-02', NULL, NULL, NULL, 1),
(713, 1939, 46000.00, 0, NULL, 14, '2020-03-03', NULL, NULL, NULL, 1),
(714, 1450, 942.00, 0, NULL, 22, '2020-03-04', NULL, NULL, 241, 1),
(715, 1450, 1100.00, 0, NULL, 22, '2020-03-04', NULL, NULL, 241, 1),
(716, 1450, 838.00, 0, NULL, 22, '2020-03-04', NULL, NULL, 241, 1),
(717, 1450, 626.00, 0, NULL, 22, '2020-03-04', NULL, NULL, 241, 1),
(718, 1484, 24240.00, 0, NULL, 11, '2020-03-04', NULL, NULL, NULL, 1),
(719, 1450, 834.00, 0, NULL, 22, '2020-03-05', NULL, NULL, 242, 1),
(720, 1450, 982.00, 0, NULL, 22, '2020-03-05', NULL, NULL, 242, 1),
(721, 1445, 16024.00, 0, NULL, 22, '2020-03-05', NULL, NULL, 241, 1),
(722, 1, 0.00, 0, NULL, 14, '2020-03-05', NULL, NULL, NULL, 1),
(723, 1955, 200.00, 0, NULL, 14, '2020-03-05', NULL, NULL, NULL, 1),
(724, 0, 650.00, 0, NULL, 14, '2020-03-05', NULL, NULL, NULL, 1),
(725, 1953, 4305.00, 0, NULL, 14, '2020-03-05', NULL, NULL, NULL, 1),
(726, 1450, 588.00, 0, NULL, 22, '2020-03-06', NULL, NULL, 242, 1),
(727, 1450, 925.00, 0, NULL, 22, '2020-03-06', NULL, NULL, 242, 1),
(728, 1450, 810.00, 0, NULL, 22, '2020-03-10', NULL, NULL, 242, 1);
INSERT INTO `inventoryproductdetails` (`id`, `inventoryproductid`, `quantity`, `baskets`, `image`, `userid`, `sysdate`, `update_user`, `update_date`, `processcompleteid`, `status`) VALUES
(729, 1450, 614.00, 0, NULL, 22, '2020-03-10', NULL, NULL, 242, 1),
(730, 1450, 952.00, 0, NULL, 22, '2020-03-10', NULL, NULL, 242, 1),
(731, 1450, 1160.00, 0, NULL, 22, '2020-03-10', NULL, NULL, 242, 1),
(732, 1450, 790.00, 0, NULL, 22, '2020-03-10', NULL, NULL, 242, 1),
(733, 1047, 135.08, 1, NULL, 10, '2020-03-10', NULL, NULL, NULL, 1),
(734, 1711, 91.72, 0, NULL, 10, '2020-03-10', NULL, NULL, NULL, 1),
(735, 1, 0.00, 0, NULL, 10, '2020-03-10', NULL, NULL, NULL, 1),
(736, 754, 453.59, 0, NULL, 10, '2020-03-10', NULL, NULL, NULL, 1),
(737, 1450, 690.00, 0, NULL, 22, '2020-03-11', NULL, NULL, 237, 1),
(738, 1450, 656.00, 0, NULL, 22, '2020-03-11', NULL, NULL, 237, 1),
(739, 1450, 464.00, 0, NULL, 22, '2020-03-12', NULL, NULL, 237, 1),
(740, 1450, 1000.00, 0, NULL, 22, '2020-03-12', NULL, NULL, 237, 1),
(741, 1445, 16585.00, 0, NULL, 22, '2020-03-12', NULL, NULL, 242, 1),
(742, 1484, 0.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(743, 1, 0.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(744, 1, 0.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(745, 1484, 20100.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(746, 1484, 0.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(747, 1, 0.00, 0, NULL, 11, '2020-03-12', NULL, NULL, NULL, 1),
(748, 1450, 950.00, 0, NULL, 22, '2020-03-13', NULL, NULL, 237, 1),
(749, 1445, 7960.00, 0, NULL, 22, '2020-03-13', NULL, NULL, 237, 1),
(750, 1445, 16444.00, 0, NULL, 22, '2020-03-13', NULL, NULL, 236, 1),
(751, 1484, 23000.00, 0, NULL, 11, '2020-03-13', NULL, NULL, NULL, 1),
(752, 1484, 18820.00, 0, NULL, 11, '2020-03-16', NULL, NULL, NULL, 1),
(753, 1450, 770.00, 0, NULL, 22, '2020-03-16', NULL, NULL, 243, 1),
(754, 1450, 802.00, 0, NULL, 22, '2020-03-16', NULL, NULL, 243, 1),
(755, 1450, 966.00, 0, NULL, 22, '2020-03-17', NULL, NULL, 243, 1),
(756, 1450, 1114.00, 0, NULL, 22, '2020-03-17', NULL, NULL, 243, 1),
(757, 1450, 936.00, 0, NULL, 22, '2020-03-18', NULL, NULL, 243, 1),
(758, 1450, 1000.00, 0, NULL, 22, '2020-03-18', NULL, NULL, 243, 1),
(759, 1450, 832.00, 0, NULL, 22, '2020-03-18', NULL, NULL, 243, 1),
(760, 1445, 12400.00, 0, NULL, 22, '2020-03-18', NULL, NULL, 243, 1),
(761, 1450, 248.00, 0, NULL, 22, '2020-03-19', NULL, NULL, 244, 1),
(762, 1450, 920.00, 0, NULL, 22, '2020-03-19', NULL, NULL, 244, 1),
(763, 1450, 958.00, 0, NULL, 22, '2020-03-23', NULL, NULL, 244, 1),
(764, 1450, 926.00, 0, NULL, 22, '2020-03-23', NULL, NULL, 244, 1),
(765, 1450, 570.00, 0, NULL, 22, '2020-03-23', NULL, NULL, 244, 1),
(766, 1450, 1026.00, 0, NULL, 22, '2020-03-24', NULL, NULL, 244, 1),
(767, 1450, 1126.00, 0, NULL, 22, '2020-03-24', NULL, NULL, 244, 1),
(768, 1450, 960.00, 0, NULL, 22, '2020-03-24', NULL, NULL, 244, 1),
(769, 1450, 946.00, 0, NULL, 22, '2020-03-24', NULL, NULL, 244, 1),
(770, 1945, 1375.00, 0, NULL, 11, '2020-03-25', NULL, NULL, NULL, 1),
(771, 1432, 25.00, 0, NULL, 11, '2020-03-25', NULL, NULL, NULL, 1),
(772, 1947, 18000.00, 0, NULL, 14, '2020-03-25', NULL, NULL, NULL, 1),
(773, 1947, 18000.00, 0, NULL, 14, '2020-03-25', NULL, NULL, NULL, 1),
(774, 1948, 1800.00, 0, NULL, 32, '2020-03-25', NULL, NULL, 246, 1),
(775, 1947, 16200.00, 0, NULL, 32, '2020-03-25', NULL, NULL, 246, 1),
(776, 1956, 600.00, 0, NULL, 32, '2020-03-25', NULL, NULL, 247, 1),
(777, 1450, 860.00, 0, NULL, 22, '2020-03-26', NULL, NULL, 244, 1),
(778, 1450, 518.00, 0, NULL, 22, '2020-03-26', NULL, NULL, 244, 1),
(779, 1445, 11042.00, 0, NULL, 22, '2020-03-26', NULL, NULL, 244, 1),
(780, 1450, 700.00, 0, NULL, 22, '2020-03-27', NULL, NULL, 249, 1),
(781, 1450, 562.00, 0, NULL, 22, '2020-03-27', NULL, NULL, 249, 1),
(782, 1450, 984.00, 0, NULL, 22, '2020-03-30', NULL, NULL, 249, 1),
(783, 1450, 880.00, 0, NULL, 22, '2020-03-30', NULL, NULL, 249, 1),
(784, 1947, 50000.00, 0, NULL, 14, '2020-03-30', NULL, NULL, NULL, 1),
(785, 2053, 35000.00, 0, NULL, 32, '2020-03-30', NULL, NULL, 250, 1),
(786, 1948, 15000.00, 0, NULL, 32, '2020-03-30', NULL, NULL, 250, 1),
(787, 1982, 35000.00, 0, NULL, 32, '2020-03-30', NULL, NULL, 251, 1),
(788, 1956, 15000.00, 0, NULL, 32, '2020-03-30', NULL, NULL, 252, 1),
(789, 1450, 957.00, 0, NULL, 22, '2020-03-31', NULL, NULL, 249, 1),
(790, 1450, 1088.00, 0, NULL, 22, '2020-03-31', NULL, NULL, 249, 1),
(791, 1947, 23000.00, 0, NULL, 14, '2020-03-31', NULL, NULL, NULL, 1),
(792, 1947, 100.00, 0, NULL, 14, '2020-03-31', NULL, NULL, NULL, 1),
(793, 1947, 100.00, 0, NULL, 14, '2020-03-31', NULL, NULL, NULL, 1),
(794, 2043, 100.00, 0, NULL, 14, '2020-03-31', NULL, NULL, NULL, 1),
(795, 2043, 100.00, 0, NULL, 14, '2020-03-31', NULL, NULL, NULL, 1),
(796, 1455, 186.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(797, 1457, 124.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(798, 1443, 730.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(799, 1442, 1.50, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(800, 1444, 60.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(801, 1466, 88.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(802, 1472, 4.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(803, 1474, 15.00, 0, NULL, 22, '2020-04-01', NULL, NULL, 248, 1),
(804, 1450, 638.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 249, 1),
(805, 1450, 844.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 249, 1),
(806, 1450, 270.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 249, 1),
(807, 1450, 826.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 249, 1),
(808, 1445, 15251.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 249, 1),
(809, 1483, 24240.00, 0, NULL, 11, '2020-04-02', NULL, NULL, NULL, 1),
(810, 1483, 23080.00, 0, NULL, 11, '2020-04-02', NULL, NULL, NULL, 1),
(811, 2129, 43.50, 0, NULL, 22, '2020-04-02', NULL, NULL, 248, 1),
(812, 2127, 11.00, 0, NULL, 22, '2020-04-02', NULL, NULL, 248, 1),
(813, 2130, 22.50, 0, NULL, 22, '2020-04-02', NULL, NULL, 248, 1),
(814, 2131, 109.50, 0, NULL, 22, '2020-04-02', NULL, NULL, 248, 1),
(815, 1554, 12222.00, 0, NULL, 7, '2020-04-07', NULL, NULL, NULL, 1),
(816, 1511, 6111.00, 3, NULL, 18, '2020-04-07', NULL, NULL, 254, 1),
(817, 1558, 6111.00, 5, NULL, 18, '2020-04-07', NULL, NULL, 254, 1),
(818, 1533, 6111.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 255, 1),
(819, 1529, 1.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 256, 1),
(820, 1565, 6110.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 256, 1),
(821, 1532, 2000.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 257, 1),
(822, 1527, 4110.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 257, 1),
(823, 1583, 4110.00, 0, NULL, 18, '2020-04-07', NULL, NULL, 258, 1),
(824, 1450, 206.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(825, 1450, 988.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(826, 1450, 560.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(827, 1450, 60.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(828, 1450, 770.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(829, 1450, 560.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(830, 1450, 864.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(831, 1450, 1146.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 253, 1),
(832, 1504, 31.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 259, 1),
(833, 1443, 56.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 259, 1),
(834, 1444, 37.00, 0, NULL, 22, '2020-04-08', NULL, NULL, 259, 1),
(835, 1450, 903.00, 0, NULL, 22, '2020-04-09', NULL, NULL, 253, 1),
(836, 1450, 826.00, 0, NULL, 22, '2020-04-09', NULL, NULL, 253, 1),
(837, 1450, 160.00, 0, NULL, 22, '2020-04-14', NULL, NULL, 253, 1),
(838, 1450, 1316.00, 0, NULL, 22, '2020-04-14', NULL, NULL, 253, 1),
(839, 1445, 15881.00, 0, NULL, 22, '2020-04-14', NULL, NULL, 253, 1),
(840, 1450, 850.00, 0, NULL, 22, '2020-04-16', NULL, NULL, 261, 1),
(841, 1450, 1198.00, 0, NULL, 22, '2020-04-16', NULL, NULL, 261, 1),
(842, 1450, 888.00, 0, NULL, 22, '2020-04-16', NULL, NULL, 261, 1),
(843, 1450, 784.00, 0, NULL, 22, '2020-04-16', NULL, NULL, 261, 1),
(844, 1443, 64.00, 0, NULL, 22, '2020-04-16', NULL, NULL, 262, 1),
(845, 1483, 23740.00, 0, NULL, 11, '2020-04-16', NULL, NULL, NULL, 1),
(846, 1450, 669.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 261, 1),
(847, 1450, 1162.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 261, 1),
(848, 1450, 1188.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 261, 1),
(849, 1441, 11.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 263, 1),
(850, 1450, 1014.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 261, 1),
(851, 1445, 15327.00, 0, NULL, 22, '2020-04-21', NULL, NULL, 261, 1),
(852, 2133, 45.50, 0, NULL, 22, '2020-04-21', NULL, NULL, 262, 1),
(853, 1450, 1286.00, 0, NULL, 22, '2020-04-22', NULL, NULL, 264, 1),
(854, 1450, 1244.00, 0, NULL, 22, '2020-04-22', NULL, NULL, 264, 1),
(855, 1450, 1434.00, 0, NULL, 22, '2020-04-23', NULL, NULL, 264, 1),
(856, 1450, 920.00, 0, NULL, 22, '2020-04-24', NULL, NULL, 264, 1),
(857, 1450, 948.00, 0, NULL, 22, '2020-04-24', NULL, NULL, 264, 1),
(858, 1483, 22700.00, 0, NULL, 11, '2020-04-24', NULL, NULL, NULL, 1),
(859, 1450, 1150.00, 0, NULL, 22, '2020-04-24', NULL, NULL, 264, 1),
(860, 1445, 16758.00, 0, NULL, 22, '2020-04-24', NULL, NULL, 264, 1),
(861, 1450, 1192.00, 0, NULL, 22, '2020-04-27', NULL, NULL, 265, 1),
(862, 1450, 970.00, 0, NULL, 22, '2020-04-28', NULL, NULL, 265, 1),
(863, 1450, 640.00, 0, NULL, 22, '2020-04-28', NULL, NULL, 265, 1),
(864, 1450, 982.00, 0, NULL, 22, '2020-04-29', NULL, NULL, 265, 1),
(865, 1450, 1190.00, 0, NULL, 22, '2020-04-29', NULL, NULL, 265, 1),
(866, 1484, 21480.00, 0, NULL, 11, '2020-04-29', NULL, NULL, NULL, 1),
(867, 1450, 982.00, 0, NULL, 22, '2020-04-30', NULL, NULL, 265, 1),
(868, 1450, 720.00, 0, NULL, 22, '2020-04-30', NULL, NULL, 265, 1),
(869, 1450, 816.00, 0, NULL, 22, '2020-05-04', NULL, NULL, 265, 1),
(870, 1450, 500.00, 0, NULL, 22, '2020-05-04', NULL, NULL, 265, 1),
(871, 1445, 14708.00, 0, NULL, 22, '2020-05-04', NULL, NULL, 265, 1),
(872, 1450, 1134.00, 0, NULL, 22, '2020-05-04', NULL, NULL, 266, 1),
(873, 1450, 1150.00, 0, NULL, 22, '2020-05-05', NULL, NULL, 266, 1),
(874, 1450, 950.00, 0, NULL, 22, '2020-05-11', NULL, NULL, 266, 1),
(875, 1450, 990.00, 0, NULL, 22, '2020-05-11', NULL, NULL, 266, 1),
(876, 1450, 920.00, 0, NULL, 22, '2020-05-11', NULL, NULL, 266, 1),
(877, 1450, 1380.00, 0, NULL, 22, '2020-05-12', NULL, NULL, 266, 1),
(878, 1450, 1052.00, 0, NULL, 22, '2020-05-12', NULL, NULL, 266, 1),
(879, 1445, 13896.00, 0, NULL, 22, '2020-05-14', NULL, NULL, 266, 1),
(880, 1483, 11654.00, 0, NULL, 11, '2020-05-18', NULL, NULL, NULL, 1),
(881, 1483, 23820.00, 0, NULL, 11, '2020-05-18', NULL, NULL, NULL, 1),
(882, 1450, 450.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(883, 1450, 350.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(884, 1450, 518.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(885, 1450, 130.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(886, 1450, 518.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(887, 1450, 792.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(888, 1450, 546.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(889, 1450, 302.00, 0, NULL, 22, '2020-05-18', NULL, NULL, 267, 1),
(890, 1450, 700.00, 0, NULL, 22, '2020-05-19', NULL, NULL, 267, 1),
(891, 1450, 982.00, 0, NULL, 22, '2020-05-19', NULL, NULL, 267, 1),
(892, 1445, 6366.00, 0, NULL, 22, '2020-05-19', NULL, NULL, 267, 1),
(893, 1483, 23020.00, 0, NULL, 11, '2020-05-21', NULL, NULL, NULL, 1),
(894, 1450, 734.00, 0, NULL, 22, '2020-05-21', NULL, NULL, 268, 1),
(895, 1450, 500.00, 0, NULL, 22, '2020-05-21', NULL, NULL, 268, 1),
(896, 1450, 878.00, 0, NULL, 22, '2020-05-21', NULL, NULL, 268, 1),
(897, 1450, 1150.00, 0, NULL, 22, '2020-05-21', NULL, NULL, 268, 1),
(898, 1450, 850.00, 0, NULL, 22, '2020-05-25', NULL, NULL, 268, 1),
(899, 1450, 686.00, 0, NULL, 22, '2020-05-25', NULL, NULL, 268, 1),
(900, 1450, 946.00, 0, NULL, 22, '2020-05-25', NULL, NULL, 268, 1),
(901, 1450, 1084.00, 0, NULL, 22, '2020-05-25', NULL, NULL, 268, 1),
(902, 1445, 16192.00, 0, NULL, 22, '2020-05-25', NULL, NULL, 268, 1),
(903, 1450, 976.00, 0, NULL, 22, '2020-05-26', NULL, NULL, 269, 1),
(904, 1450, 1038.00, 0, NULL, 22, '2020-05-26', NULL, NULL, 269, 1),
(905, 1450, 988.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(906, 1450, 974.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(907, 1450, 1264.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(908, 1450, 550.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(909, 1450, 576.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(910, 1450, 740.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(911, 1445, 16714.00, 0, NULL, 22, '2020-06-02', NULL, NULL, 269, 1),
(912, 1484, 23370.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(913, 1484, 20850.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(914, 0, 23740.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(915, 1484, 237400.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(916, 1484, 23740.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(917, 1483, 15740.00, 0, NULL, 11, '2020-06-03', NULL, NULL, NULL, 1),
(918, 1450, 916.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(919, 1450, 744.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(920, 1450, 730.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(921, 1450, 1096.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(922, 1450, 466.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(923, 1450, 90.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(924, 1450, 488.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(925, 1450, 1174.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(926, 1450, 800.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(927, 1450, 810.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(928, 1450, 590.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(929, 1445, 15466.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 270, 1),
(930, 1450, 1084.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 272, 1),
(931, 1450, 1202.00, 0, NULL, 22, '2020-06-12', NULL, NULL, 272, 1),
(932, 1450, 950.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(933, 1450, 500.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(934, 1450, 526.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(935, 1450, 860.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(936, 1450, 880.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(937, 1450, 860.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(938, 1450, 886.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(939, 1445, 13156.00, 0, NULL, 22, '2020-06-18', NULL, NULL, 272, 1),
(940, 1450, 800.00, 0, NULL, 22, '2020-06-19', NULL, NULL, 273, 1),
(941, 1450, 496.00, 0, NULL, 22, '2020-06-19', NULL, NULL, 273, 1),
(942, 1450, 160.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(943, 1450, 872.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(944, 1450, 660.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(945, 1450, 580.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(946, 1450, 402.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(947, 1450, 492.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(948, 1450, 694.00, 0, NULL, 22, '2020-06-25', NULL, NULL, 273, 1),
(949, 1483, 23000.00, 0, NULL, 11, '2020-06-25', NULL, NULL, NULL, 1),
(950, 1483, 23000.00, 0, NULL, 11, '2020-06-26', NULL, NULL, NULL, 1),
(951, 1450, 606.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 273, 1),
(952, 1450, 550.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 273, 1),
(953, 1450, 900.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 273, 1),
(954, 1445, 16528.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 273, 1),
(955, 1450, 630.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 274, 1),
(956, 1450, 668.00, 0, NULL, 22, '2020-06-30', NULL, NULL, 274, 1),
(957, 1484, 16429.00, 0, NULL, 11, '2020-07-03', NULL, NULL, NULL, 1),
(958, 2108, 6691.00, 0, NULL, 11, '2020-07-03', NULL, NULL, NULL, 1),
(959, 1483, 23880.00, 0, NULL, 11, '2020-07-03', NULL, NULL, NULL, 1),
(960, 1450, 456.00, 0, NULL, 22, '2020-07-03', NULL, NULL, 274, 1),
(961, 1450, 846.00, 0, NULL, 22, '2020-07-03', NULL, NULL, 274, 1),
(962, 1450, 500.00, 0, NULL, 22, '2020-07-03', NULL, NULL, 274, 1),
(963, 1450, 678.00, 0, NULL, 22, '2020-07-03', NULL, NULL, 274, 1),
(964, 1445, 11962.00, 0, NULL, 22, '2020-07-03', NULL, NULL, 274, 1),
(965, 1450, 314.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(966, 1450, 712.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(967, 1450, 690.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(968, 1450, 616.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(969, 1450, 344.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(970, 1450, 330.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(971, 1450, 846.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(972, 1445, 12577.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 275, 1),
(973, 1450, 334.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(974, 1450, 60.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(975, 1450, 134.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(976, 1450, 406.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(977, 1450, 906.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(978, 1450, 1352.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(979, 1450, 1050.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(980, 1450, 238.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(981, 1445, 19400.00, 0, NULL, 22, '2020-07-21', NULL, NULL, 276, 1),
(982, 1483, 21430.00, 0, NULL, 11, '2020-08-04', NULL, NULL, NULL, 1),
(983, 1483, 18780.00, 0, NULL, 11, '2020-08-04', NULL, NULL, NULL, 1),
(984, 1450, 1054.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(985, 1450, 1034.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(986, 1450, 590.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(987, 1450, 448.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(988, 1450, 966.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(989, 1445, 17338.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 277, 1),
(990, 1450, 5880.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 278, 1),
(991, 1445, 12900.00, 0, NULL, 22, '2020-08-18', NULL, NULL, 278, 1),
(992, 1484, 23400.00, 0, NULL, 11, '2020-10-27', NULL, NULL, NULL, 1),
(993, 1450, 212.00, 0, NULL, 22, '2020-10-28', NULL, NULL, 279, 1),
(994, 1450, 688.00, 0, NULL, 22, '2020-10-28', NULL, NULL, 279, 1),
(995, 1450, 1072.00, 0, NULL, 22, '2020-10-28', NULL, NULL, 279, 1),
(996, 1450, 426.00, 0, NULL, 22, '2020-10-28', NULL, NULL, 279, 1),
(997, 1450, 420.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(998, 1450, 328.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(999, 1450, 666.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(1000, 1450, 464.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(1001, 1450, 890.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(1002, 1450, 502.00, 0, NULL, 22, '2020-11-02', NULL, NULL, 279, 1),
(1003, 1450, 320.00, 0, NULL, 22, '2020-11-03', NULL, NULL, 279, 1),
(1004, 1450, 884.00, 0, NULL, 22, '2020-11-03', NULL, NULL, 279, 1),
(1005, 1445, 16528.00, 0, NULL, 22, '2020-11-03', NULL, NULL, 279, 1),
(1006, 1484, 12120.00, 0, NULL, 11, '2020-11-03', NULL, NULL, NULL, 1),
(1007, 1484, 23340.00, 0, NULL, 11, '2020-11-03', NULL, NULL, NULL, 1),
(1008, 1450, 446.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1009, 1450, 788.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1010, 1450, 306.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1011, 1450, 782.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1012, 1450, 520.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1013, 1450, 628.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1014, 1445, 8650.00, 0, NULL, 22, '2020-11-06', NULL, NULL, 280, 1),
(1015, 1483, 7000.00, 0, NULL, 11, '2020-11-10', NULL, NULL, NULL, 1),
(1016, 1450, 526.00, 0, NULL, 22, '2020-11-10', NULL, NULL, 282, 1),
(1017, 1450, 70.00, 0, NULL, 22, '2020-11-10', NULL, NULL, 282, 1),
(1018, 1450, 508.00, 0, NULL, 22, '2020-11-10', NULL, NULL, 282, 1),
(1019, 1450, 314.00, 0, NULL, 22, '2020-11-10', NULL, NULL, 282, 1),
(1020, 1450, 290.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 282, 1),
(1021, 1445, 5292.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 282, 1),
(1022, 1450, 448.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1023, 1450, 680.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1024, 1450, 340.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1025, 1450, 540.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1026, 1450, 476.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1027, 1450, 530.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1028, 1450, 166.00, 0, NULL, 22, '2020-11-16', NULL, NULL, 281, 1),
(1029, 1483, 18940.00, 30, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1030, 1467, 3980.00, 10, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1031, 1432, 80.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1032, 1483, 18940.00, 30, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1033, 1467, 4260.00, 20, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1034, 1467, 3960.00, 20, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1035, 1432, 100.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1036, 1483, 18440.00, 30, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1037, 1467, 4458.00, 21, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1038, 1483, 18940.00, 30, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1039, 0, 102.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1040, 1432, 102.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1041, 1483, 17928.00, 36, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1042, 1467, 3960.00, 20, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1043, 1432, 112.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1044, 1466, 15000.00, 0, NULL, 11, '2020-11-19', NULL, NULL, NULL, 1),
(1045, 1483, 47288.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1046, 1484, 34776.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1047, 1485, 5336.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1048, 1486, 4600.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1049, 1483, 47288.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1050, 1484, 34776.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1051, 1485, 5336.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1052, 1486, 4600.00, 0, NULL, 11, '2020-11-25', NULL, NULL, NULL, 1),
(1053, 1483, 8000.00, 0, NULL, 11, '2020-11-26', NULL, NULL, NULL, 1),
(1054, 1484, 8000.00, 0, NULL, 11, '2020-11-26', NULL, NULL, NULL, 1),
(1055, 1483, 8000.00, 0, NULL, 11, '2020-11-26', NULL, NULL, NULL, 1),
(1056, 1483, 8000.00, 0, NULL, 11, '2020-11-26', NULL, NULL, NULL, 1),
(1057, 1483, 8000.00, 0, NULL, 11, '2020-11-26', NULL, NULL, NULL, 1),
(1058, 1483, 18000.00, 0, NULL, 11, '2020-11-27', NULL, NULL, NULL, 1),
(1059, 1506, 5000.00, 0, NULL, 11, '2020-11-27', NULL, NULL, NULL, 1),
(1060, 1483, 17000.00, 0, NULL, 11, '2020-11-27', NULL, NULL, NULL, 1),
(1061, 1450, 242.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1062, 1450, 334.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1063, 1450, 460.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1064, 1450, 450.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1065, 1450, 240.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1066, 1450, 248.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1067, 1450, 574.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1068, 1445, 17612.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 281, 1),
(1069, 1484, 14360.00, 0, NULL, 11, '2020-12-02', NULL, NULL, NULL, 1),
(1070, 1450, 320.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1071, 1450, 316.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1072, 1450, 120.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1073, 1450, 440.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1074, 1450, 334.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1075, 1450, 344.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1076, 1445, 12486.00, 0, NULL, 22, '2020-12-02', NULL, NULL, 283, 1),
(1077, 1483, 23500.00, 0, NULL, 11, '2020-12-03', NULL, NULL, NULL, 1),
(1078, 1483, 23500.00, 0, NULL, 11, '2020-12-03', NULL, NULL, NULL, 1),
(1079, 1483, 23500.00, 0, NULL, 11, '2020-12-07', NULL, NULL, NULL, 1),
(1080, 1483, 23500.00, 0, NULL, 11, '2020-12-07', NULL, NULL, NULL, 1),
(1081, 1483, 23000.00, 0, NULL, 11, '2020-12-07', NULL, NULL, NULL, 1),
(1082, 1483, 22500.00, 0, NULL, 11, '2020-12-07', NULL, NULL, NULL, 1),
(1083, 1483, 23500.00, 0, NULL, 11, '2020-12-08', NULL, NULL, NULL, 1),
(1084, 1450, 704.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1085, 1450, 1004.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1086, 1450, 382.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1087, 1450, 1136.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1088, 1450, 500.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1089, 1445, 4274.00, 0, NULL, 22, '2020-12-09', NULL, NULL, 284, 1),
(1090, 1483, 23180.00, 0, NULL, 11, '2020-12-09', NULL, NULL, NULL, 1),
(1091, 1450, 924.00, 0, NULL, 22, '2020-12-10', NULL, NULL, 285, 1),
(1092, 1450, 1300.00, 0, NULL, 22, '2020-12-11', NULL, NULL, 285, 1),
(1093, 1483, 18880.00, 0, NULL, 11, '2020-12-14', NULL, NULL, NULL, 1),
(1094, 1450, 704.00, 0, NULL, 22, '2020-12-14', NULL, NULL, 285, 1),
(1095, 1450, 754.00, 0, NULL, 22, '2020-12-14', NULL, NULL, 285, 1),
(1096, 1450, 1074.00, 0, NULL, 22, '2020-12-14', NULL, NULL, 285, 1),
(1097, 1450, 786.00, 0, NULL, 22, '2020-12-14', NULL, NULL, 285, 1),
(1098, 1483, 23000.00, 0, NULL, 11, '2020-12-14', NULL, NULL, NULL, 1),
(1099, 1450, 650.00, 0, NULL, 22, '2020-12-15', NULL, NULL, 285, 1),
(1100, 1450, 706.00, 0, NULL, 22, '2020-12-15', NULL, NULL, 285, 1),
(1101, 1445, 16282.00, 0, NULL, 22, '2020-12-15', NULL, NULL, 285, 1),
(1102, 1450, 724.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1103, 1450, 1070.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1104, 1450, 476.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1105, 1450, 774.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1106, 1450, 270.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1107, 1450, 674.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1108, 1450, 356.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1109, 1450, 1104.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1110, 1450, 780.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1111, 1450, 620.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1112, 1445, 12032.00, 0, NULL, 22, '2020-12-21', NULL, NULL, 286, 1),
(1113, 1483, 22720.00, 0, NULL, 11, '2020-12-22', NULL, NULL, NULL, 1),
(1114, 1483, 70000.00, 0, NULL, 11, '2021-01-08', NULL, NULL, NULL, 1),
(1115, 1483, 22580.00, 0, NULL, 11, '2021-01-11', NULL, NULL, NULL, 1),
(1116, 1450, 710.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1117, 1450, 1202.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1118, 1450, 950.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1119, 1450, 810.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1120, 1450, 916.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1121, 1450, 942.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1122, 1450, 824.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1123, 1445, 16226.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 287, 1),
(1124, 1450, 874.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1125, 1450, 1232.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1126, 1450, 772.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1127, 1450, 76.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1128, 1450, 202.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1129, 1450, 430.00, 0, NULL, 22, '2021-01-11', NULL, NULL, 288, 1),
(1130, 1450, 1040.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1131, 1450, 984.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1132, 1450, 980.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1133, 1450, 260.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1134, 1450, 800.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1135, 1450, 1130.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1136, 1445, 13940.00, 0, NULL, 22, '2021-01-14', NULL, NULL, 288, 1),
(1137, 1483, 23500.00, 0, NULL, 11, '2021-01-18', NULL, NULL, NULL, 1),
(1138, 1483, 22000.00, 0, NULL, 11, '2021-01-18', NULL, NULL, NULL, 1),
(1139, 1483, 20690.00, 0, NULL, 11, '2021-01-19', NULL, NULL, NULL, 1),
(1140, 1483, 23760.00, 0, NULL, 11, '2021-01-19', NULL, NULL, NULL, 1),
(1141, 1483, 24200.00, 0, NULL, 11, '2021-01-19', NULL, NULL, NULL, 1),
(1142, 1483, 22000.00, 0, NULL, 11, '2021-01-20', NULL, NULL, NULL, 1),
(1143, 1450, 770.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1144, 1450, 948.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1145, 1450, 740.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1146, 1450, 1092.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1147, 1450, 60.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1148, 1450, 1000.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1149, 1450, 978.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1150, 1450, 628.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1151, 1450, 1060.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1152, 1445, 13414.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 289, 1),
(1153, 1450, 326.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1154, 1450, 980.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1155, 1450, 514.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1156, 1450, 880.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1157, 1450, 835.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1158, 1450, 798.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1159, 1450, 944.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1160, 1450, 770.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1161, 1445, 17713.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 290, 1),
(1162, 1450, 826.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 291, 1),
(1163, 1450, 1070.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 291, 1),
(1164, 1450, 1190.00, 0, NULL, 22, '2021-01-25', NULL, NULL, 291, 1),
(1165, 1485, 80000.00, 0, NULL, 11, '2021-01-26', NULL, NULL, NULL, 1),
(1166, 1483, 20760.00, 0, NULL, 11, '2021-01-26', NULL, NULL, NULL, 1),
(1167, 1483, 10000.00, 0, NULL, 11, '2021-01-28', NULL, NULL, NULL, 1),
(1168, 1483, 9600.00, 0, NULL, 11, '2021-01-28', NULL, NULL, NULL, 1),
(1169, 1450, 964.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 291, 1),
(1170, 1450, 906.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 291, 1),
(1171, 1450, 988.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 291, 1),
(1172, 1445, 18256.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 291, 1),
(1173, 1450, 800.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1174, 1450, 846.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1175, 1450, 730.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1176, 1450, 834.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1177, 1450, 670.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1178, 1450, 518.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1179, 1450, 906.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1180, 1450, 654.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1181, 1450, 540.00, 0, NULL, 22, '2021-01-29', NULL, NULL, 292, 1),
(1182, 1450, 692.00, 0, NULL, 22, '2021-02-01', NULL, NULL, 292, 1),
(1183, 1445, 13570.00, 0, NULL, 22, '2021-02-01', NULL, NULL, 292, 1),
(1184, 1483, 23090.00, 0, NULL, 11, '2021-02-10', NULL, NULL, NULL, 1),
(1185, 1483, 23720.00, 0, NULL, 11, '2021-02-10', NULL, NULL, NULL, 1),
(1186, 1483, 9600.00, 0, NULL, 11, '2021-02-10', NULL, NULL, NULL, 1),
(1187, 1450, 378.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1188, 1450, 584.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1189, 1450, 430.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1190, 1450, 258.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1191, 1450, 580.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1192, 1450, 122.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1193, 1450, 430.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1194, 1450, 780.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1195, 1450, 430.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1196, 1450, 976.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1197, 1450, 1140.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1198, 1445, 16882.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 293, 1),
(1199, 1450, 410.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1200, 1450, 1150.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1201, 1450, 1128.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1202, 1450, 812.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1203, 1450, 1160.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1204, 1450, 790.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1205, 1450, 18270.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 294, 1),
(1206, 1450, 192.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1207, 1450, 1078.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1208, 1450, 730.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1209, 1450, 806.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1210, 1450, 1110.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1211, 1450, 720.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1212, 1445, 4964.00, 0, NULL, 22, '2021-02-12', NULL, NULL, 295, 1),
(1213, 1433, 2000.00, 0, NULL, 11, '2021-02-15', NULL, NULL, NULL, 1),
(1214, 1433, 2000.00, 0, NULL, 11, '2021-02-15', NULL, NULL, NULL, 1),
(1215, 1483, 21500.00, 0, NULL, 11, '2021-02-15', NULL, NULL, NULL, 1),
(1216, 1483, 23500.00, 0, NULL, 11, '2021-02-16', NULL, NULL, NULL, 1),
(1217, 1483, 23500.00, 0, NULL, 11, '2021-02-16', NULL, NULL, NULL, 1),
(1218, 1483, 23500.00, 0, NULL, 11, '2021-02-16', NULL, NULL, NULL, 1),
(1219, 1484, 24280.00, 0, NULL, 11, '2021-02-25', NULL, NULL, NULL, 1),
(1220, 1450, 876.00, 990, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1221, 1450, 990.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1222, 1450, 626.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1223, 1450, 846.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1224, 1450, 864.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1225, 1450, 1132.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1226, 1450, 1076.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1227, 1450, 552.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1228, 1445, 17318.00, 0, NULL, 22, '2021-03-01', NULL, NULL, 296, 1),
(1229, 1483, 22500.00, 0, NULL, 11, '2021-03-02', NULL, NULL, NULL, 1),
(1230, 1483, 23000.00, 0, NULL, 11, '2021-03-02', NULL, NULL, NULL, 1),
(1231, 1483, 23580.00, 0, NULL, 11, '2021-03-03', NULL, NULL, NULL, 1),
(1232, 1483, 17200.00, 0, NULL, 11, '2021-03-03', NULL, NULL, NULL, 1),
(1233, 1445, 2000.00, 0, NULL, 22, '2021-03-03', NULL, NULL, 297, 1),
(1234, 1445, 21500.00, 0, NULL, 22, '2021-03-03', NULL, NULL, 298, 1),
(1235, 1450, 957.00, 1, NULL, 22, '2021-03-03', NULL, NULL, 300, 1),
(1236, 2134, 61.00, 0, NULL, 22, '2021-03-03', NULL, NULL, 300, 1),
(1237, 1450, 713.00, 1, NULL, 22, '2021-03-03', NULL, NULL, 300, 1),
(1238, 2134, 45.00, 0, NULL, 22, '2021-03-03', NULL, NULL, 300, 1),
(1239, 1450, 713.00, 1, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1240, 2134, 45.00, 0, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1241, 1450, 1044.00, 1, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1242, 2134, 66.00, 0, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1243, 1450, 732.00, 1, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1244, 2134, 46.00, 0, NULL, 22, '2021-03-04', NULL, NULL, 300, 1),
(1245, 1450, 275.00, 1, NULL, 22, '2021-03-05', NULL, NULL, 300, 1),
(1246, 2134, 17.00, 0, NULL, 22, '2021-03-05', NULL, NULL, 300, 1),
(1247, 1, 996.00, 1, NULL, 22, '2021-03-05', NULL, NULL, 300, 1),
(1248, 1450, 996.00, 1, NULL, 22, '2021-03-05', NULL, NULL, 300, 1),
(1249, 2134, 63.00, 0, NULL, 22, '2021-03-05', NULL, NULL, 300, 1),
(1250, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1251, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1252, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1253, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1254, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1255, 1450, 100.00, 1, NULL, 22, '2021-03-07', NULL, NULL, 300, 1),
(1256, 2135, 5832.00, 3, NULL, 11, '2021-03-08', NULL, NULL, NULL, 1),
(1257, 1477, 3111.00, 2, NULL, 11, '2021-03-08', NULL, NULL, NULL, 1),
(1258, 1484, 503.00, 1, NULL, 11, '2021-03-08', NULL, NULL, NULL, 1),
(1259, 1483, 11780.00, 0, NULL, 11, '2021-03-08', NULL, NULL, NULL, 1),
(1260, 1432, 10.00, 0, NULL, 11, '2021-03-08', NULL, NULL, NULL, 1),
(1261, 1445, 12085.00, 10, NULL, 22, '2021-03-08', NULL, NULL, 300, 1),
(1262, 1452, 738.00, 1, NULL, 22, '2021-03-08', NULL, NULL, 301, 1),
(1263, 1450, 198.00, 0, NULL, 22, '2021-03-08', NULL, NULL, 301, 1),
(1264, 1452, 354.00, 0, NULL, 22, '2021-03-09', NULL, NULL, 301, 1),
(1265, 1452, 320.00, 0, NULL, 22, '2021-03-09', NULL, NULL, 301, 1),
(1266, 1452, 558.00, 0, NULL, 22, '2021-03-09', NULL, NULL, 301, 1),
(1267, 1501, 943.00, 0, NULL, 22, '2021-03-09', NULL, NULL, 301, 1),
(1268, 1450, 386.00, 1, NULL, 22, '2021-03-09', NULL, NULL, 302, 1),
(1269, 1483, 498.00, 1, NULL, 11, '2021-03-09', NULL, NULL, NULL, 1),
(1270, 1432, 2.00, 0, NULL, 11, '2021-03-09', NULL, NULL, NULL, 1),
(1271, 1432, 3765.00, 0, NULL, 11, '2021-03-18', NULL, NULL, NULL, 1),
(1272, 1483, 19395.00, 0, NULL, 11, '2021-03-18', NULL, NULL, NULL, 1),
(1273, 1582, 1330.00, 0, NULL, 7, '2021-03-24', NULL, NULL, NULL, 1),
(1274, 2100, 210.00, 0, NULL, 7, '2021-03-24', NULL, NULL, NULL, 1),
(1275, 2120, 2150.00, 0, NULL, 7, '2021-03-24', NULL, NULL, NULL, 1),
(1276, 2137, 2490.00, 0, NULL, 7, '2021-03-24', NULL, NULL, NULL, 1),
(1277, 2136, 40.00, 0, NULL, 7, '2021-03-24', NULL, NULL, NULL, 1),
(1278, 2138, 870.00, 2, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1279, 2138, 870.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1280, 1526, 224.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1281, 1526, 223.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1282, 2138, 739.50, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1283, 1510, 141.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1284, 1531, 85.50, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1285, 2139, 141.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 304, 1),
(1286, 1526, 188.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 305, 1),
(1287, 1510, 12.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 305, 1),
(1288, 1525, 6.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 305, 1),
(1289, 1531, 4.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 305, 1),
(1290, 1526, 920.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 306, 1),
(1291, 1525, 733.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 306, 1),
(1292, 1531, 33.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 306, 1),
(1293, 1510, 464.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 306, 1),
(1294, 2140, 1004.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 307, 1),
(1295, 1526, 455.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 307, 1),
(1296, 1510, 1031.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 307, 1),
(1297, 1510, 10.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 308, 1),
(1298, 2140, 12.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 308, 1),
(1299, 1526, 11.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 308, 1),
(1300, 1525, 7.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 308, 1),
(1301, 1534, 877.30, 0, NULL, 18, '2021-03-24', NULL, NULL, 309, 1),
(1302, 1583, 780.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 309, 1),
(1303, 1514, 0.70, 0, NULL, 18, '2021-03-24', NULL, NULL, 309, 1),
(1304, 1534, 100.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 310, 1),
(1305, 1583, 40.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 310, 1),
(1306, 1514, 1.00, 0, NULL, 18, '2021-03-24', NULL, NULL, 310, 1),
(1307, 1580, 887.40, 0, NULL, 18, '2021-03-24', NULL, NULL, 311, 1),
(1308, 2141, 89.90, 0, NULL, 18, '2021-03-24', NULL, NULL, 311, 1),
(1309, 1483, 21000.00, 0, NULL, 11, '2021-03-29', NULL, NULL, NULL, 1),
(1310, 1438, 2000.00, 0, NULL, 11, '2021-03-29', NULL, NULL, NULL, 1),
(1311, 1484, 23000.00, 0, NULL, 11, '2021-03-29', NULL, NULL, NULL, 1),
(1312, 1483, 11800.00, 0, NULL, 11, '2021-04-07', NULL, NULL, NULL, 1),
(1313, 1450, 200.00, 0, NULL, 22, '2021-04-07', NULL, NULL, 312, 1),
(1314, 1501, 303.00, 0, NULL, 22, '2021-04-07', NULL, NULL, 312, 1),
(1315, 1450, 3600.00, 0, NULL, 22, '2021-04-07', NULL, NULL, 302, 1),
(1316, 1501, 7794.00, 0, NULL, 22, '2021-04-07', NULL, NULL, 302, 1),
(1317, 1483, 24000.00, 0, NULL, 11, '2021-04-09', NULL, NULL, NULL, 1),
(1318, 1483, 24000.00, 0, NULL, 11, '2021-04-12', NULL, NULL, NULL, 1),
(1319, 1483, 24000.00, 0, NULL, 11, '2021-04-12', NULL, NULL, NULL, 1),
(1320, 1483, 24000.00, 0, NULL, 11, '2021-04-12', NULL, NULL, NULL, 1),
(1321, 1483, 15000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1322, 1483, 15000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1323, 1506, 5000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1324, 1483, 15000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1325, 1506, 5000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1326, 1506, 5000.00, 0, NULL, 11, '2021-04-20', NULL, NULL, NULL, 1),
(1327, 1450, 5464.00, 0, NULL, 22, '2021-04-26', NULL, NULL, 303, 1),
(1328, 1445, 13931.00, 0, NULL, 22, '2021-04-26', NULL, NULL, 303, 1),
(1329, 1483, 22860.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1330, 1483, 23850.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1331, 1483, 21780.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1332, 1483, 16010.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1333, 1483, 21320.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1334, 1483, 23320.00, 0, NULL, 11, '2021-04-26', NULL, NULL, NULL, 1),
(1335, 1506, 24000.00, 0, NULL, 11, '2021-04-27', NULL, NULL, NULL, 1),
(1336, 2142, 5000.00, 0, NULL, 11, '2021-04-28', NULL, NULL, NULL, 1),
(1337, 1506, 20000.00, 0, NULL, 11, '2021-04-30', NULL, NULL, NULL, 1),
(1338, 1450, 7058.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 313, 1),
(1339, 1445, 16262.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 313, 1),
(1340, 1450, 6590.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 314, 1),
(1341, 1445, 14730.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 314, 1),
(1342, 1450, 6582.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 315, 1),
(1343, 1445, 9428.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 315, 1),
(1344, 1450, 6238.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 316, 1),
(1345, 1445, 15542.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 316, 1),
(1346, 1450, 6674.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 317, 1),
(1347, 1445, 17176.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 317, 1),
(1348, 1450, 6808.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 318, 1),
(1349, 1445, 16052.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 318, 1),
(1350, 1450, 8278.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 319, 1),
(1351, 1445, 6722.00, 0, NULL, 22, '2021-05-04', NULL, NULL, 319, 1),
(1352, 1506, 3000.00, 0, NULL, 11, '2021-05-06', NULL, NULL, NULL, 1),
(1353, 1506, 3000.00, 0, NULL, 11, '2021-05-06', NULL, NULL, NULL, 1),
(1354, 1433, 17998.00, 0, NULL, 11, '2021-05-06', NULL, NULL, NULL, 1),
(1355, 2142, 1500.00, 0, NULL, 11, '2021-05-06', NULL, NULL, NULL, 1),
(1356, 1483, 23500.00, 0, NULL, 11, '2021-05-07', NULL, NULL, NULL, 1),
(1357, 1483, 23500.00, 0, NULL, 11, '2021-05-07', NULL, NULL, NULL, 1),
(1358, 1483, 48000.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1359, 1483, 48000.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1360, 2142, 1500.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1361, 1483, 23500.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1362, 2142, 1500.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1363, 2142, 1500.00, 0, NULL, 11, '2021-05-11', NULL, NULL, NULL, 1),
(1364, 2142, 1500.00, 0, NULL, 11, '2021-05-12', NULL, NULL, NULL, 1),
(1365, 1483, 24020.00, 0, NULL, 11, '2021-05-14', NULL, NULL, NULL, 1),
(1366, 1483, 23300.00, 0, NULL, 11, '2021-05-14', NULL, NULL, NULL, 1),
(1367, 1483, 23400.00, 0, NULL, 11, '2021-05-14', NULL, NULL, NULL, 1),
(1368, 1450, 8420.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 322, 1),
(1369, 1445, 14880.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 322, 1),
(1370, 1450, 362.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1371, 1450, 984.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1372, 1450, 592.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1373, 1450, 1086.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1374, 1450, 876.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1375, 1450, 466.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1376, 1450, 882.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1377, 1450, 944.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1378, 1450, 742.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1379, 1450, 742.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1380, 1450, 772.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1381, 1445, 14952.00, 0, NULL, 22, '2021-05-17', NULL, NULL, 323, 1),
(1382, 1450, 540.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1383, 1450, 434.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1384, 1450, 710.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1385, 1450, 710.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1386, 1450, 674.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1387, 1450, 894.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1388, 1450, 642.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1389, 1445, 19416.00, 0, NULL, 22, '2021-05-19', NULL, NULL, 324, 1),
(1390, 1483, 1100.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1391, 0, 0.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1392, 1483, 1100.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1393, 1483, 1100.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1394, 1483, 1100.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1395, 1483, 1100.00, 0, NULL, 11, '2021-05-25', NULL, NULL, NULL, 1),
(1396, 1483, 20000.00, 0, NULL, 11, '2021-05-28', NULL, NULL, NULL, 1),
(1397, 1483, 23000.00, 0, NULL, 11, '2021-06-04', NULL, NULL, NULL, 1),
(1398, 1483, 23000.00, 0, NULL, 11, '2021-06-07', NULL, NULL, NULL, 1),
(1399, 1483, 23000.00, 0, NULL, 11, '2021-06-07', NULL, NULL, NULL, 1),
(1400, 1483, 20018.00, 0, NULL, 11, '2021-06-08', NULL, NULL, NULL, 1),
(1401, 1483, 12000.00, 0, NULL, 11, '2021-06-15', NULL, NULL, NULL, 1),
(1402, 1483, 12000.00, 0, NULL, 11, '2021-06-15', NULL, NULL, NULL, 1),
(1403, 0, 0.00, 0, NULL, 11, '2021-06-18', NULL, NULL, NULL, 1),
(1404, 1483, 12000.00, 0, NULL, 11, '2021-06-18', NULL, NULL, NULL, 1),
(1405, 1483, 20000.00, 0, NULL, 11, '2021-06-29', NULL, NULL, NULL, 1),
(1406, 1483, 23000.00, 0, NULL, 11, '2021-07-06', NULL, NULL, NULL, 1),
(1407, 0, 0.00, 0, NULL, 11, '2021-07-06', NULL, NULL, NULL, 1),
(1408, 1483, 23000.00, 0, NULL, 11, '2021-07-06', NULL, NULL, NULL, 1),
(1409, 1483, 21000.00, 0, NULL, 11, '2021-07-26', NULL, NULL, NULL, 1),
(1410, 1433, 2000.00, 0, NULL, 11, '2021-07-26', NULL, NULL, NULL, 1),
(1411, 1484, 19070.00, 0, NULL, 11, '2021-07-26', NULL, NULL, NULL, 1),
(1412, 1484, 19000.00, 0, NULL, 11, '2021-07-26', NULL, NULL, NULL, 1),
(1413, 1433, 70.00, 0, NULL, 11, '2021-07-26', NULL, NULL, NULL, 1),
(1414, 1484, 24000.00, 0, NULL, 11, '2021-07-27', NULL, NULL, NULL, 1),
(1415, 1484, 24000.00, 0, NULL, 11, '2021-07-27', NULL, NULL, NULL, 1),
(1416, 1483, 23580.00, 0, NULL, 11, '2021-08-03', NULL, NULL, NULL, 1),
(1417, 1450, 4640.00, 0, NULL, 22, '2021-08-18', NULL, NULL, 325, 1),
(1418, 1445, 18940.00, 0, NULL, 22, '2021-08-18', NULL, NULL, 325, 1),
(1419, 1450, 4310.00, 0, NULL, 22, '2021-08-18', NULL, NULL, 326, 1),
(1420, 1445, 15708.00, 0, NULL, 22, '2021-08-18', NULL, NULL, 326, 1),
(1421, 1483, 23000.00, 0, NULL, 11, '2021-08-26', NULL, NULL, NULL, 1),
(1422, 1483, 23000.00, 0, NULL, 11, '2021-08-26', NULL, NULL, NULL, 1),
(1423, 2199, 21046.69, 0, NULL, 15, '2021-08-29', NULL, NULL, NULL, 1),
(1424, 2198, 21092.04, 0, NULL, 15, '2021-08-29', NULL, NULL, NULL, 1),
(1425, 2198, 21062.11, 0, NULL, 15, '2021-08-31', NULL, NULL, NULL, 1),
(1426, 2165, 4220.00, 1, NULL, 35, '2021-08-31', NULL, NULL, 327, 1),
(1427, 1484, 24000.00, 0, NULL, 11, '2021-09-06', NULL, NULL, NULL, 1),
(1428, 1484, 24000.00, 0, NULL, 11, '2021-09-06', NULL, NULL, NULL, 1),
(1429, 1484, 24000.00, 0, NULL, 11, '2021-09-06', NULL, NULL, NULL, 1),
(1430, 1483, 24280.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1431, 1483, 23940.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1432, 1483, 22500.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1433, 1477, 920.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1434, 1483, 20283.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1435, 1483, 24200.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1436, 1483, 14697.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1437, 1483, 16720.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1438, 1483, 18690.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1439, 1483, 24030.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1440, 1483, 23090.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1441, 1483, 24360.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1442, 1483, 24020.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1443, 1483, 2.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1444, 1483, 0.00, 0, NULL, 11, '2021-09-07', NULL, NULL, NULL, 1),
(1445, 1450, 5136.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 328, 1),
(1446, 1445, 15147.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 328, 1),
(1447, 1450, 4708.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 329, 1),
(1448, 1445, 19652.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 329, 1),
(1449, 1450, 8278.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 330, 1),
(1450, 1445, 14812.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 330, 1),
(1451, 1450, 8541.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 331, 1),
(1452, 1445, 15489.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 331, 1),
(1453, 1450, 7104.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 332, 1),
(1454, 1445, 11586.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 332, 1),
(1455, 1450, 6040.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 333, 1),
(1456, 1445, 8657.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 333, 1),
(1457, 1450, 4055.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 334, 1),
(1458, 1445, 20145.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 334, 1),
(1459, 1450, 8198.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 335, 1),
(1460, 1445, 15742.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 335, 1),
(1461, 1450, 1.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 337, 1),
(1462, 1445, 1.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 337, 1),
(1463, 1450, 4638.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 336, 1),
(1464, 1445, 12082.00, 0, NULL, 22, '2021-09-07', NULL, NULL, 336, 1),
(1465, 1450, 7790.00, 0, NULL, 22, '2021-09-09', NULL, NULL, 338, 1);
INSERT INTO `inventoryproductdetails` (`id`, `inventoryproductid`, `quantity`, `baskets`, `image`, `userid`, `sysdate`, `update_user`, `update_date`, `processcompleteid`, `status`) VALUES
(1466, 1445, 16490.00, 0, NULL, 22, '2021-09-09', NULL, NULL, 338, 1),
(1467, 1483, 23780.00, 0, NULL, 11, '2021-09-10', NULL, NULL, NULL, 1),
(1468, 1483, 23780.00, 0, NULL, 11, '2021-09-10', NULL, NULL, NULL, 1),
(1469, 1484, 23000.00, 0, NULL, 11, '2021-09-13', NULL, NULL, NULL, 1),
(1470, 2148, 11339.81, 0, NULL, 15, '2021-09-15', NULL, NULL, NULL, 1),
(1471, 2148, 24947.58, 0, NULL, 15, '2021-09-15', NULL, NULL, NULL, 1),
(1472, 0, 0.00, 0, NULL, 15, '2021-09-15', NULL, NULL, NULL, 1),
(1473, 2148, 20159.46, 0, NULL, 15, '2021-09-17', NULL, NULL, NULL, 1),
(1474, 2198, 5443.11, 0, NULL, 15, '2021-09-17', NULL, NULL, NULL, 1),
(1475, 2198, 23000.00, 0, NULL, 15, '2021-09-20', NULL, NULL, NULL, 1),
(1476, 2198, 23111.00, 0, NULL, 15, '2021-09-20', NULL, NULL, NULL, 1),
(1477, 2198, 23000.00, 0, NULL, 15, '2021-09-20', NULL, NULL, NULL, 1),
(1478, 2198, 24340.00, 0, NULL, 15, '2021-09-21', NULL, NULL, NULL, 1),
(1479, 2198, 10000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1480, 2198, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1481, 2198, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1482, 2198, 20001.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1483, 2198, 20001.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1484, 2198, 20001.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1485, 2198, 20001.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1486, 2198, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1487, 2198, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1488, 2198, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1489, 2198, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1490, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1491, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1492, 2199, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1493, 2199, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1494, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1495, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1496, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1497, 2148, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1498, 2148, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1499, 2148, 20000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1500, 2198, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1501, 2198, 15000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1502, 2199, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1503, 2199, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1504, 2200, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1505, 2200, 5000.00, 0, NULL, 15, '2021-09-23', NULL, NULL, NULL, 1),
(1506, 2165, 6000.00, 4, NULL, 35, '2021-09-23', NULL, NULL, 339, 1),
(1507, 2160, 9000.00, 0, NULL, 35, '2021-09-23', NULL, NULL, 339, 1),
(1508, 2167, 1000.00, 1, NULL, 35, '2021-09-23', NULL, NULL, 340, 1),
(1509, 2160, 4000.00, 0, NULL, 35, '2021-09-23', NULL, NULL, 340, 1),
(1510, 2165, 500.00, 0, NULL, 35, '2021-09-23', NULL, NULL, 341, 1),
(1511, 2160, 4500.00, 0, NULL, 35, '2021-09-23', NULL, NULL, 341, 1),
(1512, 2165, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1513, 2165, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1514, 2165, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1515, 2165, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1516, 927, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1517, 927, 5000.00, 0, NULL, 35, '2021-09-24', NULL, NULL, 342, 1),
(1518, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1519, 2165, 1000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1520, 927, 1000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1521, 927, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1522, 927, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1523, 927, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1524, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1525, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1526, 928, 1000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1527, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1528, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1529, 928, 2000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1530, 2199, 20000.00, 0, NULL, 15, '2021-09-25', NULL, NULL, NULL, 1),
(1531, 2198, 1000.00, 0, NULL, 15, '2021-09-25', NULL, NULL, NULL, 1),
(1532, 2198, 1000.00, 0, NULL, 15, '2021-09-25', NULL, NULL, NULL, 1),
(1533, 930, 6000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 343, 1),
(1534, 922, 14000.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 343, 1),
(1535, 930, 200.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 344, 1),
(1536, 922, 800.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 344, 1),
(1537, 930, 6500.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 345, 1),
(1538, 922, 17840.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 345, 1),
(1539, 930, 4500.00, 3, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1540, 922, 10500.00, 0, NULL, 35, '2021-09-25', NULL, NULL, 342, 1),
(1541, 927, 5000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 346, 1),
(1542, 927, 4000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 347, 1),
(1543, 922, 1000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 347, 1),
(1544, 2198, 7000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1545, 2199, 6000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1546, 2200, 7000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1547, 2198, 6500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1548, 2198, 6500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1549, 2199, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1550, 2199, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1551, 2198, 9000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1552, 2200, 1000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1553, 2198, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1554, 2198, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1555, 2200, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1556, 2200, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1557, 2199, 13501.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1558, 2199, 13501.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1559, 2199, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1560, 2199, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1561, 2199, 13505.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1562, 2199, 13505.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1563, 2200, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1564, 2200, 13500.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1565, 2198, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1566, 2200, 5000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1567, 2200, 10000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1568, 2200, 10000.00, 0, NULL, 15, '2021-09-26', NULL, NULL, NULL, 1),
(1569, 927, 2000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 348, 1),
(1570, 922, 3000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 348, 1),
(1571, 930, 4000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 349, 1),
(1572, 922, 6000.00, 0, NULL, 35, '2021-09-26', NULL, NULL, 349, 1),
(1573, 987, 1000.00, 3, NULL, 35, '2021-09-27', NULL, NULL, 350, 1),
(1574, 927, 3500.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 350, 1),
(1575, 922, 2000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 350, 1),
(1576, 2198, 15000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1577, 2199, 4544.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1578, 2199, 6500.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1579, 2199, 6500.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1580, 2154, 2040.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1581, 2154, 2040.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1582, 927, 5000.00, 4, NULL, 35, '2021-09-27', NULL, NULL, 351, 1),
(1583, 922, 10000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 351, 1),
(1584, 930, 2500.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 352, 1),
(1585, 922, 4000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 352, 1),
(1586, 924, 0.05, 0, NULL, 35, '2021-09-27', NULL, NULL, 353, 1),
(1587, 928, 839.95, 0, NULL, 35, '2021-09-27', NULL, NULL, 353, 1),
(1588, 922, 1200.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 353, 1),
(1589, 2198, 5000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1590, 2200, 5000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1591, 2201, 5000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1600, 2201, 6000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1601, 2201, 5000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1603, 2201, 6000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1605, 2200, 6000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1606, 2200, 4000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1607, 2201, 6000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1608, 2198, 3000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1609, 2199, 3000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1610, 2200, 3000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1611, 2198, 2500.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1612, 2199, 4000.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1613, 2200, 3500.00, 0, NULL, 15, '2021-09-27', NULL, NULL, NULL, 1),
(1614, 927, 1000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 354, 1),
(1615, 922, 1500.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 354, 1),
(1616, 930, 2000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 355, 1),
(1617, 922, 2000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 355, 1),
(1618, 928, 2000.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 356, 1),
(1619, 922, 1500.00, 0, NULL, 35, '2021-09-27', NULL, NULL, 356, 1),
(1620, 1483, 23000.00, 0, NULL, 11, '2021-09-28', NULL, NULL, NULL, 1),
(1621, 1483, 8800.00, 0, NULL, 11, '2021-09-28', NULL, NULL, NULL, 1),
(1622, 1477, 2477.00, 0, NULL, 11, '2021-09-28', NULL, NULL, NULL, 1),
(1623, 566, 2200.00, 0, NULL, 36, '2021-09-29', NULL, NULL, 357, 1),
(1624, 561, 6600.00, 0, NULL, 36, '2021-09-29', NULL, NULL, 357, 1),
(1625, 2198, 23000.00, 0, NULL, 15, '2021-10-04', NULL, NULL, NULL, 1),
(1626, 2198, 22900.00, 0, NULL, 15, '2021-10-04', NULL, NULL, NULL, 1),
(1627, 927, 1420.00, 1, NULL, 35, '2021-10-04', NULL, NULL, 358, 1),
(1628, 922, 6000.00, 4, NULL, 35, '2021-10-04', NULL, NULL, 358, 1),
(1629, 927, 6500.00, 5, NULL, 35, '2021-10-04', NULL, NULL, 358, 1),
(1630, 922, 8980.00, 0, NULL, 35, '2021-10-04', NULL, NULL, 358, 1),
(1631, 1483, 23000.00, 0, NULL, 11, '2021-10-15', NULL, NULL, NULL, 1),
(1632, 1483, 23000.00, 0, NULL, 11, '2021-10-15', NULL, NULL, NULL, 1),
(1633, 1506, 20000.00, 0, NULL, 11, '2021-10-21', NULL, NULL, NULL, 1),
(1634, 1484, 14000.00, 0, NULL, 11, '2021-10-21', NULL, NULL, NULL, 1),
(1635, 1506, 6000.00, 0, NULL, 11, '2021-10-21', NULL, NULL, NULL, 1),
(1636, 1483, 14000.00, 0, NULL, 11, '2021-10-21', NULL, NULL, NULL, 1),
(1637, 1483, 24000.00, 0, NULL, 11, '2021-10-26', NULL, NULL, NULL, 1),
(1638, 1483, 24000.00, 0, NULL, 11, '2021-10-27', NULL, NULL, NULL, 1),
(1639, 1483, 24000.00, 0, NULL, 11, '2021-10-27', NULL, NULL, NULL, 1),
(1640, 1483, 24000.00, 0, NULL, 11, '2021-10-27', NULL, NULL, NULL, 1),
(1641, 1506, 23943.00, 0, NULL, 11, '2021-10-28', NULL, NULL, NULL, 1),
(1642, 1483, 13829.00, 0, NULL, 11, '2021-10-28', NULL, NULL, NULL, 1),
(1643, 1483, 13829.00, 0, NULL, 11, '2021-10-28', NULL, NULL, NULL, 1),
(1644, 1483, 23100.00, 0, NULL, 11, '2021-11-01', NULL, NULL, NULL, 1),
(1645, 0, 0.00, 0, NULL, 11, '2021-11-01', NULL, NULL, NULL, 1),
(1646, 566, 3372.00, 0, NULL, 22, '2021-11-09', NULL, NULL, 360, 1),
(1647, 561, 10457.00, 0, NULL, 22, '2021-11-09', NULL, NULL, 360, 1),
(1648, 566, 5682.00, 0, NULL, 22, '2021-11-09', NULL, NULL, 359, 1),
(1649, 561, 17418.00, 0, NULL, 22, '2021-11-09', NULL, NULL, 359, 1),
(1650, 1483, 18100.00, 0, NULL, 11, '2021-11-11', NULL, NULL, NULL, 1),
(1651, 0, 0.00, 0, NULL, 11, '2021-11-11', NULL, NULL, NULL, 1),
(1652, 566, 7996.00, 0, NULL, 22, '2021-11-11', NULL, NULL, 361, 1),
(1653, 561, 10104.00, 0, NULL, 22, '2021-11-11', NULL, NULL, 361, 1),
(1654, 1483, 24000.00, 0, NULL, 11, '2021-11-16', NULL, NULL, NULL, 1),
(1655, 1483, 24000.00, 0, NULL, 11, '2021-11-16', NULL, NULL, NULL, 1),
(1656, 1483, 24040.00, 0, NULL, 11, '2021-11-16', NULL, NULL, NULL, 1),
(1657, 1484, 24200.00, 0, NULL, 11, '2021-11-22', NULL, NULL, NULL, 1),
(1658, 566, 1336.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1659, 566, 762.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1660, 566, 658.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1661, 566, 1354.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1662, 566, 276.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1663, 566, 1116.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1664, 566, 598.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1665, 561, 17940.00, 0, NULL, 22, '2021-11-23', NULL, NULL, 362, 1),
(1666, 566, 668.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1667, 566, 804.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1668, 566, 490.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1669, 566, 684.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1670, 566, 792.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1671, 566, 1122.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1672, 566, 176.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1673, 566, 766.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1674, 566, 578.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1675, 561, 18120.00, 0, NULL, 22, '2021-11-26', NULL, NULL, 363, 1),
(1676, 1483, 16000.00, 0, NULL, 11, '2021-12-03', NULL, NULL, NULL, 1),
(1677, 1483, 0.00, 0, NULL, 11, '2021-12-03', NULL, NULL, NULL, 1),
(1678, 1483, 16000.00, 0, NULL, 11, '2021-12-03', NULL, NULL, NULL, 1),
(1679, 1484, 3000.00, 0, NULL, 11, '2021-12-03', NULL, NULL, NULL, 1),
(1680, 1483, 23740.00, 0, NULL, 11, '2021-12-10', NULL, NULL, NULL, 1),
(1681, 1483, 23590.00, 0, NULL, 11, '2021-12-10', NULL, NULL, NULL, 1),
(1682, 566, 954.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1683, 566, 1024.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1684, 566, 1088.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1685, 566, 970.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1686, 566, 762.00, 0, NULL, 36, '2021-12-14', NULL, NULL, 365, 1),
(1687, 566, 180.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1688, 566, 714.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1689, 566, 668.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1690, 561, 1738274.00, 0, NULL, 22, '2021-12-14', NULL, NULL, 365, 1),
(1691, 1484, 3960.00, 0, NULL, 11, '2021-12-14', NULL, NULL, NULL, 1),
(1692, 1483, 19295.00, 0, NULL, 11, '2021-12-14', NULL, NULL, NULL, 1),
(1693, 566, 182.00, 0, NULL, 22, '2022-01-04', NULL, NULL, 366, 1),
(1694, 566, 578.00, 0, NULL, 22, '2022-01-04', NULL, NULL, 366, 1),
(1695, 566, 266.00, 0, NULL, 22, '2022-01-04', NULL, NULL, 366, 1),
(1696, 566, 538.00, 0, NULL, 22, '2022-01-04', NULL, NULL, 366, 1),
(1697, 561, 2396.00, 0, NULL, 22, '2022-01-04', NULL, NULL, 366, 1),
(1698, 566, 1138.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1699, 566, 766.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1700, 566, 968.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1701, 566, 784.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1702, 566, 684.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1703, 566, 834.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1704, 566, 672.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1705, 566, 838.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1706, 566, 1100.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1707, 561, 15806.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 367, 1),
(1708, 566, 546.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1709, 566, 678.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1710, 566, 1110.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1711, 566, 988.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1712, 566, 678.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1713, 566, 440.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1714, 566, 710.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1715, 566, 888.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1716, 566, 302.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1717, 566, 1438.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1718, 566, 760.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1719, 561, 10757.00, 0, NULL, 22, '2022-01-07', NULL, NULL, 368, 1),
(1720, 1484, 15235.00, 0, NULL, 11, '2022-01-13', NULL, NULL, NULL, 1),
(1721, 2231, 33.00, 1, NULL, 15, '2022-01-13', NULL, NULL, NULL, 1),
(1722, 2232, 36.00, 2, NULL, 15, '2022-01-13', NULL, NULL, NULL, 1),
(1723, 2230, 67.00, 1, NULL, 15, '2022-01-13', NULL, NULL, NULL, 1),
(1724, 2230, 67.00, 0, NULL, 15, '2022-01-13', NULL, NULL, NULL, 1),
(1725, 2230, 63.00, 0, NULL, 15, '2022-01-13', NULL, NULL, NULL, 1),
(1726, 1484, 22580.00, 0, NULL, 11, '2022-01-17', NULL, NULL, NULL, 1),
(1727, 2232, 12.00, 0, NULL, 15, '2022-01-20', NULL, NULL, NULL, 1),
(1728, 2211, 1.00, 0, NULL, 15, '2022-01-21', NULL, NULL, NULL, 1),
(1729, 2232, 5180.00, 10, NULL, 15, '2022-01-26', NULL, NULL, NULL, 1),
(1730, 2231, 5980.00, 10, NULL, 15, '2022-01-26', NULL, NULL, NULL, 1),
(1731, 2230, 4686.00, 7, NULL, 15, '2022-01-26', NULL, NULL, NULL, 1),
(1732, 2147, 200.00, 0, NULL, 15, '2022-01-26', NULL, NULL, NULL, 1),
(1733, 566, 86.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1734, 566, 438.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1735, 566, 76.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1736, 566, 414.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1737, 566, 492.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1738, 566, 398.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1739, 566, 494.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1740, 566, 432.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1741, 566, 320.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1742, 566, 362.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1743, 566, 220.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1744, 561, 11503.00, 0, NULL, 22, '2022-02-02', NULL, NULL, 369, 1),
(1745, 1484, 5551.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1746, 2135, 16202.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1747, 2135, 5311.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1748, 2233, 10890.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1749, 2233, 10898.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1750, 1485, 19746.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1751, 0, 0.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1752, 2135, 1214.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1753, 1485, 21356.00, 0, NULL, 11, '2022-02-03', NULL, NULL, NULL, 1),
(1754, 566, 376.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1755, 566, 736.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1756, 566, 570.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1757, 566, 508.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1758, 566, 634.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1759, 566, 738.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1760, 566, 286.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1761, 566, 460.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1762, 566, 786.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1763, 566, 168.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1764, 566, 412.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1765, 561, 15682.00, 0, NULL, 22, '2022-02-03', NULL, NULL, 371, 1),
(1766, 2230, 16405.00, 12, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1767, 2231, 3192.00, 4, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1768, 2199, 1811.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1769, 2199, 1811.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1770, 2199, 903.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1771, 2199, 903.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1772, 2199, 1811.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1773, 2231, 1376.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1774, 2231, 16311.00, 12, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1775, 2230, 906.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1776, 2232, 906.00, 2, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1777, 2231, 16296.00, 12, NULL, 15, '2022-02-03', NULL, NULL, NULL, 1),
(1778, 566, 782.00, 0, NULL, 22, '2022-02-04', NULL, NULL, 372, 1),
(1779, 566, 646.00, 0, NULL, 22, '2022-02-04', NULL, NULL, 372, 1),
(1780, 566, 98.00, 0, NULL, 22, '2022-02-04', NULL, NULL, 372, 1),
(1781, 561, 4025.00, 0, NULL, 22, '2022-02-04', NULL, NULL, 372, 1),
(1782, 1483, 22000.00, 0, NULL, 11, '2022-02-07', NULL, NULL, NULL, 1),
(1783, 1004, 1318.00, 0, NULL, 22, '2022-02-10', NULL, NULL, 373, 1),
(1784, 1001, 2407.00, 0, NULL, 22, '2022-02-10', NULL, NULL, 373, 1),
(1785, 1006, 587.00, 0, NULL, 22, '2022-02-10', NULL, NULL, 373, 1),
(1786, 1005, 268.00, 0, NULL, 22, '2022-02-10', NULL, NULL, 373, 1),
(1787, 561, 731.00, 0, NULL, 22, '2022-02-10', NULL, NULL, 373, 1),
(1788, 1484, 2000.00, 0, NULL, 11, '2022-02-14', NULL, NULL, NULL, 1),
(1789, 1483, 2000.00, 0, NULL, 11, '2022-02-14', NULL, NULL, NULL, 1),
(1790, 1484, 2000.00, 0, NULL, 11, '2022-02-14', NULL, NULL, NULL, 1),
(1791, 2147, 8.00, 0, NULL, 15, '2022-02-15', NULL, NULL, NULL, 1),
(1792, 2234, 16000.00, 0, NULL, 11, '2022-02-16', NULL, NULL, NULL, 1),
(1793, 2135, 2000.00, 0, NULL, 11, '2022-02-16', NULL, NULL, NULL, 1),
(1794, 1484, 14165.00, 0, NULL, 11, '2022-02-21', NULL, NULL, NULL, 1),
(1795, 1484, 12541.00, 0, NULL, 11, '2022-02-21', NULL, NULL, NULL, 1),
(1796, 1483, 1624.00, 0, NULL, 11, '2022-02-21', NULL, NULL, NULL, 1),
(1797, 2250, 1000.00, 0, NULL, 11, '2022-02-22', NULL, NULL, NULL, 1),
(1798, 1483, 22760.00, 0, NULL, 11, '2022-02-22', NULL, NULL, NULL, 1),
(1799, 566, 1262.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1800, 566, 1622.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1801, 566, 1800.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1802, 566, 1118.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1803, 566, 332.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1804, 566, 860.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1805, 566, 1078.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1806, 566, 876.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1807, 566, 310.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1808, 566, 790.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1809, 561, 12712.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 376, 1),
(1810, 566, 442.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 377, 1),
(1811, 561, 558.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 377, 1),
(1812, 1006, 190.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 374, 1),
(1813, 1004, 250.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 374, 1),
(1814, 1001, 606.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 374, 1),
(1815, 1005, 48.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 374, 1),
(1816, 561, 120.00, 0, NULL, 22, '2022-02-28', NULL, NULL, 374, 1),
(1817, 1483, 21960.00, 0, NULL, 11, '2022-03-07', NULL, NULL, NULL, 1),
(1818, 2232, 7196.00, 23, NULL, 15, '2022-03-08', NULL, NULL, NULL, 1),
(1819, 2232, 7241.00, 23, NULL, 15, '2022-03-08', NULL, NULL, NULL, 1),
(1820, 2232, 7254.00, 23, NULL, 15, '2022-03-08', NULL, NULL, NULL, 1),
(1821, 2232, 7264.00, 23, NULL, 15, '2022-03-08', NULL, NULL, NULL, 1),
(1822, 2232, 7284.00, 23, NULL, 15, '2022-03-08', NULL, NULL, NULL, 1),
(1823, 0, 0.00, 0, NULL, 11, '2022-03-10', NULL, NULL, NULL, 1),
(1824, 566, 1170.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1825, 566, 1174.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1826, 566, 1646.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1827, 566, 1000.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1828, 566, 1462.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1829, 566, 316.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1830, 566, 804.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1831, 566, 770.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1832, 566, 1360.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1833, 566, 754.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1834, 561, 11504.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 378, 1),
(1835, 566, 194.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1836, 566, 684.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1837, 566, 314.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1838, 566, 302.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1839, 566, 222.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1840, 566, 134.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1841, 566, 250.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1842, 566, 442.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1843, 566, 324.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1844, 566, 150.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1845, 561, 9525.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 379, 1),
(1846, 566, 452.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 380, 1),
(1847, 566, 72.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 380, 1),
(1848, 561, 1100.00, 0, NULL, 22, '2022-03-10', NULL, NULL, 380, 1),
(1849, 2230, 15312.00, 44, NULL, 15, '2022-03-11', NULL, NULL, NULL, 1),
(1850, 2230, 15224.00, 44, NULL, 15, '2022-03-11', NULL, NULL, NULL, 1),
(1851, 2230, 15136.00, 44, NULL, 15, '2022-03-11', NULL, NULL, NULL, 1),
(1852, 557, 1.00, 0, NULL, 36, '2022-03-13', NULL, NULL, 381, 1),
(1853, 545, 1.00, 0, NULL, 36, '2022-03-13', NULL, NULL, 381, 1),
(1854, 546, 1.00, 0, NULL, 36, '2022-03-13', NULL, NULL, 381, 1),
(1855, 2231, 1.00, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1856, 2231, 16.10, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1857, 2254, 34.30, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1858, 2253, 257.70, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1859, 2255, 12.90, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1860, 2251, 6.10, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1861, 2170, 6.70, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1862, 2232, 318.00, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1863, 2156, 18.70, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1864, 2158, 8.40, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1865, 2232, 390.10, 0, NULL, 15, '2022-03-16', NULL, NULL, NULL, 1),
(1866, 1007, 645.00, 0, NULL, 38, '2022-03-16', NULL, NULL, 383, 1),
(1867, 1008, 499.00, 0, NULL, 38, '2022-03-16', NULL, NULL, 383, 1),
(1868, 1018, 305.00, 10, NULL, 38, '2022-03-16', NULL, NULL, 383, 1),
(1869, 2199, 384836.00, 82, NULL, 15, '2022-03-18', NULL, NULL, NULL, 1),
(1870, 2199, 384672.00, 82, NULL, 15, '2022-03-18', NULL, NULL, NULL, 1),
(1871, 2199, 38303.00, 82, NULL, 15, '2022-03-18', NULL, NULL, NULL, 1),
(1872, 1484, 22700.00, 0, NULL, 11, '2022-03-29', NULL, NULL, NULL, 1),
(1873, 1484, 20750.00, 0, NULL, 11, '2022-03-29', NULL, NULL, NULL, 1),
(1874, 2199, -80.00, 50, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1875, 2232, -40.00, 25, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1876, 2199, -40.00, 25, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1877, 2199, -40.00, 25, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1878, 2230, 9950.00, 25, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1879, 2232, 9950.00, 25, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1880, 2199, 19900.00, 50, NULL, 15, '2022-04-07', NULL, NULL, NULL, 1),
(1881, 1011, 184.00, 1, NULL, 39, '2022-04-12', NULL, NULL, 383, 1),
(1882, 1011, 142.00, 1, NULL, 39, '2022-04-12', NULL, NULL, 383, 1),
(1883, 1011, 314.00, 1, NULL, 39, '2022-04-12', NULL, NULL, 383, 1),
(1884, 1007, 5908.00, 35, NULL, 39, '2022-04-14', NULL, NULL, 383, 1),
(1885, 1011, 81.00, 1, NULL, 39, '2022-04-15', NULL, NULL, 383, 1),
(1886, 1007, 2002.00, 12, NULL, 39, '2022-04-18', NULL, NULL, 383, 1),
(1887, 1007, 428.00, 3, NULL, 39, '2022-04-21', NULL, NULL, 383, 1),
(1888, 2230, 15422.00, 0, NULL, 15, '2022-04-21', NULL, NULL, NULL, 1),
(1889, 1008, 0.10, 0, NULL, 39, '2022-04-22', NULL, NULL, 382, 1),
(1890, 1010, 0.20, 0, NULL, 39, '2022-04-22', NULL, NULL, 382, 1),
(1891, 1018, 0.50, 0, NULL, 39, '2022-04-22', NULL, NULL, 382, 1),
(1892, 1009, 0.20, 0, NULL, 39, '2022-04-22', NULL, NULL, 382, 1),
(1893, 920, 0.10, 0, NULL, 39, '2022-04-22', NULL, NULL, 385, 1),
(1894, 1007, 0.10, 0, NULL, 39, '2022-04-22', NULL, NULL, 385, 1),
(1895, 927, 0.20, 0, NULL, 39, '2022-04-22', NULL, NULL, 386, 1),
(1896, 922, 0.30, 0, NULL, 39, '2022-04-22', NULL, NULL, 386, 1),
(1897, 921, 0.20, 0, NULL, 39, '2022-04-22', NULL, NULL, 387, 1),
(1898, 2232, 50.00, 0, NULL, 15, '2022-04-22', NULL, NULL, NULL, 1),
(1899, 1018, 12.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 389, 1),
(1900, 918, 38.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 389, 1),
(1901, 928, 6.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 390, 1),
(1902, 922, 0.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 390, 1),
(1903, 0, 6.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 390, 1),
(1904, 1007, 30.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 391, 1),
(1905, 920, 8.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 391, 1),
(1906, 920, 5.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 391, 1),
(1907, 909, 3.00, 0, NULL, 39, '2022-04-22', NULL, NULL, 391, 1),
(1908, 1011, 588.00, 4, NULL, 39, '2022-04-26', NULL, NULL, 383, 1),
(1909, 566, 362.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1910, 566, 676.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1911, 566, 896.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1912, 566, 784.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1913, 566, 392.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1914, 566, 376.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1915, 566, 506.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1916, 566, 356.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1917, 566, 276.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1918, 561, 16126.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 384, 1),
(1919, 566, 176.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1920, 566, 778.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1921, 566, 354.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1922, 566, 736.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1923, 566, 654.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1924, 566, 594.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1925, 566, 536.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1926, 566, 400.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1927, 566, 440.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1928, 566, 436.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1929, 566, 374.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1930, 561, 17222.00, 0, NULL, 22, '2022-05-09', NULL, NULL, 392, 1),
(1931, 2232, 1000.00, 0, NULL, 15, '2022-05-10', NULL, NULL, NULL, 1),
(1932, 1433, 17000.00, 0, NULL, 11, '2022-05-12', NULL, NULL, NULL, 1),
(1933, 1483, 17000.00, 0, NULL, 11, '2022-05-12', NULL, NULL, NULL, 1),
(1934, 0, 17000.00, 0, NULL, 11, '2022-05-12', NULL, NULL, NULL, 1),
(1935, 1483, 17000.00, 0, NULL, 11, '2022-05-12', NULL, NULL, NULL, 1),
(1936, 1429, 17656.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1937, 1505, 17656.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1938, 1506, 17656.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1939, 1430, 16065.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1940, 1484, 16065.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1941, 2230, 2.00, 0, NULL, 15, '2022-05-13', NULL, NULL, NULL, 1),
(1942, 1429, 0.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1943, 2135, 2000.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1944, 1430, 0.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1945, 2233, 5000.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1946, 1447, 0.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1947, 1484, 11734.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1948, 2230, 2.00, 0, NULL, 15, '2022-05-13', NULL, NULL, NULL, 1),
(1949, 1484, 8805.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1950, 2135, 4929.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1951, 1483, 0.00, 0, NULL, 11, '2022-05-13', NULL, NULL, NULL, 1),
(1952, 2230, 5.00, 0, NULL, 15, '2022-05-13', NULL, NULL, NULL, 1),
(1953, 2135, 3561.00, 0, NULL, 11, '2022-05-19', NULL, NULL, NULL, 1),
(1954, 2233, 6414.00, 0, NULL, 11, '2022-05-19', NULL, NULL, NULL, 1),
(1955, 2233, 6460.00, 0, NULL, 11, '2022-05-19', NULL, NULL, NULL, 1),
(1956, 2233, 6368.00, 0, NULL, 11, '2022-05-19', NULL, NULL, NULL, 1),
(1957, 566, 743.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 364, 1),
(1958, 561, 1734.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 364, 1),
(1959, 566, 280.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 375, 1),
(1960, 561, 1038.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 375, 1),
(1961, 566, 234.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1962, 999, 2130.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 394, 1),
(1963, 566, 626.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1964, 561, 277.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 394, 1),
(1965, 566, 550.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1966, 566, 34.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 395, 1),
(1967, 561, 216.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 395, 1),
(1968, 566, 494.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1969, 999, 564.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 396, 1),
(1970, 561, 42.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 396, 1),
(1971, 566, 580.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1972, 566, 742.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1973, 566, 936.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1974, 566, 710.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1975, 566, 450.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1976, 561, 10743.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 393, 1),
(1977, 566, 622.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1978, 566, 224.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1979, 566, 232.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1980, 566, 366.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1981, 566, 244.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1982, 566, 726.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1983, 566, 100.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1984, 566, 156.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1985, 566, 74.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1986, 566, 434.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1987, 566, 486.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1988, 566, 236.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1989, 566, 406.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1990, 566, 460.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1991, 566, 270.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1992, 566, 524.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1993, 566, 226.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1994, 561, 11870.00, 0, NULL, 22, '2022-05-19', NULL, NULL, 397, 1),
(1995, 1483, 17474.00, 0, NULL, 11, '2022-05-24', NULL, NULL, NULL, 1),
(1996, 0, 10950.00, 25, NULL, 15, '2022-06-07', NULL, NULL, NULL, 1),
(1997, 2209, 10900.00, 25, NULL, 15, '2022-06-07', NULL, NULL, NULL, 1),
(1998, 2209, 10850.00, 25, NULL, 15, '2022-06-07', NULL, NULL, NULL, 1),
(1999, 2209, 10800.00, 25, NULL, 15, '2022-06-07', NULL, NULL, NULL, 1),
(2000, 2209, 10750.00, 25, NULL, 15, '2022-06-07', NULL, NULL, NULL, 1),
(2001, 0, 0.00, 0, NULL, 11, '2022-06-14', NULL, NULL, NULL, 1),
(2002, 1506, 5000.00, 0, NULL, 11, '2022-06-14', NULL, NULL, NULL, 1),
(2003, 0, 0.00, 0, NULL, 11, '2022-06-14', NULL, NULL, NULL, 1),
(2004, 0, 22500.00, 0, NULL, 11, '2022-06-15', NULL, NULL, NULL, 1),
(2005, 1483, 22500.00, 0, NULL, 11, '2022-06-15', NULL, NULL, NULL, 1),
(2006, 1429, 100.00, 0, NULL, 11, '2022-06-15', NULL, NULL, NULL, 1),
(2007, 1483, 22500.00, 0, NULL, 11, '2022-06-15', NULL, NULL, NULL, 1),
(2008, 1433, 300000.00, 0, NULL, 11, '2022-06-16', NULL, NULL, NULL, 1),
(2009, 0, 24000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2010, 1483, 24000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2011, 1483, 10000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2012, 1506, 14000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2013, 1483, 24000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2014, 1483, 10000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2015, 1506, 14000.00, 0, NULL, 11, '2022-06-21', NULL, NULL, NULL, 1),
(2016, 1483, 24000.00, 0, NULL, 11, '2022-06-27', NULL, NULL, NULL, 1),
(2017, 1506, 3000.00, 0, NULL, 11, '2022-06-30', NULL, NULL, NULL, 1),
(2018, 1506, 3000.00, 0, NULL, 11, '2022-06-30', NULL, NULL, NULL, 1),
(2019, 1483, 14700.00, 0, NULL, 11, '2022-06-30', NULL, NULL, NULL, 1),
(2020, 1483, 14700.00, 0, NULL, 11, '2022-07-01', NULL, NULL, NULL, 1),
(2021, 1483, 22320.00, 0, NULL, 11, '2022-07-04', NULL, NULL, NULL, 1),
(2022, 566, 940.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2023, 566, 1260.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2024, 566, 1396.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2025, 566, 1190.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2026, 566, 1164.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2027, 566, 1010.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2028, 566, 1318.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2029, 566, 1322.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2030, 566, 488.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2031, 561, 12232.00, 0, NULL, 22, '2022-07-08', NULL, NULL, 398, 1),
(2032, 2198, 20000.00, 0, NULL, 15, '2022-07-08', NULL, NULL, NULL, 1),
(2033, 1483, 14750.00, 0, NULL, 11, '2022-07-11', NULL, NULL, NULL, 1),
(2034, 1484, 8278.00, 0, NULL, 11, '2022-07-11', NULL, NULL, NULL, 1),
(2035, 566, 968.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2036, 566, 1146.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2037, 566, 952.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2038, 566, 1132.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2039, 566, 484.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2040, 566, 574.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2041, 566, 972.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2042, 561, 8522.00, 0, NULL, 22, '2022-07-25', NULL, NULL, 399, 1),
(2043, 2250, 24000.00, 0, NULL, 11, '2022-07-26', NULL, NULL, NULL, 1),
(2044, 2199, 5000.00, 0, NULL, 15, '2022-07-27', NULL, NULL, NULL, 1),
(2045, 1483, 23960.00, 0, NULL, 11, '2022-08-02', NULL, NULL, NULL, 1),
(2046, 1483, 24000.00, 0, NULL, 11, '2022-08-04', NULL, NULL, NULL, 1),
(2047, 566, 168.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2048, 566, 236.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2049, 566, 474.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2050, 566, 744.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2051, 566, 123.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2052, 566, 308.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2053, 566, 722.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2054, 566, 500.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2055, 566, 356.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2056, 566, 486.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2057, 566, 548.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2058, 566, 414.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2059, 566, 282.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2060, 561, 18599.00, 0, NULL, 22, '2022-08-10', NULL, NULL, 400, 1),
(2061, 566, 456.00, 0, NULL, 22, '2022-08-11', NULL, NULL, 401, 1),
(2062, 566, 128.00, 0, NULL, 22, '2022-08-11', NULL, NULL, 401, 1),
(2063, 566, 538.00, 0, NULL, 22, '2022-08-11', NULL, NULL, 401, 1),
(2064, 561, 7156.00, 0, NULL, 22, '2022-08-11', NULL, NULL, 401, 1),
(2065, 1483, 17760.00, 0, NULL, 11, '2022-08-16', NULL, NULL, NULL, 1),
(2066, 2250, 980.00, 0, NULL, 11, '2022-08-16', NULL, NULL, NULL, 1),
(2067, 0, 1000.00, 0, NULL, 11, '2022-08-16', NULL, NULL, NULL, 1),
(2068, 1483, 24000.00, 0, NULL, 11, '2022-08-22', NULL, NULL, NULL, 1),
(2069, 1483, 22940.00, 0, NULL, 11, '2022-08-31', NULL, NULL, NULL, 1),
(2070, 566, 756.00, 0, NULL, 22, '2022-08-31', NULL, NULL, 402, 1),
(2071, 566, 1014.00, 0, NULL, 22, '2022-08-31', NULL, NULL, 402, 1),
(2072, 566, 910.00, 0, NULL, 22, '2022-08-31', NULL, NULL, 402, 1),
(2073, 566, 684.00, 0, NULL, 22, '2022-09-02', NULL, NULL, 402, 1),
(2074, 566, 654.00, 0, NULL, 22, '2022-09-02', NULL, NULL, 402, 1),
(2075, 566, 874.00, 0, NULL, 22, '2022-09-02', NULL, NULL, 402, 1),
(2076, 566, 968.00, 0, NULL, 22, '2022-09-02', NULL, NULL, 402, 1),
(2077, 566, 808.00, 0, NULL, 22, '2022-09-05', NULL, NULL, 402, 1),
(2078, 566, 468.00, 0, NULL, 22, '2022-09-05', NULL, NULL, 402, 1),
(2079, 561, 15804.00, 0, NULL, 22, '2022-09-05', NULL, NULL, 402, 1),
(2080, 1483, 20000.00, 0, NULL, 11, '2022-09-12', NULL, NULL, NULL, 1),
(2081, 1483, 21786.00, 0, NULL, 11, '2022-09-28', NULL, NULL, NULL, 1),
(2082, 2250, 1594.00, 0, NULL, 11, '2022-09-28', NULL, NULL, NULL, 1),
(2083, 2199, 17116.51, 60, NULL, 15, '2022-10-04', NULL, NULL, NULL, 1),
(2084, 2147, 120.00, 0, NULL, 15, '2022-10-04', NULL, NULL, NULL, 1),
(2085, 2199, 19920.00, 40, NULL, 15, '2022-10-04', NULL, NULL, NULL, 1),
(2086, 0, 80.00, 0, NULL, 15, '2022-10-04', NULL, NULL, NULL, 1),
(2087, 1483, 21786.00, 0, NULL, 11, '2022-10-06', NULL, NULL, NULL, 1),
(2088, 1483, 20400.00, 0, NULL, 11, '2022-10-06', NULL, NULL, NULL, 1),
(2089, 1483, 21700.00, 0, NULL, 11, '2022-10-06', NULL, NULL, NULL, 1),
(2090, 1582, 800.00, 0, NULL, 7, '2022-10-10', NULL, NULL, NULL, 1),
(2091, 1510, 450.00, 0, NULL, 7, '2022-10-10', NULL, NULL, NULL, 1),
(2092, 1567, 2150.00, 0, NULL, 7, '2022-10-10', NULL, NULL, NULL, 1),
(2093, 1521, 100.00, 0, NULL, 7, '2022-10-10', NULL, NULL, NULL, 1),
(2094, 566, 550.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2095, 566, 644.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2096, 566, 512.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2097, 566, 552.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2098, 566, 592.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2099, 566, 688.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2100, 566, 782.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2101, 566, 326.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2102, 561, 15754.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 403, 1),
(2103, 566, 1110.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 404, 1),
(2104, 561, 484.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 404, 1),
(2105, 566, 846.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2106, 566, 1066.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2107, 566, 986.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2108, 566, 828.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2109, 566, 986.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2110, 566, 1274.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2111, 566, 590.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2112, 566, 1024.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2113, 566, 276.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2114, 561, 13910.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 405, 1),
(2115, 566, 324.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2116, 566, 410.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2117, 566, 514.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2118, 566, 86.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2119, 566, 906.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2120, 566, 942.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2121, 566, 498.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2122, 566, 1012.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2123, 566, 364.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2124, 566, 654.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2125, 561, 15990.00, 0, NULL, 22, '2022-10-12', NULL, NULL, 406, 1),
(2126, 2199, 252.00, 19, NULL, 15, '2022-10-25', NULL, NULL, NULL, 1),
(2127, 2147, 38.00, 0, NULL, 15, '2022-10-25', NULL, NULL, NULL, 1),
(2128, 2199, 13768.00, 16, NULL, 15, '2022-11-02', NULL, NULL, NULL, 1),
(2129, 2147, 966.00, 0, NULL, 15, '2022-11-02', NULL, NULL, NULL, 1),
(2130, 0, 92.00, 0, NULL, 15, '2022-11-02', NULL, NULL, NULL, 1),
(2131, 2259, 300.00, 0, NULL, 15, '2022-11-03', NULL, NULL, NULL, 1),
(2132, 2260, 41.00, 1, NULL, 15, '2022-11-07', NULL, NULL, NULL, 1),
(2133, 2147, 2.00, 0, NULL, 15, '2022-11-07', NULL, NULL, NULL, 1),
(2134, 2260, 159.00, 0, NULL, 15, '2022-11-07', NULL, NULL, NULL, 1),
(2135, 2147, 2.00, 0, NULL, 15, '2022-11-08', NULL, NULL, NULL, 1),
(2136, 921, 175.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 408, 1),
(2137, 920, 80.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 408, 1),
(2138, 1009, 20.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 408, 1),
(2139, 915, 25.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 408, 1),
(2140, 929, 20.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 409, 1),
(2141, 929, 20.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 409, 1),
(2142, 927, 20.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 411, 1),
(2143, 921, 11.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 412, 1),
(2144, 911, 5.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 412, 1),
(2145, 920, 15.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 412, 1),
(2146, 1008, 5.00, 0, NULL, 41, '2022-11-08', NULL, NULL, 412, 1),
(2147, 1014, 2.00, 0, NULL, 41, '2022-11-09', NULL, NULL, 412, 1),
(2148, 922, 4.00, 0, NULL, 41, '2022-11-09', NULL, NULL, 412, 1),
(2149, 922, 4.00, 0, NULL, 41, '2022-11-09', NULL, NULL, 412, 1),
(2150, 929, 3.00, 0, NULL, 41, '2022-11-09', NULL, NULL, 412, 1),
(2151, 0, 0.00, 0, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2152, 2260, 345.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2153, 2260, 244.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2154, 2260, 246.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2155, 2260, 246.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2156, 2260, 242.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2157, 2260, 242.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2158, 2260, 242.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2159, 2260, 587.00, 1, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2160, 2260, 583.00, 2, NULL, 15, '2022-11-14', NULL, NULL, NULL, 1),
(2161, 2260, 148.00, 1, NULL, 15, '2022-11-15', NULL, NULL, NULL, 1),
(2162, 2260, 147.00, 1, NULL, 15, '2022-11-15', NULL, NULL, NULL, 1),
(2163, 2147, 2.00, 0, NULL, 15, '2022-11-15', NULL, NULL, NULL, 1),
(2164, 2147, 10.00, 0, NULL, 15, '2022-11-15', NULL, NULL, NULL, 1),
(2165, 1007, 57.00, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2166, 911, 10.00, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2167, 920, 57.00, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2168, 1014, 6.00, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2169, 922, 8.00, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2170, 929, 1.60, 0, NULL, 41, '2022-11-15', NULL, NULL, 414, 1),
(2171, 2199, 13906.00, 16, NULL, 15, '2022-11-17', NULL, NULL, NULL, 1),
(2172, 2199, 13906.00, 16, NULL, 15, '2022-11-17', NULL, NULL, NULL, 1),
(2173, 357, 100.00, 0, NULL, 42, '2022-11-17', NULL, NULL, 415, 1),
(2174, 922, 11124.80, 15, NULL, 41, '2022-11-30', NULL, NULL, 416, 1),
(2175, 928, 1815.20, 2, NULL, 41, '2022-11-30', NULL, NULL, 416, 1),
(2176, 909, 966.00, 0, NULL, 41, '2022-11-30', NULL, NULL, 416, 1),
(2177, 1484, 20245.00, 0, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2178, 2135, 3443.00, 6, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2179, 2135, 3443.00, 6, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2180, 2135, 3455.00, 0, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2181, 2250, 23480.00, 0, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2182, 1484, 11287.00, 0, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2183, 1484, 20233.00, 0, NULL, 11, '2023-01-05', NULL, NULL, NULL, 1),
(2184, 566, 740.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2185, 566, 720.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2186, 566, 330.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2187, 566, 361.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2188, 566, 396.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2189, 566, 452.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2190, 566, 312.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2191, 571, 263.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2192, 566, 362.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2193, 566, 402.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2194, 566, 370.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2195, 566, 374.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2196, 566, 94.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2197, 561, 15057.95, 0, NULL, 36, '2023-01-05', NULL, NULL, 417, 1),
(2198, 566, 1052.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2199, 566, 1930.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2200, 566, 1536.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2201, 566, 1144.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2202, 566, 752.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2203, 566, 604.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2204, 566, 780.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2205, 566, 1172.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2206, 561, 14510.00, 0, NULL, 36, '2023-01-05', NULL, NULL, 418, 1),
(2207, 566, 364.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2208, 566, 248.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2209, 566, 266.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2210, 566, 108.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2211, 566, 348.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2212, 566, 88.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1),
(2213, 561, 9865.00, 0, NULL, 36, '2023-01-19', NULL, NULL, 419, 1);
INSERT INTO `inventoryproductdetails` (`id`, `inventoryproductid`, `quantity`, `baskets`, `image`, `userid`, `sysdate`, `update_user`, `update_date`, `processcompleteid`, `status`) VALUES
(2214, 0, 19240.00, 0, NULL, 11, '2023-02-06', NULL, NULL, NULL, 1),
(2215, 0, 0.00, 0, NULL, 11, '2023-02-06', NULL, NULL, NULL, 1),
(2216, 0, 12809.00, 0, NULL, 11, '2023-02-06', NULL, NULL, NULL, 1),
(2217, 0, 3780.00, 0, NULL, 11, '2023-02-06', NULL, NULL, NULL, 1),
(2218, 1007, 17.00, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2219, 905, 30.00, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2220, 905, 30.00, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2221, 920, 133.00, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2222, 920, 183.00, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2223, 1014, 8.82, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2224, 922, 24.68, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2225, 929, 4.93, 0, NULL, 41, '2023-02-16', NULL, NULL, 420, 1),
(2226, 922, 45.85, 0, NULL, 41, '2023-02-16', NULL, NULL, 421, 1),
(2227, 929, 11.46, 0, NULL, 41, '2023-02-16', NULL, NULL, 421, 1),
(2228, 929, 8.82, 0, NULL, 41, '2023-02-16', NULL, NULL, 422, 1),
(2229, 975, 32.58, 0, NULL, 41, '2023-02-16', NULL, NULL, 423, 1),
(2230, 922, 35.27, 0, NULL, 41, '2023-02-16', NULL, NULL, 424, 1),
(2231, 929, 8.82, 0, NULL, 41, '2023-02-16', NULL, NULL, 424, 1),
(2232, 1023, 13.23, 0, NULL, 41, '2023-02-16', NULL, NULL, 425, 1),
(2233, 929, 13.23, 0, NULL, 41, '2023-02-16', NULL, NULL, 425, 1),
(2234, 917, 29.10, 0, NULL, 41, '2023-02-16', NULL, NULL, 426, 1),
(2235, 929, 13.23, 0, NULL, 41, '2023-02-16', NULL, NULL, 427, 1),
(2236, 922, 8.81, 0, NULL, 41, '2023-02-16', NULL, NULL, 413, 1),
(2237, 929, 2.20, 0, NULL, 41, '2023-02-16', NULL, NULL, 413, 1),
(2238, 1023, 3.52, 0, NULL, 41, '2023-02-16', NULL, NULL, 428, 1),
(2239, 929, 0.88, 0, NULL, 41, '2023-02-16', NULL, NULL, 428, 1),
(2240, 917, 9.70, 0, NULL, 41, '2023-02-16', NULL, NULL, 429, 1),
(2241, 929, 3.53, 0, NULL, 41, '2023-02-16', NULL, NULL, 430, 1),
(2242, 1484, 7020.00, 0, NULL, 11, '2023-05-08', NULL, NULL, NULL, 1),
(2243, 1506, 2924.00, 0, NULL, 11, '2023-05-08', NULL, NULL, NULL, 1),
(2244, 0, 0.00, 0, NULL, 11, '2023-05-08', NULL, NULL, NULL, 1),
(2245, 1506, 2927.00, 0, NULL, 11, '2023-05-08', NULL, NULL, NULL, 1),
(2246, 2250, 10000.00, 0, NULL, 11, '2023-07-11', NULL, NULL, NULL, 1),
(2247, 0, 10460.00, 0, NULL, 11, '2023-07-11', NULL, NULL, NULL, 1),
(2248, 2250, 12622.00, 0, NULL, 11, '2023-07-11', NULL, NULL, NULL, 1),
(2249, 566, 5127.00, 0, NULL, 36, '2023-07-11', NULL, NULL, 432, 1),
(2250, 1111, 4873.00, 0, NULL, 36, '2023-07-11', NULL, NULL, 432, 1),
(2251, 566, 5536.00, 0, NULL, 36, '2023-07-12', NULL, NULL, 433, 1),
(2252, 1111, 7086.00, 0, NULL, 36, '2023-07-12', NULL, NULL, 433, 1),
(2253, 2250, 23270.00, 0, NULL, 11, '2023-07-25', NULL, NULL, NULL, 1),
(2254, 0, 0.00, 0, NULL, 11, '2023-07-25', NULL, NULL, NULL, 1),
(2255, 2250, 23210.00, 0, NULL, 11, '2023-07-25', NULL, NULL, NULL, 1),
(2256, 2250, 24000.00, 0, NULL, 11, '2023-10-05', NULL, NULL, NULL, 1),
(2257, 0, 490.00, 5, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2258, 0, 498.00, 1, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2259, 2304, 800.00, 0, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2260, 2304, 798.00, 1, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2261, 2293, 996.00, 2, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2262, 2263, 98.00, 1, NULL, 16, '2023-11-06', NULL, NULL, NULL, 1),
(2263, 2293, 1000.00, 0, NULL, 16, '2023-11-08', NULL, NULL, NULL, 1),
(2264, 0, 1000.00, 0, NULL, 16, '2023-11-21', NULL, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproductid`
--

CREATE TABLE `inventoryproductid` (
  `id` int(11) NOT NULL,
  `inventoryproductid` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `userid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproduct_6march19`
--

CREATE TABLE `inventoryproduct_6march19` (
  `id` int(11) NOT NULL,
  `productid` int(11) DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `consumables` int(11) NOT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproduct_6march19`
--

INSERT INTO `inventoryproduct_6march19` (`id`, `productid`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `consumables`, `status`) VALUES
(1, 0, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 0, 1),
(2, 0, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 0, 1),
(3, 0, 'x86 Motherboard', 'x86 Motherboard', 4444.00, 0.00, 4444.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 0, 1),
(4, 0, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.05, 0.00, 0.05, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 0, 1),
(5, 0, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 0, 1),
(6, 0, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 0, 1),
(7, 0, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 4504.00, 0.00, 4504.00, '7_color_images (1).jpg', 0, 0, 1),
(8, 0, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.30, 0.00, 0.30, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 0, 1),
(9, 0, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 0, 1),
(10, 0, 'Green Fiber Processors', 'Green Fiber Processors', 0.15, 0.00, 0.15, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 0, 1),
(11, 0, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 0, 1),
(12, 0, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 0, 1),
(13, 0, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 1894.00, 0.00, 1894.00, '13_color_1737_6.jpg', 0, 0, 1),
(14, 0, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 429.50, 0.00, 429.50, '14_color_Tulip_494_ATA.jpg', 0, 0, 1),
(15, 0, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 7.00, 0.00, 7.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 0, 1),
(16, 0, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 0, 1),
(17, 0, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 64.44, 0.00, 64.44, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 0, 1),
(18, 0, 'Gold Plated Pins', 'Gold Plated Pins', 0.00, 0.00, 0.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 0, 1),
(19, 0, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 0, 1),
(20, 0, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 255.50, 0.00, 255.50, '20_color_extra-large-garden-waste-bag.jpg', 0, 0, 1),
(21, 0, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 0, 1),
(22, 0, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 0, 1),
(23, 0, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 0, 1),
(24, 0, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 0, 1),
(25, 0, 'HDD Circuit Boards', 'HDD Circuit Boards', 201.00, 0.00, 201.00, '25_color_download.jpg', 0, 0, 1),
(26, 0, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 1266.00, 0.00, 1266.00, '26_color_8885.jpeg', 0, 0, 1),
(27, 0, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 4.50, 0.00, 4.50, '27_color_images.jpg', 0, 0, 1),
(28, 0, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 0, 1),
(29, 0, 'Tantilum capacitors', 'Tantilum capacitors', 41.50, 41.50, 0.00, '29_color_tantilum.jpg', 1, 0, 1),
(30, 0, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 196.00, 0.00, 196.00, '30_color_12_inv_$_1.JPG', 1, 0, 1),
(32, 0, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 16.50, 0.00, 16.50, '32_color_oscilators.jpg', 1, 0, 1),
(33, 0, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 93.01, 0.00, 93.01, '33_color_depop-boards.jpg', 0, 0, 1),
(34, 0, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 0, 1),
(35, 0, 'Copper Powder', 'Copper Powder', 5293.44, 5230.94, 62.50, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 0, 1),
(36, 0, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 31.00, 0.00, 31.00, '36_color_14_inv_1490604347436973696850.jpg', 1, 0, 1),
(37, 0, 'Processor Caps', 'Processor Caps', 4.50, 0.00, 4.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 0, 1),
(38, 0, 'Metal Parts', 'Metal Parts', 2480.59, 0.00, 2480.59, '38_color_4_inv_1490603057186-248235756.jpg', 1, 0, 1),
(39, 0, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 0, 1),
(40, 0, 'FiberGlass Resin', 'FiberGlass Resin', 65626.32, 3295.42, 62330.90, '40_color_Aluminium Powder.jpg', 1, 0, 1),
(41, 0, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 0, 1),
(42, 0, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 898.00, 0.00, 898.00, '42_color_thisine.jpg', 0, 0, 1),
(43, 0, 'GOLD', 'GOLD', 1005.78, 0.00, 1005.78, '43_color_Gold-Kilobar-1.jpg', 1, 0, 1),
(44, 0, 'Low Grade Circuit Board Frames', 'Low Grade Circuit Board Frames', 0.00, 0.00, 0.00, '44_color_il_340x270.1158086908_cnw5.jpg', 0, 0, 1),
(46, 0, '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', '*MIXED* CPU Scrap Equal Mix of Gold Cap,  Ceramic and Fiber CPU', 5.00, 0.00, 5.00, '46_color_p1050142.jpg', 0, 0, 1),
(47, 0, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 0.00, 0.00, 0.00, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 0, 0, 1),
(48, 0, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', 60.00, 0.00, 60.00, '48_color_1IBM.jpg', 0, 0, 1),
(49, 0, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 694.00, 694.00, 0.00, '49_color_1hear.png', 1, 0, 1),
(52, 0, 'Concentrates BLUE BAG', 'Concentrates BLUE BAG', 4091.00, 0.00, 4091.00, '52_color_1s1.jpg', 0, 0, 1),
(53, 0, 'GoldCons Concentrated Precious Metals (GREEN BAG)', 'GoldCons Concentrated Precious Metals (GREEN BAG)', 1087.00, 1087.00, 0.00, '53_color_1s.jpg', 1, 0, 1),
(54, 0, 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 12129.52, 12129.42, 0.10, '54_color_2s.jpg', 1, 0, 1),
(55, 0, 'Low Grades Number 3s (RED)', 'Low Grades Number 3s (RED)', 21360.50, 21335.84, 24.66, '55_color_3s.jpg', 1, 0, 1),
(56, 0, 'Back Plane Connector Card', 'Back Plane Connector Card', 0.00, 0.00, 0.00, '56_color_backplane.jpg', 0, 0, 1),
(57, 0, 'NEC R10000 Server CPU', 'NEC R10000 Server CPU', 0.00, 0.00, 0.00, '57_color_download.jpg', 0, 0, 1),
(58, 0, '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* Mid Grade Circuit Board Frames (Manufacturing Rejects)', 0.00, 0.00, 0.00, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 0, 0, 1),
(60, 0, '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', '*MIXED* High Grade Circuit Board Frames (Manufacturing Rejects)', 7215.00, 0.00, 7215.00, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 0, 0, 1),
(63, 0, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 0.00, 0.00, 0.00, '63_color_IMG_5745.JPG', 0, 0, 1),
(64, 0, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 0.00, 0.00, 0.00, '64_color_IMG_5745.JPG', 0, 0, 1),
(65, 0, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 0.00, 0.00, 0.00, '65_color_IMG_5749.JPG', 0, 0, 1),
(66, 0, 'Automotive Computer (With Metal Housing)', 'Automotive Computer (With Metal Housing)', 0.00, 0.00, 0.00, '66_color_ikH1HEN.jpg', 0, 0, 1),
(67, 0, 'Whole Hard Drives (With Metal)', 'Whole Hard Drives (With Metal)', 0.00, 0.00, 0.00, '67_color_IMG_5747.JPG', 0, 0, 1),
(68, 0, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 0.00, 0.00, 0.00, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 0, 0, 1),
(69, 0, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', 15904.00, 0.00, 15904.00, '69_color_IMG_5758.JPG', 0, 0, 1),
(70, 0, 'Cell Phones Whole (Without Battery)', 'Cell Phones Whole (Without Battery)', 1.00, 0.00, 1.00, '70_color_IMG_5750.JPG', 0, 0, 1),
(71, 0, 'Crumble / Pins', 'Crumble / Pins', 233.50, 0.00, 233.50, '71_color_WhatsApp Image 2018-07-04 at 15.43.39.jpeg', 0, 0, 1),
(72, 0, 'Intel Pentium Pro', 'Intel Pentium Pro', 0.00, 0.00, 0.00, '72_color_download.jpg', 0, 0, 1),
(73, 0, 'Altera FLEX – AAC459843 (large)', 'Altera FLEX – AAC459843 (large)', 0.00, 0.00, 0.00, '73_color_s-l300.jpg', 0, 0, 1),
(74, 0, 'Altera FLEX – AAA189913 / AA9649 (smaller)', 'Altera FLEX – AAA189913 / AA9649 (smaller)', 0.00, 0.00, 0.00, '74_color_download (1).jpg', 0, 0, 1),
(75, 0, 'Gold Plated Pins In Plastic', 'Gold Plated Pins In Plastic', 0.00, 0.00, 0.00, '75_color_IMG-20180719-WA0000.jpg', 0, 0, 1),
(76, 0, 'TV Boards Full Of Metal', 'TV Boards Full Of Metal', 646.00, 0.00, 646.00, '76_color_tv-metal.jpeg', 0, 0, 1),
(77, 0, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', 517.00, 0.00, 517.00, '77_color_heavy.jpeg', 0, 0, 1),
(78, 0, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', 153.00, 0.00, 153.00, '78_color_coppercopper.jpeg', 0, 0, 1),
(79, 0, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', 77.00, 0.00, 77.00, '79_color_sat-routers.jpeg', 0, 0, 1),
(80, 0, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', 532.00, 0.00, 532.00, '80_color_images.jpg', 0, 0, 1),
(81, 0, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', 95.00, 0.00, 95.00, '81_color_REJECT.jpeg', 0, 0, 1),
(82, 0, 'Laptop Boards', 'Laptop Boards', 0.00, 0.00, 0.00, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 0, 0, 1),
(84, 0, 'High_Grade_1979_1995', 'High_Grade_1979_1995', 0.00, 0.00, 0.00, '84_color_Sep23-05.jpg', 0, 0, 1),
(85, 0, 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 0.00, 0.00, 0.00, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 0, 0, 1),
(86, 0, 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 0.00, 0.00, 0.00, '86_color_25.jpg', 0, 0, 1),
(87, 0, 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 0.00, 0.00, 0.00, '87_color_8.jpeg', 0, 0, 1),
(88, 0, 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 0.00, 0.00, 0.00, '88_color_5.jpg', 0, 0, 1),
(89, 0, 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 0.00, 0.00, 0.00, '89_color_18.jpg', 0, 0, 1),
(90, 0, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '90_color_4.jpg', 0, 0, 1),
(91, 0, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '91_color_7.jpg', 0, 0, 1),
(92, 0, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '92_color_r9.jpg', 0, 0, 1),
(93, 0, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '93_color_16.jpg', 0, 0, 1),
(94, 0, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '94_color_isbx.png', 0, 0, 1),
(95, 0, 'High_Grade', 'High_Grade', 0.00, 0.00, 0.00, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 0, 0, 1),
(96, 0, 'Low_Grade', 'Low_Grade', 0.00, 0.00, 0.00, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 0, 0, 1),
(97, 0, 'Mid_Grade', 'Mid_Grade', 0.00, 0.00, 0.00, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 0, 0, 1),
(98, 0, 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 0.00, 0.00, 0.00, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 0, 0, 1),
(99, 0, 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 0.00, 0.00, 0.00, '99_color_s-l300 (2).jpg', 0, 0, 1),
(100, 0, 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 0.00, 0.00, 0.00, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 0, 0, 1),
(101, 0, 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 0.00, 0.00, 0.00, '101_color_images (3).jpg', 0, 0, 1),
(102, 0, 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 0.00, 0.00, 0.00, '102_color_good.jpg', 0, 0, 1),
(103, 0, 'Two_Layer_MidGrade   cancel', 'Two_Layer_MidGrade   cancel', 0.00, 0.00, 0.00, '103_color_stuffe.jpg', 0, 0, 1),
(104, 0, 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 0.00, 0.00, 0.00, '104_color_P81126-111759.jpg', 0, 0, 1),
(105, 0, 'Empty', 'Empty', 0.00, 0.00, 0.00, '105_color_P81115-152230 (3).jpg', 0, 0, 1),
(106, 0, 'HighEnd_Ceramic', 'HighEnd_Ceramic', 0.00, 0.00, 0.00, '106_color_L_Intel-A80486DX2-66.jpg', 0, 0, 1),
(107, 0, 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 0.00, 0.00, 0.00, '107_color_S_IBM-6x86-2V2P120GC.jpg', 0, 0, 1),
(108, 0, 'MidRange_Ceramic', 'MidRange_Ceramic', 0.00, 0.00, 0.00, '108_color_L_AMD-A0900AMT3B (ES).jpg', 0, 0, 1),
(109, 0, 'LowYeild_Plastic', 'LowYeild_Plastic', 0.00, 0.00, 0.00, '109_color_L_Intel-Celeron 433 (ES front).jpg', 0, 0, 1),
(111, 0, 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 135.00, 90.00, 45.00, NULL, 0, 1, 1),
(112, 0, 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 0.00, 0.00, 0.00, '112_color_oNDYNAE.jpg', 0, 0, 1),
(113, 0, 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 0.00, 0.00, 0.00, '113_color_images.jpg', 0, 0, 1),
(114, 0, 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 0.00, 0.00, 0.00, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 0, 0, 1),
(115, 0, 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 0.00, 0.00, 0.00, '115_color_dsc01664_1.jpg', 0, 0, 1),
(116, 0, 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 0.00, 0.00, 0.00, '116_color_server.jpg', 0, 0, 1),
(117, 0, 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 0.00, 0.00, 0.00, '117_color_serber2.jpg', 0, 0, 1),
(118, 0, 'Hammers - Chinese Mill', 'Hammers - Chinese Mill', 120.00, 0.00, 120.00, NULL, 0, 1, 1),
(119, 0, 'Whole Computer', 'Whole Computer', 50.00, 0.00, 50.00, '119_color_resize.jpg', 0, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryproduct_old`
--

CREATE TABLE `inventoryproduct_old` (
  `id` int(11) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `inventoryproduct_old`
--

INSERT INTO `inventoryproduct_old` (`id`, `name`, `arname`, `totalquantity`, `used`, `balance`, `image`, `saleitem`, `status`) VALUES
(1, 'Gold Cap IBMs / Citrix', 'Gold Cap IBMs / Citrix', 0.00, 0.00, 0.00, '1_color_220px-KL_Cyrix_6x86MX.jpg', 0, 1),
(2, 'Intel P-Pro Gold Cap', 'Intel P-Pro Gold Cap', 0.00, 0.00, 0.00, '2_color_intel-pentium.jpg', 0, 1),
(3, 'x86 Motherboard', 'x86 Motherboard', 0.00, 0.00, 0.00, '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 0, 1),
(4, 'AMD K5 Gold Caps', 'AMD K5 Gold Caps', 0.00, 0.00, 0.00, '4_color_200px-AMD_K5_PR166_Front.jpg', 0, 1),
(5, 'Intel Pentium MMX', 'Intel Pentium MMX', 0.00, 0.00, 0.00, '5_color_Intel_Pentium_MMX_166_PGA_Front.jpg', 0, 1),
(6, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 0.00, 0.00, 0.00, '6_color_S_Intel-B80522P266512 (front).jpg', 0, 1),
(7, 'Gold Plated Circuit Board', 'Gold Plated Circuit Board', 0.00, 0.00, 0.00, '7_color_images (1).jpg', 0, 1),
(8, 'Memory (Gold Connector Pin)', 'Memory (Gold Connector Pin)', 0.00, 0.00, 0.00, '8_color_$T2eC16FHJFwFFZ3uQ(3hBRi!M-p)Zg--60_1.JPG', 0, 1),
(9, 'AMD K6/Athlon/486 ', 'AMD K6/Athlon/486 ', 0.00, 0.00, 0.00, '9_color_220px-AMD_K6-166ALR.jpg', 0, 1),
(10, 'Green Fiber Processors', 'Green Fiber Processors', 0.00, 0.00, 0.00, '10_color_Intel-Pentium-3-CPU-126GHz-512KB-133MHz-8T137.jpg', 0, 1),
(11, 'Intel / AMD Ceramic x86', 'Intel / AMD Ceramic x86', 0.00, 0.00, 0.00, '11_color_2012-07-21_17-29-18_4652.jpg', 0, 1),
(12, 'Socket Card (no metal)', 'Socket Card (no metal)', 0.00, 0.00, 0.00, '12_color_images (2).jpg', 0, 1),
(13, 'Newer Motherboards P1 - i7', 'Newer Motherboards P1 - i7', 0.00, 0.00, 0.00, '13_color_1737_6.jpg', 0, 1),
(14, 'Mixed Material CRT Boards', 'Mixed Material CRT Boards', 0.00, 0.00, 0.00, '14_color_Tulip_494_ATA.jpg', 0, 1),
(15, 'Various IC Chip / Component Boards ', 'Various IC Chip / Component Boards ', 0.00, 0.00, 0.00, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 0, 1),
(16, 'Multi Socket Motherboard', 'Multi Socket Motherboard', 0.00, 0.00, 0.00, '16_color_Foxconn_45CM.jpg', 0, 1),
(17, 'Socket Card Metal and heat-syncs', 'Socket Card Metal and heat-syncs', 0.00, 0.00, 0.00, '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 0, 1),
(18, 'Gold Plated Pins', 'Gold Plated Pins', -4.00, 0.00, -4.00, '18_color_Gold-Plated-Pins-150x150.jpg', 0, 1),
(19, 'Mining Sands', 'Mining Sands', 0.00, 0.00, 0.00, '19_color_bedding_sand.jpg', 0, 1),
(20, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 17.00, 0.00, 17.00, '20_color_extra-large-garden-waste-bag.jpg', 0, 1),
(21, 'Hard Drive (Whole)', 'Hard Drive (Whole)', 0.00, 0.00, 0.00, '21_color_harddrive1.gif', 0, 1),
(22, 'Floppy Drive', 'Floppy Drive', 0.00, 0.00, 0.00, '22_color_amiga-floppy-a1200t-a2000-a4000.jpg', 0, 1),
(23, 'CD/DVD Drive', 'CD/DVD Drive', 0.00, 0.00, 0.00, '23_color_38d7.jpg', 0, 1),
(24, 'Random Aged PCB', 'Random Aged PCB', 0.00, 0.00, 0.00, '24_color_52156_S.png', 0, 1),
(25, 'HDD Circuit Boards', 'HDD Circuit Boards', 0.00, 0.00, 0.00, '25_color_download.jpg', 0, 1),
(26, 'Multi Processor Telecom Boards', 'Multi Processor Telecom Boards', 0.00, 0.00, 0.00, '26_color_8885.jpeg', 0, 1),
(27, 'Extension Card (With Bracket Only)', 'Extension Card (With Bracket Only)', 0.00, 0.00, 0.00, '27_color_images.jpg', 0, 1),
(28, 'Cellphone Board', 'Cellphone Board', 0.00, 0.00, 0.00, '28_color_downloadcell.jpg', 0, 1),
(29, 'Tantilum capacitors', 'Tantilum capacitors', 0.50, 0.00, 0.50, '29_color_tantilum.jpg', 1, 1),
(30, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 0.00, 0.00, 0.00, '30_color_12_inv_$_1.JPG', 1, 1),
(32, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 1.50, 0.00, 1.50, '32_color_oscilators.jpg', 1, 1),
(33, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 0.00, 0.00, 0.00, '33_color_depop-boards.jpg', 0, 1),
(34, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 0.00, 0.00, 0.00, '34_color_depop-withgld.jpg', 0, 1),
(35, 'Copper Powder', 'Copper Powder', 5293.44, 6012.94, -719.50, '35_color_1_invdetails_20170314_165732_625.jpg', 1, 1),
(36, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 12.50, 0.00, 12.50, '36_color_14_inv_1490604347436973696850.jpg', 1, 1),
(37, 'Processor Caps', 'Processor Caps', 4.50, 0.00, 4.50, '37_color_2_inv_1490602912483463053580.jpg', 1, 1),
(38, 'Metal Parts', 'Metal Parts', 20.94, 0.00, 20.94, '38_color_4_inv_1490603057186-248235756.jpg', 1, 1),
(39, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 0.00, 0.00, 0.00, '39_color_9_inv_1490603590533-621125783.jpg', 0, 1),
(40, 'FiberGlass Resin', 'FiberGlass Resin', 22424.77, 12424.77, 10000.00, '40_color_Aluminium Powder.jpg', 1, 1),
(41, 'Deplated CPU', 'Deplated CPU', 0.00, 0.00, 0.00, '41_color_CPU-Deplated.jpg', 0, 1),
(42, 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 'Old Televisions, radios, cable recievers, vcr, tape, phone systems ', 0.00, 0.00, 0.00, '42_color_thisine.jpg', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `inventoryusers`
--

CREATE TABLE `inventoryusers` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `mobile` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `usertype` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `inventoryusers`
--

INSERT INTO `inventoryusers` (`id`, `userid`, `name`, `username`, `password`, `mobile`, `email`, `usertype`, `status`) VALUES
(5, 1, 'Dale Marion', 'Qw@#$2*d', 'aDm4i19Hn*#u^$9', '0766903531', 'dale@pfane.com', 1, 1),
(42, 7, 'Dale Scott Marion', 'Qw@#$', 'v&ygf*eJt3%f', '7753414838', 'dale@pfane.com', 0, 1),
(16, 4, 'Malik Asif', 'malikasif', '123456', '03322527187', 'malikmasif@hotmail.com', 0, 1),
(17, 4, 'Bob Smith', 'Smith', '123123123', '1231231234', 'bob@pfane.com', 0, 1),
(43, 11, 'Dale Scott Marion', 'Dale', '123123', '0766903531', 'dale@pfane.com', 0, 1),
(24, 10, 'Derek', 'DRamsell', 'Lll4433#', '919-534-6298', 'd.ramsell@evotusinc.com', 0, 1),
(31, 10, 'Robert ', 'R.Moore', 'Lll4433#', '919-259-2637', 'r.moore@evotusinc.com', 0, 1),
(32, 14, 'Pablo', 'Pablo', '12345', '1234123123', 'hisemail@enviroserve.ea', 0, 1),
(41, 15, 'Caleab Cummings', 'Cummings_E-Waste', 'E-Waste_2022', '+1 (315) 869-2622', 'sales@pfane.com', 0, 1),
(36, 11, 'Anna Nagy', 'AnnaNagy882', 'TellMeWhyNot4$', '0766503531', 'csaba@pfane.com', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `item`
--

CREATE TABLE `item` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `mainid` int(11) DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `price` float DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `loss` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `item`
--

INSERT INTO `item` (`id`, `userid`, `mainid`, `name`, `arname`, `price`, `minimum_required`, `loss`, `status`) VALUES
(3, 1, 3, 'Gold', 'Au', 66.63, '30', '20', 1),
(4, 1, 4, 'Silver', 'Argint', 0.82, '300', '200', 1),
(5, 1, 5, 'Copper', 'Cupru', 0.00849, '0', '0', 1),
(6, 1, 6, 'Platinum', 'Platinum', 29.93, '15', '10', 1),
(12, 1, 12, 'Palladium', 'Palladium', 31.6, '30', '20', 1),
(13, 1, 13, 'Aluminum', 'Aluminum', 0.002259, NULL, NULL, 1),
(14, 1, 14, 'Tin', 'Tin', 0.01657, NULL, NULL, 1),
(15, 1, 15, 'Lead', 'Lead', 0.00211, NULL, NULL, 1),
(16, 1, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(17, 1, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(18, 1, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(20, 4, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(21, 4, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(22, 4, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(23, 4, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(24, 4, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(25, 4, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(26, 4, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(27, 4, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(28, 4, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(29, 4, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(30, 4, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(31, 4, 0, 'THis', 'This', 1, NULL, NULL, 1),
(32, 5, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(33, 5, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(34, 5, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(35, 5, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(36, 5, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(37, 5, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(38, 5, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(39, 5, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(40, 5, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(41, 5, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(42, 5, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(43, 6, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(44, 6, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(45, 6, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(46, 6, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(47, 6, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(48, 6, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(49, 6, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(50, 6, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(51, 6, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(52, 6, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(53, 6, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(54, 7, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(55, 7, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(56, 7, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(57, 7, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(58, 7, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(59, 7, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(60, 7, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 0),
(61, 7, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(62, 7, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(63, 7, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(65, 7, 18, 'Nickle', 'Nickle', 0.0019, NULL, NULL, 0),
(66, 10, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(67, 10, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(68, 10, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(69, 10, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(70, 10, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(71, 10, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(72, 10, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(73, 10, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(74, 10, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(75, 10, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(76, 10, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(77, 11, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(78, 11, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(79, 11, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(80, 11, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(81, 11, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(82, 11, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(83, 11, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 0),
(84, 11, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(85, 11, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(86, 11, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(87, 11, 18, 'Nickle', 'Nickle', 0.01399, NULL, NULL, 0),
(88, 12, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(89, 12, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(90, 12, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(91, 12, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(92, 12, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(93, 12, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(94, 12, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(95, 12, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(96, 12, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(97, 12, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(98, 12, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(99, 14, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(100, 14, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(101, 14, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(102, 14, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(103, 14, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(104, 14, 13, 'Aluminum', 'Aluminum', 0.002142, NULL, NULL, 1),
(105, 14, 14, 'Tin', 'Tin', 0.01735, NULL, NULL, 0),
(106, 14, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(107, 14, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(108, 14, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(109, 14, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 0),
(110, 14, 110, 'PLA mixed', 'PLA mixed', 0.00085, NULL, NULL, 1),
(111, 14, 111, 'Transformers', 'Transformers', 0.0068, NULL, NULL, 0),
(112, 1, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(113, 2, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(114, 3, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(115, 4, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(116, 5, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(117, 6, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(118, 7, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(119, 8, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(120, 9, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(121, 10, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(122, 11, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(123, 12, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(124, 13, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(125, 14, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(126, 15, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(127, 15, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(128, 15, 5, 'Copper', 'Cupru', 0.0095, NULL, NULL, 1),
(129, 15, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(130, 15, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(131, 15, 13, 'Aluminum', 'Aluminum', 0.0027, NULL, NULL, 1),
(132, 15, 14, 'Tin', 'Tin', 0.01907, NULL, NULL, 0),
(133, 15, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(134, 15, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(135, 15, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(136, 15, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 0),
(137, 15, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(138, 16, 3, 'Gold', 'Au', 66.63, NULL, NULL, 1),
(139, 16, 4, 'Silver', 'Argint', 0.82, NULL, NULL, 1),
(140, 16, 5, 'Copper', 'Cupru', 0.00894, NULL, NULL, 1),
(141, 16, 6, 'Platinum', 'Platinum', 29.93, NULL, NULL, 1),
(142, 16, 12, 'Palladium', 'Palladium', 31.6, NULL, NULL, 1),
(143, 16, 13, 'Aluminum', 'Aluminum', 0.002718, NULL, NULL, 1),
(144, 16, 14, 'Tin', 'Tin', 0.02442, NULL, NULL, 1),
(145, 16, 15, 'Lead', 'Lead', 0.0021, NULL, NULL, 1),
(146, 16, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(147, 16, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(148, 16, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(149, 16, 112, 'Mixed Computer Plastic', 'Mixed Computer Plastic', 0.00091, NULL, NULL, 1),
(150, 16, 150, 'q', 'q', 100, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `item10june`
--

CREATE TABLE `item10june` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `mainid` int(11) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `price` float DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `loss` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `item10june`
--

INSERT INTO `item10june` (`id`, `userid`, `mainid`, `name`, `arname`, `price`, `minimum_required`, `loss`, `status`) VALUES
(3, 1, 3, 'Gold', 'Au', 42.61, '30', '20', 1),
(4, 1, 4, 'Silver', 'Argint', 0.47, '300', '200', 1),
(5, 1, 5, 'Copper', 'Cupru', 0.00578, '0', '0', 1),
(6, 1, 6, 'Platinum', 'Platinum', 25.69, '15', '10', 1),
(12, 1, 12, 'Palladium', 'Palladium', 42.92, '30', '20', 1),
(13, 1, 13, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(14, 1, 14, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(15, 1, 15, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(16, 1, 16, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(17, 1, 17, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(18, 1, 18, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(20, 4, 3, 'Gold', 'Au', 42.61, NULL, NULL, 1),
(21, 4, 4, 'Silver', 'Argint', 0.47, NULL, NULL, 1),
(22, 4, 5, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(23, 4, 6, 'Platinum', 'Platinum', 25.69, NULL, NULL, 1),
(24, 4, 12, 'Palladium', 'Palladium', 42.92, NULL, NULL, 1),
(25, 4, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(26, 4, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(27, 4, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(28, 4, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(29, 4, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(30, 4, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(31, 4, 0, 'THis', 'This', 1, NULL, NULL, 1),
(32, 5, 3, 'Gold', 'Au', 42.61, NULL, NULL, 1),
(33, 5, 4, 'Silver', 'Argint', 0.47, NULL, NULL, 1),
(34, 5, 5, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(35, 5, 6, 'Platinum', 'Platinum', 25.69, NULL, NULL, 1),
(36, 5, 12, 'Palladium', 'Palladium', 42.92, NULL, NULL, 1),
(37, 5, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(38, 5, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(39, 5, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(40, 5, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(41, 5, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(42, 5, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(43, 6, 3, 'Gold', 'Au', 42.61, NULL, NULL, 1),
(44, 6, 4, 'Silver', 'Argint', 0.47, NULL, NULL, 1),
(45, 6, 5, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(46, 6, 6, 'Platinum', 'Platinum', 25.69, NULL, NULL, 1),
(47, 6, 12, 'Palladium', 'Palladium', 42.92, NULL, NULL, 1),
(48, 6, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(49, 6, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(50, 6, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(51, 6, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(52, 6, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(53, 6, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(54, 7, 3, 'Gold', 'Au', 42.61, NULL, NULL, 1),
(55, 7, 4, 'Silver', 'Argint', 0.47, NULL, NULL, 1),
(56, 7, 5, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(57, 7, 6, 'Platinum', 'Platinum', 25.69, NULL, NULL, 1),
(58, 7, 12, 'Palladium', 'Palladium', 42.92, NULL, NULL, 1),
(59, 7, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 0),
(60, 7, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(61, 7, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(62, 7, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(63, 7, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 0),
(65, 7, 0, 'Nickle', 'Nickel', 0.0019, NULL, NULL, 0),
(66, 10, 3, 'Gold', 'Au', 42.61, NULL, NULL, 1),
(67, 10, 4, 'Silver', 'Argint', 0.47, NULL, NULL, 1),
(68, 10, 5, 'Copper', 'Cupru', 0.00599, NULL, NULL, 1),
(69, 10, 6, 'Platinum', 'Platinum', 25.69, NULL, NULL, 1),
(70, 10, 12, 'Palladium', 'Palladium', 42.92, NULL, NULL, 1),
(71, 10, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 0),
(72, 10, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 0),
(73, 10, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 0),
(74, 10, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 0),
(75, 10, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 0),
(76, 10, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `item200519`
--

CREATE TABLE `item200519` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `mainid` int(11) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `price` float DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `loss` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `item200519`
--

INSERT INTO `item200519` (`id`, `userid`, `mainid`, `name`, `arname`, `price`, `minimum_required`, `loss`, `status`) VALUES
(3, 1, 3, 'Gold', 'Au', 41.06, '30', '20', 1),
(4, 1, 4, 'Silver', 'Argint', 0.46, '300', '200', 1),
(5, 1, 0, 'Copper', 'Cupru', 0.00599, '0', '0', 1),
(6, 1, 6, 'Platinum', 'Platinum', 26.24, '15', '10', 1),
(12, 1, 12, 'Palladium', 'Palladium', 41.7, '30', '20', 1),
(13, 1, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(14, 1, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(15, 1, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(16, 1, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(17, 1, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(18, 1, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(20, 4, 3, 'Gold', 'Au', 41.95, NULL, NULL, 1),
(21, 4, 4, 'Silver', 'Argint', 0.49, NULL, NULL, 1),
(22, 4, 0, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(23, 4, 6, 'Platinum', 'Platinum', 27.52, NULL, NULL, 1),
(24, 4, 12, 'Palladium', 'Palladium', 50.73, NULL, NULL, 1),
(25, 4, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(26, 4, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(27, 4, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(28, 4, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(29, 4, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(30, 4, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(31, 4, 0, 'THis', 'This', 1, NULL, NULL, 1),
(32, 5, 3, 'Gold', 'Au', 41.95, NULL, NULL, 1),
(33, 5, 4, 'Silver', 'Argint', 0.49, NULL, NULL, 1),
(34, 5, 0, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(35, 5, 6, 'Platinum', 'Platinum', 27.52, NULL, NULL, 1),
(36, 5, 12, 'Palladium', 'Palladium', 50.73, NULL, NULL, 1),
(37, 5, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(38, 5, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(39, 5, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(40, 5, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(41, 5, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(42, 5, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(43, 6, 3, 'Gold', 'Au', 41.95, NULL, NULL, 1),
(44, 6, 4, 'Silver', 'Argint', 0.49, NULL, NULL, 1),
(45, 6, 0, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(46, 6, 6, 'Platinum', 'Platinum', 27.52, NULL, NULL, 1),
(47, 6, 12, 'Palladium', 'Palladium', 50.73, NULL, NULL, 1),
(48, 6, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(49, 6, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(50, 6, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(51, 6, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(52, 6, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(53, 6, 0, 'Nickel', 'Nickel', 0.01309, NULL, NULL, 1),
(54, 7, 3, 'Gold', 'Au', 41.95, NULL, NULL, 1),
(55, 7, 4, 'Silver', 'Argint', 0.49, NULL, NULL, 1),
(56, 7, 0, 'Copper', 'Cupru', 0.00647, NULL, NULL, 1),
(57, 7, 6, 'Platinum', 'Platinum', 27.52, NULL, NULL, 1),
(58, 7, 12, 'Palladium', 'Palladium', 50.73, NULL, NULL, 1),
(59, 7, 0, 'Aluminum', 'Aluminum', 0.00188, NULL, NULL, 1),
(60, 7, 0, 'Tin', 'Tin', 0.021, NULL, NULL, 1),
(61, 7, 0, 'Lead', 'Lead', 0.00215, NULL, NULL, 1),
(62, 7, 0, 'Indium', 'Indium', 0.276, NULL, NULL, 1),
(63, 7, 0, 'Steel / Ferrous Metal', 'Steel / Ferrous Metal', 0.0001, NULL, NULL, 1),
(65, 7, 0, 'Nickle', 'Nickel', 0.0019, NULL, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `loadingport`
--

CREATE TABLE `loadingport` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `location`
--

CREATE TABLE `location` (
  `id` int(11) NOT NULL,
  `locationmap` varchar(500) NOT NULL,
  `palletsqty` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `mainquotetxt`
--

CREATE TABLE `mainquotetxt` (
  `id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `currencyid` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `manufacturer`
--

CREATE TABLE `manufacturer` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) NOT NULL,
  `logo` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `manufacturer`
--

INSERT INTO `manufacturer` (`id`, `userid`, `name`, `logo`, `status`) VALUES
(1, 1, 'Intel', '1_Dakirby309-Windows-8-Metro-Web-Intel-Metro.ico', 1),
(2, 1, 'AMD', '2_amd.png', 1),
(3, 1, 'IBM', '3_icon.png', 1),
(4, 1, 'Apple', '4_apple.jpg', 1),
(5, 1, 'Military', '5_Icon_military.png', 1),
(6, 1, 'NEC', '6_nec.png', 1),
(7, 1, 'Samsung', '7_Samsung-logo.jpg', 1),
(8, 1, 'Misc', '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `mediator`
--

CREATE TABLE `mediator` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `details` text NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `member_payments`
--

CREATE TABLE `member_payments` (
  `id` int(11) NOT NULL,
  `memberid` int(11) NOT NULL,
  `packageid` int(11) NOT NULL,
  `package_name` varchar(255) NOT NULL,
  `package_amount` float(13,2) NOT NULL,
  `onetimefee` float(13,2) NOT NULL,
  `netamount` float(13,2) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `member_payments`
--

INSERT INTO `member_payments` (`id`, `memberid`, `packageid`, `package_name`, `package_amount`, `onetimefee`, `netamount`, `sysdate`, `status`) VALUES
(1, 16, 2, 'Scrap Yard', 299.00, 499.00, 798.00, '2019-02-16', 0),
(2, 17, 2, 'Scrap Yard', 299.00, 499.00, 798.00, '2019-02-16', 0);

-- --------------------------------------------------------

--
-- Table structure for table `metars`
--

CREATE TABLE `metars` (
  `metar` varchar(255) NOT NULL DEFAULT '',
  `timestamp` timestamp(6) NOT NULL DEFAULT current_timestamp(6) ON UPDATE current_timestamp(6),
  `station` varchar(4) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `modeofdelivery`
--

CREATE TABLE `modeofdelivery` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `modeofdelivery`
--

INSERT INTO `modeofdelivery` (`id`, `name`, `status`) VALUES
(1, 'Truck', 1);

-- --------------------------------------------------------

--
-- Table structure for table `moisture`
--

CREATE TABLE `moisture` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `price` float(13,2) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `moisture`
--

INSERT INTO `moisture` (`id`, `userid`, `name`, `price`, `status`) VALUES
(1, 11, 'Water Moisture', 0.06, 1),
(2, 15, 'Water Moisture', 0.06, 1);

-- --------------------------------------------------------

--
-- Table structure for table `months`
--

CREATE TABLE `months` (
  `id` int(11) NOT NULL,
  `month` varchar(255) NOT NULL,
  `short` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `months`
--

INSERT INTO `months` (`id`, `month`, `short`, `status`) VALUES
(1, 'January', 'Jan', 1),
(2, 'February', 'Feb', 1),
(3, 'March', 'Mar', 1),
(4, 'April', 'Apr', 1),
(5, 'May', 'May', 1),
(6, 'June', 'Jun', 1),
(7, 'July', 'Jul', 1),
(8, 'August', 'Aug', 1),
(9, 'September', 'Sep', 1),
(10, 'October', 'Oct', 1),
(11, 'November', 'Nov', 1),
(12, 'December', 'Dec', 1);

-- --------------------------------------------------------

--
-- Table structure for table `mylist`
--

CREATE TABLE `mylist` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `memberid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `mylist`
--

INSERT INTO `mylist` (`id`, `name`, `userid`, `memberid`, `status`) VALUES
(1, 'LOW VOLUME PRICING', 1, 1, 1),
(2, 'DEFAULT', 1, 1, 1),
(3, 'COMPETITORS PRICING', 1, 1, 1),
(5, 'VIP HIGH VOLUME', 1, 1, 1),
(6, 'DEFAULT', 7, 0, 1),
(7, 'EVOTUS A LIST PRICING', 10, 0, 1),
(8, 'Competitors Prices', 7, 0, 1),
(9, 'MAIN PRICELIST', 11, 0, 1),
(10, 'DEFAULT', 12, 0, 1),
(11, 'TEST 1', 10, 0, 1),
(12, 'COMPETITORS PRICE', 11, 0, 1),
(13, 'Client A', 10, 0, 1),
(14, 'ERM Recycling', 12, 0, 1),
(15, 'High Prices', 11, 0, 1),
(16, 'JGK Metals', 15, 0, 1),
(17, 'test', 11, 0, 1),
(18, '1', 16, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `mytoken`
--

CREATE TABLE `mytoken` (
  `id` int(11) NOT NULL,
  `token` text NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `mytoken`
--

INSERT INTO `mytoken` (`id`, `token`, `status`) VALUES
(1, 'ya29.c.Kl61BzB0lpCSEC0WUTfE9v8P4oSdBZBnqofayLu8lIVp9wzjGcN9N_USQxfSGUmLGuvBMyRXl6-GSdWcpVCbmh5fU5EW3-lphFZTySE92XS4bAj2YjT6p9wTB30DQa_J', 1);

-- --------------------------------------------------------

--
-- Table structure for table `notify2`
--

CREATE TABLE `notify2` (
  `id` int(11) NOT NULL,
  `orderid` int(11) NOT NULL,
  `amount` float(13,2) NOT NULL,
  `sysdate` datetime NOT NULL,
  `invoiceid` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `notify2`
--

INSERT INTO `notify2` (`id`, `orderid`, `amount`, `sysdate`, `invoiceid`, `status`) VALUES
(1, 2, 0.00, '2019-01-22 11:37:00', '2AFSA090CFB', 1);

-- --------------------------------------------------------

--
-- Table structure for table `offices`
--

CREATE TABLE `offices` (
  `officename` varchar(50) NOT NULL DEFAULT '',
  `officeid` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `offices`
--

INSERT INTO `offices` (`officename`, `officeid`) VALUES
('Pfane', 1);

-- --------------------------------------------------------

--
-- Table structure for table `orderconfirmation`
--

CREATE TABLE `orderconfirmation` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `orderpayments`
--

CREATE TABLE `orderpayments` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `paidamount` float(13,2) NOT NULL,
  `paymentmodeid` int(11) NOT NULL,
  `paymentdate` date NOT NULL,
  `paymentdetails` varchar(255) NOT NULL,
  `paymentisadvance` int(11) NOT NULL,
  `paymentpdf` varchar(255) NOT NULL,
  `paymentack` int(11) NOT NULL,
  `paymentackdate` date NOT NULL,
  `paymentackdetail` varchar(500) NOT NULL,
  `pdf` varchar(255) NOT NULL,
  `ast_acknowledgement` int(11) NOT NULL,
  `ast_payupdate` int(11) NOT NULL,
  `ast_acknowledged` int(11) NOT NULL,
  `addressid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ordertermsconditions`
--

CREATE TABLE `ordertermsconditions` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `termsconditiondetail` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `origin`
--

CREATE TABLE `origin` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `originofgoods`
--

CREATE TABLE `originofgoods` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `packing`
--

CREATE TABLE `packing` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `packing`
--

INSERT INTO `packing` (`id`, `userid`, `name`, `status`) VALUES
(1, 1, 'Plastic / Nylon 250 kg sac', 1);

-- --------------------------------------------------------

--
-- Table structure for table `partialshipment`
--

CREATE TABLE `partialshipment` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `paymentmodes`
--

CREATE TABLE `paymentmodes` (
  `id` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `paymentmodes`
--

INSERT INTO `paymentmodes` (`id`, `name`, `status`) VALUES
(2, 'Contract (payment after processing)', 1),
(3, '50% Upfront - Net 40', 1);

-- --------------------------------------------------------

--
-- Table structure for table `paymentterm`
--

CREATE TABLE `paymentterm` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `paymentterm`
--

INSERT INTO `paymentterm` (`id`, `name`, `status`) VALUES
(1, 'Upfront', 1),
(2, '30 days', 1);

-- --------------------------------------------------------

--
-- Table structure for table `pichecklist`
--

CREATE TABLE `pichecklist` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `ocid` int(11) NOT NULL,
  `ocdate` date NOT NULL,
  `benfdetail` int(11) NOT NULL,
  `benfremarks` varchar(255) NOT NULL,
  `quantity` int(11) NOT NULL,
  `quantityremarks` varchar(255) NOT NULL,
  `amount` int(11) NOT NULL,
  `amountremarks` varchar(255) NOT NULL,
  `breakdown` int(11) NOT NULL,
  `breakdownremarks` varchar(255) NOT NULL,
  `rate` int(11) NOT NULL,
  `rateremarks` varchar(255) NOT NULL,
  `shippingdate` int(11) NOT NULL,
  `shippingdateremarks` varchar(255) NOT NULL,
  `paymentterm` int(11) NOT NULL,
  `paymenttermremarks` varchar(255) NOT NULL,
  `priceterm` int(11) NOT NULL,
  `pricetermremarks` varchar(255) NOT NULL,
  `shippingterm` int(11) NOT NULL,
  `shippingtermremarks` varchar(255) NOT NULL,
  `pipreaparedby` varchar(255) NOT NULL,
  `preperationdate` date NOT NULL,
  `pireviewedby` varchar(255) NOT NULL,
  `pireviewdate` date NOT NULL,
  `piaccepted` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pickupdeliverreturn`
--

CREATE TABLE `pickupdeliverreturn` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `pickupdeliverreturn`
--

INSERT INTO `pickupdeliverreturn` (`id`, `name`, `status`) VALUES
(1, 'Return By Truck', 1);

-- --------------------------------------------------------

--
-- Table structure for table `pickups`
--

CREATE TABLE `pickups` (
  `id` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `pickup_date` varchar(255) NOT NULL,
  `products` text NOT NULL,
  `totalkgs` float(13,2) NOT NULL,
  `details` text NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `pickups`
--

INSERT INTO `pickups` (`id`, `supplierid`, `pickup_date`, `products`, `totalkgs`, `details`, `sysdate`, `status`) VALUES
(1, 154, '2023-11-06', 'Rashlada', 1000.00, 'Test', '2023-11-06', 1),
(2, 154, '2023-11-06', 'Televizori', 2000.00, 'Test televizora', '2023-11-06', 1),
(3, 154, '2023-11-07', '22', 3000.00, 'dasdasdasd', '2023-11-06', 1),
(4, 154, '2023-11-08', 'rashlada', 1000.00, '', '2023-11-08', 1),
(5, 155, '2023-11-21', '1', 1000.00, 'Ulica Brzobrodska 4', '2023-11-21', 1);

-- --------------------------------------------------------

--
-- Table structure for table `preciousmetals`
--

CREATE TABLE `preciousmetals` (
  `id` int(11) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `pricepergram` float(13,2) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `preciousmetals`
--

INSERT INTO `preciousmetals` (`id`, `name`, `pricepergram`, `sysdate`, `status`) VALUES
(1, 'gold', 66.63, '2023-12-01', 1),
(2, 'palladium', 31.60, '2023-12-01', 1),
(3, 'platinum', 29.93, '2023-12-01', 1),
(4, 'silver', 0.82, '2023-12-01', 1);

-- --------------------------------------------------------

--
-- Table structure for table `preparescheme`
--

CREATE TABLE `preparescheme` (
  `id` int(11) NOT NULL,
  `stockmovementid` int(11) DEFAULT NULL,
  `loadtruckid` int(11) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pricepercent`
--

CREATE TABLE `pricepercent` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `price` float(13,2) DEFAULT NULL,
  `viewpasprice` float(13,2) NOT NULL,
  `less5` varchar(500) DEFAULT NULL,
  `less10` varchar(500) DEFAULT NULL,
  `less15` varchar(500) DEFAULT NULL,
  `less20` varchar(500) DEFAULT NULL,
  `less25` varchar(500) DEFAULT NULL,
  `less30` varchar(500) DEFAULT NULL,
  `less35` varchar(500) DEFAULT NULL,
  `less40` varchar(500) DEFAULT NULL,
  `less45` varchar(500) DEFAULT NULL,
  `less50` varchar(500) DEFAULT NULL,
  `less55` varchar(500) DEFAULT NULL,
  `less60` varchar(500) DEFAULT NULL,
  `less65` varchar(500) DEFAULT NULL,
  `less70` varchar(500) DEFAULT NULL,
  `less75` varchar(500) DEFAULT NULL,
  `less80` varchar(500) DEFAULT NULL,
  `less85` varchar(500) DEFAULT NULL,
  `less90` varchar(500) DEFAULT NULL,
  `less95` varchar(500) DEFAULT NULL,
  `less100` varchar(500) NOT NULL,
  `color_5` varchar(50) DEFAULT NULL,
  `color_10` varchar(50) DEFAULT NULL,
  `color_15` varchar(50) DEFAULT NULL,
  `color_20` varchar(50) DEFAULT NULL,
  `color_25` varchar(50) DEFAULT NULL,
  `color_30` varchar(50) DEFAULT NULL,
  `color_35` varchar(50) DEFAULT NULL,
  `color_40` varchar(50) DEFAULT NULL,
  `color_45` varchar(50) DEFAULT NULL,
  `color_50` varchar(50) DEFAULT NULL,
  `color_55` varchar(50) DEFAULT NULL,
  `color_60` varchar(50) DEFAULT NULL,
  `color_65` varchar(50) DEFAULT NULL,
  `color_70` varchar(50) DEFAULT NULL,
  `color_75` varchar(50) DEFAULT NULL,
  `color_80` varchar(50) DEFAULT NULL,
  `color_85` varchar(50) DEFAULT NULL,
  `color_90` varchar(50) DEFAULT NULL,
  `color_95` varchar(50) DEFAULT NULL,
  `color_100` varchar(50) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `pricepercent`
--

INSERT INTO `pricepercent` (`id`, `userid`, `price`, `viewpasprice`, `less5`, `less10`, `less15`, `less20`, `less25`, `less30`, `less35`, `less40`, `less45`, `less50`, `less55`, `less60`, `less65`, `less70`, `less75`, `less80`, `less85`, `less90`, `less95`, `less100`, `color_5`, `color_10`, `color_15`, `color_20`, `color_25`, `color_30`, `color_35`, `color_40`, `color_45`, `color_50`, `color_55`, `color_60`, `color_65`, `color_70`, `color_75`, `color_80`, `color_85`, `color_90`, `color_95`, `color_100`, `status`) VALUES
(1, 1, 50.00, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', 1),
(2, 7, 0.25, 99.99, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', 1),
(3, 10, 0.75, 99.99, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL),
(4, 11, 0.33, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, I\'m confident in this result.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL),
(5, 12, 0.50, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, I\'m confident in this result.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL),
(6, 14, 0.50, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL),
(7, 15, 0.30, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL),
(8, 16, 50.00, 90.00, 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'There is nothing in my database that matches any similarity with this image, you\'ve chosen the wrong image category', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This result is too low, please check you have chosen the correct category and the image is high resolution. ', 'This is a terrible result, I don\'t recognize anything in this image, check the vision category, take a different image, if you receive this message again with this material contact support.', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This is a poor result, check that the image is well lit, high resolution and you\'ve selected the proper category for this material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This image is either blurry, low res, missing too many components, too close to just a few pieces of material or this is not the correct category for this material.  I\'ve adjusted pricing to rule out the possibility that this is mixed material. ', 'This is a satisfactory image, but this material is missing components or is mixed with low grade material to add weight.  I\'ve adjusted the offer price to compensate.  ', 'I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing more scans of this material.', 'i\'m fairly confident in these results, however, I am seeing discrepancies with the material in this category and the photo scanned. This image may be blurry, the material may be missing components, I would suggest doing multiple scans of this material.', 'This is a good result, however, there may be some missing components or some materials are cut off in the image. I would suggest another high res image of this material', 'This was a very good image, However, you should try for a 100% Visibility rating, ask for more images of these materials.', 'This was an excellent image, I\'m very confident in this result.', '#000000', '#000000', '#000000', '#190000', '#190000', '#190000', '#490000', '#490000', '#490000', '#7c1000', '#c4503e', '#c4503e', '#d3733f', '#ff9844', '#5d6000', '#a9b200', '#a9b200', '#8ca325', '#afce27', '#86f442', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `priceterm`
--

CREATE TABLE `priceterm` (
  `id` int(11) NOT NULL,
  `name` varchar(500) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `priceterm`
--

INSERT INTO `priceterm` (`id`, `name`, `status`) VALUES
(1, 'Upfront Order (Payment Upfront)', 1),
(2, 'Value Share (Capped value share, Payment after processing) ', 1);

-- --------------------------------------------------------

--
-- Table structure for table `process`
--

CREATE TABLE `process` (
  `id` int(11) NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `userid` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `process`
--

INSERT INTO `process` (`id`, `name`, `status`, `userid`) VALUES
(1, 'Gold-Dip Solution', 1, 1),
(2, 'Copper Extraction', 1, 1),
(3, 'Depopulating Boards', 1, 1),
(58, 'Gold-Dip Solution', 1, 23),
(59, 'Copper Extraction', 1, 23),
(60, 'Depopulating Boards', 1, 23),
(61, 'Gold-Dip Solution', 1, 4),
(62, 'Copper Extraction', 1, 4),
(63, 'Depopulating Boards', 1, 4),
(64, 'Gold-Dip Solution', 1, 5),
(65, 'Copper Extraction', 1, 5),
(66, 'Depopulating Boards', 1, 5),
(67, 'Gold-Dip Solution', 1, 6),
(68, 'Copper Extraction', 1, 6),
(69, 'Depopulating Boards', 1, 6),
(70, 'Gold-Dip Solution', 1, 7),
(71, 'Copper Extraction', 1, 7),
(72, 'Depopulating Boards', 1, 7),
(73, 'Gold-Dip Solution', 1, 8),
(74, 'Copper Extraction', 1, 8),
(75, 'Depopulating Boards', 1, 8),
(76, 'Gold-Dip Solution', 1, 10),
(77, 'Copper Extraction', 1, 10),
(78, 'Depopulating Boards', 1, 10),
(79, 'Gold-Dip Solution', 1, 11),
(80, 'Copper Extraction', 1, 11),
(81, 'Depopulating Boards', 1, 11),
(82, 'Gold-Dip Solution', 1, 12),
(83, 'Copper Extraction', 1, 12),
(84, 'Depopulating Boards', 1, 12),
(85, 'Gold-Dip Solution', 1, 14),
(86, 'Copper Extraction', 1, 14),
(87, 'Depopulating Boards', 1, 14),
(88, 'Gold-Dip Solution', 1, 15),
(89, 'Copper Extraction', 1, 15),
(90, 'Depopulating Boards', 1, 15),
(91, 'Gold-Dip Solution', 1, 16),
(92, 'Copper Extraction', 1, 16),
(93, 'Depopulating Boards', 1, 16);

-- --------------------------------------------------------

--
-- Table structure for table `processchart`
--

CREATE TABLE `processchart` (
  `id` int(11) NOT NULL,
  `supplierorderid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `processid` int(11) DEFAULT NULL,
  `processingid` int(11) DEFAULT NULL,
  `totalkg` float(13,2) DEFAULT NULL,
  `kgleft` float(13,2) DEFAULT NULL,
  `kgsale` float(13,2) DEFAULT NULL,
  `completed` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processchart`
--

INSERT INTO `processchart` (`id`, `supplierorderid`, `productid`, `processid`, `processingid`, `totalkg`, `kgleft`, `kgsale`, `completed`, `status`) VALUES
(1, 9, 0, 2, 3, 24.00, 14.00, 10.00, 1, 1),
(2, 9, 0, 2, 1, 14.00, 14.00, 10.00, 1, 1),
(3, 9, 0, 2, 2, 14.00, 1.00, 23.00, 1, 1),
(4, 9, 0, 2, 4, 1.00, 1.00, 23.00, 1, 1),
(5, 9, 0, 2, 5, 1.00, 0.03, 23.97, 1, 1),
(6, 9, 0, 2, 7, 0.03, 0.00, 24.00, 1, 1),
(7, 9, 0, 3, 1, 16.00, 10.00, 6.00, 1, 1),
(8, 9, 0, 3, 2, 10.00, 5.00, 11.00, 1, 1),
(9, 9, 0, 3, 4, 5.00, 3.00, 13.00, 1, 1),
(10, 9, 0, 3, 5, 3.00, 1.00, 15.00, 1, 1),
(11, 9, 0, 3, 6, 1.00, 0.00, 16.00, 1, 1),
(12, 9, 0, 3, 7, 0.00, 0.00, 16.00, 0, 1),
(13, 9, 0, 5, 12, 22.50, 10.00, 12.50, 1, 1),
(14, 9, 0, 5, 3, 10.00, 10.00, 0.00, 1, 1),
(15, 9, 0, 5, 11, 10.00, 10.00, 0.00, 1, 1),
(16, 9, 0, 5, 2, 10.00, 1.00, 9.00, 1, 1),
(17, 9, 0, 5, 4, 1.00, 1.00, 0.00, 1, 1),
(18, 9, 0, 5, 5, 1.00, 0.00, 1.00, 1, 1),
(19, 9, 0, 5, 7, 0.00, -1.00, 1.00, 1, 1),
(20, 9, 0, 4, 11, 0.26, 0.26, 0.00, 0, 1),
(21, 9, 0, 4, 2, 0.26, 0.26, 0.00, 0, 1),
(22, 9, 0, 4, 4, 0.26, 0.26, 0.00, 0, 1),
(23, 9, 0, 4, 5, 0.26, 0.26, 0.00, 0, 1),
(24, 9, 0, 4, 7, 0.26, 0.26, 0.00, 0, 1),
(25, 8, 0, 3, 1, 25.00, 25.00, 0.00, 0, 1),
(26, 8, 0, 3, 2, 25.00, 25.00, 0.00, 0, 1),
(27, 8, 0, 3, 4, 25.00, 25.00, 0.00, 0, 1),
(28, 8, 0, 3, 5, 25.00, 25.00, 0.00, 0, 1),
(29, 8, 0, 3, 6, 25.00, 25.00, 0.00, 0, 1),
(30, 8, 0, 3, 7, 25.00, 25.00, 0.00, 0, 1),
(31, 9, 0, 1, 1, 0.00, 0.00, 0.00, 0, 1),
(32, 9, 0, 1, 2, 0.00, 0.00, 0.00, 0, 1),
(33, 9, 0, 1, 3, 0.00, 0.00, 0.00, 0, 1),
(34, 8, 0, 2, 3, 250.00, 250.00, 0.00, 0, 1),
(35, 8, 0, 2, 1, 250.00, 250.00, 0.00, 0, 1),
(36, 8, 0, 2, 2, 250.00, 250.00, 0.00, 0, 1),
(37, 8, 0, 2, 4, 250.00, 250.00, 0.00, 0, 1),
(38, 8, 0, 2, 5, 250.00, 250.00, 0.00, 0, 1),
(39, 8, 0, 2, 7, 250.00, 250.00, 0.00, 0, 1),
(40, 1, 0, 2, 3, 1268.52, 1268.52, 0.00, 0, 1),
(41, 1, 0, 2, 1, 1268.52, 1268.52, 0.00, 0, 1),
(42, 1, 0, 2, 2, 1268.52, 1268.52, 0.00, 0, 1),
(43, 1, 0, 2, 4, 1268.52, 1268.52, 0.00, 0, 1),
(44, 1, 0, 2, 5, 1268.52, 1268.52, 0.00, 0, 1),
(45, 1, 0, 2, 7, 1268.52, 1268.52, 0.00, 0, 1),
(46, 1, 0, 4, 11, 131.48, 131.48, 0.00, 0, 1),
(47, 1, 0, 4, 2, 131.48, 131.48, 0.00, 0, 1),
(48, 1, 0, 4, 4, 131.48, 131.48, 0.00, 0, 1),
(49, 1, 0, 4, 5, 131.48, 131.48, 0.00, 0, 1),
(50, 1, 0, 4, 7, 131.48, 131.48, 0.00, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `processchartdetail`
--

CREATE TABLE `processchartdetail` (
  `id` int(11) NOT NULL,
  `processchartid` int(11) DEFAULT NULL,
  `itemid` int(11) DEFAULT NULL,
  `weight` float(13,4) DEFAULT NULL,
  `image` varchar(100) DEFAULT NULL,
  `forsale` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processchartdetail`
--

INSERT INTO `processchartdetail` (`id`, `processchartid`, `itemid`, `weight`, `image`, `forsale`, `status`) VALUES
(6, 14, 7, 5.0000, '', 0, 1),
(7, 14, 10, 5.0000, '', 0, 1),
(10, 16, 10, 1.0000, '', 0, 1),
(13, 25, 3, 4.0000, '', 0, 1),
(19, 17, 10, 1.0000, '', 0, 1),
(35, 7, 4, 10.0000, '', 0, 1),
(37, 8, 4, 5.0000, '', 0, 1),
(39, 9, 4, 3.0000, '', 0, 1),
(41, 10, 4, 1.0000, '', 0, 1),
(45, 2, 10, 14.0000, '', 0, 1),
(47, 3, 10, 1.0000, '', 0, 1),
(48, 4, 10, 1.0000, '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `processcompletedetail`
--

CREATE TABLE `processcompletedetail` (
  `id` int(11) NOT NULL,
  `processcompleteid` int(11) DEFAULT NULL,
  `itemid` int(11) DEFAULT NULL,
  `weight` float(13,4) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `evaporated` float(13,2) NOT NULL DEFAULT 0.00,
  `image` varchar(100) DEFAULT NULL,
  `forsale` int(11) DEFAULT NULL,
  `addeduserid` int(11) NOT NULL DEFAULT 0,
  `note` varchar(500) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processcompletedetail`
--

INSERT INTO `processcompletedetail` (`id`, `processcompleteid`, `itemid`, `weight`, `baskets`, `evaporated`, `image`, `forsale`, `addeduserid`, `note`, `sysdate`, `status`) VALUES
(1, 0, 2, 1.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(2, 1, 41, 2.4500, 1, 0.00, '', 0, 0, NULL, NULL, 1),
(3, 1, 41, 1.0000, 1, 0.00, '3_pcd_vehicle-icon-19.png', 0, 0, NULL, NULL, 1),
(6, 4, 41, 1.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(9, 3, 33, 500.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(10, 3, 29, 10.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(11, 3, 18, 34.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(12, 3, 36, 50.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(13, 3, 39, 25.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(14, 3, 34, 25.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(15, 5, 41, 6.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(16, 6, 41, 31.8390, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(17, 7, 41, 2.3550, 0, 0.00, '17_pcd_material-product-pfane.jpg', 0, 0, NULL, NULL, 1),
(19, 8, 41, 86.8390, 0, 0.00, '19_pcd_moddy.jpg', 0, 0, NULL, NULL, 1),
(20, 9, 36, 2.8390, 0, 0.00, '20_pcd_EyeshadowPalette.jpg', 0, 0, NULL, NULL, 1),
(21, 9, 33, 7.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(22, 2, 33, 500.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(23, 2, 29, 2.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(24, 2, 32, 8.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(25, 2, 30, 5.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(26, 2, 15, 80.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(27, 2, 18, 5.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(28, 10, 33, 14.6780, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(29, 11, 35, 200.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(30, 11, 40, 300.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(31, 12, 35, 3.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(32, 12, 40, 4.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(33, 13, 35, 200.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(34, 13, 40, 300.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(35, 18, 33, 40.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(36, 18, 38, 1.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(37, 18, 15, 3.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(38, 18, 32, 0.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(39, 18, 18, 0.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(40, 17, 33, 2.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(41, 17, 38, 2.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(42, 17, 15, 0.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(43, 17, 29, 0.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(44, 19, 33, 40.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(45, 19, 15, 5.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(46, 19, 32, 1.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(47, 20, 35, 25.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(48, 20, 40, 57.0000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(49, 21, 43, 0.0250, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(50, 21, 40, 8.4750, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(51, 22, 43, 0.0500, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(52, 22, 38, 0.4500, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(53, 23, 35, 251.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(54, 23, 40, 1548.5000, 0, 0.00, '', 0, 0, NULL, NULL, 1),
(59, 25, 35, 918.0000, 0, 0.00, '59_pcd_WhatsApp Image 2017-09-15 at 12.37.50 PM.jpeg', NULL, 0, NULL, NULL, 1),
(72, 26, 35, 918.0000, 0, 0.00, '72_pcd_24203762_2033373626877851_955908829_n.jpg', NULL, 0, NULL, NULL, 1),
(73, 26, 35, 1254.0000, 0, 0.00, '73_pcd_material-product-pfane.jpg', NULL, 0, NULL, NULL, 1),
(74, 26, 35, 1945.0000, 6, 0.00, '74_pcd_WhatsApp Image 2017-09-12 at 10.09.49 PM.jpeg', NULL, 0, NULL, NULL, 1),
(75, 27, 33, 365.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(76, 27, 43, 0.1500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(77, 28, 35, 200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(78, 28, 40, 157.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(79, 30, 15, 12.0000, 1, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(80, 30, 18, 3.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(81, 30, 33, 30.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(82, 31, 15, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(84, 31, 18, 4.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(85, 32, 37, 4.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(86, 32, 15, 3.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(87, 32, 18, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(88, 33, 33, 79.8000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(89, 33, 43, 0.2000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(90, 34, 33, 8.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(91, 34, 15, 0.9500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(92, 34, 44, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(93, 34, 43, 0.0500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(94, 35, 43, 0.0200, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(95, 35, 35, 3.4300, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(96, 35, 38, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(97, 36, 38, 1.9900, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(98, 36, 43, 0.0100, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(99, 37, 35, 50.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(100, 37, 40, 37.8000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(101, 38, 35, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(102, 39, 35, 500.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(103, 39, 40, 1300.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(104, 40, 33, 121.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(105, 41, 34, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(106, 42, 35, 60.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(107, 42, 40, 61.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(108, 43, 35, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(109, 44, 43, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(110, 45, 35, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(111, 46, 35, 60.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(112, 46, 40, 40.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(113, 47, 54, 6240.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(114, 47, 55, 1200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(115, 47, 40, 6700.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(116, 48, 20, 60.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(117, 49, 55, 1200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(118, 49, 3, 3.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(119, 49, 54, 4500.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(120, 49, 40, 8400.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(122, 49, 20, 17.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(123, 50, 53, 1.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(124, 50, 40, 1.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(125, 51, 33, 3.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(126, 52, 35, 3.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(127, 53, 38, 1.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(128, 54, 15, 3.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(129, 55, 33, 25.0000, 0, 0.00, '129_pcd_5ac52a58-1371-4408-b682-ee9ba232f34a.png', NULL, 0, NULL, NULL, 1),
(130, 55, 2, 25.0000, 0, 0.00, '130_pcd_97fb4cd8-40c1-469b-8ce1-fbf160f300d5.jpg', NULL, 0, NULL, NULL, 1),
(131, 56, 15, 50.0000, 0, 0.00, '131_pcd_WhatsApp Image 2018-06-25 at 13.06.16.jpeg', NULL, 0, NULL, NULL, 1),
(132, 57, 36, 12.5000, 0, 0.00, '132_pcd_WhatsApp Image 2018-06-25 at 13.02.41.jpeg', NULL, 0, NULL, NULL, 1),
(133, 57, 54, 37.4000, 0, 0.00, '133_pcd_1920_1200_20100918124004576025.jpg', NULL, 0, NULL, NULL, 1),
(134, 57, 43, 0.1000, 0, 0.00, '134_pcd_gold-prospecting-kit-640x534.jpg', NULL, 0, NULL, NULL, 1),
(135, 58, 33, 15.5000, 0, 0.00, '135_pcd_WhatsApp Image 2018-06-25 at 13.04.46.jpeg', NULL, 0, NULL, NULL, 1),
(136, 59, 52, 80.0000, 0, 0.00, '136_pcd_1acons.jpeg', NULL, 0, NULL, NULL, 1),
(137, 59, 40, 101.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(138, 60, 54, 50.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(139, 60, 40, 12.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(140, 61, 54, 3.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(141, 62, 53, 10.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(142, 62, 54, 60.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(143, 62, 55, 10.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(144, 63, 25, 10.0000, 0, 0.00, '144_pcd_CE664-69001__17186.1509986857.700.700.jpg', NULL, 0, NULL, NULL, 1),
(145, 63, 38, 13.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(146, 64, 15, 2.0000, 0, 0.00, '146_pcd_maxresdefault.jpg', NULL, 0, NULL, NULL, 1),
(147, 64, 33, 8.0000, 0, 0.00, '147_pcd_CE664-69001__17186.1509986857.700.700.jpg', NULL, 0, NULL, NULL, 1),
(148, 65, 3, 10.0000, 0, 0.00, '148_pcd_maxresdefault.jpg', NULL, 0, NULL, NULL, 1),
(149, 66, 3, 280.5000, 0, 0.00, '149_pcd_1hear.png', NULL, 0, NULL, NULL, 1),
(150, 67, 54, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(151, 68, 53, 400.0000, 0, 0.00, '151_pcd_copper.jpeg', NULL, 0, NULL, NULL, 1),
(152, 68, 53, 900.0000, 0, 0.00, '152_pcd_copper.jpeg', NULL, 0, NULL, NULL, 1),
(153, 68, 40, 4000.0000, 0, 0.00, '153_pcd_fiber.jpeg', NULL, 0, NULL, NULL, 1),
(154, 68, 53, 9700.0000, 0, 0.00, '154_pcd_copper.jpeg', NULL, 0, NULL, NULL, 1),
(155, 69, 53, 120.0000, 0, 0.00, '155_pcd_1acons.jpeg', NULL, 0, NULL, NULL, 1),
(165, 70, 54, 3000.0000, 0, 0.00, '40_pcd_material-product-pfane.jpg', NULL, 0, NULL, NULL, 1),
(166, 70, 40, 3000.0000, 0, 0.00, '41_pcd_1anumber3.jpeg', NULL, 0, NULL, NULL, 1),
(167, 71, 15, 7.0000, 0, 0.00, '167_pcd_WhatsApp Image 2018-07-04 at 15.43.33(2).jpeg', NULL, 0, NULL, NULL, 1),
(168, 71, 33, 393.0000, 0, 0.00, '168_pcd_WhatsApp Image 2018-07-04 at 15.43.33(3).jpeg', NULL, 0, NULL, NULL, 1),
(169, 72, 71, 7.0000, 0, 0.00, '169_pcd_WhatsApp Image 2018-07-04 at 15.43.35(2).jpeg', NULL, 0, NULL, NULL, 1),
(170, 73, 43, 0.2500, 0, 0.00, '46_pcd_dalecard.png', NULL, 0, NULL, NULL, 1),
(171, 73, 40, 6.7500, 0, 0.00, '47_pcd_1anumber3.jpeg', NULL, 0, NULL, NULL, 1),
(172, 74, 53, 120.0000, 0, 0.00, '48_pcd_material-product-pfane.jpg', NULL, 0, NULL, NULL, 1),
(173, 74, 54, 100.0000, 0, 0.00, '49_pcd_WhatsApp Image 2017-09-15 at 12.37.50 PM.jpeg', NULL, 0, NULL, NULL, 1),
(174, 74, 40, 173.0000, 0, 0.00, '50_pcd_24197325_2033365286878685_1148552771_o.jpg', NULL, 0, NULL, NULL, 1),
(175, 75, 52, 280.0000, 0, 0.00, '175_pcd_WhatsApp Image 2017-09-12 at 10.09.49 PM.jpeg', NULL, 0, NULL, NULL, 1),
(176, 75, 54, 450.0000, 0, 0.00, '51_pcd_WhatsApp Image 2017-09-15 at 12.37.50 PM.jpeg', NULL, 0, NULL, NULL, 1),
(177, 75, 40, 650.0000, 0, 0.00, '52_pcd_24197325_2033365286878685_1148552771_o.jpg', NULL, 0, NULL, NULL, 1),
(178, 75, 54, 900.0000, 0, 0.00, '53_pcd_24203762_2033373626877851_955908829_n.jpg', NULL, 0, NULL, NULL, 1),
(179, 75, 49, 122.0000, 0, 0.00, '54_pcd_WhatsApp Image 2018-07-04 at 15.43.38(1).jpeg', NULL, 0, NULL, NULL, 1),
(180, 75, 7, 60.0000, 0, 0.00, '180_pcd_62_color_IMG_5753.JPG', NULL, 0, NULL, NULL, 1),
(181, 75, 55, 2500.0000, 0, 0.00, '55_pcd_copper.jpeg', NULL, 0, NULL, NULL, 1),
(182, 75, 40, 2990.0000, 0, 0.00, '56_pcd_fiber.jpeg', NULL, 0, NULL, NULL, 1),
(183, 76, 53, 122.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(184, 76, 54, 157.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(185, 77, 33, 59.0100, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(186, 77, 43, 0.0900, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(187, 77, 40, 0.9000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(188, 78, 54, 59.0100, 0, 0.00, '61_pcd_copper.jpeg', NULL, 0, NULL, NULL, 1),
(189, 80, 53, 6.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(190, 80, 54, 111.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(191, 80, 38, 201.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(192, 80, 40, 328.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(193, 81, 53, 8.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(194, 81, 54, 144.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(195, 81, 55, 87.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(196, 81, 40, 658.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(197, 82, 38, 13.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(198, 82, 53, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(199, 82, 54, 12.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(200, 82, 55, 9.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(201, 82, 40, 28.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(202, 84, 53, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(203, 84, 54, 7.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(204, 84, 55, 9.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(205, 84, 40, 59.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(206, 85, 53, 6.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(207, 85, 54, 28.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(208, 85, 55, 16.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(209, 85, 40, 150.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(211, 86, 53, 13.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(212, 86, 54, 64.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(213, 86, 55, 52.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(214, 86, 40, 402.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(215, 87, 53, 31.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(216, 87, 54, 34.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(217, 87, 55, 48.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(218, 87, 40, 404.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(219, 88, 55, 314.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(220, 88, 40, 899.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(221, 89, 53, 14.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(222, 89, 54, 88.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(223, 89, 55, 74.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(224, 89, 40, 606.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(225, 90, 38, 121.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(226, 90, 49, 44.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(227, 90, 53, 21.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(228, 90, 54, 74.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(229, 90, 55, 114.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(230, 90, 40, 892.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(231, 91, 55, 39.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(232, 91, 40, 114.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(233, 92, 53, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(234, 92, 54, 6.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(235, 92, 55, 4.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(236, 92, 40, 48.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(237, 93, 53, 2.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(238, 93, 54, 8.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(239, 93, 55, 5.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(240, 93, 40, 79.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(241, 94, 53, 0.0500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(242, 95, 53, 0.1500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(243, 96, 53, 0.3000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(244, 97, 30, 36.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(245, 97, 49, 362.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(246, 97, 29, 41.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(247, 97, 38, 188.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(248, 97, 18, 68.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(249, 97, 32, 15.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(250, 97, 33, 1290.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(251, 98, 30, 160.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(252, 98, 38, 788.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(253, 98, 15, 220.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(254, 98, 33, 1432.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(255, 99, 43, 0.3500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(256, 99, 38, 67.6500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(257, 100, 55, 632.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(258, 100, 52, 522.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(259, 100, 54, 255.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(260, 100, 40, 1313.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(261, 101, 54, 191.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(262, 101, 40, 28.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(263, 102, 53, 500.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(264, 102, 54, 22.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(265, 103, 54, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(266, 103, 52, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(267, 103, 55, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(268, 103, 52, 1200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(269, 103, 40, 14800.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(271, 104, 54, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(272, 104, 54, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(273, 104, 52, 211.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(274, 104, 91, 3.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(284, 104, 110, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(285, 104, 110, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(286, 104, 19, 246.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(287, 105, 15, 3000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(288, 105, 33, 12000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(289, 106, 18, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(290, 106, 40, 2000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(291, 107, 54, 1200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(292, 107, 40, 2800.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(293, 108, 55, 12000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(294, 109, 43, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(295, 110, 15, 872.0000, 16, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(296, 110, 18, 250.0000, 0, 0.00, '296_pcd_WhatsApp Image 2019-02-07 at 08.42.31(6).jpeg', NULL, 0, NULL, NULL, 1),
(297, 110, 33, 2878.0000, 0, 0.00, '297_pcd_WhatsApp Image 2019-02-07 at 08.42.31(1).jpeg', NULL, 0, NULL, NULL, 1),
(298, 111, 33, 999.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(299, 111, 43, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(300, 112, 18, 500.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(302, 112, 40, 372.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(303, 113, 38, 746.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(304, 113, 43, 4.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(305, 114, 52, 600.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(306, 114, 55, 1184.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(307, 114, 40, 2091.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(308, 114, 55, 1.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(309, 115, 15, 1.0000, 0, 0.00, '309_pcd_1951893.jpg', NULL, 0, NULL, NULL, 1),
(310, 115, 77, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(311, 117, 15, 20.0000, 0, 0.00, '311_pcd_36-TerexMPS.jpg', NULL, 0, NULL, NULL, 1),
(312, 118, 15, 20.0000, 0, 0.00, '312_pcd_20171129132931_18009.jpg', NULL, 0, NULL, NULL, 1),
(313, 119, 18, 10.0000, 0, 0.00, '313_pcd_ROM.jpg', NULL, 0, NULL, NULL, 1),
(314, 120, 15, 22000.0000, 0, 0.00, '314_pcd_36-TerexMPS.jpg', NULL, 0, NULL, NULL, 1),
(316, 121, 15, 980.0000, 0, 0.00, '316_pcd_15_procedure_2x4-Shaker-Table.jpg', NULL, 0, NULL, NULL, 1),
(317, 122, 15, 990.0000, 0, 0.00, '317_pcd_3131.jpg', NULL, 0, NULL, NULL, 1),
(318, 123, 37, 1970.0000, 0, 0.00, '174_pcd_18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', NULL, 0, NULL, NULL, 1),
(319, 124, 14, 10.0000, 0, 0.00, '319_pcd_3131.jpg', NULL, 0, NULL, NULL, 1),
(320, 125, 14, 1.0000, 0, 0.00, '320_pcd_Evotus_Inc_fs.png', NULL, 0, NULL, NULL, 1),
(321, 125, 15, 1.0000, 0, 0.00, '321_pcd_Evotus_Inc_fs.png', NULL, 0, NULL, NULL, 1),
(322, 127, 15, 100.0000, 0, 0.00, '322_pcd_download.jpg', NULL, 0, NULL, NULL, 1),
(323, 127, 149, 100.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(324, 127, 381, 100.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(325, 128, 55, 100.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(326, 129, 29, 25.0000, 0, 0.00, '176_pcd_PVI1.jpeg', NULL, 0, NULL, NULL, 1),
(327, 129, 39, 55.0000, 0, 0.00, '177_pcd_Ram1.jpeg', NULL, 0, NULL, NULL, 1),
(328, 129, 40, 200.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(329, 129, 32, 19.0500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(330, 129, 43, 0.9500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(331, 130, 127, 600.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(332, 131, 15, 1.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(333, 132, 54, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(334, 133, 428, 2.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(335, 134, 131, 0.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(336, 134, 430, 1.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(337, 135, 15, 30.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(338, 135, 18, 5.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(339, 135, 33, 30.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(340, 136, 15, 50.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(341, 137, 15, 30.0000, 0, 0.00, '341_pcd_e-waste.jpg', NULL, 0, NULL, NULL, 1),
(342, 138, 18, 2.0000, 0, 0.00, '342_pcd_1951893.jpg', NULL, 0, NULL, NULL, 1),
(343, 139, 374, 25.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(344, 139, 43, 0.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(345, 139, 131, 24.5000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(347, 141, 127, 25.0000, 0, 0.00, '185_pcd_7AFD14404DAA6B5D1D25140A026AFF51.jpg', NULL, 0, NULL, NULL, 1),
(348, 142, 416, 5.0000, 0, 0.00, '348_pcd_CPU1.jpg', NULL, 0, NULL, NULL, 1),
(349, 142, 106, 5.0000, 0, 0.00, '349_pcd_CPU1.jpg', NULL, 0, NULL, NULL, 1),
(350, 144, 15, 450.0000, 0, 0.00, '350_pcd_telll.jpeg', NULL, 0, NULL, NULL, 1),
(351, 144, 442, 25.0000, 0, 0.00, '351_pcd_e-waste.jpg', NULL, 0, NULL, NULL, 1),
(352, 144, 33, 25.0000, 0, 0.00, '352_pcd_Retrospective.jpg', NULL, 0, NULL, NULL, 1),
(353, 145, 131, 200.0000, 0, 0.00, '186_pcd_1951893.jpg', NULL, 0, NULL, NULL, 1),
(354, 146, 71, 87.0000, 0, 0.00, '354_pcd_P80801-144943.jpg', NULL, 0, NULL, NULL, 1),
(355, 147, 71, 450.0000, 0, 0.00, '355_pcd_22966260402224.jpg', NULL, 0, NULL, NULL, 1),
(356, 148, 43, 2.0000, 0, 0.00, '187_pcd_Retrospective.jpg', NULL, 0, NULL, NULL, 1),
(357, 148, 222, 23.0000, 0, 0.00, '188_pcd_Retired.jpg', NULL, 0, NULL, NULL, 1),
(358, 149, 54, 5.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(359, 149, 40, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(360, 150, 54, 537.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(361, 151, 125, 542.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(362, 152, 127, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(363, 153, 124, 542.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(364, 154, 206, 542.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(365, 143, 472, 150.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(366, 155, 516, 4.2500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(367, 155, 464, 145.7500, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(369, 156, 500, 1010.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(370, 158, 472, 1010.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(371, 159, 516, 40.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(373, 159, 464, 1020.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(374, 160, 457, 1000.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(377, 160, 516, 20.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(378, 161, 443, 6.0050, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(380, 161, 517, 53.9950, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(381, 162, 518, 5.9995, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(382, 162, 517, 0.1000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(383, 163, 520, 6.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(384, 164, 569, 920.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(385, 164, 566, 30.0000, 0, 0.00, '196_pcd_15657694458361640640640986223938.jpg', NULL, 0, NULL, NULL, 1),
(386, 165, 566, 6202.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(387, 165, 561, 11918.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(388, 166, 566, 6050.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(389, 166, 561, 15730.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(390, 164, 566, 3629.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(391, 164, 561, 17411.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(392, 167, 566, 4660.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(393, 167, 561, 16060.0000, 0, 0.00, NULL, NULL, 0, NULL, NULL, 1),
(394, 168, 566, 812.0000, 0, 0.00, NULL, NULL, 23, NULL, '2019-08-16', 1),
(395, 168, 566, 1160.0000, 1, 0.00, '205_pcd_IMG_20190814_215507 (1).jpg', NULL, 23, NULL, '2019-08-16', 1),
(396, 168, 566, 760.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-08-19', 1),
(398, 168, 566, 835.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-08-20', 1),
(399, 169, 545, 2.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(400, 169, 546, 1.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(401, 169, 554, 2.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(402, 170, 568, 2.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(403, 171, 563, 1.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(404, 172, 569, 1.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(405, 172, 561, 1.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(406, 173, 569, 2.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-08-21', 1),
(407, 168, 566, 716.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-08-22', 1),
(408, 168, 561, 11377.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-08-22', 1),
(410, 140, 358, 14.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-08-23', 1),
(411, 140, 368, 86.0000, 1, 0.00, NULL, NULL, 18, NULL, '2019-08-23', 1),
(412, 174, 472, 100.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(413, 175, 516, 60.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(414, 175, 464, 90.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(415, 176, 443, 2.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(416, 176, 517, 58.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(417, 177, 518, 2.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(418, 178, 519, 2.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(419, 179, 520, 2.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(420, 180, 472, 100.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(421, 181, 708, 500.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(422, 182, 472, 500.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(423, 182, 472, 500.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-04', 1),
(424, 185, 566, 860.0000, 1, 0.00, '424_pcd_103_color_stuffe.jpg', NULL, 23, NULL, '2019-09-10', 1),
(425, 185, 566, 640.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-09', 1),
(426, 185, 566, 310.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-09', 1),
(427, 185, 566, 950.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-10', 1),
(428, 186, 472, 100.0000, 0, 0.00, NULL, NULL, 20, NULL, '2019-09-10', 1),
(430, 185, 566, 320.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-11', 1),
(431, 185, 566, 410.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-11', 1),
(432, 185, 566, 670.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-11', 1),
(433, 185, 561, 18260.0000, 0, 0.00, NULL, NULL, 23, NULL, '2019-09-11', 1),
(434, 187, 566, 260.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-16', 1),
(435, 187, 566, 285.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-16', 1),
(436, 187, 566, 613.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-16', 1),
(437, 187, 566, 370.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-16', 1),
(438, 187, 566, 390.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-17', 1),
(439, 187, 566, 570.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-18', 1),
(440, 187, 566, 720.0000, 1, 0.00, NULL, NULL, 23, NULL, '2019-09-19', 1),
(441, 187, 561, 13952.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(442, 189, 566, 1500.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(443, 189, 566, 1330.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(444, 189, 566, 350.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(445, 189, 566, 750.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(446, 189, 566, 686.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(447, 189, 566, 620.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(448, 189, 566, 700.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(449, 189, 566, 435.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-07', 1),
(450, 190, 566, 706.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-08', 1),
(453, 190, 566, 770.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-08', 1),
(460, 191, 367, 155.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(461, 191, 367, 1000.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(462, 191, 367, 422.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(463, 191, 358, 645.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(464, 192, 379, 500.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(465, 192, 374, 1077.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(466, 193, 359, 155.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(467, 193, 374, 490.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(468, 194, 430, 1567.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(469, 195, 376, 1.2150, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(470, 195, 372, 153.7850, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-09', 1),
(471, 190, 566, 670.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-09', 1),
(472, 190, 566, 750.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-10', 1),
(473, 190, 566, 640.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-10', 1),
(474, 189, 561, 13749.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-11', 1),
(475, 190, 561, 6724.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-11', 1),
(477, 196, 566, 1.0000, 0, 0.00, '276_pcd_15710360568846708008671388536960.jpg', NULL, 22, NULL, '2019-10-14', 1),
(478, 199, 358, 35.0000, 1, 0.00, NULL, NULL, 18, NULL, '2019-10-14', 1),
(479, 199, 367, 172.7900, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-14', 1),
(480, 200, 380, 30.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-14', 1),
(481, 200, 374, 5.0000, 0, 0.00, NULL, NULL, 18, NULL, '2019-10-14', 1),
(482, 196, 566, 230.0000, 0, 0.00, NULL, NULL, 22, NULL, '2019-10-14', 1),
(483, 196, 566, 320.0000, 0, 0.00, '282_pcd_15710540311814602914652021714135.jpg', NULL, 22, NULL, '2019-10-14', 1),
(484, 196, 566, 1060.0000, 0, 0.00, '283_pcd_15711155598209089190446950949299.jpg', NULL, 23, 'good material', '2019-10-15', 1),
(487, 196, 566, 900.0000, 0, 0.00, '286_pcd_15711368371964572743957657934520.jpg', NULL, 23, '', '2019-10-15', 1),
(488, 198, 544, 6.0000, 1, 0.00, NULL, NULL, 23, 'Testss', '2019-10-15', 1),
(490, 196, 566, 1060.0000, 0, 0.00, '296_pcd_15712037332922684876383089158289.jpg', NULL, 22, '', '2019-10-16', 1),
(491, 196, 566, 770.0000, 0, 0.00, '297_pcd_15712226871517055171536824578171.jpg', NULL, 22, '', '2019-10-16', 1),
(492, 196, 566, 1000.0000, 0, 0.00, '302_pcd_15712948578122749250621784286749.jpg', NULL, 22, '', '2019-10-17', 1),
(493, 196, 566, 954.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-17', 1),
(494, 201, 358, 25.0000, 1, 0.00, NULL, NULL, 18, '', '2019-10-17', 1),
(495, 201, 367, 598.3800, 0, 0.00, NULL, NULL, 18, '', '2019-10-17', 1),
(496, 196, 566, 920.0000, 0, 0.00, '307_pcd_15713747148228387845217134111605.jpg', NULL, 22, '', '2019-10-18', 1),
(497, 196, 561, 16285.0000, 0, 0.00, NULL, NULL, 23, '', '2019-10-20', 1),
(498, 202, 566, 170.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-21', 1),
(499, 202, 566, 250.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-21', 1),
(500, 202, 566, 510.0000, 0, 0.00, '353_pcd_15716551788082536784665392907142.jpg', NULL, 22, '', '2019-10-21', 1),
(501, 202, 566, 520.0000, 0, 0.00, '354_pcd_15716838174565852024003195626865.jpg', NULL, 22, '', '2019-10-21', 1),
(502, 203, 561, 1157.7000, 0, 0.00, NULL, NULL, 22, '', '2019-10-21', 1),
(503, 202, 566, 440.0000, 0, 0.00, '357_pcd_15717418414924709115333957169278.jpg', NULL, 22, '', '2019-10-22', 1),
(504, 202, 566, 350.0000, 0, 0.00, '358_pcd_15717707938133772302731708229296.jpg', NULL, 22, '', '2019-10-22', 1),
(505, 202, 566, 170.0000, 0, 0.00, '361_pcd_15718280204414039379235857281278.jpg', NULL, 22, '', '2019-10-23', 1),
(506, 206, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-23', 1),
(507, 206, 566, 1134.0000, 0, 0.00, '375_pcd_15718567979463347459483008565521.jpg', NULL, 22, '', '2019-10-23', 1),
(508, 198, 369, 65.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-24', 1),
(509, 198, 374, 58.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-24', 1),
(510, 198, 358, 0.0700, 0, 0.00, NULL, NULL, 18, '', '2019-10-24', 1),
(511, 206, 566, 591.0000, 0, 0.00, '381_pcd_15719142563222731559500906508087.jpg', NULL, 22, '', '2019-10-24', 1),
(512, 206, 566, 1120.0000, 0, 0.00, '386_pcd_15719438886413368087962692898633.jpg', NULL, 22, '', '2019-10-24', 1),
(513, 206, 566, 856.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-28', 1),
(514, 206, 566, 868.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-28', 1),
(515, 207, 358, 90.0000, 1, 0.00, '419_pcd_motherboards1.jpg', NULL, 18, '', '2019-10-28', 1),
(516, 207, 364, 40.0000, 1, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(517, 207, 367, 68.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(518, 208, 381, 50.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(519, 208, 374, 40.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(520, 209, 379, 50.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(521, 209, 374, 18.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(522, 210, 428, 50.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(523, 211, 427, 45.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(524, 211, 381, 5.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(525, 212, 431, 45.0000, 0, 0.00, NULL, NULL, 18, '', '2019-10-28', 1),
(526, 206, 566, 776.0000, 0, 0.00, '431_pcd_15722640872322791500959540567760.jpg', NULL, 22, '', '2019-10-28', 1),
(527, 206, 566, 790.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-29', 1),
(528, 206, 566, 440.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-29', 1),
(529, 206, 566, 920.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-30', 1),
(530, 213, 441, 11.5000, 0, 0.00, '502_pcd_12.jpeg', NULL, 24, 'new tes', '2019-10-30', 1),
(531, 213, 520, 34.7900, 0, 0.00, '503_pcd_24-karat-gold-flakes-500x500.jpg', NULL, 24, 'hello', '2019-10-30', 1),
(532, 213, 443, 4.0600, 0, 0.00, '504_pcd_IMG_20190814_215507 (1).jpg', NULL, 24, 'some note', '2019-10-30', 1),
(533, 214, 442, 11.5000, 0, 0.00, '505_pcd_motherboards1.jpg', NULL, 24, '', '2019-10-30', 1),
(534, 215, 520, 4.5400, 0, 0.00, '506_pcd_CRTTruckPano1.jpg', NULL, 24, '', '2019-10-30', 1),
(535, 216, 520, 11.5000, 0, 0.00, '507_pcd_12.jpeg', NULL, 24, '', '2019-10-30', 1),
(536, 206, 566, 898.0000, 0, 0.00, '508_pcd_15724362778038809862677960310673.jpg', NULL, 22, '', '2019-10-30', 1),
(537, 217, 463, 117.9300, 0, 0.00, NULL, NULL, 24, 'My notes for this', '2019-10-30', 1),
(538, 218, 520, 113.4000, 0, 0.00, NULL, NULL, 24, 'just made some gold', '2019-10-30', 1),
(539, 219, 441, 113.4000, 0, 0.00, NULL, NULL, 24, '', '2019-10-30', 1),
(540, 220, 520, 113.4000, 0, 0.00, NULL, NULL, 24, 'made some gold again', '2019-10-30', 1),
(541, 221, 520, 113.4000, 0, 0.00, NULL, NULL, 24, 'more gold cool eh!', '2019-10-30', 1),
(542, 206, 566, 584.0000, 0, 0.00, NULL, NULL, 22, '', '2019-10-31', 1),
(543, 202, 566, 198.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-01', 1),
(544, 222, 566, 726.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-01', 1),
(545, 206, 561, 15313.0000, 0, 0.00, NULL, NULL, 23, 'Final Entry', '2019-11-01', 1),
(546, 222, 566, 700.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-02', 1),
(547, 222, 566, 220.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-02', 1),
(548, 202, 566, 580.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-04', 1),
(549, 222, 566, 540.0000, 0, 0.00, '533_pcd_15728973957764608939179146966686.jpg', NULL, 22, '', '2019-11-04', 1),
(550, 222, 566, 510.0000, 0, 0.00, '534_pcd_15729548100173496801073606250444.jpg', NULL, 22, '', '2019-11-05', 1),
(551, 202, 566, 144.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-05', 1),
(552, 222, 566, 390.0000, 0, 0.00, '536_pcd_15729838022404331981776199008090.jpg', NULL, 22, '', '2019-11-05', 1),
(553, 222, 566, 215.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-06', 1),
(554, 222, 566, 370.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-07', 1),
(555, 222, 566, 690.0000, 0, 0.00, '539_pcd_15731560339072948089034562851303.jpg', NULL, 22, '', '2019-11-07', 1),
(556, 222, 566, 530.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-08', 1),
(557, 222, 566, 778.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-08', 1),
(558, 222, 566, 770.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-11', 1),
(559, 222, 561, 16521.0000, 0, 0.00, NULL, NULL, 22, 'Final Weight', '2019-11-11', 1),
(560, 223, 566, 648.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-11', 1),
(561, 223, 566, 830.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-12', 1),
(562, 223, 566, 550.0000, 0, 0.00, '547_pcd_15735592196131787384541271838783.jpg', NULL, 22, '', '2019-11-12', 1),
(563, 223, 566, 240.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-16', 1),
(564, 223, 566, 1050.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-16', 1),
(565, 223, 566, 830.0000, 0, 0.00, '550_pcd_15739053989311892260455213980979.jpg', NULL, 22, '', '2019-11-16', 1),
(566, 223, 566, 960.0000, 0, 0.00, '551_pcd_15739339597851609048078773594713.jpg', NULL, 22, '', '2019-11-16', 1),
(567, 205, 561, 8172.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-17', 1),
(568, 202, 561, 2320.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-17', 1),
(569, 204, 561, 7718.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-17', 1),
(570, 223, 566, 950.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-18', 1),
(571, 223, 566, 700.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-18', 1),
(572, 223, 566, 800.0000, 0, 0.00, '557_pcd_15741643896228267936248817849666.jpg', NULL, 22, '', '2019-11-19', 1),
(573, 223, 566, 540.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-19', 1),
(574, 223, 566, 420.0000, 0, 0.00, NULL, NULL, 22, '', '2019-11-19', 1),
(575, 223, 561, 16972.0000, 0, 0.00, NULL, NULL, 22, 'completed', '2019-11-29', 1),
(576, 224, 566, 167.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-02', 1),
(577, 224, 566, 350.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-02', 1),
(578, 224, 566, 710.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-02', 1),
(579, 224, 566, 610.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-02', 1),
(580, 224, 566, 700.0000, 0, 0.00, '566_pcd_15753170117744176204113301257650.jpg', NULL, 22, '', '2019-12-02', 1),
(581, 224, 566, 640.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-03', 1),
(582, 224, 566, 720.0000, 0, 0.00, '568_pcd_15754029703511364869548354482249.jpg', NULL, 22, '', '2019-12-03', 1),
(583, 224, 566, 610.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-05', 1),
(584, 224, 566, 318.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-05', 1),
(585, 224, 566, 690.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-05', 1),
(586, 224, 566, 780.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-05', 1),
(587, 224, 566, 760.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-09', 1),
(588, 224, 566, 410.0000, 0, 0.00, NULL, NULL, 22, '', '2019-12-09', 1),
(589, 224, 561, 17555.0000, 0, 0.00, NULL, NULL, 22, 'COmplete', '2020-01-06', 1),
(590, 225, 357, 10.0000, 0, 0.00, NULL, NULL, 18, '', '2020-01-12', 1),
(591, 225, 358, 10.0000, 0, 0.00, '591_pcd_20200107085343_handy_pl_g.jpg', NULL, 18, 'Hello', '2020-01-12', 1),
(592, 226, 566, 600.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-13', 1),
(593, 226, 566, 714.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-13', 1),
(594, 226, 566, 176.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-15', 1),
(595, 226, 566, 140.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-15', 1),
(596, 226, 566, 270.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-15', 1),
(597, 226, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-16', 1),
(598, 226, 566, 260.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-16', 1),
(599, 226, 566, 530.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-20', 1),
(600, 226, 566, 416.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-20', 1),
(601, 226, 566, 130.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-20', 1),
(606, 227, 472, 6.3500, 1, 0.00, NULL, NULL, 31, 'TestA', '2020-01-21', 1),
(607, 227, 713, 0.4500, 1, 0.00, NULL, NULL, 31, 'TestB', '2020-01-21', 1),
(608, 228, 566, 600.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-22', 1),
(609, 228, 566, 300.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-23', 1),
(610, 228, 566, 700.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-23', 1),
(611, 228, 566, 530.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-23', 1),
(612, 228, 566, 660.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-24', 1),
(613, 228, 566, 480.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-25', 1),
(614, 228, 566, 260.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-25', 1),
(615, 230, 566, 400.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-30', 1),
(616, 231, 566, 2913.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-30', 1),
(617, 230, 566, 450.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-30', 1),
(618, 230, 566, 644.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-30', 1),
(619, 230, 566, 340.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-31', 1),
(620, 230, 566, 898.0000, 0, 0.00, NULL, NULL, 22, '', '2020-01-31', 1),
(621, 230, 566, 780.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-03', 1),
(622, 230, 566, 837.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-04', 1),
(623, 230, 566, 722.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-04', 1),
(624, 230, 566, 794.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-05', 1),
(625, 230, 566, 166.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-05', 1),
(626, 233, 559, 8190.0000, 0, 0.00, NULL, NULL, 22, 'no', '2020-02-12', 1),
(627, 226, 561, 6264.0000, 0, 0.00, NULL, NULL, 22, 'no thank you', '2020-02-12', 1),
(628, 228, 561, 14610.0000, 0, 0.00, NULL, NULL, 22, 'we change blades today', '2020-02-12', 1),
(629, 234, 560, 960.0000, 0, 0.00, NULL, NULL, 22, 'Was Fun Using Hammer Mill Outside', '2020-02-12', 1),
(630, 234, 567, 58.0000, 0, 0.00, NULL, NULL, 22, 'Nice Gold Coming On Table', '2020-02-12', 1),
(631, 234, 561, 402.0000, 0, 0.00, NULL, NULL, 22, 'no', '2020-02-12', 1),
(632, 230, 561, 14689.0000, 0, 0.00, NULL, NULL, 22, 'hi boss', '2020-02-12', 1),
(634, 231, 561, 6207.0000, 0, 0.00, NULL, NULL, 22, 'no', '2020-02-12', 1),
(635, 235, 566, 7446.0000, 0, 0.00, NULL, NULL, 22, 'software wasnt working', '2020-02-13', 1),
(636, 235, 561, 13154.0000, 0, 0.00, NULL, NULL, 22, 'final', '2020-02-13', 1),
(637, 236, 566, 108.0000, 0, 0.00, NULL, NULL, 22, 'change ciocan sch1 data:19.02.2020', '2020-02-20', 1),
(638, 236, 566, 922.0000, 0, 0.00, NULL, NULL, 22, '19.02.2020 sch2', '2020-02-20', 1),
(639, 236, 566, 554.0000, 0, 0.00, NULL, NULL, 22, '20.02.2020 sch1 repair banda and change big bags fiber', '2020-02-20', 1),
(640, 236, 566, 970.0000, 0, 0.00, NULL, NULL, 22, '20.02.2020 sch 2', '2020-02-21', 1),
(641, 236, 566, 870.0000, 0, 0.00, NULL, NULL, 22, '21.02.2020 schimbat supliment moara afarÄƒ sch1 bela', '2020-02-22', 1),
(642, 236, 566, 540.0000, 0, 0.00, NULL, NULL, 22, '21.02.2020 schimbat supliment moara interior sch2 ioane', '2020-02-22', 1),
(644, 238, 566, 4276.0000, 0, 0.00, NULL, NULL, 22, '', '2020-02-23', 1),
(645, 236, 566, 680.0000, 0, 0.00, NULL, NULL, 22, '24.02.2020  SCH1    HI BOSS', '2020-02-24', 1),
(646, 236, 566, 820.0000, 0, 0.00, NULL, NULL, 22, '24.02.2020 change ciocan interior sch2 bela', '2020-02-24', 1),
(647, 236, 566, 980.0000, 0, 0.00, NULL, NULL, 22, '25.02.2020  such 1 ioane', '2020-02-25', 1),
(648, 236, 566, 562.0000, 0, 0.00, NULL, NULL, 22, '25.02.2020 sch2  bela finish Europe central', '2020-02-25', 1),
(649, 239, 756, 3.0000, 0, 0.00, '649_pcd_unnamed.png', NULL, 32, 'john was sick lost an hour', '2020-03-01', 1),
(650, 239, 765, 60.0000, 1, 0.00, '650_pcd_card.png', NULL, 32, 'bag has holes', '2020-03-01', 1),
(651, 239, 788, 37.0000, 0, 0.00, NULL, NULL, 32, 'all done', '2020-03-01', 1),
(652, 240, 763, 3.0000, 0, 0.00, NULL, NULL, 32, 'for sale', '2020-03-01', 1),
(653, 241, 566, 324.0000, 0, 0.00, NULL, NULL, 22, '25.02.2020  sch2 bela a inceput', '2020-03-02', 1),
(654, 241, 566, 180.0000, 0, 0.00, NULL, NULL, 22, '26.02.2020 sch1 nu a fost curent', '2020-03-02', 1),
(655, 241, 566, 502.0000, 0, 0.00, NULL, NULL, 22, '26.02.2020 sch2 bela ', '2020-03-02', 1),
(656, 241, 566, 828.0000, 0, 0.00, NULL, NULL, 22, '27.02.2020 sch1 ioane', '2020-03-02', 1),
(657, 241, 566, 740.0000, 0, 0.00, NULL, NULL, 22, '27.02.2020 sch2 bela', '2020-03-02', 1),
(658, 241, 566, 458.0000, 0, 0.00, NULL, NULL, 22, '28.02.2020 sch  ioane schimbat ciocan interior', '2020-03-02', 1),
(659, 241, 566, 928.0000, 0, 0.00, NULL, NULL, 22, '28.02.2020 sch2 bela', '2020-03-02', 1),
(660, 238, 561, 7964.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-02', 1),
(663, 241, 566, 942.0000, 0, 0.00, NULL, NULL, 22, '02.03.2020 sch1 bela', '2020-03-04', 1),
(664, 241, 566, 1100.0000, 0, 0.00, NULL, NULL, 22, '02.03.2020 sch2 ioane', '2020-03-04', 1),
(665, 241, 566, 838.0000, 0, 0.00, NULL, NULL, 22, '03.03.2020 sch1 bela', '2020-03-04', 1),
(666, 241, 566, 626.0000, 0, 0.00, NULL, NULL, 22, '03.03.2020 sch2 ioane si schimbat ciocan', '2020-03-04', 1),
(667, 242, 566, 834.0000, 0, 0.00, NULL, NULL, 22, '04.03.2020 sch1 bela schimbat ciocan moara afara', '2020-03-05', 1),
(668, 242, 566, 982.0000, 0, 0.00, NULL, NULL, 22, '04.03.2020 sch2 ioane', '2020-03-05', 1),
(669, 241, 561, 16024.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-05', 1),
(670, 242, 566, 588.0000, 0, 0.00, NULL, NULL, 22, '05.03.2020 sch1 bela si incarcat camion cu fibra', '2020-03-06', 1),
(671, 242, 566, 925.0000, 0, 0.00, NULL, NULL, 22, '05.03.2020 sch2 ioane modificat axul afara pus ciocan cu surub', '2020-03-06', 1),
(672, 242, 566, 810.0000, 0, 0.00, NULL, NULL, 22, '06.03.2020 sch1 bela', '2020-03-10', 1),
(673, 242, 566, 614.0000, 0, 0.00, NULL, NULL, 22, '06.03.2020 sch2 ioane schimbat ciocan interior', '2020-03-10', 1),
(674, 242, 566, 952.0000, 0, 0.00, NULL, NULL, 22, '09.03.2020 sch1 ioane ', '2020-03-10', 1),
(675, 242, 566, 1160.0000, 0, 0.00, NULL, NULL, 22, '09.03.2020 sch2 bela', '2020-03-10', 1),
(676, 242, 566, 790.0000, 0, 0.00, NULL, NULL, 22, '10.03.2020 sch1 ioane finish order', '2020-03-10', 1),
(677, 237, 566, 690.0000, 0, 0.00, NULL, NULL, 22, '10.03.2020 sch2 bela inca5cat camion fibra', '2020-03-11', 1),
(678, 237, 566, 656.0000, 0, 0.00, NULL, NULL, 22, '11.03.2020 sch1 ioane', '2020-03-11', 1),
(679, 237, 566, 464.0000, 0, 0.00, NULL, NULL, 22, '11.03.2020 sch2 bela schimbat ciocan interior', '2020-03-12', 1),
(680, 237, 566, 1000.0000, 0, 0.00, NULL, NULL, 22, '12.03.2020 sch1 ioane', '2020-03-12', 1),
(681, 242, 561, 16585.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-12', 1),
(682, 237, 566, 950.0000, 0, 0.00, NULL, NULL, 22, '12.03.2020 sch2 bela', '2020-03-13', 1),
(683, 237, 561, 7960.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-13', 1),
(684, 236, 561, 16444.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-13', 1),
(685, 243, 566, 770.0000, 0, 0.00, NULL, NULL, 22, '13.03.2020 sch1 ioane', '2020-03-16', 1),
(686, 243, 566, 802.0000, 0, 0.00, NULL, NULL, 22, '13.03.2020 sch 2 bela', '2020-03-16', 1),
(687, 243, 566, 966.0000, 0, 0.00, NULL, NULL, 22, '16.03.2020 sch1 bela', '2020-03-17', 1),
(688, 243, 566, 1114.0000, 0, 0.00, NULL, NULL, 22, '16.03.2020 sch2 ioane', '2020-03-17', 1),
(689, 243, 566, 936.0000, 0, 0.00, NULL, NULL, 22, '17.03.2020 sch1 bela', '2020-03-18', 1),
(690, 243, 566, 1000.0000, 0, 0.00, NULL, NULL, 22, '17.03.2020 sch2 ioane', '2020-03-18', 1),
(691, 243, 566, 832.0000, 0, 0.00, NULL, NULL, 22, '18.03.2020  556 clas 3 , clas1 is 276 kg bela   ', '2020-03-18', 1),
(692, 243, 561, 12400.0000, 0, 0.00, NULL, NULL, 22, '18.03.2020 finish', '2020-03-18', 1),
(693, 244, 566, 248.0000, 0, 0.00, NULL, NULL, 22, '18.03.2020 sch2 ioane scimbat rulment moara cupru', '2020-03-19', 1),
(694, 244, 566, 920.0000, 0, 0.00, NULL, NULL, 22, '19.03.2020 sch1 bela', '2020-03-19', 1),
(695, 244, 566, 958.0000, 0, 0.00, NULL, NULL, 22, '19.03.2020 sch2 ioane', '2020-03-23', 1),
(696, 244, 566, 926.0000, 0, 0.00, NULL, NULL, 22, '20.03.2020 sch1 bela', '2020-03-23', 1),
(697, 244, 566, 570.0000, 0, 0.00, NULL, NULL, 22, '20.03.2020 sch2 ioane schimbat rlument interior si axul afara', '2020-03-23', 1),
(698, 244, 566, 1026.0000, 0, 0.00, NULL, NULL, 22, '23.03.2020 sch1 ioane ', '2020-03-24', 1),
(699, 244, 566, 1126.0000, 0, 0.00, NULL, NULL, 22, '23.03.2020 sch2 bela', '2020-03-24', 1),
(700, 244, 566, 960.0000, 0, 0.00, NULL, NULL, 22, '24.03.2020 sch1 ioane si sudat È™urub axul afara', '2020-03-24', 1),
(701, 244, 566, 946.0000, 0, 0.00, NULL, NULL, 22, '24.03.2020 sch2 bela ', '2020-03-24', 1),
(702, 246, 844, 1800.0000, 0, 0.00, '702_pcd_Screenshot 2020-03-24 at 11.47.55 am.png', NULL, 32, 'All clean. ', '2020-03-25', 1),
(703, 246, 766, 7000.0000, 0, 0.00, '703_pcd__DNA4195.jpg', NULL, 32, 'Feedable printers', '2020-03-25', 1),
(704, 246, 771, 3900.0000, 0, 0.00, '704_pcd__DNA4229.jpg', NULL, 32, '', '2020-03-25', 1),
(705, 246, 765, 5300.0000, 0, 0.00, NULL, NULL, 32, '', '2020-03-25', 1),
(706, 247, 852, 600.0000, 0, 0.00, NULL, NULL, 32, '', '2020-03-25', 1),
(707, 247, 766, 800.0000, 0, 0.00, NULL, NULL, 32, '', '2020-03-25', 1),
(708, 247, 763, 300.0000, 0, 0.00, NULL, NULL, 32, '', '2020-03-25', 1),
(709, 247, 771, 100.0000, 0, 0.00, NULL, NULL, 32, '', '2020-03-25', 1),
(710, 244, 566, 860.0000, 0, 0.00, NULL, NULL, 22, '25.03.2020 sch1 ioan', '2020-03-26', 1),
(711, 244, 566, 518.0000, 0, 0.00, NULL, NULL, 22, '25.03.2020 sch2 bela schimbat ciocan interior si axul afara pus axul vechi', '2020-03-26', 1),
(712, 244, 561, 11042.0000, 0, 0.00, NULL, NULL, 22, '', '2020-03-26', 1),
(713, 249, 566, 700.0000, 0, 0.00, NULL, NULL, 22, '26.03.2020 sch1 ioane ', '2020-03-27', 1),
(714, 249, 566, 562.0000, 0, 0.00, NULL, NULL, 22, '26.03.2020 sch2 bela si schimbat sita interior', '2020-03-27', 1),
(715, 249, 566, 984.0000, 0, 0.00, NULL, NULL, 22, '27.03.2020 sch 1 ioane', '2020-03-30', 1),
(716, 249, 566, 880.0000, 0, 0.00, NULL, NULL, 22, '27.03.2020 sch2 bela', '2020-03-30', 1),
(717, 250, 853, 35000.0000, 0, 0.00, NULL, NULL, 32, '0', '2020-03-30', 1),
(718, 250, 844, 15000.0000, 0, 0.00, NULL, NULL, 32, '0', '2020-03-30', 1),
(719, 251, 775, 35000.0000, 0, 0.00, NULL, NULL, 32, '0', '2020-03-30', 1),
(720, 252, 852, 15000.0000, 0, 0.00, NULL, NULL, 32, '0', '2020-03-30', 1),
(721, 249, 566, 957.0000, 0, 0.00, NULL, NULL, 22, '30.03.2020 sch1 bela ', '2020-03-31', 1),
(722, 249, 566, 1088.0000, 0, 0.00, NULL, NULL, 22, '30.03.2020 sch2 ioane', '2020-03-31', 1),
(723, 248, 571, 186.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(724, 248, 573, 124.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(725, 248, 559, 710.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(726, 248, 558, 1.5000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(727, 248, 560, 60.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(728, 248, 582, 88.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(729, 248, 588, 4.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(730, 248, 590, 15.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-01', 1),
(731, 249, 566, 638.0000, 0, 0.00, NULL, NULL, 22, '31.03.2020 sch1 bela', '2020-04-02', 1),
(732, 249, 566, 844.0000, 0, 0.00, NULL, NULL, 22, '31.03.2020 sch2 ioane', '2020-04-02', 1),
(733, 249, 566, 270.0000, 0, 0.00, NULL, NULL, 22, '01.04.2020 sch1 bela si schimbat ciocan moara interior', '2020-04-02', 1),
(734, 249, 566, 826.0000, 0, 0.00, NULL, NULL, 22, '01.04.2020 sch2 ioane ', '2020-04-02', 1),
(735, 249, 561, 15251.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-02', 1),
(736, 248, 891, 43.5000, 0, 0.00, NULL, NULL, 22, '', '2020-04-02', 1);
INSERT INTO `processcompletedetail` (`id`, `processcompleteid`, `itemid`, `weight`, `baskets`, `evaporated`, `image`, `forsale`, `addeduserid`, `note`, `sysdate`, `status`) VALUES
(737, 248, 889, 11.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-02', 1),
(738, 248, 892, 22.5000, 0, 0.00, NULL, NULL, 22, '', '2020-04-02', 1),
(739, 248, 893, 109.5000, 0, 0.00, NULL, NULL, 22, '', '2020-04-02', 1),
(740, 254, 358, 6111.0000, 3, 0.00, NULL, NULL, 18, 'Took 3 days to separate all the cips', '2020-04-07', 1),
(741, 254, 405, 6111.0000, 5, 0.00, NULL, NULL, 18, 'A few are still with chips on them.', '2020-04-07', 1),
(742, 255, 380, 6111.0000, 0, 0.00, NULL, NULL, 18, 'no', '2020-04-07', 1),
(743, 256, 376, 1.0000, 0, 0.00, NULL, NULL, 18, 'placed in vault', '2020-04-07', 1),
(744, 256, 412, 6110.0000, 0, 0.00, NULL, NULL, 18, 'npo', '2020-04-07', 1),
(745, 257, 379, 2000.0000, 0, 0.00, NULL, NULL, 18, 'no', '2020-04-07', 1),
(746, 257, 374, 4110.0000, 0, 0.00, NULL, NULL, 18, '0', '2020-04-07', 1),
(747, 258, 430, 4110.0000, 0, 0.00, NULL, NULL, 18, '0', '2020-04-07', 1),
(748, 253, 566, 206.0000, 0, 0.00, NULL, NULL, 22, '02.04.2020 sch1 bela curatat canal ', '2020-04-08', 1),
(749, 253, 566, 988.0000, 0, 0.00, NULL, NULL, 22, '02.04.2020 sch2 ioane', '2020-04-08', 1),
(750, 253, 566, 560.0000, 0, 0.00, NULL, NULL, 22, '03.04.2020 sch1 bela', '2020-04-08', 1),
(751, 253, 566, 60.0000, 0, 0.00, NULL, NULL, 22, '03.04.2020 sch2 ione reparat snack', '2020-04-08', 1),
(752, 253, 566, 770.0000, 0, 0.00, NULL, NULL, 22, '06.04.2020 sch 1 ioane ', '2020-04-08', 1),
(753, 253, 566, 560.0000, 0, 0.00, NULL, NULL, 22, '06.04.2020 sch2 bela schimbat ciocan interior', '2020-04-08', 1),
(754, 253, 566, 864.0000, 0, 0.00, NULL, NULL, 22, '07.04.2020 sch1 ioane work to 50-60 ampuri', '2020-04-08', 1),
(755, 253, 566, 1146.0000, 0, 0.00, NULL, NULL, 22, '07.04.2020 sch2 bela work to 80-90 ampuri', '2020-04-08', 1),
(756, 259, 620, 31.0000, 0, 0.00, NULL, NULL, 22, '08.04.2020  dismantle istvan  boards to cd and dvd rom', '2020-04-08', 1),
(757, 259, 559, 56.0000, 0, 0.00, NULL, NULL, 22, '08.04.2020 dismantle cd and dvd rom', '2020-04-08', 1),
(758, 259, 560, 37.0000, 0, 0.00, NULL, NULL, 22, '08.04.2020 dismantle cd and dvd rom', '2020-04-08', 1),
(759, 253, 566, 903.0000, 0, 0.00, NULL, NULL, 22, '08.04.2020 sch1 ioane ', '2020-04-09', 1),
(760, 253, 566, 826.0000, 0, 0.00, NULL, NULL, 22, '08.04.2020 sch2 bela ', '2020-04-09', 1),
(761, 253, 566, 160.0000, 0, 0.00, NULL, NULL, 22, '09.04.2020 sch1 ioane schimbat ciocan si curatat canal', '2020-04-14', 1),
(762, 253, 566, 1316.0000, 0, 0.00, NULL, NULL, 22, '09.04.2020 sch2 bela', '2020-04-14', 1),
(763, 253, 561, 15881.0000, 0, 0.00, NULL, NULL, 22, '14.04.2020', '2020-04-14', 1),
(764, 261, 566, 850.0000, 0, 0.00, NULL, NULL, 22, '14.04.2020 sch1 bela ', '2020-04-16', 1),
(765, 261, 566, 1198.0000, 0, 0.00, NULL, NULL, 22, '14.04.2020 sch2 ioane ', '2020-04-16', 1),
(766, 261, 566, 888.0000, 0, 0.00, NULL, NULL, 22, '15.04.2020 sch1 bela ', '2020-04-16', 1),
(767, 261, 566, 784.0000, 0, 0.00, NULL, NULL, 22, '15.04.2020 sch2 ioane schimbat ciocan inerior', '2020-04-16', 1),
(768, 262, 894, 64.0000, 0, 0.00, NULL, NULL, 22, '16.04.2020  iron and aluminiu mixt material', '2020-04-16', 1),
(769, 261, 566, 669.0000, 0, 0.00, NULL, NULL, 22, '16.04.2020 sch1 bela schimbat rulument interior', '2020-04-21', 1),
(770, 261, 566, 1162.0000, 0, 0.00, NULL, NULL, 22, '16.04.2020 sch2 ioane ', '2020-04-21', 1),
(771, 261, 566, 1188.0000, 0, 0.00, NULL, NULL, 22, '20.04.2020 sch1 bela,gyula, totos', '2020-04-21', 1),
(772, 263, 557, 11.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-21', 1),
(773, 261, 566, 1014.0000, 0, 0.00, NULL, NULL, 22, '21.04.2020 sch1 ioane 1 ora lipsa curent', '2020-04-21', 1),
(774, 261, 561, 15327.0000, 0, 0.00, NULL, NULL, 22, '', '2020-04-21', 1),
(775, 262, 895, 45.5000, 0, 0.00, NULL, NULL, 22, '16.04.2020', '2020-04-21', 1),
(776, 264, 566, 1286.0000, 0, 0.00, NULL, NULL, 22, '21.04.2020 sch2 bela schimbat ciocan', '2020-04-22', 1),
(777, 264, 566, 1244.0000, 0, 0.00, NULL, NULL, 22, '22.04.2020 sch1 ioane ', '2020-04-22', 1),
(778, 264, 566, 1434.0000, 0, 0.00, NULL, NULL, 22, '22.04.2020 sch2 bela', '2020-04-23', 1),
(779, 264, 566, 920.0000, 0, 0.00, NULL, NULL, 22, '23.04.2020 sch1 ioane', '2020-04-24', 1),
(780, 264, 566, 948.0000, 0, 0.00, NULL, NULL, 22, '23.04.2020 sch2 bela schimbat ciocan', '2020-04-24', 1),
(781, 264, 566, 1150.0000, 0, 0.00, NULL, NULL, 22, '24.01.2020 sch1 ioane', '2020-04-24', 1),
(782, 264, 561, 16758.0000, 0, 0.00, NULL, NULL, 22, '24.01.2020', '2020-04-24', 1),
(783, 265, 566, 1192.0000, 0, 0.00, NULL, NULL, 22, '24.04.2020 sch2 bela', '2020-04-27', 1),
(784, 265, 566, 970.0000, 0, 0.00, NULL, NULL, 22, '27.04.2020 sch1 bela', '2020-04-28', 1),
(785, 265, 566, 640.0000, 0, 0.00, NULL, NULL, 22, '27.04.2020 sch2 Ioan schimbat ciocan', '2020-04-28', 1),
(786, 265, 566, 982.0000, 0, 0.00, NULL, NULL, 22, '28.04.2020 sch1 bela ', '2020-04-29', 1),
(787, 265, 566, 1190.0000, 0, 0.00, NULL, NULL, 22, '28.04.2020 sch2 ioane si pus axul nou la moara de afara', '2020-04-29', 1),
(788, 265, 566, 982.0000, 0, 0.00, NULL, NULL, 22, '29.04.2020 sch1 bela ', '2020-04-30', 1),
(789, 265, 566, 720.0000, 0, 0.00, NULL, NULL, 22, '29.04.2020 sch2 ioane', '2020-04-30', 1),
(790, 265, 566, 816.0000, 0, 0.00, NULL, NULL, 22, '30.04.2020 sch1 bela', '2020-05-04', 1),
(791, 265, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '30.04.2020 sch2 ioane si schimbat ciocan', '2020-05-04', 1),
(792, 265, 561, 14708.0000, 0, 0.00, NULL, NULL, 22, '', '2020-05-04', 1),
(793, 266, 566, 1134.0000, 0, 0.00, NULL, NULL, 22, '04.05.2020 sch 1 ioane', '2020-05-04', 1),
(794, 266, 566, 1158.0000, 0, 0.00, NULL, NULL, 22, '04.05.2020 sch2 bela', '2020-05-14', 1),
(795, 266, 566, 950.0000, 0, 0.00, NULL, NULL, 22, '05.05.2020 sch1 ioane ', '2020-05-11', 1),
(796, 266, 566, 990.0000, 0, 0.00, NULL, NULL, 22, '05.05.2020 sch2 bela schimbat ciocan interior', '2020-05-11', 1),
(797, 266, 566, 920.0000, 0, 0.00, NULL, NULL, 22, '06.05.2020 sch1 ioane ', '2020-05-11', 1),
(798, 266, 566, 1380.0000, 0, 0.00, NULL, NULL, 22, '11.05.2020 sch1 bela din 1380 kg 240 a fost in data de 08.05.2020', '2020-05-12', 1),
(799, 266, 566, 1052.0000, 0, 0.00, NULL, NULL, 22, '11.05.2020 sch2 ioane', '2020-05-12', 1),
(800, 266, 561, 13896.0000, 0, 0.00, NULL, NULL, 22, '', '2020-05-14', 1),
(801, 267, 566, 450.0000, 0, 0.00, NULL, NULL, 22, '12.05.2020 sch1 bela', '2020-05-18', 1),
(802, 267, 566, 350.0000, 0, 0.00, NULL, NULL, 22, '12.05.2020 sch2 ioane', '2020-05-18', 1),
(803, 267, 566, 518.0000, 0, 0.00, NULL, NULL, 22, '13.05.2020 sch1 bela', '2020-05-18', 1),
(804, 267, 566, 130.0000, 0, 0.00, NULL, NULL, 22, '13.05.2020 sch2 ioane reparatii axul moara interior', '2020-05-18', 1),
(805, 267, 566, 518.0000, 0, 0.00, NULL, NULL, 22, '14.05.2020 sch1 bela', '2020-05-18', 1),
(806, 267, 566, 792.0000, 0, 0.00, NULL, NULL, 22, '14.05.2020 sch2 ioane', '2020-05-18', 1),
(807, 267, 566, 546.0000, 0, 0.00, NULL, NULL, 22, '15.05.2020 sch1 bela', '2020-05-18', 1),
(808, 267, 566, 302.0000, 0, 0.00, NULL, NULL, 22, '15.05.2020 sch2 ioane', '2020-05-18', 1),
(809, 267, 566, 700.0000, 0, 0.00, NULL, NULL, 22, '18.05.2020 sch1 ioane', '2020-05-19', 1),
(810, 267, 566, 982.0000, 0, 0.00, NULL, NULL, 22, '18.05.2020 sch2 bela', '2020-05-19', 1),
(811, 267, 561, 6366.0000, 0, 0.00, NULL, NULL, 22, '', '2020-05-19', 1),
(812, 268, 566, 734.0000, 0, 0.00, NULL, NULL, 22, '19.05.2020 sch1 ioane', '2020-05-21', 1),
(813, 268, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '19.05.2020 sch2 bela', '2020-05-21', 1),
(814, 268, 566, 878.0000, 0, 0.00, NULL, NULL, 22, '20.05.2020 sch1 ioane', '2020-05-21', 1),
(815, 268, 566, 1150.0000, 0, 0.00, NULL, NULL, 22, '20.05.2020 sch 2 bela', '2020-05-21', 1),
(816, 268, 566, 850.0000, 0, 0.00, NULL, NULL, 22, '21.05.2020 sch1 ioane', '2020-05-25', 1),
(817, 268, 566, 686.0000, 0, 0.00, NULL, NULL, 22, '21.05.2020 sch2 bela schimbat ciocan interior', '2020-05-25', 1),
(818, 268, 566, 946.0000, 0, 0.00, NULL, NULL, 22, '22.05.2020 sch1 ioane', '2020-05-25', 1),
(819, 268, 566, 1084.0000, 0, 0.00, NULL, NULL, 22, '22.05.2020 sch2 bela', '2020-05-25', 1),
(820, 268, 561, 16192.0000, 0, 0.00, NULL, NULL, 22, '', '2020-05-25', 1),
(821, 269, 566, 976.0000, 0, 0.00, NULL, NULL, 22, '25.05.2020 sch1 bela', '2020-05-26', 1),
(822, 269, 566, 1038.0000, 0, 0.00, NULL, NULL, 22, '25.05.2020 sch2 ioane', '2020-05-26', 1),
(823, 269, 566, 988.0000, 0, 0.00, NULL, NULL, 22, '26.05.2020sch2   sch1 defect snac', '2020-06-02', 1),
(824, 269, 566, 974.0000, 0, 0.00, NULL, NULL, 22, '27.05.2020 sch1 bela ', '2020-06-02', 1),
(825, 269, 566, 1264.0000, 0, 0.00, NULL, NULL, 22, '27.05.2020 sch2 ioane', '2020-06-02', 1),
(826, 269, 566, 550.0000, 0, 0.00, NULL, NULL, 22, '28.05.2020 sch1 bela reparat snac', '2020-06-02', 1),
(827, 269, 566, 576.0000, 0, 0.00, NULL, NULL, 22, '29.05.2020 sch1 bela ncarcat camon fibra', '2020-06-02', 1),
(828, 269, 566, 740.0000, 0, 0.00, NULL, NULL, 22, '29.05.2020 sch2 ioane', '2020-06-02', 1),
(829, 269, 561, 16714.0000, 0, 0.00, NULL, NULL, 22, '', '2020-06-02', 1),
(830, 270, 566, 916.0000, 0, 0.00, NULL, NULL, 22, '01.06.2020 sch1 gyula ', '2020-06-12', 1),
(831, 270, 566, 744.0000, 0, 0.00, NULL, NULL, 22, '01.06.2020sch2 bela', '2020-06-12', 1),
(832, 270, 566, 730.0000, 0, 0.00, NULL, NULL, 22, '02.06.2020 sch1 ioane', '2020-06-12', 1),
(833, 270, 566, 1096.0000, 0, 0.00, NULL, NULL, 22, '02.06.2020 sch2 bela', '2020-06-12', 1),
(834, 270, 566, 466.0000, 0, 0.00, NULL, NULL, 22, '03.06.2020 sch1 ioane', '2020-06-12', 1),
(835, 270, 566, 90.0000, 0, 0.00, NULL, NULL, 22, '03.06.2020 sch2 bela schimbat snec pus nou', '2020-06-12', 1),
(836, 270, 566, 488.0000, 0, 0.00, NULL, NULL, 22, '04.06.2020sch1 ioane schimbat ciocan', '2020-06-12', 1),
(837, 270, 566, 1174.0000, 0, 0.00, NULL, NULL, 22, '04.06.2020 sch 2 bela', '2020-06-12', 1),
(838, 270, 566, 800.0000, 0, 0.00, NULL, NULL, 22, '05.06.2020 sch 1 ioane', '2020-06-12', 1),
(839, 270, 566, 810.0000, 0, 0.00, NULL, NULL, 22, '09.06.2020 sch2 ioane', '2020-06-12', 1),
(840, 270, 566, 590.0000, 0, 0.00, NULL, NULL, 22, '10.06.2020', '2020-06-12', 1),
(841, 270, 561, 15466.0000, 0, 0.00, NULL, NULL, 22, '', '2020-06-12', 1),
(842, 272, 566, 1084.0000, 0, 0.00, NULL, NULL, 22, '11.06.2020 sch1 bela', '2020-06-12', 1),
(843, 272, 566, 1202.0000, 0, 0.00, NULL, NULL, 22, '11.06.2020 sch2 ioane', '2020-06-12', 1),
(844, 272, 566, 950.0000, 0, 0.00, NULL, NULL, 22, '12.06.2020 sch1 bela', '2020-06-18', 1),
(845, 272, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '12.06.2020 sch2 ioane', '2020-06-18', 1),
(846, 272, 566, 526.0000, 0, 0.00, NULL, NULL, 22, '15.06.2020 sch1 ioane schimbat ciocan', '2020-06-18', 1),
(847, 272, 566, 860.0000, 0, 0.00, NULL, NULL, 22, '15.06.2020 sch 2 bela', '2020-06-18', 1),
(848, 272, 566, 880.0000, 0, 0.00, NULL, NULL, 22, '16.06.2020 sch1 ioane', '2020-06-18', 1),
(849, 272, 566, 806.0000, 0, 0.00, NULL, NULL, 22, '16.06.2020 sch2 bela', '2020-06-18', 1),
(850, 272, 566, 886.0000, 0, 0.00, NULL, NULL, 22, '17.06.2020 sch 2 bela', '2020-06-18', 1),
(851, 272, 561, 13156.0000, 0, 0.00, NULL, NULL, 22, '', '2020-06-18', 1),
(852, 273, 566, 800.0000, 0, 0.00, NULL, NULL, 22, '18.06.2020 sch1 ioane ', '2020-06-19', 1),
(853, 273, 566, 496.0000, 0, 0.00, NULL, NULL, 22, '18.06.2020 sch 2 bela toate echipa la iaz 1 ora si 30 minute', '2020-06-19', 1),
(854, 273, 566, 160.0000, 0, 0.00, NULL, NULL, 22, '19.06.2020 sch1 ioana szombat ciocan', '2020-06-25', 1),
(855, 273, 566, 872.0000, 0, 0.00, NULL, NULL, 22, '19.06.2020 sch2 bela', '2020-06-25', 1),
(856, 273, 566, 660.0000, 0, 0.00, NULL, NULL, 22, '22.06.2020 sch1 bela', '2020-06-25', 1),
(857, 273, 566, 580.0000, 0, 0.00, NULL, NULL, 22, '22.06.2020 sch1 2 ioane', '2020-06-25', 1),
(858, 273, 566, 402.0000, 0, 0.00, NULL, NULL, 22, '23.06.2020 sch1 bÃ©la szombat ciocan', '2020-06-25', 1),
(859, 273, 566, 492.0000, 0, 0.00, NULL, NULL, 22, '23.06.2020 sch2 ioane', '2020-06-25', 1),
(860, 273, 566, 694.0000, 0, 0.00, NULL, NULL, 22, '24.06.2020 sch1 bela', '2020-06-25', 1),
(861, 273, 566, 606.0000, 0, 0.00, NULL, NULL, 22, '24.06.2020 sch2 ioane', '2020-06-30', 1),
(862, 273, 566, 550.0000, 0, 0.00, NULL, NULL, 22, '25.06.2020 sch1 bela schimbat ciocan', '2020-06-30', 1),
(863, 273, 566, 900.0000, 0, 0.00, NULL, NULL, 22, '25.06.2020 sch 2 ioane', '2020-06-30', 1),
(864, 273, 561, 16528.0000, 0, 0.00, NULL, NULL, 22, '', '2020-06-30', 1),
(865, 274, 566, 630.0000, 0, 0.00, NULL, NULL, 22, '29.06.2020 sch1 ioane', '2020-06-30', 1),
(866, 274, 566, 668.0000, 0, 0.00, NULL, NULL, 22, '29.06.2020 sch2 bela', '2020-06-30', 1),
(867, 274, 566, 456.0000, 0, 0.00, NULL, NULL, 22, '30.06.2020 sch1 ioane schimbat ciocan', '2020-07-03', 1),
(868, 274, 566, 846.0000, 0, 0.00, NULL, NULL, 22, '30.06.2020 sch2 bela', '2020-07-03', 1),
(869, 274, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '01.06.2020 sch1 ioane', '2020-07-03', 1),
(870, 274, 566, 678.0000, 0, 0.00, NULL, NULL, 22, '01.06.2020 sch 2 bela', '2020-07-03', 1),
(871, 274, 561, 11962.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-03', 1),
(872, 275, 566, 314.0000, 0, 0.00, NULL, NULL, 22, '09.07.2020 schimbat ciocan', '2020-07-21', 1),
(873, 275, 566, 712.0000, 0, 0.00, NULL, NULL, 22, '13.07.2020', '2020-07-21', 1),
(874, 275, 566, 690.0000, 0, 0.00, NULL, NULL, 22, '13.07.2020', '2020-07-21', 1),
(875, 275, 566, 616.0000, 0, 0.00, NULL, NULL, 22, '14.07.2020', '2020-07-21', 1),
(876, 275, 566, 344.0000, 0, 0.00, NULL, NULL, 22, '14.07.2020 schimbat ciocan', '2020-07-21', 1),
(877, 275, 566, 330.0000, 0, 0.00, NULL, NULL, 22, '15.07.2020 lips curent', '2020-07-21', 1),
(878, 275, 566, 846.0000, 0, 0.00, NULL, NULL, 22, '15.07.2020', '2020-07-21', 1),
(879, 275, 561, 12577.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(880, 276, 566, 334.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(881, 276, 566, 60.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(882, 276, 566, 134.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(883, 276, 566, 406.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(884, 276, 566, 906.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(885, 276, 566, 1352.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(886, 276, 566, 1050.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(887, 276, 566, 238.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(888, 276, 561, 19400.0000, 0, 0.00, NULL, NULL, 22, '', '2020-07-21', 1),
(889, 277, 566, 1054.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(890, 277, 566, 1034.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(891, 277, 566, 590.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(892, 277, 566, 448.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(893, 277, 566, 966.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(894, 277, 561, 17338.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(895, 278, 566, 5880.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(896, 278, 561, 12900.0000, 0, 0.00, NULL, NULL, 22, '', '2020-08-18', 1),
(897, 279, 566, 212.0000, 0, 0.00, NULL, NULL, 22, '26.10.2020 sch1 bela', '2020-10-28', 1),
(898, 279, 566, 688.0000, 0, 0.00, NULL, NULL, 22, '26.10.2020 sch2 ioane', '2020-10-28', 1),
(899, 279, 566, 1072.0000, 0, 0.00, NULL, NULL, 22, '27.10.2020 sch2 ioane', '2020-10-28', 1),
(900, 279, 566, 426.0000, 0, 0.00, NULL, NULL, 22, '28.10.2020 sch1 bela', '2020-10-28', 1),
(901, 279, 566, 420.0000, 0, 0.00, NULL, NULL, 22, '28.10.2020 sch2 kasa', '2020-11-02', 1),
(902, 279, 566, 328.0000, 0, 0.00, NULL, NULL, 22, '29.10.2020 sch1 bela', '2020-11-02', 1),
(903, 279, 566, 666.0000, 0, 0.00, NULL, NULL, 22, '29.10.2020 sch 2 kasa', '2020-11-02', 1),
(904, 279, 566, 464.0000, 0, 0.00, NULL, NULL, 22, '30.10.2020 sch 1 bela shimbat ciocan', '2020-11-02', 1),
(905, 279, 566, 890.0000, 0, 0.00, NULL, NULL, 22, '30.10.2020 sch2 kasa', '2020-11-02', 1),
(906, 279, 566, 502.0000, 0, 0.00, NULL, NULL, 22, '31.10.2020 sch1 bela', '2020-11-02', 1),
(907, 279, 566, 320.0000, 0, 0.00, NULL, NULL, 22, '02.11.2020 sch 1 ioane schimbat ciocan ', '2020-11-03', 1),
(908, 279, 566, 884.0000, 0, 0.00, NULL, NULL, 22, '02.11.2020 sch 2 bela ', '2020-11-03', 1),
(909, 279, 561, 16528.0000, 0, 0.00, NULL, NULL, 22, '', '2020-11-03', 1),
(910, 280, 566, 446.0000, 0, 0.00, NULL, NULL, 22, '03.11.2020 sch1 ioane', '2020-11-06', 1),
(911, 280, 566, 788.0000, 0, 0.00, NULL, NULL, 22, '03.11.2020 sch2 bela', '2020-11-06', 1),
(912, 280, 566, 306.0000, 0, 0.00, NULL, NULL, 22, '04.11.2020 sch1 ioane change blades', '2020-11-06', 1),
(913, 280, 566, 782.0000, 0, 0.00, NULL, NULL, 22, '04.11.2020 sch2 bela', '2020-11-06', 1),
(914, 280, 566, 520.0000, 0, 0.00, NULL, NULL, 22, '05.11.2020 sch1 ioane', '2020-11-06', 1),
(915, 280, 566, 628.0000, 0, 0.00, NULL, NULL, 22, '05.11.2020 sch2 bela', '2020-11-06', 1),
(916, 280, 561, 8650.0000, 0, 0.00, NULL, NULL, 22, '', '2020-11-06', 1),
(917, 282, 566, 526.0000, 0, 0.00, NULL, NULL, 22, '06.11.2020 sch2 bela ', '2020-11-10', 1),
(918, 282, 566, 70.0000, 0, 0.00, NULL, NULL, 22, '07.11.2020 sch1 ioane si schimbat rulment interior', '2020-11-10', 1),
(919, 282, 566, 508.0000, 0, 0.00, NULL, NULL, 22, '09.11.2020 sch2 ioane', '2020-11-10', 1),
(920, 282, 566, 314.0000, 0, 0.00, NULL, NULL, 22, '10.11.2020 sch1 bela', '2020-11-10', 1),
(921, 282, 566, 290.0000, 0, 0.00, NULL, NULL, 22, '10.11.2020 sch2 ioane change blades', '2020-11-16', 1),
(922, 282, 561, 5292.0000, 0, 0.00, NULL, NULL, 22, '', '2020-11-16', 1),
(923, 281, 566, 448.0000, 0, 0.00, NULL, NULL, 22, '11.11.2020 sch1 bela', '2020-11-16', 1),
(924, 281, 566, 680.0000, 0, 0.00, NULL, NULL, 22, '11.11.2020 sch2 ioane', '2020-11-16', 1),
(925, 281, 566, 340.0000, 0, 0.00, NULL, NULL, 22, '12.11.2020 sch1 bela', '2020-11-16', 1),
(926, 281, 566, 540.0000, 0, 0.00, NULL, NULL, 22, '12.11.2020 sch2 ioane change blades', '2020-11-16', 1),
(927, 281, 566, 476.0000, 0, 0.00, NULL, NULL, 22, '13.11.2020 sch1 bela', '2020-11-16', 1),
(928, 281, 566, 530.0000, 0, 0.00, NULL, NULL, 22, '13.11.2020 sch 2 ioane', '2020-11-16', 1),
(929, 281, 566, 166.0000, 0, 0.00, NULL, NULL, 22, '14.11.2020 sch1 bela si sortat material sentes', '2020-11-16', 1),
(930, 281, 566, 242.0000, 0, 0.00, NULL, NULL, 22, '16.11.2020 sch1 ioane', '2020-12-02', 1),
(931, 281, 566, 334.0000, 0, 0.00, NULL, NULL, 22, '16.11.2020 sch 2 bela change blades', '2020-12-02', 1),
(932, 281, 566, 460.0000, 0, 0.00, NULL, NULL, 22, '17.11.2020 sch1 ioane ', '2020-12-02', 1),
(933, 281, 566, 450.0000, 0, 0.00, NULL, NULL, 22, '17.11.2020 sch2 bela', '2020-12-02', 1),
(934, 281, 566, 240.0000, 0, 0.00, NULL, NULL, 22, '18.11.2020 sch2 bela', '2020-12-02', 1),
(935, 281, 566, 248.0000, 0, 0.00, NULL, NULL, 22, '19.11.2020 sch1 ioane change blades', '2020-12-02', 1),
(936, 281, 566, 574.0000, 0, 0.00, NULL, NULL, 22, '19.11.2020 sch2 bela', '2020-12-02', 1),
(937, 281, 561, 17612.0000, 0, 0.00, NULL, NULL, 22, '', '2020-12-02', 1),
(938, 283, 566, 320.0000, 0, 0.00, NULL, NULL, 22, '20.11.2020 sch1 ioane', '2020-12-02', 1),
(939, 283, 566, 316.0000, 0, 0.00, NULL, NULL, 22, '21.11.2020 sch1 ioane', '2020-12-02', 1),
(940, 283, 566, 120.0000, 0, 0.00, NULL, NULL, 22, '21.11.2020 sch2 bela', '2020-12-02', 1),
(941, 283, 566, 440.0000, 0, 0.00, NULL, NULL, 22, '23.11.2020 sch1 bela', '2020-12-02', 1),
(942, 283, 566, 334.0000, 0, 0.00, NULL, NULL, 22, '23.11.2020 sch2 ioane', '2020-12-02', 1),
(943, 283, 566, 344.0000, 0, 0.00, NULL, NULL, 22, '24.11.2020 sch1 bela', '2020-12-02', 1),
(944, 283, 561, 12486.0000, 0, 0.00, NULL, NULL, 22, '', '2020-12-02', 1),
(945, 284, 566, 704.0000, 0, 0.00, NULL, NULL, 22, '07.12.2020 sch1 bela', '2020-12-09', 1),
(946, 284, 566, 1004.0000, 0, 0.00, NULL, NULL, 22, '07.12.2020 sch2 ioane', '2020-12-09', 1),
(947, 284, 566, 382.0000, 0, 0.00, NULL, NULL, 22, '08.12.2020 sch1 bela change blades ', '2020-12-09', 1),
(948, 284, 566, 1136.0000, 0, 0.00, NULL, NULL, 22, '08.12.2020 sch2 ioane', '2020-12-09', 1),
(949, 284, 566, 500.0000, 0, 0.00, NULL, NULL, 22, '09.12.2020 sch1 bela', '2020-12-09', 1),
(950, 284, 561, 4274.0000, 0, 0.00, NULL, NULL, 22, '', '2020-12-09', 1),
(951, 285, 566, 924.0000, 0, 0.00, NULL, NULL, 22, '09.12.2020 sch2 ioane', '2020-12-10', 1),
(952, 285, 566, 1300.0000, 0, 0.00, NULL, NULL, 22, '10.12.2020 sch2 ioane', '2020-12-11', 1),
(953, 285, 566, 704.0000, 0, 0.00, NULL, NULL, 22, '11,12,2020 sch1 bela', '2020-12-14', 1),
(954, 285, 566, 754.0000, 0, 0.00, NULL, NULL, 22, '11.12.2020 sch2 ioane change blades', '2020-12-14', 1),
(955, 285, 566, 1074.0000, 0, 0.00, NULL, NULL, 22, '12.12.2020 sch1 bela', '2020-12-14', 1),
(956, 285, 566, 786.0000, 0, 0.00, NULL, NULL, 22, '12.12.2020 sch2 bela', '2020-12-14', 1),
(957, 285, 566, 650.0000, 0, 0.00, NULL, NULL, 22, '14.12.2020 sch1 ioane', '2020-12-15', 1),
(958, 285, 566, 706.0000, 0, 0.00, NULL, NULL, 22, '14.12.2020 sch2 bela change blades', '2020-12-15', 1),
(959, 285, 561, 16282.0000, 0, 0.00, NULL, NULL, 22, '', '2020-12-15', 1),
(960, 286, 566, 724.0000, 0, 0.00, NULL, NULL, 22, '15.12.2020 sch1 ioane ', '2020-12-21', 1),
(961, 286, 566, 1070.0000, 0, 0.00, NULL, NULL, 22, '15.12.2020 sch 2 bela ', '2020-12-21', 1),
(962, 286, 566, 476.0000, 0, 0.00, NULL, NULL, 22, '16.12.2020 sch1 ioane', '2020-12-21', 1),
(963, 286, 566, 774.0000, 0, 0.00, NULL, NULL, 22, '16.12.2020 sch2 bela change blades', '2020-12-21', 1),
(964, 286, 566, 270.0000, 0, 0.00, NULL, NULL, 22, '17.12.2020 sch1  ioane  lipsa curent', '2020-12-21', 1),
(965, 286, 566, 674.0000, 0, 0.00, NULL, NULL, 22, '17.12.2020 sch2 bela lipsa curent', '2020-12-21', 1),
(966, 286, 566, 356.0000, 0, 0.00, NULL, NULL, 22, '18.12.2020 sch1 ioane change blades', '2020-12-21', 1),
(967, 286, 566, 1104.0000, 0, 0.00, NULL, NULL, 22, '18.12.2020 sch2 bela', '2020-12-21', 1),
(968, 286, 566, 780.0000, 0, 0.00, NULL, NULL, 22, '19.12.2020 sch1 gecse si pintiuta', '2020-12-21', 1),
(969, 286, 566, 620.0000, 0, 0.00, NULL, NULL, 22, '19.12.2020 sch2 ioane si laci', '2020-12-21', 1),
(970, 286, 561, 12032.0000, 0, 0.00, NULL, NULL, 22, '', '2020-12-21', 1),
(971, 287, 566, 710.0000, 0, 0.00, NULL, NULL, 22, '18.12.2020 sch 2 ioane', '2021-01-11', 1),
(972, 287, 566, 1202.0000, 0, 0.00, NULL, NULL, 22, '04.01.2021 sch1 bela', '2021-01-11', 1),
(973, 287, 566, 950.0000, 0, 0.00, NULL, NULL, 22, '04.01.2021 sch2 ioane', '2021-01-11', 1),
(974, 287, 566, 810.0000, 0, 0.00, NULL, NULL, 22, '05.01.2021 sch1 bela change blades', '2021-01-11', 1),
(975, 287, 566, 916.0000, 0, 0.00, NULL, NULL, 22, '05.01.2021 sch2 ioane', '2021-01-11', 1),
(976, 287, 566, 942.0000, 0, 0.00, NULL, NULL, 22, '06.01.2021 sch1 bela', '2021-01-11', 1),
(977, 287, 566, 824.0000, 0, 0.00, NULL, NULL, 22, '06.01.2021 sch2 ioane', '2021-01-11', 1),
(978, 287, 561, 16226.0000, 0, 0.00, NULL, NULL, 22, '', '2021-01-11', 1),
(979, 288, 566, 874.0000, 0, 0.00, NULL, NULL, 22, '07.01.2021 sch 1 bela change blades', '2021-01-11', 1),
(980, 288, 566, 1232.0000, 0, 0.00, NULL, NULL, 22, '07.01.2021 sch 2 ioane', '2021-01-11', 1),
(981, 288, 566, 772.0000, 0, 0.00, NULL, NULL, 22, '08.01.2021 sch1 bela ', '2021-01-11', 1),
(982, 288, 566, 76.0000, 0, 0.00, NULL, NULL, 22, '08.01.2021 sch2 ioane lipsa 3 fazic', '2021-01-11', 1),
(983, 288, 566, 202.0000, 0, 0.00, NULL, NULL, 22, '09.01.2021 sch1 bela lipsa 3 fazic', '2021-01-11', 1),
(984, 288, 566, 430.0000, 0, 0.00, NULL, NULL, 22, '09.01.2021 sch2 ioane change blades', '2021-01-11', 1),
(985, 288, 566, 1040.0000, 0, 0.00, NULL, NULL, 22, '11.01.2021 sch1 ioane', '2021-01-14', 1),
(986, 288, 566, 984.0000, 0, 0.00, NULL, NULL, 22, '11.01.2021 sch2 bela', '2021-01-14', 1),
(987, 288, 566, 980.0000, 0, 0.00, NULL, NULL, 22, '12.01.2021 sch1 ioane ', '2021-01-14', 1),
(988, 288, 566, 260.0000, 0, 0.00, NULL, NULL, 22, '12.01.2021 sch2 bela si curatat canal', '2021-01-14', 1),
(989, 288, 566, 800.0000, 0, 0.00, NULL, NULL, 22, '13.01.2021 sch1 ioane change blades', '2021-01-14', 1),
(990, 288, 566, 1130.0000, 0, 0.00, NULL, NULL, 22, '13.01.2021 sch2 bela', '2021-01-14', 1),
(991, 288, 561, 13940.0000, 0, 0.00, NULL, NULL, 22, '', '2021-01-14', 1),
(992, 289, 566, 770.0000, 0, 0.00, NULL, NULL, 22, '14.01.2021 sch1 bela ', '2021-01-25', 1),
(993, 289, 566, 948.0000, 0, 0.00, NULL, NULL, 22, '14.01.2021 sch2 ioane change blades', '2021-01-25', 1),
(994, 289, 566, 740.0000, 0, 0.00, NULL, NULL, 22, '15.01.2021 sch1 bela', '2021-01-25', 1),
(995, 289, 566, 1092.0000, 0, 0.00, NULL, NULL, 22, '15.01.2021 sch2 ioane', '2021-01-25', 1),
(996, 289, 566, 60.0000, 0, 0.00, NULL, NULL, 22, '16.01.2021 sch1 bela sambata and clean bazin', '2021-01-25', 1),
(997, 289, 566, 1000.0000, 0, 0.00, NULL, NULL, 22, '16.01.2021 sch2 ioane change blades', '2021-01-25', 1),
(998, 289, 566, 978.0000, 0, 0.00, NULL, NULL, 22, '18.01.2021 sch1 bela ', '2021-01-25', 1),
(999, 289, 566, 628.0000, 0, 0.00, NULL, NULL, 22, '18.01.2021 sch2 ioane change blades', '2021-01-25', 1),
(1000, 289, 566, 1060.0000, 0, 0.00, NULL, NULL, 22, '18.01.2021 sch 3 laci', '2021-01-25', 1),
(1001, 289, 561, 13414.0000, 0, 0.00, NULL, NULL, 22, '', '2021-01-25', 1),
(1002, 290, 566, 326.0000, 0, 0.00, NULL, NULL, 22, '19.01.2021 sch2 ioane', '2021-01-25', 1),
(1003, 290, 566, 980.0000, 0, 0.00, NULL, NULL, 22, '19.01.2021 sch3 laci', '2021-01-25', 1),
(1004, 290, 566, 514.0000, 0, 0.00, NULL, NULL, 22, '20.01.2021 sch1 bela change blades', '2021-01-25', 1),
(1005, 290, 566, 880.0000, 0, 0.00, NULL, NULL, 22, '20.01.2021 sch2 ioane', '2021-01-25', 1),
(1006, 290, 566, 835.0000, 0, 0.00, NULL, NULL, 22, '20.01.2021 sch 3 laci', '2021-01-25', 1),
(1007, 290, 566, 798.0000, 0, 0.00, NULL, NULL, 22, '21.01.2021 sch1 bela change blades', '2021-01-25', 1),
(1008, 290, 566, 944.0000, 0, 0.00, NULL, NULL, 22, '21.01.2021 sch2 ioane', '2021-01-25', 1),
(1009, 290, 566, 770.0000, 0, 0.00, NULL, NULL, 22, '21.01.2021 sch3 laci', '2021-01-25', 1),
(1010, 290, 561, 17713.0000, 0, 0.00, NULL, NULL, 22, '', '2021-01-25', 1),
(1011, 291, 566, 826.0000, 0, 0.00, NULL, NULL, 22, '22.01.2021 sch1 bela  change blades', '2021-01-25', 1),
(1012, 291, 566, 1070.0000, 0, 0.00, NULL, NULL, 22, '22.01.2021 sch2 ioane', '2021-01-25', 1),
(1013, 291, 566, 1190.0000, 0, 0.00, NULL, NULL, 22, '22.01.2021 sch3 laci', '2021-01-25', 1),
(1014, 291, 566, 964.0000, 0, 0.00, NULL, NULL, 22, '25.01.2021 sch1 laci', '2021-01-29', 1),
(1015, 291, 566, 906.0000, 0, 0.00, NULL, NULL, 22, '25.01.2021 sch2 bela', '2021-01-29', 1),
(1016, 291, 566, 988.0000, 0, 0.00, NULL, NULL, 22, '25.01.2021 sch3 ioane', '2021-01-29', 1),
(1017, 291, 561, 18256.0000, 0, 0.00, NULL, NULL, 22, '', '2021-01-29', 1),
(1018, 292, 566, 800.0000, 0, 0.00, NULL, NULL, 22, '26.01.2021 sch1 laci change blades', '2021-01-29', 1),
(1019, 292, 566, 846.0000, 0, 0.00, NULL, NULL, 22, '26.01.2021 sch2 bela change blades', '2021-01-29', 1),
(1020, 292, 566, 730.0000, 0, 0.00, NULL, NULL, 22, '26.01.2021 sch 3 ioane', '2021-01-29', 1),
(1021, 292, 566, 834.0000, 0, 0.00, NULL, NULL, 22, '27.01.2021 sch1 laci', '2021-01-29', 1),
(1022, 292, 566, 670.0000, 0, 0.00, NULL, NULL, 22, '27.01.2021 sch2 bela', '2021-01-29', 1),
(1023, 292, 566, 518.0000, 0, 0.00, NULL, NULL, 22, '27.01.2021 sch 3 ioane change blades', '2021-01-29', 1),
(1024, 292, 566, 906.0000, 0, 0.00, NULL, NULL, 22, '28.01.2021 sch1 laci', '2021-01-29', 1),
(1025, 292, 566, 654.0000, 0, 0.00, NULL, NULL, 22, '28.01.2021 sch2 bela', '2021-01-29', 1),
(1026, 292, 566, 540.0000, 0, 0.00, NULL, NULL, 22, '29.01.2021 sch1 laci', '2021-01-29', 1),
(1027, 292, 566, 692.0000, 0, 0.00, NULL, NULL, 22, '29.01.2021 sch2 bela', '2021-02-01', 1),
(1028, 292, 561, 13570.0000, 0, 0.00, NULL, NULL, 22, '', '2021-02-01', 1),
(1029, 293, 566, 378.0000, 0, 0.00, NULL, NULL, 22, '02.02.2021 sch1 ioane', '2021-02-12', 1),
(1030, 293, 566, 584.0000, 0, 0.00, NULL, NULL, 22, '02.02.2021 sch2 laci', '2021-02-12', 1),
(1031, 293, 566, 430.0000, 0, 0.00, NULL, NULL, 22, '02.02.2021 sch3 bela', '2021-02-12', 1),
(1032, 293, 566, 258.0000, 0, 0.00, NULL, NULL, 22, '03.02.2021 sch1 ioane', '2021-02-12', 1),
(1033, 293, 566, 580.0000, 0, 0.00, NULL, NULL, 22, '03.02.2021 sch2 laci', '2021-02-12', 1),
(1034, 293, 566, 122.0000, 0, 0.00, NULL, NULL, 22, '04.02.2021 sch1 ioane', '2021-02-12', 1),
(1035, 293, 566, 530.0000, 0, 0.00, NULL, NULL, 22, '04.02.2021 sch2 laci', '2021-02-12', 1),
(1036, 293, 566, 780.0000, 0, 0.00, NULL, NULL, 22, '04.02.2021 sch3 bela', '2021-02-12', 1),
(1037, 293, 566, 430.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch1 ioane', '2021-02-12', 1),
(1038, 293, 566, 976.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch2 laci', '2021-02-12', 1),
(1039, 293, 566, 1140.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch 3 bela', '2021-02-12', 1),
(1040, 293, 561, 16882.0000, 0, 0.00, NULL, NULL, 22, '', '2021-02-12', 1),
(1041, 294, 566, 410.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch1 ioane', '2021-02-12', 1),
(1042, 294, 566, 1150.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch2 laci', '2021-02-12', 1),
(1043, 294, 566, 1128.0000, 0, 0.00, NULL, NULL, 22, '05.02.2021 sch3 bela', '2021-02-12', 1),
(1044, 294, 566, 812.0000, 0, 0.00, NULL, NULL, 22, '08.02.2021 sch1 bela', '2021-02-12', 1),
(1045, 294, 566, 1160.0000, 0, 0.00, NULL, NULL, 22, '08.02.2021 sch2 ioane', '2021-02-12', 1),
(1046, 294, 566, 790.0000, 0, 0.00, NULL, NULL, 22, '08.02.2021 sch3 laci', '2021-02-12', 1),
(1047, 294, 561, 18270.0000, 0, 0.00, NULL, NULL, 22, '', '2021-02-12', 1),
(1048, 295, 566, 192.0000, 0, 0.00, NULL, NULL, 22, '09.02.2021 sch1 bela defect snec', '2021-02-12', 1),
(1049, 295, 566, 1078.0000, 0, 0.00, NULL, NULL, 22, '09.02.2021 sch2 ioane', '2021-02-12', 1),
(1050, 295, 566, 730.0000, 0, 0.00, NULL, NULL, 22, '09.02.2021 sch 3 laci  change blades', '2021-02-12', 1),
(1051, 295, 566, 806.0000, 0, 0.00, NULL, NULL, 22, '10.02.2021 sch1 bela', '2021-02-12', 1),
(1052, 295, 566, 1110.0000, 0, 0.00, NULL, NULL, 22, '10.02.2021 sch2 ioane', '2021-02-12', 1),
(1053, 295, 566, 720.0000, 0, 0.00, NULL, NULL, 22, '10.02.2021 sch 3 laci', '2021-02-12', 1),
(1054, 295, 561, 4964.0000, 0, 0.00, NULL, NULL, 22, '', '2021-02-12', 1),
(1055, 296, 566, 876.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1056, 296, 566, 990.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1057, 296, 566, 626.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1058, 296, 566, 846.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1059, 296, 566, 864.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1060, 296, 566, 1132.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1061, 296, 566, 1076.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1062, 296, 566, 552.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1063, 296, 561, 17318.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-01', 1),
(1064, 297, 561, 2000.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-03', 1),
(1065, 298, 561, 21500.0000, 0, 0.00, NULL, NULL, 22, '', '2021-03-03', 1),
(1066, 300, 566, 957.0000, 1, 0.00, NULL, NULL, 22, 'Shift 3 0221', '2021-03-03', 1),
(1067, 300, 896, 61.0000, 0, 0.00, '1067_pcd_156406637_140746444584305_2045732039747800063_n.jpg', NULL, 22, 'water from 1018kg', '2021-03-03', 1),
(1068, 300, 566, 713.0000, 1, 0.00, '1068_pcd_156849526_927397541399132_4515302321223084882_n.jpg', NULL, 22, 'Shift1 03032021', '2021-03-03', 1),
(1069, 300, 896, 45.0000, 0, 0.00, '1069_pcd_156849526_927397541399132_4515302321223084882_n.jpg', NULL, 22, 'water from 758kg', '2021-03-03', 1),
(1072, 300, 566, 1044.0000, 1, 0.00, '1072_pcd_0303s2.jpg', NULL, 22, '0303s2', '2021-03-04', 1),
(1073, 300, 896, 66.0000, 0, 0.00, NULL, NULL, 22, 'water from 1110 kg 0303s2', '2021-03-04', 1),
(1074, 300, 566, 732.0000, 1, 0.00, '1074_pcd_received_3652821381503897.jpeg', NULL, 22, '0304s2', '2021-03-04', 1),
(1075, 300, 896, 46.0000, 0, 0.00, NULL, NULL, 22, 'Water from 782kg', '2021-03-04', 1),
(1076, 300, 566, 275.0000, 1, 0.00, '1076_pcd_0304s3.jpg', NULL, 22, 'shift2 030421', '2021-03-05', 1),
(1077, 300, 896, 17.0000, 0, 0.00, NULL, NULL, 22, '17kg water from 292 copper shift2 030421', '2021-03-05', 1),
(1079, 300, 566, 996.0000, 1, 0.00, '1079_pcd_0304s3b.jpg', NULL, 22, 'Shift3 03042021', '2021-03-05', 1),
(1080, 300, 896, 63.0000, 0, 0.00, NULL, NULL, 22, 'water from 1060 kg copper Shift 3 03042021', '2021-03-05', 1),
(1086, 300, 566, 94.0000, 1, 6.00, NULL, NULL, 22, 'new test', '2021-03-07', 1),
(1087, 300, 561, 11359.9004, 10, 725.10, NULL, NULL, 22, 'wet fiber from production', '2021-03-08', 1),
(1088, 301, 568, 693.7200, 1, 44.28, '1088_pcd_goldfrom aurenis.jpg', NULL, 22, 'March 6th Shift 3', '2021-03-08', 1),
(1089, 301, 566, 186.1200, 0, 11.88, '1089_pcd_198kg.jpg', NULL, 22, 'March 6th Shift 2 Started with normal copper frames and switched to gold plated frames. ', '2021-03-08', 1),
(1090, 301, 568, 332.7600, 0, 21.24, '1090_pcd_0303s1.jpg', NULL, 22, 'Shift 1 March 8th One of the bearings needed to be changed on the inside mill. ', '2021-03-09', 1),
(1091, 301, 568, 300.8000, 0, 19.20, '1091_pcd_0304s3b.jpg', NULL, 22, 'Shift 2 March 8th Mixer we borrowed from Viorel broke and had to be repaired by production crew.  NOTE - Production crew needs help, need more people to take care of these other things to let production crew focus on production.', '2021-03-09', 1),
(1092, 301, 568, 524.5200, 0, 33.48, '1092_pcd_0304s3.jpg', NULL, 22, 'Shift 3 March 8th Produced 558kg of copper wet from gold plated materials', '2021-03-09', 1),
(1093, 301, 617, 886.4200, 0, 56.58, '1093_pcd_CASTLEBRICK.jpg', NULL, 22, '2 Castle Bricks made from fiber left over from gold plated boards from Aurenis.', '2021-03-09', 1),
(1094, 302, 566, 362.8400, 1, 23.16, '1094_pcd_0303s2.jpg', NULL, 22, 'Shift 3 March 8th 2021 also produced Copper with AU from gold plated boards.', '2021-03-09', 1),
(1098, 304, 373, 223.0000, 0, 0.00, '1098_pcd_plastic.jpg', NULL, 18, 'Plastics from computer cases and drive components', '2021-03-24', 1),
(1099, 304, 900, 739.5000, 0, 0.00, '1099_pcd_computermetal.jpg', NULL, 18, 'Metal Cases From Tower PC\'s Also added screws bolts and connection rods from drives.', '2021-03-24', 1),
(1100, 304, 357, 141.0000, 0, 0.00, '1100_pcd_circuitboardspile.jpg', NULL, 18, 'Disconnected fully cleaned and free from Aluminum heat syncs', '2021-03-24', 1),
(1101, 304, 378, 85.5000, 0, 0.00, '1101_pcd_aluminum.jpg', NULL, 18, 'Aluminum Cases and heat syncs collected from dismantling the computers', '2021-03-24', 1),
(1102, 304, 901, 141.0000, 0, 0.00, '1102_pcd_wires.jpg', NULL, 18, 'All connectors, cables and chords separated from computers', '2021-03-24', 1),
(1103, 305, 373, 188.0000, 0, 0.00, '1103_pcd_plastic.jpg', NULL, 18, 'Added to Plastic of the same Delivery Number', '2021-03-24', 1),
(1104, 305, 357, 12.0000, 0, 0.00, '1104_pcd_circuitboardspile.jpg', NULL, 18, 'Eliminated Metalic brakets and aluminim', '2021-03-24', 1),
(1105, 305, 372, 6.0000, 0, 0.00, '1105_pcd_computermetal.jpg', NULL, 18, 'none', '2021-03-24', 1),
(1106, 305, 378, 4.0000, 0, 0.00, '1106_pcd_aluminum.jpg', NULL, 18, 'none', '2021-03-24', 1),
(1107, 306, 373, 920.0000, 0, 0.00, '1107_pcd_plastic.jpg', NULL, 18, 'Added to plastic from same Delivery number', '2021-03-24', 1),
(1108, 306, 372, 733.0000, 0, 0.00, NULL, NULL, 18, 'Added to metal parts from same delivery number', '2021-03-24', 1),
(1109, 306, 378, 33.0000, 0, 0.00, '1109_pcd_aluminum.jpg', NULL, 18, 'Added to Aluminium Bag from same delivery', '2021-03-24', 1),
(1110, 306, 357, 464.0000, 0, 0.00, '1110_pcd_circuitboardspile.jpg', NULL, 18, 'Added to the circuit boards for processing from this same delivery', '2021-03-24', 1),
(1111, 307, 902, 1004.0000, 0, 0.00, '1111_pcd_libats.jpg', NULL, 18, 'Batteries from Cell devices stored seperately in the metal safebox for collection by CCR', '2021-03-24', 1),
(1112, 307, 373, 455.0000, 0, 0.00, NULL, NULL, 18, 'Added to Plastic Shredded from this delivery number.', '2021-03-24', 1),
(1113, 307, 357, 1031.0000, 0, 0.00, '1113_pcd_circuitboardspile.jpg', NULL, 18, 'Nothing To Note added to big big of circuit boards from the same delivery.', '2021-03-24', 1),
(1114, 308, 357, 10.0000, 0, 0.00, '1114_pcd_circuitboardspile.jpg', NULL, 18, 'Added to circuit boards for processing', '2021-03-24', 1),
(1115, 308, 902, 12.0000, 0, 0.00, '1115_pcd_batteries.jpg', NULL, 18, 'Added to batterie container for pickup by CCR', '2021-03-24', 1),
(1116, 308, 373, 11.0000, 0, 0.00, NULL, NULL, 18, 'Added to plastics from same delivery', '2021-03-24', 1),
(1117, 308, 372, 7.0000, 0, 0.00, NULL, NULL, 18, 'Added to metal bags from same delivery number', '2021-03-24', 1),
(1118, 309, 381, 877.3000, 0, 0.00, '1118_pcd_0304s3.jpg', NULL, 18, 'none', '2021-03-24', 1),
(1119, 309, 430, 780.0000, 0, 0.00, '1119_pcd_download.jpg', NULL, 18, 'Mixed with other fiber materials to produce bricks and pavaj', '2021-03-24', 1),
(1120, 309, 361, 0.7000, 0, 0.00, NULL, NULL, 18, 'Sweepings to be processed later', '2021-03-24', 1),
(1121, 310, 381, 100.0000, 0, 0.00, NULL, NULL, 18, 'Added to granules for smelting, sending to KK', '2021-03-24', 1),
(1122, 310, 430, 40.0000, 0, 0.00, '1122_pcd_parkpavers.jpg', NULL, 18, 'Added to fiber mix for pavaj', '2021-03-24', 1),
(1123, 310, 361, 1.0000, 0, 0.00, NULL, NULL, 18, 'Added to waste pile for later processing', '2021-03-24', 1),
(1124, 311, 427, 887.4000, 0, 0.00, '1124_pcd_FinalPro111.jpeg', NULL, 18, 'Smeling Report from Kovohuty', '2021-03-24', 1),
(1125, 311, 903, 89.9000, 0, 0.00, '1125_pcd_blackstones.jpg', NULL, 18, 'Smelting slag made into Stone from KK', '2021-03-24', 1),
(1126, 312, 566, 188.0000, 0, 12.00, NULL, NULL, 22, '', '2021-04-07', 1),
(1127, 312, 617, 284.8200, 0, 18.18, NULL, NULL, 22, '', '2021-04-07', 1),
(1128, 302, 566, 3384.0000, 0, 216.00, NULL, NULL, 22, '', '2021-04-07', 1),
(1129, 302, 617, 7326.3599, 0, 467.64, NULL, NULL, 22, '', '2021-04-07', 1),
(1130, 303, 566, 5136.1602, 0, 327.84, NULL, NULL, 22, '26.04.2021 csabi put in sistem', '2021-04-26', 1),
(1131, 303, 561, 13931.0000, 0, 0.00, NULL, NULL, 22, '', '2021-04-26', 1),
(1132, 313, 566, 6634.5200, 0, 423.48, NULL, NULL, 22, '', '2021-05-04', 1),
(1133, 313, 561, 16262.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1134, 314, 566, 6194.6001, 0, 395.40, NULL, NULL, 22, '', '2021-05-04', 1),
(1135, 314, 561, 14730.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1136, 315, 566, 6187.0801, 0, 394.92, NULL, NULL, 22, '', '2021-05-04', 1),
(1137, 315, 561, 9428.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1138, 316, 566, 5863.7202, 0, 374.28, NULL, NULL, 22, '', '2021-05-04', 1),
(1139, 316, 561, 15542.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1140, 317, 566, 6273.5601, 0, 400.44, NULL, NULL, 22, '', '2021-05-04', 1),
(1141, 317, 561, 17176.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1142, 318, 566, 6399.5200, 0, 408.48, NULL, NULL, 22, '', '2021-05-04', 1),
(1143, 318, 561, 16052.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1144, 319, 566, 7781.3198, 0, 496.68, NULL, NULL, 22, '', '2021-05-04', 1),
(1145, 319, 561, 6722.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-04', 1),
(1146, 322, 566, 7914.7998, 0, 505.20, NULL, NULL, 22, '', '2021-05-17', 1),
(1147, 322, 561, 14880.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-17', 1),
(1148, 323, 566, 340.2800, 0, 21.72, NULL, NULL, 22, '10.05.2021 sch 3 laci', '2021-05-17', 1),
(1149, 323, 566, 924.9600, 0, 59.04, NULL, NULL, 22, '11.05.2021 sch 1 pintiuta', '2021-05-17', 1),
(1150, 323, 566, 556.4800, 0, 35.52, NULL, NULL, 22, '11.05.2021 sch 2 bela', '2021-05-17', 1),
(1151, 323, 566, 1020.8400, 0, 65.16, NULL, NULL, 22, '11.5.2021 sch 3 laci', '2021-05-17', 1),
(1152, 323, 566, 823.4400, 0, 52.56, NULL, NULL, 22, '12.05.2021 sch 1 pintiuta', '2021-05-17', 1),
(1153, 323, 566, 438.0400, 0, 27.96, NULL, NULL, 22, '12.05.2021 sch 2 bela', '2021-05-17', 1),
(1154, 323, 566, 829.0800, 0, 52.92, NULL, NULL, 22, '12.05.2021 sch 3 laci', '2021-05-17', 1),
(1155, 323, 566, 887.3600, 0, 56.64, NULL, NULL, 22, '13.05.2021 sch 1 pintiuta', '2021-05-17', 1),
(1156, 323, 566, 697.4800, 0, 44.52, NULL, NULL, 22, '13.05.2021 sch 2 bela', '2021-05-17', 1),
(1157, 323, 566, 697.4800, 0, 44.52, NULL, NULL, 22, '13.05.2021 sch 3 laci', '2021-05-17', 1),
(1158, 323, 566, 725.6800, 0, 46.32, NULL, NULL, 22, '14.05.2021 sch 1 pintiuta', '2021-05-17', 1),
(1159, 323, 561, 14952.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-17', 1),
(1160, 324, 566, 507.6000, 0, 32.40, NULL, NULL, 22, '14.05.2021 sch 2 bela', '2021-05-19', 1),
(1161, 324, 566, 407.9600, 0, 26.04, NULL, NULL, 22, '14.05.2021 sch 3 laci', '2021-05-19', 1),
(1162, 324, 566, 667.4000, 0, 42.60, NULL, NULL, 22, '17.05.2021 sch 1 laci', '2021-05-19', 1),
(1163, 324, 566, 667.4000, 0, 42.60, NULL, NULL, 22, '17.05.2021 sch 2 pintiuta', '2021-05-19', 1),
(1164, 324, 566, 633.5600, 0, 40.44, NULL, NULL, 22, '18.05.2021 sch 1 laci', '2021-05-19', 1),
(1165, 324, 566, 840.3600, 0, 53.64, NULL, NULL, 22, '18.05.2021 sch 2 pintiuta', '2021-05-19', 1),
(1166, 324, 566, 603.4800, 0, 38.52, NULL, NULL, 22, '19.05.2021 sch 1 laci', '2021-05-19', 1),
(1167, 324, 561, 19416.0000, 0, 0.00, NULL, NULL, 22, '', '2021-05-19', 1),
(1168, 325, 566, 4361.6001, 0, 278.40, NULL, NULL, 22, '', '2021-08-18', 1),
(1169, 325, 561, 18940.0000, 0, 0.00, NULL, NULL, 22, '', '2021-08-18', 1),
(1170, 326, 566, 4051.3999, 0, 258.60, NULL, NULL, 22, '', '2021-08-18', 1),
(1171, 326, 561, 15708.0000, 0, 0.00, NULL, NULL, 22, '', '2021-08-18', 1),
(1172, 327, 927, 1799.3104, 1, 114.85, '1172_pcd_34d0ceb1-f6b0-4cf1-815b-870dc7451f0a.jpg', NULL, 35, 'We unloaded the material in the morning and only started at 9am', '2021-08-31', 1),
(1173, 328, 566, 4827.8398, 0, 308.16, NULL, NULL, 22, '', '2021-09-07', 1),
(1174, 328, 561, 15147.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1175, 329, 566, 4425.5200, 0, 282.48, NULL, NULL, 22, '', '2021-09-07', 1),
(1176, 329, 561, 19652.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1177, 330, 566, 7781.3198, 0, 496.68, NULL, NULL, 22, '', '2021-09-07', 1),
(1178, 330, 561, 14812.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1179, 331, 566, 8028.5400, 0, 512.46, NULL, NULL, 22, '', '2021-09-07', 1),
(1180, 331, 561, 15489.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1181, 332, 566, 6677.7598, 0, 426.24, NULL, NULL, 22, '', '2021-09-07', 1),
(1182, 332, 561, 11586.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1183, 333, 566, 5677.6001, 0, 362.40, NULL, NULL, 22, '', '2021-09-07', 1),
(1184, 333, 561, 8657.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1185, 334, 566, 3811.7000, 0, 243.30, NULL, NULL, 22, '', '2021-09-07', 1),
(1186, 334, 561, 20145.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1187, 335, 566, 7706.1201, 0, 491.88, NULL, NULL, 22, '', '2021-09-07', 1),
(1188, 335, 561, 15742.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1189, 337, 566, 0.9400, 0, 0.06, NULL, NULL, 22, '', '2021-09-07', 1),
(1190, 337, 561, 1.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1191, 336, 566, 4359.7202, 0, 278.28, NULL, NULL, 22, '', '2021-09-07', 1),
(1192, 336, 561, 12082.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-07', 1),
(1193, 338, 566, 7322.6001, 0, 467.40, NULL, NULL, 22, '', '2021-09-09', 1),
(1194, 338, 561, 16490.0000, 0, 0.00, NULL, NULL, 22, '', '2021-09-09', 1),
(1195, 339, 927, 5640.0000, 4, 360.00, NULL, NULL, 35, 'We did a bunch of stuff here.', '2021-09-23', 1),
(1196, 339, 922, 9000.0000, 0, 0.00, NULL, NULL, 35, 'Nothing To Report', '2021-09-23', 1),
(1197, 340, 929, 940.0000, 1, 60.00, NULL, NULL, 35, 'Shit happened', '2021-09-23', 1),
(1198, 340, 922, 4000.0000, 0, 0.00, NULL, NULL, 35, 'none', '2021-09-23', 1),
(1199, 341, 927, 470.0000, 0, 30.00, NULL, NULL, 35, '', '2021-09-23', 1),
(1200, 341, 922, 4500.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-23', 1),
(1223, 343, 930, 5640.0000, 0, 360.00, NULL, NULL, 35, 'nope', '2021-09-25', 1),
(1224, 343, 922, 14000.0000, 0, 0.00, NULL, NULL, 35, 'nope', '2021-09-25', 1),
(1225, 344, 930, 188.0000, 0, 12.00, NULL, NULL, 35, 'Nope', '2021-09-25', 1),
(1226, 344, 922, 800.0000, 0, 0.00, NULL, NULL, 35, 'nope', '2021-09-25', 1),
(1227, 345, 930, 6110.0000, 0, 390.00, NULL, NULL, 35, '0', '2021-09-25', 1),
(1228, 345, 922, 17840.0000, 0, 0.00, NULL, NULL, 35, '0', '2021-09-25', 1),
(1229, 342, 930, 4230.0000, 3, 270.00, NULL, NULL, 35, 'o', '2021-09-25', 1),
(1230, 342, 922, 10500.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-25', 1),
(1231, 346, 927, 5000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1232, 347, 927, 3760.0000, 0, 240.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1233, 347, 922, 1000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1234, 348, 927, 1880.0000, 0, 120.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1235, 348, 922, 3000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1236, 349, 930, 3760.0000, 0, 240.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1237, 349, 922, 6000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-26', 1),
(1238, 350, 987, 1000.0000, 3, 0.00, NULL, NULL, 35, 'found these in the stock', '2021-09-27', 1),
(1239, 350, 927, 3500.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1240, 350, 922, 2000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1241, 351, 927, 4700.0000, 4, 300.00, '1241_pcd_0f361f36-1f75-49eb-827b-344528d15d49.jpg', NULL, 35, '4 big bags with blue paint on them', '2021-09-27', 1),
(1242, 351, 922, 10000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1243, 352, 930, 2350.0000, 0, 150.00, '1243_pcd_Untitled-1.png', NULL, 35, '', '2021-09-27', 1),
(1244, 352, 922, 4000.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1245, 353, 924, 0.0500, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1246, 353, 928, 839.9500, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1247, 353, 922, 1200.0000, 0, 0.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1248, 354, 927, 940.0000, 0, 60.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1249, 354, 922, 1410.0000, 0, 90.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1250, 355, 930, 1880.0000, 0, 120.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1251, 355, 922, 1880.0000, 0, 120.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1252, 356, 928, 1880.0000, 0, 120.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1253, 356, 922, 1410.0000, 0, 90.00, NULL, NULL, 35, '', '2021-09-27', 1),
(1254, 357, 566, 2068.0000, 0, 132.00, NULL, NULL, 36, '', '2021-09-29', 1),
(1255, 357, 561, 6600.0000, 0, 0.00, NULL, NULL, 36, '', '2021-09-29', 1),
(1256, 358, 927, 1334.8000, 1, 85.20, '1256_pcd_weight111.jpg', NULL, 35, 'Was a great day to be working at Pfane.', '2021-10-04', 1),
(1257, 358, 922, 6000.0000, 4, 0.00, NULL, NULL, 35, 'All piled into cement line', '2021-10-04', 1),
(1258, 358, 927, 6110.0000, 5, 390.00, NULL, NULL, 35, 'Wow what a shift.', '2021-10-04', 1),
(1259, 358, 922, 8980.0000, 0, 0.00, NULL, NULL, 35, '', '2021-10-04', 1),
(1260, 360, 566, 3169.6799, 0, 202.32, NULL, NULL, 22, '', '2021-11-09', 1),
(1261, 360, 561, 10457.0000, 0, 0.00, NULL, NULL, 22, '', '2021-11-09', 1),
(1262, 359, 566, 5341.0801, 0, 340.92, NULL, NULL, 22, '', '2021-11-09', 1),
(1263, 359, 561, 17418.0000, 0, 0.00, NULL, NULL, 22, '', '2021-11-09', 1),
(1264, 361, 566, 7516.2402, 0, 479.76, NULL, NULL, 22, '', '2021-11-11', 1),
(1265, 361, 561, 10104.0000, 0, 0.00, NULL, NULL, 22, '', '2021-11-11', 1),
(1266, 362, 566, 1255.8400, 0, 80.16, '1266_pcd_1336 kg Bela 16.11.2021.jpg', NULL, 22, '16.11.2021 Bela Sch 1', '2021-11-23', 1),
(1267, 362, 566, 716.2800, 0, 45.72, '1267_pcd_762 kg Gecse 16.11.2021.jpg', NULL, 22, '16.11.2021 Gecse Sch 2', '2021-11-23', 1),
(1268, 362, 566, 618.5200, 0, 39.48, '1268_pcd_658 kg Bela 17.11.2021.jpg', NULL, 22, '17.11.2021 Bela Sch1', '2021-11-23', 1),
(1269, 362, 566, 1272.7600, 0, 81.24, '1269_pcd_1354 kg Bela 18.11.2021.jpg', NULL, 22, '18.11.2021 Bela Sch 1', '2021-11-23', 1),
(1270, 362, 566, 259.4400, 0, 16.56, '1270_pcd_276 kg Gecse 18.11.2021.jpg', NULL, 22, '18.11.2021 Gecse Sch 2', '2021-11-23', 1),
(1271, 362, 566, 1049.0400, 0, 66.96, '1271_pcd_1116 kg Bela 19.11.2021.jpg', NULL, 22, '19.11.2021 Bela Sch 1', '2021-11-23', 1),
(1272, 362, 566, 562.1200, 0, 35.88, '1272_pcd_874-276=598 kg Gecse 19.11.2021.jpg', NULL, 22, '19.11.2021 Gecse Sch 2 874-276=598', '2021-11-23', 1),
(1273, 362, 561, 17940.0000, 0, 0.00, NULL, NULL, 22, '', '2021-11-23', 1),
(1274, 363, 566, 627.9200, 0, 40.08, '1274_pcd_668 kg Bela 22.11.2021.jpg', NULL, 22, 'Sch 2 Bela 22.11.2021', '2021-11-26', 1),
(1275, 363, 566, 755.7600, 0, 48.24, '1275_pcd_804 kg Gecse 23.11.2021.jpg', NULL, 22, 'Sch 1 Gecse 23.11.2021', '2021-11-26', 1),
(1276, 363, 566, 460.6000, 0, 29.40, '1276_pcd_490 kg Bela 23.11.2021.jpg', NULL, 22, 'Sch 2 Bela 23.11.2021', '2021-11-26', 1),
(1277, 363, 566, 642.9600, 0, 41.04, '1277_pcd_684 kg Gecse 24.11.2021.jpg', NULL, 22, 'Sch 1 Gecse 24.11.2021', '2021-11-26', 1),
(1278, 363, 566, 744.4800, 0, 47.52, '1278_pcd_792 kg Bela 24.11.2021.jpg', NULL, 22, 'Sch 2 Bela 24.11.2021', '2021-11-26', 1),
(1279, 363, 566, 1054.6801, 0, 67.32, '1279_pcd_1122 kg Budai 24.11.2021.jpg', NULL, 22, 'Sch 3 Budai 24.11.2021', '2021-11-26', 1),
(1280, 363, 566, 165.4400, 0, 10.56, '1280_pcd_860-684=176 kg Gecse 25.11.2021.jpg', NULL, 22, 'Sch 1 Gecse 25.11.2021', '2021-11-26', 1),
(1281, 363, 566, 720.0400, 0, 45.96, '1281_pcd_766 kg Bela 25.11.2021.jpg', NULL, 22, 'Sch 2 Bela 25.11.2021', '2021-11-26', 1),
(1282, 363, 566, 543.3200, 0, 34.68, '1282_pcd_578 kg Budai 25.11.2021.jpg', NULL, 22, 'Sch 3 Budai 25.11.2021', '2021-11-26', 1),
(1283, 363, 561, 18120.0000, 0, 0.00, NULL, NULL, 22, '', '2021-11-26', 1),
(1284, 365, 566, 896.7600, 0, 57.24, '1284_pcd_954 kg Pintiuta 09.12.2021.jpg', NULL, 22, '09.12.2021 sch 2 Pintiuta', '2021-12-14', 1),
(1285, 365, 566, 962.5600, 0, 61.44, '1285_pcd_1024 kg Bela 10.12.2021.jpg', NULL, 22, '10.12.2021 sch 1 Bela', '2021-12-14', 1),
(1286, 365, 566, 1022.7200, 0, 65.28, '1286_pcd_1088 kg Pintiuta 10.12.2021.jpg', NULL, 22, '10.12.2021 sch 2 Pintiuta', '2021-12-14', 1),
(1287, 365, 566, 911.8000, 0, 58.20, '1287_pcd_970 kg Gecse 11.12.2021.jpg', NULL, 22, '11.12.2021 sch 1 Gecse', '2021-12-14', 1),
(1288, 365, 566, 716.2800, 0, 42.98, '1288_pcd_762 kg Bela 11.12.2021.jpg', NULL, 22, 'Sch 2 Bela', '2021-12-14', 1),
(1289, 365, 566, 169.2000, 0, 10.80, '1289_pcd_180 kg Budai 13.12.2021.jpg', NULL, 22, '13.12.2021 sch 1 Budai', '2021-12-14', 1),
(1290, 365, 566, 671.1600, 0, 42.84, '1290_pcd_714 kg Bela 13.12.2021.jpg', NULL, 22, '13.12.2021 sch 2 Bela', '2021-12-14', 1),
(1291, 365, 566, 627.9200, 0, 40.08, '1291_pcd_668 kg Gecse 13.12.2021.jpg', NULL, 22, '13.12.2021 sch 3 Gecse', '2021-12-14', 1),
(1292, 365, 561, 17382.7402, 0, 0.00, NULL, NULL, 22, '', '2021-12-14', 1),
(1293, 366, 566, 171.0800, 0, 10.92, '1293_pcd_182 kg Bela 22.12.2021.jpg', NULL, 22, '22.12.2021 sch  1 Bela', '2022-01-04', 1);
INSERT INTO `processcompletedetail` (`id`, `processcompleteid`, `itemid`, `weight`, `baskets`, `evaporated`, `image`, `forsale`, `addeduserid`, `note`, `sysdate`, `status`) VALUES
(1294, 366, 566, 543.3200, 0, 34.68, '1294_pcd_760-182=578 kg Gecse 22.12.2021.jpg', NULL, 22, '22.12.2021 sch 2 Gecse', '2022-01-04', 1),
(1295, 366, 566, 250.0400, 0, 15.96, '1295_pcd_1026-760=266 kg Bela 23.12.2021.jpg', NULL, 22, '23.12.2021 sch 1 Bela', '2022-01-04', 1),
(1296, 366, 566, 505.7200, 0, 32.28, '1296_pcd_1564-1026=538 kg Gecse 23.12.2021.jpg', NULL, 22, '23.12.2021 sch 2 Gecse', '2022-01-04', 1),
(1297, 366, 561, 2396.0000, 0, 0.00, NULL, NULL, 22, '', '2022-01-04', 1),
(1298, 367, 566, 1069.7200, 0, 68.28, '1298_pcd_1138 kg Gecse 15.12.2021.jpg', NULL, 22, '15.12.2021 Sch 3 Gecse', '2022-01-07', 1),
(1299, 367, 566, 720.0400, 0, 45.96, '1299_pcd_766 kg Gecse 16.12.2021.jpg', NULL, 22, '16.12.2021 Sch 3 Gecse', '2022-01-07', 1),
(1300, 367, 566, 909.9200, 0, 58.08, '1300_pcd_476+492=968 kg Gecse 17.12.2021.jpg', NULL, 22, '17.12.2021 Sch 3 Gecse', '2022-01-07', 1),
(1301, 367, 566, 736.9600, 0, 47.04, '1301_pcd_784 kg Bela 20.12.2021.jpg', NULL, 22, '20.12.2021 Sch 1 Bela', '2022-01-07', 1),
(1302, 367, 566, 642.9600, 0, 41.04, '1302_pcd_1176-492=684 kg Gecse 20.12.2021.jpg', NULL, 22, '20.12.2021 Sch 2 Gecse', '2022-01-07', 1),
(1303, 367, 566, 783.9600, 0, 50.04, '1303_pcd_834 kg Budai 20.12.2021.jpg', NULL, 22, '20.12.2021 Sch 3 Budai', '2022-01-07', 1),
(1304, 367, 566, 631.6800, 0, 40.32, '1304_pcd_672 kg Bela 21.12.2021.jpg', NULL, 22, '21.12.2021 Sch 1 Bela', '2022-01-07', 1),
(1305, 367, 566, 787.7200, 0, 50.28, '1305_pcd_838 kg Gecse 21.12.2021.jpg', NULL, 22, '21.12.2021 Sch 2 Gecse', '2022-01-07', 1),
(1306, 367, 566, 1034.0000, 0, 66.00, '1306_pcd_1100 kg Pintiuta 04.01.2022.jpg', NULL, 22, '04.01.2022  Sch 2 Pintiuta', '2022-01-07', 1),
(1307, 367, 561, 15806.0000, 0, 0.00, NULL, NULL, 22, '', '2022-01-07', 1),
(1308, 368, 566, 513.2400, 0, 32.76, '1308_pcd_546 kg Bela 14.12.2021.jpg', NULL, 22, '14.12.2021 Sch 2 Bela', '2022-01-07', 1),
(1309, 368, 566, 637.3200, 0, 40.68, '1309_pcd_1346-668=678 kg Gecse 14.12.2021.jpg', NULL, 22, '14.12.2021 Sch 3 Gecse', '2022-01-07', 1),
(1310, 368, 566, 1043.4000, 0, 66.60, '1310_pcd_1290-180=1110 kg Budai 15.12.2021.jpg', NULL, 22, '15.12.2021 Sch 1 Budai', '2022-01-07', 1),
(1311, 368, 566, 928.7200, 0, 59.28, '1311_pcd_988 kg Bela 15.12.2021.jpg', NULL, 22, '15.12.2021 Sch 2 Bela', '2022-01-07', 1),
(1312, 368, 566, 637.3200, 0, 40.68, '1312_pcd_1050-372=678 kg Budai 16.12.2021.jpg', NULL, 22, '16.12.2021 Sch 1 Budai', '2022-01-07', 1),
(1313, 368, 566, 413.6000, 0, 26.40, '1313_pcd_440 kg Bela 16.12.2021.jpg', NULL, 22, '16.12.2021 Sch 2 Bela', '2022-01-07', 1),
(1314, 368, 566, 667.4000, 0, 42.60, '1314_pcd_710 kg Budai 17.12.2021.jpg', NULL, 22, '17.12.2021 Sch 1 Budai', '2022-01-07', 1),
(1315, 368, 566, 834.7200, 0, 53.28, '1315_pcd_888 kg Bela 17.12.2021.jpg', NULL, 22, '17.12.2021 Sch 2 Bela', '2022-01-07', 1),
(1316, 368, 566, 283.8800, 0, 18.12, '1316_pcd_302 kg Bela 22.12.2021.jpg', NULL, 22, '22.12.2021 Sch 1 Bela', '2022-01-07', 1),
(1317, 368, 566, 1351.7200, 0, 86.28, '1317_pcd_1438 kg Bela 05.01.2022.jpg', NULL, 22, '05.01.2022 Sch 1 Bela', '2022-01-07', 1),
(1318, 368, 566, 714.4000, 0, 45.60, '1318_pcd_760 kg Budai 05.01.2022.jpg', NULL, 22, '05.01.2022 Sch 2 Budai', '2022-01-07', 1),
(1319, 368, 561, 10757.0000, 0, 0.00, NULL, NULL, 22, '', '2022-01-07', 1),
(1320, 369, 566, 80.8400, 0, 5.16, '1320_pcd_86 kg sch 2 Bela 12.01.2022.jpg', NULL, 22, '12.01.2022 sch 2 Bela', '2022-02-02', 1),
(1321, 369, 566, 411.7200, 0, 26.28, '1321_pcd_1224-786=438 kg sch 2 Budai 21.01.2022.jpg', NULL, 22, '21.01.2022 sch 2 Budai', '2022-02-02', 1),
(1322, 369, 566, 71.4400, 0, 4.56, '1322_pcd_530-454=76 kg sch 3 Gecse 21.01.2022.jpg', NULL, 22, '21.01.2022 sch 3 Gecse', '2022-02-02', 1),
(1323, 369, 566, 389.1600, 0, 24.84, '1323_pcd_414 kg sch 2 Bela 25.01.2022.jpg', NULL, 22, '25.01.2022 sch 2 Bela', '2022-02-02', 1),
(1324, 369, 566, 462.4800, 0, 29.52, '1324_pcd_492 kg sch 2 Bela 27.01.2022.jpg', NULL, 22, '27.01.2022 sch 2 Bela', '2022-02-02', 1),
(1325, 369, 566, 374.1200, 0, 23.88, '1325_pcd_398 kg sch 1 Pintiuta 28.01.2022.jpg', NULL, 22, '28.01.2022 sch 1 Pintiuta', '2022-02-02', 1),
(1326, 369, 566, 464.3600, 0, 29.64, '1326_pcd_986-492=494 kg sch 2 Bela 28.01.2022.jpg', NULL, 22, '28.01.2022 sch 2 Bela', '2022-02-02', 1),
(1327, 369, 566, 406.0800, 0, 25.92, '1327_pcd_432 kg sch 1 Bela 31.01.2022.jpg', NULL, 22, '31.01.2022 sch 1 Bela', '2022-02-02', 1),
(1328, 369, 566, 300.8000, 0, 19.20, '1328_pcd_718-398=320 kg sch 2 Pintiuta 31.01.2022.jpg', NULL, 22, '31.01.2022 sch 2 Pintiuta', '2022-02-02', 1),
(1329, 369, 566, 340.2800, 0, 21.72, '1329_pcd_794-432=362 kg sch 1 Bela 01.02.2022.jpg', NULL, 22, '01.02.2022 sch 1 Bela', '2022-02-02', 1),
(1330, 369, 566, 206.8000, 0, 13.20, '1330_pcd_938-718=220 kg sch 2 Pintiuta 01.02.2022.jpg', NULL, 22, '01.02.2022 sch 2 Pintiuta', '2022-02-02', 1),
(1331, 369, 561, 11503.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-02', 1),
(1332, 371, 566, 353.4400, 0, 22.56, '1332_pcd_462-86=376 kg sch 1 Bela 17.01.2022.jpg', NULL, 22, '17.01.2022 sch 1 Bela', '2022-02-03', 1),
(1333, 371, 566, 691.8400, 0, 44.16, '1333_pcd_736 kg sch 2 Budai 17.01.2022.jpg', NULL, 22, '17.01.2022 sch 2 Budai', '2022-02-03', 1),
(1334, 371, 566, 535.8000, 0, 34.20, '1334_pcd_1032-462=570 kg sch 1 Bela 18.01.2022.jpg', NULL, 22, '18.01.2022 sch 1 Bela', '2022-02-03', 1),
(1335, 371, 566, 477.5200, 0, 30.48, '1335_pcd_1242-734=508 kg sch 2 Budai 18.01.2022.jpg', NULL, 22, '18.01.2022 sch 2 Budai', '2022-02-03', 1),
(1336, 371, 566, 595.9600, 0, 38.04, '1336_pcd_634 kg sch 1 Bela 19.01.2022.jpg', NULL, 22, '19.01.2022 sch 1  Bela', '2022-02-03', 1),
(1337, 371, 566, 693.7200, 0, 44.28, '1337_pcd_738 kg sch 2 Budai 19.01.2022.jpg', NULL, 22, '19.01.2022 sch 2 Budai', '2022-02-03', 1),
(1338, 371, 566, 268.8400, 0, 17.16, '1338_pcd_286 kg sch 3 Gecse 19.01.2022.jpg', NULL, 22, '19.01.2022 sch 3 Gecse', '2022-02-03', 1),
(1339, 371, 566, 432.4000, 0, 27.60, '1339_pcd_1094-634=460 kg sch 1 Bela 20.01.2022.jpg', NULL, 22, '20.01.2022 sch 1 Bela', '2022-02-03', 1),
(1340, 371, 566, 738.8400, 0, 47.16, '1340_pcd_786 kg sch 2 Budai 20.01.2022.jpg', NULL, 22, '20.01.2022 sch 2 Budai', '2022-02-03', 1),
(1341, 371, 566, 157.9200, 0, 10.08, '1341_pcd_454-286=168 kg sch 3 Gecse 20.01.2022.jpg', NULL, 22, '20.01.2022 sch 3 Gecse', '2022-02-03', 1),
(1342, 371, 566, 387.2800, 0, 24.72, '1342_pcd_412 kg sch 1 Bela 21.01.2022.jpg', NULL, 22, '21.01.2022 sch 1 Bela', '2022-02-03', 1),
(1343, 371, 561, 15682.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-03', 1),
(1344, 372, 566, 735.0800, 0, 46.92, '1344_pcd_782 kg sch 2 Gecse 02.02.2022.jpg', NULL, 22, '02.02.2022 sch 2 Gecse', '2022-02-04', 1),
(1345, 372, 566, 607.2400, 0, 38.76, '1345_pcd_1428-782=646 kg sch 1 Bela 03.02.2022.jpg', NULL, 22, '03.02.2022 sch 1 Bela', '2022-02-04', 1),
(1346, 372, 566, 92.1200, 0, 5.88, '1346_pcd_1526-1428=98 kg sch 2 Gecse 03.02.2022.jpg', NULL, 22, '03.02.2022 sch 2 Gecse', '2022-02-04', 1),
(1347, 372, 561, 4025.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-04', 1),
(1348, 373, 1004, 1318.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-10', 1),
(1349, 373, 1001, 2407.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-10', 1),
(1350, 373, 1006, 587.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-10', 1),
(1351, 373, 1005, 268.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-10', 1),
(1352, 373, 561, 731.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-10', 1),
(1353, 376, 566, 1186.2800, 0, 75.72, '1353_pcd_1262 kg sch 2 Gecse 16.02.2022.jpg', NULL, 22, '16.02.2022 sch 2 Gecse', '2022-02-28', 1),
(1354, 376, 566, 1524.6801, 0, 97.32, '1354_pcd_1622 kg sch 1 Bela 17.02.2022.jpg', NULL, 22, '17.02.2022 sch 1 Bela', '2022-02-28', 1),
(1355, 376, 566, 1692.0000, 0, 108.00, '1355_pcd_1800 kg sch 2 Gecse 17.02.2022.jpg', NULL, 22, '17.02.2022 sch 2 Gecse', '2022-02-28', 1),
(1356, 376, 566, 1050.9200, 0, 67.08, '1356_pcd_1118 kg sch 3 Hucea 17.02.2022.jpg', NULL, 22, '17.02.2022 sch 3 Hucea', '2022-02-28', 1),
(1357, 376, 566, 312.0800, 0, 19.92, '1357_pcd_332 kg sch 2 Gecse 18.02.2022.jpg', NULL, 22, '18.02.2022 sch 2 Gecse', '2022-02-28', 1),
(1358, 376, 566, 808.4000, 0, 51.60, '1358_pcd_860 kg sch 3 Hucea 18.02.2022.jpg', NULL, 22, '18.02.2022 sch 3 Hucea', '2022-02-28', 1),
(1359, 376, 566, 1013.3200, 0, 64.68, '1359_pcd_1078 kg sch 1 Gecse 21.02.2022.jpg', NULL, 22, '21.02.2022 sch 1 Gecse', '2022-02-28', 1),
(1360, 376, 566, 823.4400, 0, 52.56, '1360_pcd_876 kg sch 2 Bela 21.02.2022.jpg', NULL, 22, '21.02.2022 sch 2 Bela', '2022-02-28', 1),
(1361, 376, 566, 291.4000, 0, 18.60, '1361_pcd_310 kg sch 3 Frigyes 21.02.2022.jpg', NULL, 22, '21.02.2022 sch 3 Frigyes', '2022-02-28', 1),
(1362, 376, 566, 742.6000, 0, 47.40, '1362_pcd_790 kg sch 1 Gecse 22.02.2022.jpg', NULL, 22, '22.02.2022 sch 1 Gecse', '2022-02-28', 1),
(1363, 376, 561, 12712.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-28', 1),
(1364, 377, 566, 415.4800, 0, 26.52, '1364_pcd_Copper foil 442 kg sch 2 Bela 22.02.2022.jpg', NULL, 22, '22.02.2022 sch 2 Bela', '2022-02-28', 1),
(1365, 377, 561, 558.0000, 0, 0.00, NULL, NULL, 22, '', '2022-02-28', 1),
(1366, 374, 1006, 190.0000, 0, 0.00, '1366_pcd_WhatsApp Image 2022-02-28 at 13.46.54.jpeg', NULL, 22, '', '2022-02-28', 1),
(1367, 374, 1004, 250.0000, 0, 0.00, '1367_pcd_WhatsApp Image 2022-02-28 at 13.48.04.jpeg', NULL, 22, '', '2022-02-28', 1),
(1368, 374, 1001, 606.0000, 0, 0.00, '1368_pcd_WhatsApp Image 2022-02-28 at 13.48.04 (1).jpeg', NULL, 22, '', '2022-02-28', 1),
(1369, 374, 1005, 48.0000, 0, 0.00, '1369_pcd_WhatsApp Image 2022-02-28 at 14.07.32.jpeg', NULL, 22, '', '2022-02-28', 1),
(1370, 374, 561, 120.0000, 0, 0.00, '1370_pcd_WhatsApp Image 2022-02-28 at 14.11.35.jpeg', NULL, 22, '', '2022-02-28', 1),
(1371, 378, 566, 1099.8000, 0, 65.99, '1371_pcd_1170 kg sch 1 Bela 28.02.2022.jpg', NULL, 22, '28.02.2022 sch 1 Bela', '2022-03-10', 1),
(1372, 378, 566, 1103.5601, 0, 70.44, '1372_pcd_1174 kg sch 2 Gecse 28.02.2022.jpg', NULL, 22, '28.02.2022 sch 2 Gecse', '2022-03-10', 1),
(1373, 378, 566, 1547.2400, 0, 98.76, '1373_pcd_1646 kg sch 3 Pintiuta 28.02.2022..jpg', NULL, 22, '28.02.2022 sch 3 Pintiuta', '2022-03-10', 1),
(1374, 378, 566, 940.0000, 0, 60.00, '1374_pcd_1000 kg sch 1 Bela 01.03.2022.jpg', NULL, 22, '01.03.2022 sch 1 Bela', '2022-03-10', 1),
(1375, 378, 566, 1374.2800, 0, 87.72, '1375_pcd_1462 kg sch 2 Gecse 01.03.2022.jpg', NULL, 22, '01.03.2022 sch 2 Gecse', '2022-03-10', 1),
(1376, 378, 566, 297.0400, 0, 18.96, '1376_pcd_316 kg sch 3 Pintiuta 01.03.2022.jpg', NULL, 22, '01.03.2022 sch 3 Pintiuta', '2022-03-10', 1),
(1377, 378, 566, 755.7600, 0, 48.24, '1377_pcd_804 kg sch 1 Bela 02.03.2022.jpg', NULL, 22, '02.03.2022 sch 1 Bela', '2022-03-10', 1),
(1378, 378, 566, 723.8000, 0, 46.20, '1378_pcd_770 kg sch 2 Gecse 02.03.2022.jpg', NULL, 22, '02.03.2022 sch 2 Gecse', '2022-03-10', 1),
(1379, 378, 566, 1278.4000, 0, 76.70, '1379_pcd_1360 kg sch 1 Bela 02.03.2022.jpg', NULL, 22, '03.03.2022 sch 1 Bela', '2022-03-10', 1),
(1380, 378, 566, 708.7600, 0, 45.24, '1380_pcd_754 kg sch 2 Gecse 03.03.2022.jpg', NULL, 22, '03.03.2022 sch 2 Gecse', '2022-03-10', 1),
(1381, 378, 561, 11513.1104, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1382, 379, 566, 182.3600, 0, 11.64, '1382_pcd_194 kg sch 2 Gecse 14.02.2022.jpg', NULL, 22, '14.02.2022 sch 2 Gecse', '2022-03-10', 1),
(1383, 379, 566, 642.9600, 0, 41.04, '1383_pcd_684 kg sch 2 Gecse 15.02.2022.jpg', NULL, 22, '15.02.2022 sch 2 Gecse', '2022-03-10', 1),
(1384, 379, 566, 295.1600, 0, 18.84, '1384_pcd_314 kg sch 1 Bela 16.02.2022.jpg', NULL, 22, '16.02.2022 sch 1 Bela', '2022-03-10', 1),
(1385, 379, 566, 283.8800, 0, 18.12, '1385_pcd_302 kg sch 1 Gecse 23.02.2022.jpg', NULL, 22, '23.02.2022 sch 1 Gecse', '2022-03-10', 1),
(1386, 379, 566, 208.6800, 0, 13.32, '1386_pcd_222 kg sch 1 Gecse 24.02.2022.jpg', NULL, 22, '24.02.2022 sch 1 Gecse', '2022-03-10', 1),
(1387, 379, 566, 125.9600, 0, 8.04, '1387_pcd_134 kg sch 2 Bela 24.02.2022.jpg', NULL, 22, '24.02.2022 sch 2 Bela', '2022-03-10', 1),
(1388, 379, 566, 235.0000, 0, 15.00, '1388_pcd_250 kg sch 1 Bela 04.03.2022.jpg', NULL, 22, '04.03.2022 sch 1 Bela', '2022-03-10', 1),
(1389, 379, 566, 415.4800, 0, 26.52, '1389_pcd_442 kg sch 2 Gecse 04.03.2022.jpg', NULL, 22, '04.03.2022 sch 2 Gecse', '2022-03-10', 1),
(1390, 379, 566, 304.5600, 0, 19.44, '1390_pcd_324 kg sch 2 Bela 07.03.2022.jpg', NULL, 22, '07.03.2022 sch 2 Bela', '2022-03-10', 1),
(1391, 379, 566, 141.0000, 0, 9.00, '1391_pcd_150 kg sch 2 Bela 08.03.2022.jpg', NULL, 22, '08.03.2022 sch 2 Bela', '2022-03-10', 1),
(1392, 379, 561, 9525.0000, 0, 0.00, NULL, NULL, 22, '', '2022-03-10', 1),
(1393, 380, 566, 424.8800, 0, 27.12, '1393_pcd_452 kg sch 2 Bela 09.03.2022.jpg', NULL, 22, '09.03.2022 sch 2 Bela', '2022-03-10', 1),
(1394, 380, 566, 67.6800, 0, 4.32, '1394_pcd_524-452=72 kg sch 1 Kasa 10.03.2022.jpg', NULL, 22, '10.03.2022 sch 1 Kasa', '2022-03-10', 1),
(1395, 380, 561, 1100.0000, 0, 0.00, NULL, NULL, 22, '', '2022-03-10', 1),
(1398, 381, 546, 1.0000, 0, 0.00, NULL, NULL, 36, '', '2022-03-13', 1),
(1399, 383, 1007, 645.0000, 0, 0.00, '1399_pcd_111AD582-3488-4733-B25E-C119C3A624B6.jpeg', NULL, 38, 'Hands getting smashed', '2022-03-16', 1),
(1400, 383, 1008, 499.0000, 0, 0.00, '1400_pcd_60F3035B-61E0-491F-BCBD-5D7B0BD597D0.jpeg', NULL, 38, '', '2022-03-16', 1),
(1401, 383, 1018, 305.0000, 10, 0.00, '1401_pcd_8AE82601-ECEE-426C-ACE8-1F0754E6E0DF.jpeg', NULL, 38, '', '2022-03-16', 1),
(1402, 383, 1011, 184.0000, 1, 0.00, '1402_pcd_IMG-20220411-WA0015.jpg', NULL, 39, 'from 04/11/22', '2022-04-12', 1),
(1403, 383, 1011, 142.0000, 1, 0.00, '1403_pcd_IMG-20220411-WA0014.jpg', NULL, 39, 'from 04/11/22', '2022-04-12', 1),
(1404, 383, 1011, 314.0000, 1, 0.00, '1404_pcd_IMG-20220411-WA0012.jpg', NULL, 39, 'from 04/11/22', '2022-04-12', 1),
(1405, 383, 1007, 5908.0000, 35, 0.00, '1405_pcd_143 kg.jpeg', NULL, 39, '35 @ Dales request', '2022-04-14', 1),
(1406, 383, 1011, 81.0000, 1, 0.00, '1406_pcd_81 kg (Circuit Boards).jpeg', NULL, 39, 'circuit boards', '2022-04-15', 1),
(1407, 383, 1007, 2002.0000, 12, 0.00, '1407_pcd_222kg.jpeg', NULL, 39, 'Remotes Plastic', '2022-04-18', 1),
(1408, 383, 1007, 428.0000, 3, 0.00, '1408_pcd_Remotes.jpeg', NULL, 39, 'as per A.H. photos', '2022-04-21', 1),
(1409, 382, 1008, 0.1000, 0, 0.00, NULL, NULL, 39, 'test', '2022-04-22', 1),
(1410, 382, 1010, 0.2000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1411, 382, 1018, 0.5000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1412, 382, 1009, 0.2000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1413, 385, 920, 0.1000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1414, 385, 1007, 0.1000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1415, 386, 927, 0.2000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1416, 386, 922, 0.3000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1417, 387, 921, 0.2000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1418, 389, 1018, 12.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1419, 389, 918, 38.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1420, 390, 928, 6.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1422, 390, 0, 6.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1423, 391, 1007, 30.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1425, 391, 920, 5.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1426, 391, 909, 3.0000, 0, 0.00, NULL, NULL, 39, '', '2022-04-22', 1),
(1427, 383, 1011, 588.0000, 4, 0.00, '1427_pcd_jacobs pics.jpeg', NULL, 39, 'Jacob\'s photos', '2022-04-26', 1),
(1428, 384, 566, 340.2800, 0, 21.72, '1428_pcd_362 kg Sch 2 Gecse 15.03.2022.jpg', NULL, 22, '15.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1429, 384, 566, 635.4400, 0, 40.56, '1429_pcd_676 kg Sch 1 Bela 16.03.2022.jpg', NULL, 22, '16.03.2022 sch 1 Bela', '2022-05-09', 1),
(1430, 384, 566, 842.2400, 0, 53.76, '1430_pcd_896 kg  Sch 2 Gecse 16.03.2022.jpg', NULL, 22, '16.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1431, 384, 566, 736.9600, 0, 47.04, '1431_pcd_784 kg Sch 1 Bela 17.03.2022.jpg', NULL, 22, '17.03.2022 sch 1 Bela', '2022-05-09', 1),
(1432, 384, 566, 368.4800, 0, 23.52, '1432_pcd_754-362=392 kg Sch 2 Gecse 17.03.2022.jpg', NULL, 22, '17.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1433, 384, 566, 353.4400, 0, 22.56, '1433_pcd_376 kg Sch 1 Bela 18.03.2022.jpg', NULL, 22, '18.03.2022 sch 1 Bela', '2022-05-09', 1),
(1434, 384, 566, 475.6400, 0, 30.36, '1434_pcd_264+242=506 kg Sch 2 Gecse 18.03.2022.jpg', NULL, 22, '18.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1435, 384, 566, 334.6400, 0, 21.36, '1435_pcd_1110-754=356 kg Sch 1 Gecse 21.03.2022.jpg', NULL, 22, '21.03.2022 sch 1 Gecse', '2022-05-09', 1),
(1436, 384, 566, 259.4400, 0, 16.56, '1436_pcd_276 kg Sch 2 Bela 21.03.2022.jpg', NULL, 22, '21.03.2022 sch 2 Bela', '2022-05-09', 1),
(1437, 384, 561, 16126.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-09', 1),
(1438, 392, 566, 165.4400, 0, 10.56, '1438_pcd_176 kg Sch 1 Gecse 23.03.2022.jpg', NULL, 22, '23.03.2022 sch 1 Gecse', '2022-05-09', 1),
(1439, 392, 566, 731.3200, 0, 46.68, '1439_pcd_778 kg Sch 2 Bela 23.03.2022.jpg', NULL, 22, '23.03.2022 sch 2 Bela', '2022-05-09', 1),
(1440, 392, 566, 332.7600, 0, 21.24, '1440_pcd_354 kg Sch 1 Gecse 24.03.2022.jpg', NULL, 22, '24.03.2022 sch 1 Gecse', '2022-05-09', 1),
(1441, 392, 566, 691.8400, 0, 44.16, '1441_pcd_736 kg Sch 2 Bela 24.03.2022.jpg', NULL, 22, '24.03.2022 sch 2 Bela', '2022-05-09', 1),
(1442, 392, 566, 614.7600, 0, 39.24, '1442_pcd_830-176=654 kg Sch 1 Gecse 25.03.2022.jpg', NULL, 22, '25.03.2022 sch 1 Gecse', '2022-05-09', 1),
(1443, 392, 566, 558.3600, 0, 35.64, '1443_pcd_594 kg Sch 2 Bela 25.03.2022.jpg', NULL, 22, '25.03.2022 sch 2 Bela', '2022-05-09', 1),
(1444, 392, 566, 503.8400, 0, 32.16, '1444_pcd_536 kg Sch 1 Bela 28.03.2022.jpg', NULL, 22, '28.03.2022 sch 1 Bela', '2022-05-09', 1),
(1445, 392, 566, 376.0000, 0, 24.00, '1445_pcd_754-354=400 kg Sch 2 Gecse 28.03.2022.jpg', NULL, 22, '28.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1446, 392, 566, 413.6000, 0, 26.40, '1446_pcd_440 kg Sch 1 Bela 29.03.2022.jpg', NULL, 22, '29.03.2022 sch 1 Bela', '2022-05-09', 1),
(1447, 392, 566, 409.8400, 0, 26.16, '1447_pcd_436 kg Sch 2 Gecse 29.03.2022.jpg', NULL, 22, '29.03.2022 sch 2 Gecse', '2022-05-09', 1),
(1448, 392, 566, 351.5600, 0, 22.44, '1448_pcd_810-436=374 kg Sch 1 Bela 30.03.2022.jpg', NULL, 22, '30.03.2022 sch 1 Bela', '2022-05-09', 1),
(1449, 392, 561, 17222.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-09', 1),
(1450, 364, 566, 698.4200, 0, 44.58, NULL, NULL, 22, '', '2022-05-19', 1),
(1451, 364, 561, 1734.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1452, 375, 566, 280.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1453, 375, 561, 1038.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1454, 393, 566, 219.9600, 0, 14.04, '1454_pcd_234 kg 11.05.2022 sch 2 Totos.jpg', NULL, 22, '11.05.2022 sch 2 Pintiuta', '2022-05-19', 1),
(1455, 394, 999, 2130.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1456, 393, 566, 588.4400, 0, 37.56, '1456_pcd_626 kg 12.05.2022 sch 1 Frigyes.jpg', NULL, 22, '12.05.2022 sch 1 Frigyes', '2022-05-19', 1),
(1457, 394, 561, 277.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1458, 393, 566, 517.0000, 0, 33.00, '1458_pcd_780-230=550 kg 12.05.2022 sch 2 Pintiuta.jpg', NULL, 22, '12.05.2022 sch 2 Pintiuta', '2022-05-19', 1),
(1459, 395, 566, 34.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1460, 395, 561, 216.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1461, 393, 566, 464.3600, 0, 29.64, '1461_pcd_494 kg 12.05.2022 sch 3 Bela.jpg', NULL, 22, '12.05.2022 sch 3 Bela', '2022-05-19', 1),
(1462, 396, 999, 564.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1463, 396, 561, 42.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1464, 393, 566, 545.2000, 0, 34.80, '1464_pcd_580 kg 13.05.2022 sch 1 Frigyes.jpg', NULL, 22, '13.05.2022 sch 1 Frigyes', '2022-05-19', 1),
(1465, 393, 566, 697.4800, 0, 44.52, '1465_pcd_742 kg 13.05.2022 sch 2 Pintiuta.jpg', NULL, 22, '13.05.2022 sch 2 Pintiuta', '2022-05-19', 1),
(1466, 393, 566, 879.8400, 0, 56.16, '1466_pcd_936 kg 13.05.2022 sch 3 Bela.jpg', NULL, 22, '13.05.2022 sch 3 Bela', '2022-05-19', 1),
(1467, 393, 566, 667.4000, 0, 42.60, '1467_pcd_710 kg 14.05.2022 sch 1 Frigyes.jpg', NULL, 22, '14.05.2022 sch 1 Frigyes', '2022-05-19', 1),
(1468, 393, 566, 423.0000, 0, 27.00, '1468_pcd_450 kg 16.05.2022 sch 1 Pintiuta.jpg', NULL, 22, '16.05.2022 sch 1 Pintiuta', '2022-05-19', 1),
(1469, 393, 561, 10743.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1470, 397, 566, 584.6800, 0, 37.32, '1470_pcd_622 kg 19.04.2022 sch 2 Bela.jpg', NULL, 22, '19.04.2022 sch 2 Bela', '2022-05-19', 1),
(1471, 397, 566, 210.5600, 0, 13.44, '1471_pcd_846-622=224 kg 20.04.2022 sch 1 Gecse.jpg', NULL, 22, '20.04.2022 sch 1 Gecse', '2022-05-19', 1),
(1472, 397, 566, 218.0800, 0, 13.92, '1472_pcd_1078-846=232 kg 21.04.2022 sch 1 Gecse.jpg', NULL, 22, '21.04.2022 sch 1 Gecse', '2022-05-19', 1),
(1473, 397, 566, 344.0400, 0, 21.96, '1473_pcd_366 kg 21.04.2022 sch 2 Bela.jpg', NULL, 22, '21.04.2022 sch 2 Bela', '2022-05-19', 1),
(1474, 397, 566, 229.3600, 0, 14.64, '1474_pcd_244 kg 27.04.2022 sch 1 Bela.jpg', NULL, 22, '27.04.2022 sch 1 Bela', '2022-05-19', 1),
(1475, 397, 566, 682.4400, 0, 43.56, '1475_pcd_970-244=726 kg 27.04.2022 sch 2 Gecse.jpg', NULL, 22, '27.04.2022 sch 2 Gecse', '2022-05-19', 1),
(1476, 397, 566, 94.0000, 0, 6.00, '1476_pcd_100 kg 29.04.2022 sch 1 Bela.jpg', NULL, 22, '29.04.2022 sch 1 Bela', '2022-05-19', 1),
(1477, 397, 566, 146.6400, 0, 9.36, '1477_pcd_256-100=156 kg 02.05.2022 sch 1 Gecse.jpg', NULL, 22, '02.05.2022 sch 1 Gecse', '2022-05-19', 1),
(1478, 397, 566, 69.5600, 0, 4.44, '1478_pcd_330-256=74 kg 03.05.2022 sch 2 Bela.jpg', NULL, 22, '03.05.2022 sch 2 Bela', '2022-05-19', 1),
(1479, 397, 566, 407.9600, 0, 26.04, '1479_pcd_764-330=434 kg 05.05.2022 sch 1 Totos.jpg', NULL, 22, '05.05.2022 sch 1 Totos', '2022-05-19', 1),
(1480, 397, 566, 456.8400, 0, 29.16, '1480_pcd_486 kg 05.05.2022 sch 2 Bela.jpg', NULL, 22, '05.05.2022 sch 2 Bela', '2022-05-19', 1),
(1481, 397, 566, 221.8400, 0, 14.16, '1481_pcd_722-486=236 kg 06.05.2022 sch 1 Totos.jpg', NULL, 22, '06.05.2022 sch 1 Totos', '2022-05-19', 1),
(1482, 397, 566, 381.6400, 0, 24.36, '1482_pcd_1128-722=406 kg 06.05.2022 sch 2 Bela.jpg', NULL, 22, '06.05.2022 sch 2 Bela', '2022-05-19', 1),
(1483, 397, 566, 432.4000, 0, 27.60, '1483_pcd_460 kg 09.05.2022 sch 1 Bela.jpg', NULL, 22, '09.05.2022 sch 1 Bela', '2022-05-19', 1),
(1484, 397, 566, 253.8000, 0, 16.20, '1484_pcd_730-460=270 kg 09.05.2022 sch 2 Totos.jpg', NULL, 22, '09.05.2022 sch 2 Totos', '2022-05-19', 1),
(1485, 397, 566, 492.5600, 0, 31.44, '1485_pcd_524 kg 10.05.2022 sch 1 Bela.jpg', NULL, 22, '10.05.2022 sch 1 Bela', '2022-05-19', 1),
(1486, 397, 566, 212.4400, 0, 13.56, '1486_pcd_750-524=226 kg 10.05.2022 sch 2 Totos.jpg', NULL, 22, '10.05.2022 sch 2 Totos', '2022-05-19', 1),
(1487, 397, 561, 11870.0000, 0, 0.00, NULL, NULL, 22, '', '2022-05-19', 1),
(1488, 398, 566, 883.6000, 0, 56.40, '1488_pcd_940 kg 04.07.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 04.07.2022', '2022-07-08', 1),
(1489, 398, 566, 1184.4000, 0, 75.60, '1489_pcd_1260 kg 04.07.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 04.07.2022', '2022-07-08', 1),
(1490, 398, 566, 1312.2400, 0, 83.76, '1490_pcd_1396 kg 05.07.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 05.07.2022', '2022-07-08', 1),
(1491, 398, 566, 1118.6000, 0, 71.40, '1491_pcd_1190 kg 05.07.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 05.07.2022', '2022-07-08', 1),
(1492, 398, 566, 1094.1600, 0, 69.84, '1492_pcd_1164 kg 06.07.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 06.07.2022', '2022-07-08', 1),
(1493, 398, 566, 949.4000, 0, 60.60, '1493_pcd_1010 kg 06.07.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 06.07.2022', '2022-07-08', 1),
(1494, 398, 566, 1238.9200, 0, 79.08, '1494_pcd_1318 kg 07.07.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 07.07.2022', '2022-07-08', 1),
(1495, 398, 566, 1242.6801, 0, 79.32, '1495_pcd_1322 kg 07.07.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 07.07.2022', '2022-07-08', 1),
(1496, 398, 566, 458.7200, 0, 29.28, '1496_pcd_488 kg 08.07.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 08.07.2022', '2022-07-08', 1),
(1497, 398, 561, 12232.0000, 0, 0.00, NULL, NULL, 22, '', '2022-07-08', 1),
(1498, 399, 566, 909.9200, 0, 54.60, '1498_pcd_968 kg 08.07.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 08.07.2022', '2022-07-25', 1),
(1499, 399, 566, 1077.2400, 0, 68.76, '1499_pcd_1146 kg 11.07.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 11.07.2022', '2022-07-25', 1),
(1500, 399, 566, 894.8800, 0, 53.69, '1500_pcd_952 kg 11.07.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 11.07.2022', '2022-07-25', 1),
(1501, 399, 566, 1064.0800, 0, 67.92, '1501_pcd_1132 kg 12.07.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 12.07.2022', '2022-07-25', 1),
(1502, 399, 566, 454.9600, 0, 29.04, '1502_pcd_484 kg 13.07.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 13.07.2022', '2022-07-25', 1),
(1503, 399, 566, 539.5600, 0, 34.44, '1503_pcd_574 kg 13.07.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 13.07.2022', '2022-07-25', 1),
(1504, 399, 566, 913.6800, 0, 58.32, '1504_pcd_972 KG 14.07.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 14.07.2022', '2022-07-25', 1),
(1505, 399, 561, 8528.9102, 0, 0.00, NULL, NULL, 22, '', '2022-07-25', 1),
(1506, 400, 566, 157.9200, 0, 10.08, '1506_pcd_168 kg 01.08.2022 sch 2 Zsiga.jpg', NULL, 22, 'Sch 2 Zsiga 01.08.2022', '2022-08-10', 1),
(1507, 400, 566, 221.8400, 0, 14.16, '1507_pcd_236 kg 02.08.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 02.08.2022', '2022-08-10', 1),
(1508, 400, 566, 445.5600, 0, 28.44, '1508_pcd_474 kg 02.08.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 02.08.2022', '2022-08-10', 1),
(1509, 400, 566, 699.3600, 0, 44.64, '1509_pcd_744 kg 02.08.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 02.08.2022', '2022-08-10', 1),
(1510, 400, 566, 115.6200, 0, 7.38, '1510_pcd_360-236=123 kg 03.08.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 03.08.2022', '2022-08-10', 1),
(1511, 400, 566, 289.5200, 0, 18.48, '1511_pcd_308 kg 03.08.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 03.08.2022', '2022-08-10', 1),
(1512, 400, 566, 678.6800, 0, 43.32, '1512_pcd_722 kg 03.08.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 03.08.2022', '2022-08-10', 1),
(1513, 400, 566, 470.0000, 0, 30.00, '1513_pcd_500 kg 04.08.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 04.08.2022', '2022-08-10', 1),
(1514, 400, 566, 334.6400, 0, 21.36, '1514_pcd_524-168=356 kg 04.08.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 04.08.2022', '2022-08-10', 1),
(1515, 400, 566, 456.8400, 0, 29.16, '1515_pcd_658-172=486 kg 05.08.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 05.08.2022', '2022-08-10', 1),
(1516, 400, 566, 515.1200, 0, 32.88, '1516_pcd_548 kg 08.08.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 08.08.2022', '2022-08-10', 1),
(1517, 400, 566, 389.1600, 0, 24.84, '1517_pcd_414 kg 08.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 08.08.2022', '2022-08-10', 1),
(1518, 400, 566, 265.0800, 0, 16.92, '1518_pcd_282 kg 09.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 09.08.2022', '2022-08-10', 1),
(1519, 400, 561, 18599.0000, 0, 0.00, NULL, NULL, 22, '', '2022-08-10', 1),
(1520, 401, 566, 428.6400, 0, 27.36, '1520_pcd_456 kg 14.07.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 14.07.2022', '2022-08-11', 1),
(1521, 401, 566, 120.3200, 0, 7.68, '1521_pcd_128 kg 09.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 09.08.2022', '2022-08-11', 1),
(1522, 401, 566, 505.7200, 0, 32.28, '1522_pcd_538 kg 10.08.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 10.08.2022', '2022-08-11', 1),
(1523, 401, 561, 7156.0000, 0, 0.00, NULL, NULL, 22, '', '2022-08-11', 1),
(1524, 402, 566, 710.6400, 0, 45.36, '1524_pcd_756 kg 29.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 29.08.2022', '2022-08-31', 1),
(1525, 402, 566, 953.1600, 0, 60.84, '1525_pcd_1014 kg 30.08.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 30.08.2022', '2022-08-31', 1),
(1526, 402, 566, 855.4000, 0, 54.60, '1526_pcd_910 kg 30.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 30.08.2022', '2022-08-31', 1),
(1527, 402, 566, 642.9600, 0, 41.04, '1527_pcd_684 kg 31.08.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 31.08.2022', '2022-09-02', 1),
(1528, 402, 566, 614.7600, 0, 39.24, '1528_pcd_654 kg 31.08.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 31.08.2022', '2022-09-02', 1),
(1529, 402, 566, 821.5600, 0, 52.44, '1529_pcd_874 kg 01.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 01.09.2022', '2022-09-02', 1),
(1530, 402, 566, 909.9200, 0, 58.08, '1530_pcd_968 kg 01.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 01.09.2022', '2022-09-02', 1),
(1531, 402, 566, 759.5200, 0, 48.48, '1531_pcd_808 kg 02.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1Bela 02.09.2022', '2022-09-05', 1),
(1532, 402, 566, 439.9200, 0, 28.08, '1532_pcd_1276-808=468 kg 02.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 02.09.2022', '2022-09-05', 1),
(1533, 402, 561, 15804.0000, 0, 0.00, NULL, NULL, 22, '', '2022-09-05', 1),
(1534, 403, 566, 517.0000, 0, 33.00, '1534_pcd_550 kg 12.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bel 12.09.2022', '2022-10-12', 1),
(1535, 403, 566, 605.3600, 0, 38.64, '1535_pcd_644 kg 12.09.2022 sch 2 Gecse.jpg', NULL, 22, 'Sch 2 Gecse 12.09.2022', '2022-10-12', 1),
(1536, 403, 566, 481.2800, 0, 30.72, '1536_pcd_512 kg 13.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 13.09.2022', '2022-10-12', 1),
(1537, 403, 566, 518.8800, 0, 33.12, '1537_pcd_552 kg 13.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 13.09.2022', '2022-10-12', 1),
(1538, 403, 566, 556.4800, 0, 35.52, '1538_pcd_592 kg 14.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 14.09.2022', '2022-10-12', 1),
(1539, 403, 566, 646.7200, 0, 41.28, '1539_pcd_688 kg 15.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 15.09.2022', '2022-10-12', 1),
(1540, 403, 566, 735.0800, 0, 46.92, '1540_pcd_782 kg 15.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 15.09.2022', '2022-10-12', 1),
(1541, 403, 566, 306.4400, 0, 19.56, '1541_pcd_1014-688=326 kg sch 1 K.Arpi 16.09.2022.jpg', NULL, 22, 'Sch 1 Bela 16.09.2022', '2022-10-12', 1),
(1542, 403, 561, 15754.0000, 0, 0.00, NULL, NULL, 22, '', '2022-10-12', 1),
(1543, 404, 566, 1043.4000, 0, 66.60, '1543_pcd_1110 kg CUPRU FOLIE 23.09.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 23.09.2022', '2022-10-12', 1),
(1544, 404, 561, 484.0000, 0, 0.00, NULL, NULL, 22, '', '2022-10-12', 1),
(1545, 405, 566, 795.2400, 0, 50.76, '1545_pcd_846 kg 19.09.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 19.09.2022', '2022-10-12', 1),
(1546, 405, 566, 1002.0400, 0, 63.96, '1546_pcd_1066 kg 19.09.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 19.09.2022', '2022-10-12', 1),
(1547, 405, 566, 926.8400, 0, 59.16, '1547_pcd_986 kg 19.09.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 19.09.2022', '2022-10-12', 1),
(1548, 405, 566, 778.3200, 0, 49.68, '1548_pcd_828 kg 20.09.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 20.09.2022', '2022-10-12', 1),
(1549, 405, 566, 926.8400, 0, 59.16, '1549_pcd_986 kg 20.09.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 20.09.2022', '2022-10-12', 1),
(1550, 405, 566, 1197.5601, 0, 76.44, '1550_pcd_986+288=1274 kg 20.09.2022 sch 3 Zsiga.jpg', NULL, 22, 'Sch 3 Zsiga 20.09.2022', '2022-10-12', 1),
(1551, 405, 566, 554.6000, 0, 35.40, '1551_pcd_590 kg 21.09.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 21.09.2022', '2022-10-12', 1),
(1552, 405, 566, 962.5600, 0, 61.44, '1552_pcd_1024 kg 21.09.2022 sch 2 Bela.jpg', NULL, 22, 'Sch 2 Bela 21.09.2022', '2022-10-12', 1),
(1553, 405, 566, 259.4400, 0, 16.56, '1553_pcd_276 kg 22.09.2022 sch 1 Totos.jpg', NULL, 22, 'Sch 1 Totos 22.09.2022', '2022-10-12', 1),
(1554, 405, 561, 13910.0000, 0, 0.00, NULL, NULL, 22, '', '2022-10-12', 1),
(1555, 406, 566, 304.5600, 0, 19.44, '1555_pcd_324 kg 26.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 26.09.2022', '2022-10-12', 1),
(1556, 406, 566, 385.4000, 0, 24.60, '1556_pcd_410 kg 27.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 27.09.2022', '2022-10-12', 1),
(1557, 406, 566, 483.1600, 0, 30.84, '1557_pcd_514 kg 27.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 27.09.2022', '2022-10-12', 1),
(1558, 406, 566, 80.8400, 0, 5.16, '1558_pcd_86 kg 28.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 28.09.2022', '2022-10-12', 1),
(1559, 406, 566, 851.6400, 0, 54.36, '1559_pcd_906 kg 29.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 29.09.2022', '2022-10-12', 1),
(1560, 406, 566, 885.4800, 0, 56.52, '1560_pcd_942 kg 29.09.2022 sch 2 Totos.jpg', NULL, 22, 'Sch 2 Totos 29.09.2022', '2022-10-12', 1),
(1561, 406, 566, 468.1200, 0, 29.88, '1561_pcd_498 kg 30.09.2022 sch 1 Bela.jpg', NULL, 22, 'Sch 1 Bela 30.09.2022', '2022-10-12', 1),
(1562, 406, 566, 951.2800, 0, 60.72, '1562_pcd_1012 kg 30.09.2022 sch 2  Gecse.jpg', NULL, 22, 'Sch 2 Totos 30.09.2022', '2022-10-12', 1),
(1563, 406, 566, 342.1600, 0, 21.84, '1563_pcd_364 kg 03.10.2022 sch 1 K.Arpi.jpg', NULL, 22, 'Sch 1 K.Arpi 03.10.2022', '2022-10-12', 1),
(1564, 406, 566, 614.7600, 0, 39.24, '1564_pcd_654 kg 04.10.2022 sch 1 K.Arpi.jpg', NULL, 22, 'Sch 1 K.Arpi 04.10.2022', '2022-10-12', 1),
(1565, 406, 561, 15990.0000, 0, 0.00, NULL, NULL, 22, '', '2022-10-12', 1),
(1566, 408, 921, 175.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-08', 1),
(1567, 408, 920, 80.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-08', 1),
(1568, 408, 1009, 20.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-08', 1),
(1569, 408, 915, 25.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-08', 1),
(1570, 409, 929, 20.0000, 0, 0.00, '1570_pcd_Copper_1000KG.jpg', NULL, 41, '', '2022-11-08', 1),
(1571, 409, 922, 5.0000, 0, 0.00, '1571_pcd_Copper_1000KG.jpg', NULL, 41, '', '2022-11-08', 1),
(1572, 411, 927, 20.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-08', 1),
(1573, 412, 921, 11.0000, 0, 0.00, '1573_pcd_received_635882348220777.jpeg', NULL, 41, 'Small load of product', '2022-11-08', 1),
(1574, 412, 911, 5.0000, 0, 0.00, '1574_pcd_received_468834342017408.jpeg', NULL, 41, 'Not a lot of circuit boards', '2022-11-08', 1),
(1575, 412, 920, 15.0000, 0, 0.00, '1575_pcd_received_796905574931429.jpeg', NULL, 41, 'More metal in product', '2022-11-08', 1),
(1576, 412, 1008, 1.0000, 0, 0.00, '1576_pcd_received_537608714392448.jpeg', NULL, 41, 'Minimum silicone  ', '2022-11-09', 1),
(1577, 412, 1014, 2.0000, 0, 0.00, '1577_pcd_received_637427161264896.jpeg', NULL, 41, 'light weight wires', '2022-11-09', 1),
(1578, 412, 922, 4.0000, 0, 0.00, '1578_pcd_P_20221109_062957.jpg', NULL, 41, '', '2022-11-09', 1),
(1580, 412, 929, 3.0000, 0, 0.00, '1580_pcd_WhatsApp Image 2022-11-07 at 7.37.43 AM.jpeg', NULL, 41, '', '2022-11-09', 1),
(1587, 415, 357, 100.0000, 0, 0.00, '1587_pcd_72889.png', NULL, 42, '', '2022-11-17', 1),
(1588, 416, 922, 11124.7998, 15, 0.00, '1588_pcd_Green_Fiber.jpg', NULL, 41, 'More Fiber', '2022-11-30', 1),
(1589, 416, 928, 1815.2000, 2, 0.00, '1589_pcd_copper.jpeg', NULL, 41, '', '2022-11-30', 1),
(1590, 416, 909, 966.0000, 0, 0.00, NULL, NULL, 41, '', '2022-11-30', 1),
(1591, 417, 566, 695.6000, 0, 44.40, NULL, NULL, 36, 'Sch 1 Totos 14.11.2022', '2023-01-05', 1),
(1592, 417, 566, 676.8000, 0, 43.20, NULL, NULL, 36, 'Sch 2 Zsiga 14.11.2022', '2023-01-05', 1),
(1593, 417, 566, 310.2000, 0, 19.80, NULL, NULL, 36, 'Sch 1 Totos 15.11.2022', '2023-01-05', 1),
(1594, 417, 566, 339.3400, 0, 21.66, NULL, NULL, 36, 'Sch 2 Zsiga 15.11.2022', '2023-01-05', 1),
(1595, 417, 566, 372.2400, 0, 23.76, NULL, NULL, 36, 'Sch 1 Totos 16.11.2022', '2023-01-05', 1),
(1596, 417, 566, 424.8800, 0, 27.12, NULL, NULL, 36, 'Sch 2 Zsiga 16.11.2022', '2023-01-05', 1),
(1597, 417, 566, 293.2800, 0, 18.72, NULL, NULL, 36, 'Sch 1 Zsiga 12.12.2022', '2023-01-05', 1),
(1598, 417, 566, 247.2200, 0, 14.83, NULL, NULL, 36, 'Sch 2 Totos 12.12.2022', '2023-01-05', 1),
(1599, 417, 566, 340.2800, 0, 21.72, NULL, NULL, 36, 'Sch 1 Zsiga 13.12.2022', '2023-01-05', 1),
(1600, 417, 566, 377.8800, 0, 24.12, NULL, NULL, 36, 'Sch 2 Totos 13.12.2022', '2023-01-05', 1),
(1601, 417, 566, 347.8000, 0, 22.20, NULL, NULL, 36, 'Sch 1 Zsiga 14.12.2022', '2023-01-05', 1),
(1602, 417, 566, 351.5600, 0, 22.44, NULL, NULL, 36, 'Sch 2 Totos  14.12.2022', '2023-01-05', 1),
(1603, 417, 566, 88.3600, 0, 5.64, NULL, NULL, 36, 'Sch 1 Totos 15.12.2022', '2023-01-05', 1),
(1604, 417, 561, 15057.9502, 0, 0.00, NULL, NULL, 36, '', '2023-01-05', 1),
(1605, 418, 566, 988.8800, 0, 63.12, NULL, NULL, 36, 'Sch 2 Zsiga 11.11.2022', '2023-01-05', 1),
(1606, 418, 566, 1814.2000, 0, 115.80, NULL, NULL, 36, 'Sch 2 Zsiga 12.11.2022', '2023-01-05', 1),
(1607, 418, 566, 1443.8400, 0, 92.16, NULL, NULL, 36, 'Sch 1 Zsiga 13.11.2022', '2023-01-05', 1),
(1608, 418, 566, 1075.3600, 0, 68.64, NULL, NULL, 36, 'Sch 2 Totos 21.11.2022', '2023-01-05', 1),
(1609, 418, 566, 706.8800, 0, 45.12, NULL, NULL, 36, 'Sch 1 Zsiga 22.11.2022', '2023-01-05', 1),
(1610, 418, 566, 567.7600, 0, 36.24, NULL, NULL, 36, 'Sch 2 Totos 22.11.2022', '2023-01-05', 1),
(1611, 418, 566, 733.2000, 0, 46.80, NULL, NULL, 36, 'Sch 1 Totos 23.11.2022', '2023-01-05', 1),
(1612, 418, 566, 1101.6801, 0, 70.32, NULL, NULL, 36, 'Sch 2 Zsiga 23.11.2022', '2023-01-05', 1),
(1613, 418, 561, 14510.0000, 0, 0.00, NULL, NULL, 36, '', '2023-01-05', 1),
(1614, 419, 566, 342.1600, 0, 21.84, NULL, NULL, 36, 'Sch 1 Totos 10.01.2023', '2023-01-19', 1),
(1615, 419, 566, 248.0000, 0, 0.00, NULL, NULL, 36, 'Sch 1 Totos 11.01.2023', '2023-01-19', 1),
(1616, 419, 566, 250.0400, 0, 15.96, NULL, NULL, 36, 'Sch 1 Totoa 12.01.2023', '2023-01-19', 1),
(1617, 419, 566, 101.5200, 0, 6.48, NULL, NULL, 36, 'Sch 1 Totos 13.01.2023', '2023-01-19', 1),
(1618, 419, 566, 327.1200, 0, 20.88, NULL, NULL, 36, 'Sch 1 Totos 16.01.2023', '2023-01-19', 1),
(1619, 419, 566, 82.7200, 0, 5.28, NULL, NULL, 36, 'Sch 1 Totos 17.01.2023', '2023-01-19', 1),
(1620, 419, 561, 9865.0000, 0, 0.00, NULL, NULL, 36, '', '2023-01-19', 1),
(1621, 420, 1007, 8.0000, 0, 0.00, '1621_pcd_ABS_Plastic_2045KG.jpeg', NULL, 41, '', '2023-02-16', 1),
(1622, 420, 905, 26.0000, 0, 0.00, '1622_pcd_Circuit Boards.jpg', NULL, 41, '', '2023-02-16', 1),
(1625, 420, 920, 83.0100, 0, 0.00, '1625_pcd_Metal.jpg', NULL, 41, '', '2023-02-16', 1),
(1626, 420, 1014, 4.0000, 0, 0.00, '1626_pcd_received_637427161264896.jpeg', NULL, 41, '', '2023-02-16', 1),
(1627, 420, 922, 20.4100, 0, 0.00, '1627_pcd_Green_Fiber.jpg', NULL, 41, '', '2023-02-16', 1),
(1628, 420, 929, 5.5800, 0, 0.00, '1628_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1629, 421, 922, 20.8000, 0, 0.00, '1629_pcd_Green_Fiber.jpg', NULL, 41, '', '2023-02-16', 1),
(1630, 421, 929, 5.2000, 0, 0.00, '1630_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1631, 422, 929, 4.0000, 0, 0.00, '1631_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1632, 423, 975, 14.7800, 0, 0.00, '1632_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1633, 424, 922, 16.0000, 0, 0.00, '1633_pcd_Green_Fiber.jpg', NULL, 41, '', '2023-02-16', 1),
(1634, 424, 929, 4.0000, 0, 0.00, '1634_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1635, 425, 1023, 6.0000, 0, 0.00, NULL, NULL, 41, '', '2023-02-16', 1),
(1636, 425, 929, 6.0000, 0, 0.00, '1636_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1637, 426, 917, 13.2000, 0, 0.00, '1637_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1638, 427, 929, 6.0000, 0, 0.00, '1638_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1639, 413, 922, 4.0000, 0, 0.00, '1639_pcd_Green_Fiber.jpg', NULL, 41, '', '2023-02-16', 1),
(1640, 413, 929, 1.0000, 0, 0.00, '1640_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1641, 428, 1023, 1.6000, 0, 0.00, '1641_pcd_Wire_Cables.jpg', NULL, 41, '', '2023-02-16', 1),
(1642, 428, 929, 0.4000, 0, 0.00, '1642_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1643, 429, 917, 4.4000, 0, 0.00, '1643_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1644, 430, 929, 1.6000, 0, 0.00, '1644_pcd_Copper sample 5.jpeg', NULL, 41, '', '2023-02-16', 1),
(1645, 432, 566, 4819.3799, 0, 307.62, '1645_pcd_cupru folia din 10.000 kg 11.07.2023.jpg', NULL, 36, '', '2023-07-11', 1),
(1646, 432, 1111, 4873.0000, 0, 0.00, '1646_pcd_graphite powder.jpg', NULL, 36, '', '2023-07-11', 1),
(1647, 433, 566, 5536.0000, 0, 0.00, '1647_pcd_cupru folia din 10.000 kg 11.07.2023.jpg', NULL, 36, '', '2023-07-12', 1),
(1648, 433, 1111, 7086.0000, 0, 0.00, '1648_pcd_graphite powder.jpg', NULL, 36, '', '2023-07-12', 1);

-- --------------------------------------------------------

--
-- Table structure for table `processcompletedetails`
--

CREATE TABLE `processcompletedetails` (
  `id` int(11) NOT NULL,
  `suporderdetailid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `processingid` int(11) DEFAULT NULL,
  `itemid` int(11) DEFAULT NULL,
  `quantity` float(13,2) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL,
  `completed` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processcompletedetails`
--

INSERT INTO `processcompletedetails` (`id`, `suporderdetailid`, `productid`, `processingid`, `itemid`, `quantity`, `baskets`, `image`, `userid`, `completed`, `status`) VALUES
(1, 1, 2, 13, 0, 0.00, 0, '', 0, 1, 1),
(2, 9, 13, 17, 0, 0.00, 0, '', 0, 1, 1),
(3, 7, 3, 17, 0, 0.00, 0, '', 0, 1, 1),
(4, 5, 4, 13, 0, 0.00, 0, '', 0, 1, 1),
(5, 2, 5, 13, 0, 0.00, 0, '', 0, 1, 1),
(6, 3, 10, 13, 0, 0.00, 0, '', 0, 1, 1),
(7, 4, 11, 13, 0, 0.00, 0, '', 0, 1, 1),
(8, 6, 9, 17, 0, 0.00, 0, '', 0, 1, 1),
(9, 8, 12, 17, 0, 0.00, 0, '', 0, 1, 1),
(10, 10, 7, 13, 0, 0.00, 0, '', 0, 1, 1),
(11, 24, 33, 19, 0, 0.00, 0, '', 0, 1, 1),
(12, 38, 33, 19, 0, 0.00, 0, '', 0, 1, 1),
(13, 42, 33, 19, 0, 0.00, 0, '', 0, 1, 1),
(17, 56, 17, 17, 0, 0.00, 0, '', 0, 1, 1),
(18, 55, 13, 17, 0, 0.00, 0, '', 0, 1, 1),
(19, 57, 3, 17, 0, 0.00, 0, '', 0, 1, 1),
(20, 58, 33, 19, 0, 0.00, 0, '', 0, 1, 1),
(21, 60, 15, 14, 0, 0.00, 0, '', 0, 1, 1),
(22, 62, 18, 13, 0, 0.00, 0, '', 0, 1, 1),
(23, 78, 44, 19, 0, 0.00, 0, '', 0, 1, 1),
(24, 81, 44, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(25, 81, 44, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(26, 82, 44, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(27, 77, 7, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(28, 85, 33, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(29, 83, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(30, 86, 3, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(31, 87, 5, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(32, 90, 1, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(33, 91, 7, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(34, 92, 8, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(35, 94, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(36, 95, 18, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(37, 96, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(38, 98, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(39, 102, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(40, 105, 7, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(41, 106, 8, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(42, 107, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(43, 108, 34, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(44, 111, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(45, 112, 8, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(46, 113, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(47, 135, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(48, 136, 20, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(49, 140, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(50, 143, 3, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(51, 128, 34, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(52, 147, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(53, 129, 18, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(54, 130, 46, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(55, 151, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(56, 153, 4, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(57, 154, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(58, 132, 7, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(59, 133, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(60, 134, 14, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(61, 150, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(62, 158, 52, 15, NULL, NULL, NULL, NULL, NULL, 1, 1),
(63, 131, 22, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(64, 163, 25, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(65, 164, 1, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(66, 165, 16, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(67, 168, 44, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(68, 169, 44, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(69, 170, 24, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(70, 179, 60, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(71, 180, 14, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(72, 186, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(73, 201, 71, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(74, 187, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(75, 204, 69, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(76, 205, 52, 15, NULL, NULL, NULL, NULL, NULL, 1, 1),
(77, 209, 7, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(78, 212, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(79, 157, 60, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(80, 150, 76, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(81, 225, 42, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(82, 226, 17, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(83, 227, 79, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(84, 227, 79, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(85, 228, 25, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(86, 229, 80, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(87, 230, 77, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(88, 231, 60, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(89, 232, 13, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(90, 234, 26, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(91, 233, 78, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(92, 235, 48, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(93, 237, 81, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(94, 238, 4, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(95, 239, 10, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(96, 240, 8, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(97, 2, 86, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(98, 3, 93, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(99, 8, 18, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(100, 10, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(101, 11, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(102, 14, 52, 15, NULL, NULL, NULL, NULL, NULL, 1, 1),
(103, 19, 104, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(104, 18, 84, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(105, 41, 86, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(106, 43, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(107, 42, 89, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(108, 44, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(109, 45, 18, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(110, 52, 86, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(111, 53, 96, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(112, 54, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(113, 55, 18, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(114, 56, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(115, 38, 91, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(116, 62, 15, 14, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(117, 26, 91, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(118, 64, 84, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(119, 65, 84, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(120, 27, 86, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(121, 34, 84, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(122, 29, 101, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(123, 66, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(124, 30, 84, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(125, 70, 394, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(126, 72, 396, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(127, 71, 395, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(128, 75, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(129, 79, 358, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(130, 82, 40, 29, NULL, NULL, NULL, NULL, NULL, 1, 1),
(131, 73, 14, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(132, 74, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(133, 86, 54, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(134, 87, 428, 30, NULL, NULL, NULL, NULL, NULL, 1, 1),
(135, 92, 401, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(136, 91, 395, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(137, 97, 394, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(138, 98, 15, 14, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(139, 96, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(140, 100, 410, 14, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(141, 101, 374, 29, NULL, NULL, NULL, NULL, NULL, 1, 1),
(142, 106, 515, 69, NULL, NULL, NULL, NULL, NULL, 1, 1),
(143, 109, 499, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(144, 110, 395, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(145, 111, 362, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(146, 112, 418, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(147, 113, 15, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(148, 114, 442, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(149, 115, 33, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(150, 117, 71, 27, NULL, NULL, NULL, NULL, NULL, 1, 1),
(151, 120, 54, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(152, 121, 40, 29, NULL, NULL, NULL, NULL, NULL, 1, 1),
(153, 122, 125, 30, NULL, NULL, NULL, NULL, NULL, 1, 1),
(154, 124, 124, 31, NULL, NULL, NULL, NULL, NULL, 1, 1),
(155, 126, 472, 160, NULL, NULL, NULL, NULL, NULL, 1, 1),
(156, 136, 515, 69, NULL, NULL, NULL, NULL, NULL, 1, 1),
(157, 137, 441, 14, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(158, 138, 500, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(159, 139, 472, 160, NULL, NULL, NULL, NULL, NULL, 1, 1),
(160, 141, 464, 161, NULL, NULL, NULL, NULL, NULL, 1, 1),
(161, 140, 516, 163, NULL, NULL, NULL, NULL, NULL, 1, 1),
(162, 143, 443, 164, NULL, NULL, NULL, NULL, NULL, 1, 1),
(163, 145, 518, 154, NULL, NULL, NULL, NULL, NULL, 1, 1),
(164, 155, 554, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(165, 156, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(166, 160, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(167, 166, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(168, 159, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(169, 169, 581, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(170, 170, 545, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(171, 171, 546, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(172, 172, 554, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(173, 173, 568, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(174, 185, 708, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(175, 187, 472, 160, NULL, NULL, NULL, NULL, NULL, 1, 1),
(176, 188, 516, 163, NULL, NULL, NULL, NULL, NULL, 1, 1),
(177, 190, 443, 164, NULL, NULL, NULL, NULL, NULL, 1, 1),
(178, 192, 518, 154, NULL, NULL, NULL, NULL, NULL, 1, 1),
(179, 193, 519, 167, NULL, NULL, NULL, NULL, NULL, 1, 1),
(180, 186, 709, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(181, 71, 515, 69, NULL, NULL, NULL, NULL, NULL, 1, 1),
(182, 196, 708, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(183, 197, 472, 160, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(184, 195, 515, 69, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(185, 198, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(186, 199, 708, 151, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(187, 208, 601, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(188, 225, 412, 118, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(189, 97, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(190, 227, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(191, 246, 395, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(192, 248, 367, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(193, 249, 358, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(194, 251, 374, 29, NULL, NULL, NULL, NULL, NULL, 1, 1),
(195, 252, 359, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(196, 260, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(197, 237, 362, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(198, 261, 426, 118, NULL, NULL, NULL, NULL, NULL, 1, 1),
(199, 262, 362, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(200, 266, 358, 14, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(201, 263, 394, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(202, 321, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(203, 318, 602, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(204, 320, 601, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(205, 319, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(206, 326, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(207, 269, 362, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(208, 374, 358, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(209, 376, 367, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(210, 377, 381, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(211, 380, 428, 30, NULL, NULL, NULL, NULL, NULL, 1, 1),
(212, 381, 427, 31, NULL, NULL, NULL, NULL, NULL, 1, 1),
(213, 446, 484, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(214, 447, 441, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(215, 449, 443, 164, NULL, NULL, NULL, NULL, NULL, 1, 1),
(216, 450, 442, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(217, 444, 485, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(218, 445, 483, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(219, 452, 485, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(220, 453, 543, 151, NULL, NULL, NULL, NULL, NULL, 1, 1),
(221, 454, 441, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(222, 461, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(223, 465, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(224, 473, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(225, 483, 362, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(226, 480, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(227, 464, 713, 118, NULL, NULL, NULL, NULL, NULL, 1, 1),
(228, 487, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(229, 491, 599, 169, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(230, 490, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(231, 492, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(232, 498, 515, 69, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(233, 479, 624, 173, NULL, NULL, NULL, NULL, NULL, 1, 1),
(234, 488, 549, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(235, 516, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(236, 520, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(237, 529, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(238, 524, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(239, 533, 822, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(240, 534, 756, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(241, 531, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(242, 556, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(243, 571, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(244, 361, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(245, 577, 843, 217, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(246, 577, 843, 217, NULL, NULL, NULL, NULL, NULL, 1, 1),
(247, 578, 844, 213, NULL, NULL, NULL, NULL, NULL, 1, 1),
(248, 574, 841, 172, NULL, NULL, NULL, NULL, NULL, 1, 1),
(249, 362, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(250, 586, 843, 218, NULL, NULL, NULL, NULL, NULL, 1, 1),
(251, 587, 853, 207, NULL, NULL, NULL, NULL, NULL, 1, 1),
(252, 588, 844, 213, NULL, NULL, NULL, NULL, NULL, 1, 1),
(253, 598, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(254, 612, 401, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(255, 613, 358, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(256, 614, 405, 112, NULL, NULL, NULL, NULL, NULL, 1, 1),
(257, 617, 412, 118, NULL, NULL, NULL, NULL, NULL, 1, 1),
(258, 619, 374, 29, NULL, NULL, NULL, NULL, NULL, 1, 1),
(259, 601, 573, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(260, 605, 582, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(261, 599, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(262, 611, 893, 172, NULL, NULL, NULL, NULL, NULL, 1, 1),
(263, 609, 889, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(264, 624, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(265, 630, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(266, 633, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(267, 638, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(268, 642, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(269, 639, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(270, 647, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(271, 648, 600, 174, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(272, 648, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(273, 385, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(274, 650, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(275, 659, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(276, 661, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(277, 668, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(278, 669, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(279, 674, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(280, 677, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(281, 678, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(282, 681, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(283, 714, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(284, 709, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(285, 726, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(286, 727, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(287, 735, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(288, 733, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(289, 742, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(290, 743, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(291, 744, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(292, 751, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(293, 757, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(294, 758, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(295, 759, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(296, 772, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(297, 767, 549, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(298, 768, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(299, 454, 599, 169, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(300, 777, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(301, 780, 593, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(302, 782, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(303, 787, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(304, 788, 429, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(305, 789, 869, 116, NULL, NULL, NULL, NULL, NULL, 1, 1),
(306, 790, 882, 116, NULL, NULL, NULL, NULL, NULL, 1, 1),
(307, 791, 899, 116, NULL, NULL, NULL, NULL, NULL, 1, 1),
(308, 792, 898, 116, NULL, NULL, NULL, NULL, NULL, 1, 1),
(309, 795, 357, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(310, 797, 901, 118, NULL, NULL, NULL, NULL, NULL, 1, 1),
(311, 800, 381, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(312, 781, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(313, 824, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(314, 823, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(315, 822, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(316, 821, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(317, 820, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(318, 819, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(319, 816, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(320, 600, 571, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(321, 830, 549, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(322, 840, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(323, 841, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(324, 839, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(325, 865, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(326, 851, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(327, 868, 961, 225, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(328, 878, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(329, 885, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(330, 884, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(331, 883, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(332, 882, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(333, 880, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(334, 879, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(335, 875, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(336, 881, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(337, 886, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(338, 874, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(342, 903, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(343, 906, 961, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(344, 907, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(345, 567, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(346, 904, 961, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(347, 905, 962, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(348, 914, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(349, 915, 962, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(350, 909, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(351, 919, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(352, 920, 961, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(353, 921, 916, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(354, 928, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(355, 929, 961, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(356, 930, 962, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(357, 931, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(358, 933, 960, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(359, 942, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(360, 944, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(361, 934, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(362, 943, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(363, 949, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(364, 932, 593, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(365, 947, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(366, 952, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(367, 935, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(368, 951, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(369, 953, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(370, 965, 995, 172, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(371, 966, 601, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(372, 957, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(373, 964, 897, 172, NULL, NULL, NULL, NULL, NULL, 1, 1),
(374, 968, 897, 172, NULL, NULL, NULL, NULL, NULL, 1, 1),
(375, 977, 1004, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(376, 991, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(377, 990, 1012, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(378, 997, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(379, 988, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(380, 989, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(381, 969, 992, 223, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(382, 959, 973, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(383, 969, 992, 237, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(384, 1013, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(385, 1017, 1010, 224, NULL, NULL, NULL, NULL, NULL, 1, 1),
(386, 1018, 1018, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(387, 1019, 1009, 219, NULL, NULL, NULL, NULL, NULL, 1, 1),
(388, 1021, 1007, 225, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(389, 958, 994, 235, NULL, NULL, NULL, NULL, NULL, 1, 1),
(390, 1025, 1018, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(391, 1026, 918, 237, NULL, NULL, NULL, NULL, NULL, 1, 1),
(392, 1012, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(393, 1036, 546, 13, NULL, NULL, NULL, NULL, NULL, 1, 1),
(394, 978, 1001, 236, NULL, NULL, NULL, NULL, NULL, 1, 1),
(395, 993, 1004, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(396, 994, 1001, 236, NULL, NULL, NULL, NULL, NULL, 1, 1),
(397, 1035, 545, 14, NULL, NULL, NULL, NULL, NULL, 1, 1),
(398, 1052, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(399, 1064, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(400, 1060, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(401, 1066, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(402, 1073, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(403, 1070, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(404, 1075, 1012, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(405, 1069, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(406, 1080, 599, 169, NULL, NULL, NULL, NULL, NULL, 1, 1),
(407, 1090, 1021, 223, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(408, 1090, 1021, 223, NULL, NULL, NULL, NULL, NULL, 1, 1),
(409, 1098, 915, 19, NULL, NULL, NULL, NULL, NULL, 1, 1),
(410, 1098, 915, 19, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(411, 1099, 929, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(412, 1091, 1022, 223, NULL, NULL, NULL, NULL, NULL, 1, 1),
(413, 1103, 911, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(414, 1093, 1022, 223, NULL, NULL, NULL, NULL, NULL, 1, 1),
(415, 1081, 429, 17, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(416, 1087, 961, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(417, 1122, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(418, 1124, 1012, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(419, 1125, 600, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(420, 1113, 1022, 223, NULL, NULL, NULL, NULL, NULL, 1, 1),
(421, 1131, 905, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(422, 1133, 1014, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(423, 1135, 929, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(424, 1117, 911, 17, NULL, NULL, NULL, NULL, NULL, 1, 1),
(425, 1119, 1014, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(426, 1121, 929, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(427, 1137, 1023, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(428, 1106, 1014, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(429, 1108, 929, 26, NULL, NULL, NULL, NULL, NULL, 1, 1),
(430, 1139, 1023, 225, NULL, NULL, NULL, NULL, NULL, 1, 1),
(431, 1144, 841, 172, NULL, NULL, NULL, NULL, NULL, NULL, 1),
(432, 1143, 1012, 174, NULL, NULL, NULL, NULL, NULL, 1, 1),
(433, 1145, 1012, 174, NULL, NULL, NULL, NULL, NULL, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `processdetail`
--

CREATE TABLE `processdetail` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `processid` int(11) DEFAULT NULL,
  `processingid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processdetail`
--

INSERT INTO `processdetail` (`id`, `userid`, `processid`, `processingid`, `status`) VALUES
(16, 1, 4, 11, 1),
(17, 1, 4, 2, 1),
(18, 1, 4, 4, 1),
(19, 1, 4, 5, 1),
(20, 1, 4, 7, 1),
(21, 1, 5, 12, 1),
(23, 1, 5, 3, 1),
(24, 1, 5, 11, 1),
(25, 1, 5, 2, 1),
(26, 1, 5, 4, 1),
(27, 1, 5, 5, 1),
(28, 1, 5, 7, 1),
(29, 1, 1, 13, 1),
(30, 1, 1, 16, 1),
(31, 1, 2, 14, 1),
(32, 1, 3, 17, 1),
(33, 1, 3, 18, 1),
(340, 23, 4, 11, 1),
(341, 23, 4, 2, 1),
(342, 23, 4, 4, 1),
(343, 23, 4, 5, 1),
(344, 23, 4, 7, 1),
(345, 23, 5, 12, 1),
(346, 23, 5, 3, 1),
(347, 23, 5, 11, 1),
(348, 23, 5, 2, 1),
(349, 23, 5, 4, 1),
(350, 23, 5, 5, 1),
(351, 23, 5, 7, 1),
(352, 23, 1, 13, 1),
(353, 23, 1, 16, 1),
(354, 23, 2, 14, 1),
(355, 23, 3, 17, 1),
(356, 23, 3, 18, 1),
(357, 4, 4, 11, 1),
(358, 4, 4, 2, 1),
(359, 4, 4, 4, 1),
(360, 4, 4, 5, 1),
(361, 4, 4, 7, 1),
(362, 4, 5, 12, 1),
(363, 4, 5, 3, 1),
(364, 4, 5, 11, 1),
(365, 4, 5, 2, 1),
(366, 4, 5, 4, 1),
(367, 4, 5, 5, 1),
(368, 4, 5, 7, 1),
(369, 4, 1, 13, 1),
(370, 4, 1, 16, 1),
(371, 4, 2, 14, 1),
(372, 4, 3, 17, 1),
(373, 4, 3, 18, 1),
(374, 5, 4, 11, 1),
(375, 5, 4, 2, 1),
(376, 5, 4, 4, 1),
(377, 5, 4, 5, 1),
(378, 5, 4, 7, 1),
(379, 5, 5, 12, 1),
(380, 5, 5, 3, 1),
(381, 5, 5, 11, 1),
(382, 5, 5, 2, 1),
(383, 5, 5, 4, 1),
(384, 5, 5, 5, 1),
(385, 5, 5, 7, 1),
(386, 5, 1, 13, 1),
(387, 5, 1, 16, 1),
(388, 5, 2, 14, 1),
(389, 5, 3, 17, 1),
(390, 5, 3, 18, 1),
(391, 6, 4, 11, 1),
(392, 6, 4, 2, 1),
(393, 6, 4, 4, 1),
(394, 6, 4, 5, 1),
(395, 6, 4, 7, 1),
(396, 6, 5, 12, 1),
(397, 6, 5, 3, 1),
(398, 6, 5, 11, 1),
(399, 6, 5, 2, 1),
(400, 6, 5, 4, 1),
(401, 6, 5, 5, 1),
(402, 6, 5, 7, 1),
(403, 6, 1, 13, 1),
(404, 6, 1, 16, 1),
(405, 6, 2, 14, 1),
(406, 6, 3, 17, 1),
(407, 6, 3, 18, 1),
(408, 7, 4, 11, 1),
(409, 7, 4, 2, 1),
(410, 7, 4, 4, 1),
(411, 7, 4, 5, 1),
(412, 7, 4, 7, 1),
(413, 7, 5, 12, 1),
(414, 7, 5, 3, 1),
(415, 7, 5, 11, 1),
(416, 7, 5, 2, 1),
(417, 7, 5, 4, 1),
(418, 7, 5, 5, 1),
(419, 7, 5, 7, 1),
(420, 7, 1, 13, 1),
(421, 7, 1, 16, 1),
(422, 7, 2, 14, 1),
(423, 7, 3, 17, 1),
(424, 7, 3, 18, 1),
(425, 8, 4, 11, 1),
(426, 8, 4, 2, 1),
(427, 8, 4, 4, 1),
(428, 8, 4, 5, 1),
(429, 8, 4, 7, 1),
(430, 8, 5, 12, 1),
(431, 8, 5, 3, 1),
(432, 8, 5, 11, 1),
(433, 8, 5, 2, 1),
(434, 8, 5, 4, 1),
(435, 8, 5, 5, 1),
(436, 8, 5, 7, 1),
(437, 8, 1, 13, 1),
(438, 8, 1, 16, 1),
(439, 8, 2, 14, 1),
(440, 8, 3, 17, 1),
(441, 8, 3, 18, 1),
(442, 10, 4, 11, 1),
(443, 10, 4, 2, 1),
(444, 10, 4, 4, 1),
(445, 10, 4, 5, 1),
(446, 10, 4, 7, 1),
(447, 10, 5, 12, 1),
(448, 10, 5, 3, 1),
(449, 10, 5, 11, 1),
(450, 10, 5, 2, 1),
(451, 10, 5, 4, 1),
(452, 10, 5, 5, 1),
(453, 10, 5, 7, 1),
(454, 10, 1, 13, 1),
(455, 10, 1, 16, 1),
(456, 10, 2, 14, 1),
(457, 10, 3, 17, 1),
(458, 10, 3, 18, 1),
(459, 11, 4, 11, 1),
(460, 11, 4, 2, 1),
(461, 11, 4, 4, 1),
(462, 11, 4, 5, 1),
(463, 11, 4, 7, 1),
(464, 11, 5, 12, 1),
(465, 11, 5, 3, 1),
(466, 11, 5, 11, 1),
(467, 11, 5, 2, 1),
(468, 11, 5, 4, 1),
(469, 11, 5, 5, 1),
(470, 11, 5, 7, 1),
(471, 11, 1, 13, 1),
(472, 11, 1, 16, 1),
(473, 11, 2, 14, 1),
(474, 11, 3, 17, 1),
(475, 11, 3, 18, 1),
(476, 12, 4, 11, 1),
(477, 12, 4, 2, 1),
(478, 12, 4, 4, 1),
(479, 12, 4, 5, 1),
(480, 12, 4, 7, 1),
(481, 12, 5, 12, 1),
(482, 12, 5, 3, 1),
(483, 12, 5, 11, 1),
(484, 12, 5, 2, 1),
(485, 12, 5, 4, 1),
(486, 12, 5, 5, 1),
(487, 12, 5, 7, 1),
(488, 12, 1, 13, 1),
(489, 12, 1, 16, 1),
(490, 12, 2, 14, 1),
(491, 12, 3, 17, 1),
(492, 12, 3, 18, 1),
(493, 14, 4, 11, 1),
(494, 14, 4, 2, 1),
(495, 14, 4, 4, 1),
(496, 14, 4, 5, 1),
(497, 14, 4, 7, 1),
(498, 14, 5, 12, 1),
(499, 14, 5, 3, 1),
(500, 14, 5, 11, 1),
(501, 14, 5, 2, 1),
(502, 14, 5, 4, 1),
(503, 14, 5, 5, 1),
(504, 14, 5, 7, 1),
(505, 14, 1, 13, 1),
(506, 14, 1, 16, 1),
(507, 14, 2, 14, 1),
(508, 14, 3, 17, 1),
(509, 14, 3, 18, 1),
(510, 15, 4, 11, 1),
(511, 15, 4, 2, 1),
(512, 15, 4, 4, 1),
(513, 15, 4, 5, 1),
(514, 15, 4, 7, 1),
(515, 15, 5, 12, 1),
(516, 15, 5, 3, 1),
(517, 15, 5, 11, 1),
(518, 15, 5, 2, 1),
(519, 15, 5, 4, 1),
(520, 15, 5, 5, 1),
(521, 15, 5, 7, 1),
(522, 15, 1, 13, 1),
(523, 15, 1, 16, 1),
(524, 15, 2, 14, 1),
(525, 15, 3, 17, 1),
(526, 15, 3, 18, 1),
(527, 16, 4, 11, 1),
(528, 16, 4, 2, 1),
(529, 16, 4, 4, 1),
(530, 16, 4, 5, 1),
(531, 16, 4, 7, 1),
(532, 16, 5, 12, 1),
(533, 16, 5, 3, 1),
(534, 16, 5, 11, 1),
(535, 16, 5, 2, 1),
(536, 16, 5, 4, 1),
(537, 16, 5, 5, 1),
(538, 16, 5, 7, 1),
(539, 16, 1, 13, 1),
(540, 16, 1, 16, 1),
(541, 16, 2, 14, 1),
(542, 16, 3, 17, 1),
(543, 16, 3, 18, 1);

-- --------------------------------------------------------

--
-- Table structure for table `processing`
--

CREATE TABLE `processing` (
  `id` int(11) NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `details` text DEFAULT NULL,
  `noofhours` float(13,2) DEFAULT NULL,
  `co2cost` float(13,2) NOT NULL,
  `image` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `youtube` varchar(500) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `userid` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `processing`
--

INSERT INTO `processing` (`id`, `name`, `details`, `noofhours`, `co2cost`, `image`, `youtube`, `status`, `userid`) VALUES
(13, 'Stripping Gold To Solution', '<p>\r\n	<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\\\"font-size:14px;\\\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\\\"font-size:14px;\\\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\\\"font-size:14px;\\\"><span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><span style=\\\"font-size:14px;\\\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><span style=\\\"font-size:14px;\\\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><span style=\\\"font-size:14px;\\\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><span style=\\\"font-size:14px;\\\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\\\"font-family:arial, helvetica, sans-serif;\\\"><span style=\\\"font-size:14px;\\\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\\\"font-size:14px;\\\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\\\"font-size:14px;\\\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 1),
(14, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 1),
(15, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 1),
(16, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\\\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\\\" style=\"\\\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\\\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 1),
(17, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 1),
(18, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 1),
(19, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 1),
(20, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 1),
(21, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 1),
(25, 'Gold / Platinum Refining', '<p>\r\n	<a href=\\\"https://www.ishor.com/simplicity-refining-system-instructions\\\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 1),
(26, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 1),
(27, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 1),
(28, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 1),
(29, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 1),
(30, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 1),
(31, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 1),
(64, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 4),
(65, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 4),
(66, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 4),
(67, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 4),
(68, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 4),
(69, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 4),
(70, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 4),
(71, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 4),
(72, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 4),
(73, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 4),
(74, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 4),
(75, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 4),
(76, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 4),
(77, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 4),
(78, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 4),
(79, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 4),
(80, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 5),
(81, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 5),
(82, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 5),
(83, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 5),
(84, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 5),
(85, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 5),
(86, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 5),
(87, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 5),
(88, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 5),
(89, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 5),
(90, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 5),
(91, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 5),
(92, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 5),
(93, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 5),
(94, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 5),
(95, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 5),
(96, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 6),
(97, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 6),
(98, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 6),
(99, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 6),
(100, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 6),
(101, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 6),
(102, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 6),
(103, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 6),
(104, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 6),
(105, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 6),
(106, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 6),
(107, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 6),
(108, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 6),
(109, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 6),
(110, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 6),
(111, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 6),
(112, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 7),
(113, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 7),
(114, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 7),
(115, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.00, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 7),
(116, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 7),
(117, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 7),
(118, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 7),
(119, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 7),
(121, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 7),
(122, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 7),
(123, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 7),
(124, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '124_procedure_Web-Pic-3-1-300x225.jpg', '', 1, 7),
(125, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 7);
INSERT INTO `processing` (`id`, `name`, `details`, `noofhours`, `co2cost`, `image`, `youtube`, `status`, `userid`) VALUES
(126, 'Electrolysis Copper From Mixed Anode', '<p style=\"margin: 0px 0px 1.5em; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: 1.5em; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; color: rgb(76, 76, 76); text-align: justify;\">\r\n	<strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">Materials (Figure 1)</strong></p>\r\n<ul style=\"margin: 0px 0px 20px 34.1979px; padding: 0px 0px 0px 1.2em; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(76, 76, 76);\">\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		<span class=\"image-caption-container image-caption-container-right\" style=\"margin: 15px 0px 15px 15px; padding: 10px; border: 1px solid rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font: inherit; display: inline-block; position: relative; border-radius: 10px; float: right; height: 224px; width: 300px;\"><img alt=\"\" class=\"caption newsimage caption-processed\" src=\"https://www.superfund.arizona.edu/sites/superfund.arizona.edu/files/copper_electrolysis_materials.jpg\" style=\"border: 0px; margin: 0px 0px 5px; padding: 0px; outline: 0px; vertical-align: bottom; font: inherit; width: 300px; height: 224px;\" title=\"Figure 1: Materials needed for copper electrolysis hands-on activity.\" /><span class=\"image-caption\" style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 0.8em; line-height: normal; font-family: inherit; text-align: center; color: rgb(68, 68, 68); display: block;\">Figure 1: Materials needed for copper electrolysis hands-on activity.</span></span>Copper sulfate electrolyte solution (200 g CuSO<sub style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: xx-small; line-height: inherit; font-family: inherit;\">4</sub>&middot; 5H<sub style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: xx-small; line-height: inherit; font-family: inherit;\">2</sub>O + 25.0 mL concentrated H<sub style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: xx-small; line-height: inherit; font-family: inherit;\">2</sub>SO<sub style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: xx-small; line-height: inherit; font-family: inherit;\">4</sub>&nbsp;solution in enough distilled or deionized water to make 1.0 L of solution)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Coin cleaning solution (1 tsp table salt dissolved in &frac14; cup vinegar)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Pre-1982 penny (contains 95% copper, versus only 2.5% copper post-1982)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Dime (any year)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		9V battery (use a new 9V battery for each experiment)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		18-gauge copper wire</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Four alligator clips (2 each of red and black)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Wire stripper and needle-nosed pliers</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Two 250-mL beakers</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Cardboard circle (approx. 15 cm diameter)</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Precision scale (optional)</li>\r\n</ul>\r\n<p style=\"margin: 0px 0px 1.5em; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: 1.5em; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; color: rgb(76, 76, 76); text-align: justify;\">\r\n	<strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">Safety Precautions</strong><br />\r\n	Gloves and goggles should be worn throughout this experiment. Sulfuric acid can cause burns so please handle with care. Although the power source is relatively weak, the electrodes and connecting wires should not be handled when the cell is operating. The 9V battery can become quite hot during use; use caution when handling it.</p>\r\n<p style=\"margin: 0px 0px 1.5em; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: 1.5em; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; color: rgb(76, 76, 76); text-align: justify;\">\r\n	<strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">Protocol</strong><br />\r\n	(Download the Copper Electrolysis Hands-On Instructional Guide (PDF) and/or Presentation (PowerPoint) for a complete set of images demonstrating materials/set-up.)</p>\r\n<ol style=\"margin: 0px 0px 20px 34.1979px; padding: 0px 0px 0px 1.2em; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: inherit; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(76, 76, 76);\">\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Clean the penny with salt/vinegar mixture; rinse with water and dry (dime does not need to be cleaned).</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		<span class=\"image-caption-container image-caption-container-right\" style=\"margin: 15px 0px 15px 15px; padding: 10px; border: 1px solid rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font: inherit; display: inline-block; position: relative; border-radius: 10px; float: right; height: 295px; width: 300px;\"><img alt=\"\" class=\"caption newsimage caption-processed\" src=\"https://www.superfund.arizona.edu/sites/superfund.arizona.edu/files/copper_electrolysis_coin_assemblies.jpg\" style=\"border: 0px; margin: 0px 0px 5px; padding: 0px; outline: 0px; vertical-align: bottom; font: inherit; width: 300px; height: 295px;\" title=\"Figure 2. Complete wire assembly: red and black wires pushed through cardboard with alligator clips attached and coins inserted.\" /><span class=\"image-caption\" style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 0.8em; line-height: normal; font-family: inherit; text-align: center; color: rgb(68, 68, 68); display: block;\">Figure 2. Complete wire assembly: red and black wires pushed through cardboard with alligator clips attached and coins inserted.</span></span>Prepare the wire assembly:\r\n		<ol style=\"margin: 0px 0px 20px 31.5208px; padding: 0.5em 0px 0px 1.2em; border: 0px; outline: 0px; vertical-align: baseline; font: inherit; list-style: lower-alpha;\">\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Cut a 33 cm length of 18-gauge copper wire.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Peel apart to separate red- and black-coated wires.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Use 1.6 mm gauge setting on wire stripper to remove ~1.5 cm length of rubber coating from both ends of each wire to expose the copper filaments, being careful not to sever copper filaments.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Twist filaments together tightly and fold in half.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Make two holes in the cardboard an inch apart from each other.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Push the red wire through one hole and the black wire through the other.</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Insert each folded end of the wires into the handle of a matching alligator clip so that the wire touches the metal inside the clip handle (red wire should have a red alligator clip at each end; black wire should have a black alligator clip at each end).</li>\r\n			<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n				Clip the penny into the red electrode and clip the dime into the black electrode (Figure 2). OPTIONAL step to be completed before inserting wires into cardboard: Weigh each coin/copper wire assembly (penny/red wire/red clip; dime/black wire/black clip) separately and record the mass.</li>\r\n		</ol>\r\n	</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		<span class=\"image-caption-container image-caption-container-right\" style=\"margin: 15px 0px 15px 15px; padding: 10px; border: 1px solid rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font: inherit; display: inline-block; position: relative; border-radius: 10px; float: right; height: 216px; width: 162px;\"><img alt=\"\" class=\"caption newsimage caption-processed\" src=\"https://www.superfund.arizona.edu/sites/superfund.arizona.edu/files/copper_electrolysis_setup.jpg\" style=\"border: 0px; margin: 0px 0px 5px; padding: 0px; outline: 0px; vertical-align: bottom; font: inherit; width: 162px; height: 216px;\" title=\"Figure 3. Electrodes immersed in the electrolyte solution.\" /><span class=\"image-caption\" style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 0.8em; line-height: normal; font-family: inherit; text-align: center; color: rgb(68, 68, 68); display: block;\">Figure 3. Electrodes immersed in the electrolyte solution.</span></span>Pour 150 mL of the copper sulfate electrolyte solution into the beaker.</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Place the wire assembly over the beaker so that the coin &quot;electrodes&quot; are immersed in the electrolyte solution as illustrated in Figure 3.&nbsp;<em style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">Note:</em>&nbsp;the two electrode assemblies must not touch one another.</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Clip each connecting wire to the terminals of the 9V battery: Clip the red to the positive terminal, and black to the negative terminal (Figure 4).</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Allow the&nbsp;<strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">electrolytic cell</strong>&nbsp;to operate for 30-60 minutes. OPTIONAL: Record the length of time the cell was operating.</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		<span class=\"image-caption-container image-caption-container-right\" style=\"margin: 15px 0px 15px 15px; padding: 10px; border: 1px solid rgb(204, 204, 204); outline: 0px; vertical-align: baseline; font: inherit; display: inline-block; position: relative; border-radius: 10px; float: right; height: 245px; width: 500px;\"><img alt=\"\" class=\"caption newsimage caption-processed\" src=\"https://www.superfund.arizona.edu/sites/superfund.arizona.edu/files/copper_electrolysis_complete_setup.png\" style=\"border: 0px; margin: 0px 0px 5px; padding: 0px; outline: 0px; vertical-align: bottom; font: inherit; width: 500px; height: 245px;\" title=\"Figure 4. A) Cross-section illustration of final complete copper electrolysis lab set-up; B) Actual photograph of complete copper electrolysis lab set-up.\" /><span class=\"image-caption\" style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: italic; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 0.8em; line-height: normal; font-family: inherit; text-align: center; color: rgb(68, 68, 68); display: block;\">Figure 4. A) Cross-section illustration of final complete copper electrolysis lab set-up; B) Actual photograph of complete copper electrolysis lab set-up.</span></span>Remove the cardboard with the coin/copper wire assemblies and hang to dry in an empty cup or beaker until it is dry (5-10 min), being careful not to touch the coins, so as not to lose any of the copper plating.</li>\r\n	<li style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 1em; line-height: 1.6em; font-family: inherit;\">\r\n		Examine the coins for changes. OPTIONAL: Weigh each coin/copper wire assembly and record the mass. Calculate the difference in starting and ending mass.</li>\r\n</ol>\r\n<p style=\"margin: 0px 0px 1.5em; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 16px; line-height: 1.5em; font-family: Arial, &quot;Trebuchet MS&quot;, Verdana, sans-serif; color: rgb(76, 76, 76); text-align: justify;\">\r\n	<strong style=\"margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: baseline; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit;\">Disposal</strong><br />\r\n	Coins used in this experiment should not be reused as currency. Coin/copper wire assemblies may be discarded in the trash or recycled.&nbsp; Electrolyte solution can be reused; to dispose of the solution, it should be flushed down the drain with plenty of water. 9V batteries can be disposed of in the trash.</p>\r\n', 50.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 7),
(127, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 7),
(128, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 8),
(129, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 8),
(130, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 8),
(131, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 8),
(132, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 8),
(133, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 8),
(134, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 8),
(135, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 8),
(136, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 8),
(137, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 8),
(138, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 8),
(139, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 8),
(140, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 8),
(141, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 8),
(142, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 8),
(143, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 8),
(151, 'Ball Mill', '', 100.00, 0.00, '151_procedure_ball mill.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 10),
(154, 'Melting Gold For Bar Casting', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '154_procedure_Induction Furnace.jpg', '', 1, 10),
(160, 'Reactor Chemical Dissolution', '<p>\r\n	3/1, HCL/NaOH</p>\r\n<p>\r\n	2hr, watch gasses for completion</p>\r\n', 50.00, 0.00, '160_procedure_Reactor.jpg', '', 1, 10),
(161, 'Centrifuge ', '<p>\r\n	Load ceramic mud to separate liquid</p>\r\n', 50.00, 0.00, '161_procedure_Centrifuge.jpg', '', 1, 10),
(163, 'Gold Precipitation', '<p>\r\n	SMB Precip</p>\r\n', 75.00, 0.00, '163_procedure_Precipitation.jpg', '', 1, 10),
(164, 'Ammonia Wash', '', 75.00, 0.00, '164_procedure_Ammonia Wash.jpg', '', 1, 10),
(165, 'Waste Liquid Treatment', '', 200.00, 0.00, '165_procedure_Waste Water Treatment.jpg', '', 1, 10),
(166, 'Gas Scrubbers', '', 100.00, 0.00, '166_procedure_Gas Scrubber.jpg', '', 1, 10),
(167, 'Gold Bar Casting', '', 4.00, 0.00, '167_procedure_Gold Mold.jpg', '', 1, 10),
(168, 'Stripping Gold/Silver To Solution', '<p>Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Preparing Gold Dip Solution:</strong></p>\r\n\r\n<ol>\r\n	<li>Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</li>\r\n	<li>Add water to the basin being used to strip product.</li>\r\n	<li>Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</li>\r\n	<li>Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</li>\r\n	<li>The solution is now ready.</li>\r\n</ol>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Stripping Plated Products To Solution</strong></p>\r\n\r\n<ol>\r\n	<li>Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</li>\r\n	<li>Lower the rack into solution</li>\r\n	<li>Turn on circulation pump</li>\r\n	<li>Wait 5 - 8 minutes</li>\r\n	<li>Remove the baskets from solution and lower into the rinse container.</li>\r\n	<li>Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n\r\n<p>If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</p>\r\n', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 11),
(169, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 11),
(170, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 11),
(171, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 11),
(172, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 11),
(173, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 11),
(174, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 11),
(175, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 11),
(176, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 11),
(177, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 11),
(178, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 11),
(179, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 11),
(180, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 11),
(181, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 11),
(182, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 11),
(183, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 11),
(184, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 12),
(185, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 12),
(186, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 12),
(187, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 12),
(188, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 12),
(189, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 12),
(190, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 12),
(191, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 12),
(192, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 12),
(193, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 12),
(194, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 12),
(195, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 12),
(196, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 12),
(197, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 12),
(198, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 12),
(199, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 12);
INSERT INTO `processing` (`id`, `name`, `details`, `noofhours`, `co2cost`, `image`, `youtube`, `status`, `userid`) VALUES
(200, 'Refrigerant Extraction', '<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Direct</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">Recovery</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	This is our typical method of recovery, and this will be how every recovery task will finish.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56); text-align: center;\">\r\n	&nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56); text-align: center;\">\r\n	<img alt=\"\" src=\"https://d14ty28lkqz1hw.cloudfront.net/data/org/15112/media/img/source/edit/1592378_edit.png\" style=\"box-sizing: border-box; max-width: 100%; height: 150px; display: inline-block; vertical-align: middle; width: 450px;\" /></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<br style=\"box-sizing: border-box;\" />\r\n	&nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	1.&nbsp;&nbsp; &nbsp;Start with all valves closed (recovery cylinder, recovery machine, manifold,&nbsp; hoses.)</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	2.&nbsp;&nbsp; &nbsp;Setup hoses as shown in the diagram.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	3.&nbsp;&nbsp; &nbsp;ZERO/TARE the refrigerant scale.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	4.&nbsp;&nbsp; &nbsp;Open hose valves, core removal tool valves or service valves.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	1.&nbsp;&nbsp; &nbsp;---<strong style=\"box-sizing: border-box; line-height: inherit;\">The</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">below</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">steps</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">will</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">vary</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">with</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">your</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">recovery</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">machine</strong>---</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	5.&nbsp;&nbsp; &nbsp;Set the recovery machine to recover.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	6.&nbsp;&nbsp; &nbsp;Open the high side of the manifold for liquid recovery.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	7.&nbsp;&nbsp; &nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">PURGE</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">THE</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">HOSES</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">OF</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">AIR</strong>&nbsp;loosen and unseat the hose connected to the recovery tank until refrigerant is present and then retighten.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	8.&nbsp;&nbsp; &nbsp;Fully open the vapor valve on the recovery cylinder.&nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	9.&nbsp; &nbsp;Turn on the&nbsp;recovery machine.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	2.&nbsp;&nbsp; &nbsp;---<strong style=\"box-sizing: border-box; line-height: inherit;\">The</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">below</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">steps</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">should</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">be</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">standard</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">to</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">most</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">recovery</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">machines</strong>---</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	10.&nbsp;&nbsp; &nbsp;The manifold high side valve may need to be adjusted to throttle&nbsp;refrigerant flow into the recovery&nbsp;machine to avoid liquid slugging.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	11.&nbsp;&nbsp; &nbsp;When the liquid recovery is complete, fully open both the high side&nbsp;and&nbsp;low side manifold valves.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	12.&nbsp;&nbsp; &nbsp;Many recovery machines will turn off once the system reaches vacuum.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	13.&nbsp;&nbsp; &nbsp;PURGE THE RECOVERY MACHINE &ndash; this one can be pretty specific &ndash; so&nbsp;check your manual if you&rsquo;re unsure.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	14.&nbsp;&nbsp; &nbsp;Close all valves and recovery is complete!</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Push/Pull</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	If the system has 15 or more pounds of refrigerant, this will be your faster option. &nbsp;The more refrigerant the system holds, the more time you&rsquo;ll save. &nbsp;Tip: Using an inline sight glass during push-pull recovery will allow you to determine when the liquid flow has stopped visually.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56); text-align: center;\">\r\n	<img alt=\"\" src=\"https://d14ty28lkqz1hw.cloudfront.net/data/org/15112/media/img/source/edit/1592379_edit.png\" style=\"box-sizing: border-box; max-width: 100%; height: 150px; display: inline-block; vertical-align: middle; width: 450px;\" /></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<br style=\"box-sizing: border-box;\" />\r\n	&nbsp;<br style=\"box-sizing: border-box;\" />\r\n	1.&nbsp;&nbsp; &nbsp;Start with all valves closed (recovery cylinder, recovery machine, manifold,&nbsp;hoses.)</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	2.&nbsp;&nbsp; &nbsp;Setup hoses as shown in the diagram.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	3.&nbsp;&nbsp; &nbsp;ZERO/TARE the refrigerant scale.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	4.&nbsp;&nbsp; &nbsp;Set the recovery machine to recover.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	5.&nbsp;&nbsp; &nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">PURGE</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">THE</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">HOSES</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">OF</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">AIR</strong>&nbsp;(this is done a little bit differently than in direct&nbsp;recovery.)<br style=\"box-sizing: border-box;\" />\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">a.</strong>&nbsp;&nbsp; &nbsp;Open the liquid line service valve or core tool and then loosen and unseat&nbsp;the hose connected to the liquid port on the recovery tank until refrigerant&nbsp;is present and then retighten.<br style=\"box-sizing: border-box;\" />\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">b.</strong>&nbsp;&nbsp; &nbsp;Open the vapor line service valve or core tool and then loosen and unseat&nbsp;the hose connect to the vapor port on the recovery tank until refrigerant is&nbsp;present and then retighten.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	6.&nbsp;&nbsp; &nbsp;Turn on the recovery machine.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	7.&nbsp;&nbsp; &nbsp;When liquid recovery is complete, switch to Direct Vapor Recovery.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<br style=\"box-sizing: border-box;\" />\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Now,</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">let&rsquo;s</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">speed</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">it</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">up....</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Valve</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">Core</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">Removal</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">Tools</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;If you were only going to change one thing &ndash; this is it! &nbsp;If you&rsquo;re stuck pulling&nbsp;through valve cores, get two of these. &nbsp;They&rsquo;ll even help speed up&nbsp;your evacuation.&nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Recovery</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">Cylinder</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;Make sure the cylinder is clean and has been evacuated to 500 microns or less. &nbsp;And NEVER fill beyond 80%, this allows for the expansion of the&nbsp;refrigerant.&nbsp;<br style=\"box-sizing: border-box;\" />\r\n	&bull;&nbsp;&nbsp; &nbsp;If it&rsquo;s practical to use a larger cylinder, this will make the recovery go quicker. &nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Hoses</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;Avoid hoses with &ldquo;anti-blowback&rdquo; or &ldquo;low loss&rdquo; style fittings.&nbsp;<br style=\"box-sizing: border-box;\" />\r\n	&bull;&nbsp;&nbsp; &nbsp;Standard hoses are &frac14;&rdquo; &ndash; using larger diameter hoses will get you a faster recovery, they&rsquo;re often marketed as &ldquo;heavy duty&rdquo;, &ldquo;charging&rdquo; or &ldquo;vacuum&rdquo; hoses.<br style=\"box-sizing: border-box;\" />\r\n	&bull;&nbsp;&nbsp; &nbsp;Use hoses which are as short as possible.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Temperature</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;Cool down the recovery cylinder&ndash; this will drop the pressure of recovery cylinder. &nbsp;<br style=\"box-sizing: border-box;\" />\r\n	&bull;&nbsp;&nbsp; &nbsp;With many recovery machines, you can use the fan to draw air over the tank.<br style=\"box-sizing: border-box;\" />\r\n	&bull;&nbsp;&nbsp; &nbsp;Water will work even better, but you&rsquo;ll need water flow.&nbsp; &nbsp;</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;Cool down the refrigerant! &nbsp;This one tends to be your best bet if you&rsquo;re dealing with large volumes of refrigerant &ndash; there are heat exchangers available for just for this purpose.</p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	<strong style=\"box-sizing: border-box; line-height: inherit;\">Filter</strong>&nbsp;<strong style=\"box-sizing: border-box; line-height: inherit;\">It!</strong></p>\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 22px; padding: 0px; direction: ltr; font-family: Play, sans-serif; font-size: 15px; line-height: 1.9; text-rendering: optimizelegibility; color: rgb(42, 46, 56);\">\r\n	&bull;&nbsp;&nbsp; &nbsp;If you suspect the system refrigerant to be dirty, use an inline filter drier at the inlet to the recovery machine.</p>\r\n', 300.00, 0.00, '200_procedure_csm_anlagen_maschine_rpww_04_123e67368a.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/e0CFKxJMw84\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 7),
(205, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 14),
(206, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 14),
(207, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 14),
(208, 'Metal / Plastic Separation Module 3', '<p>Feed Metal Plastic Material Into this Module.</p>\r\n', 15000.00, 0.00, '208_procedure_metalplas.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 14),
(213, 'Toner Cartridge Processing 1.1', '<p>Feed material into toner crushing machine.</p>\r\n', 325.00, 0.00, '213_procedure_tonercrusher.jpg', '', 1, 14),
(217, 'PreSorting', '<p>Sort the material</p>\r\n', 1000.00, 0.00, '217_procedure_Annotation 2020-01-25 212711.png', '', 1, 14),
(218, 'Depolluting Printers', '<p>BEFORE SENDING PRINTERS TO THE SHREDDING LINE</p>\r\n\r\n<p>The toner cartridges need to be removed completely.&nbsp;</p>\r\n\r\n<p>See the video for general instructions on how to remove toner cartridges from the printers.&nbsp; Separete the cartridges and the printer carcuses into seperate bins / pallets and continue further processing.</p>\r\n', 300.00, 0.00, '218_procedure_dismantleprinter.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/MCBqJCAKe8g\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 14),
(219, 'Stripping Gold/Silver To Solution', '<p>Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Preparing Gold Dip Solution:</strong></p>\r\n\r\n<ol>\r\n	<li>Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</li>\r\n	<li>Add water to the basin being used to strip product.</li>\r\n	<li>Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</li>\r\n	<li>Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</li>\r\n	<li>The solution is now ready.</li>\r\n</ol>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Stripping Plated Products To Solution</strong></p>\r\n\r\n<ol>\r\n	<li>Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</li>\r\n	<li>Lower the rack into solution</li>\r\n	<li>Turn on circulation pump</li>\r\n	<li>Wait 5 - 8 minutes for gold Wait up to 40 hours for Silver Mylar</li>\r\n	<li>Remove the baskets from solution and lower into the rinse container.</li>\r\n	<li>Rinse the the rinse container and unload into processing baskets above the drip contaiber to dry</li>\r\n	<li>Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n\r\n<p>If the solution takes more than 8 minutes to remove the gold plating. then the solution is beginning to become saturated.</p>\r\n\r\n<p>Leave multiple gold plated peices inside the solution for 30 minutes, check if there has been full removalof the plating,</p>\r\n\r\n<p>if full removal has teken&nbsp; &nbsp;.</p>\r\n', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 15),
(220, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 15),
(221, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 15),
(222, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 15),
(223, 'Dismantle and Depopulate Circuit Boards/Equipment', '<p>USING THE AMERICAN HAMMER MILL</p>\r\n\r\n<p>REMOTE CONTROLS: Speed Set to 17.5&nbsp;Rotation Set to Forward</p>\r\n\r\n<p>TELEPHONES and KEYBOARDS: Speed set to 19 Rotation Set To REV</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Remote controls, 3 sorters will sort circuit boards, mylar sheets, rubber membranes and any cheap plastics attached to devices that not ABS or PC/ABS, magnet bars across the conveyor should be cleaned regularly unless a magnetic pulley is used at the end of the conveyor, it will automatically sort magnetics from the remote controls.</p>\r\n\r\n<p><br />\r\nTelephones:&nbsp; 3 sorters will sort circuit boards, mylar sheets, rubber membranes and any cheap plastics attached to devices that not ABS or PC/ABS, magnet bars across the conveyor should be cleaned regularly unless a magnetic pulley is used at the end of the conveyor, it will automatically sort magnetics</p>\r\n\r\n<p>Keyboards:&nbsp;&nbsp;3 sorters will sort circuit boards, mylar sheets, rubber membranes and any cheap plastics attached to devices that not ABS or PC/ABS, magnet bars across the conveyor should be cleaned regularly unless a magnetic pulley is used at the end of the conveyor, it will automatically sort magnetics</p>\r\n', 250.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '', 1, 15),
(224, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 15),
(225, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 15),
(226, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 15),
(228, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 15),
(229, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 15),
(230, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 15),
(231, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 15),
(232, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 15),
(233, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 15),
(234, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 15),
(235, 'Telephone Dismantling and separation', '<p>MANUAL DISMANTELLING<br />\r\n&nbsp;</p>\r\n\r\n<h2>The Teardown</h2>\r\n\r\n<p><a href=\"https://i2.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Handset_Open.jpg\"><img alt=\"Scrap Phone Handset Open\" src=\"https://i2.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Handset_Open-225x300.jpg?resize=384%2C512\" style=\"height:512px; width:384px\" /></a></p>\r\n\r\n<p>The scrap phone handset is weighted with a steel plate.</p>\r\n\r\n<p>The first thing I did was tear open is the handset, which was easily broken open with a hammer. The inside of the handset had a steel plate which was held in with a few screws. This steel plate does nothing but add weight to the phone. There were also a few grams worth of copper wire, a small speaker, a microphone, and single phone jack that are all worth value as scrap metal, albeit relatively little.</p>\r\n\r\n<p><a href=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Desk_Phone_Base_Open.jpg\"><img alt=\"Scrap Desk Phone Base Open\" src=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Desk_Phone_Base_Open-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>The phone base was opened by removing 6 Phillips head screws.</p>\r\n\r\n<p>I opened the phone base by removing 6 Phillips head screws, revealing the phone&rsquo;s circuitboard hardware. There were 5 boards, 4 of which are easily identifiable in the picture above. The last board is actually that manilla colored piece that looks like yellow paper in the picture. All the boards were held down with Phillips head screws, which I removed with an electric drill.</p>\r\n\r\n<p><a href=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Board_Close_Up.jpg\"><img alt=\"Scrap Phone Board Close Up\" src=\"https://i2.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Board_Close_Up-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>The main circuit board w/ processors and IC chips.</p>\r\n\r\n<p>The main phone board has a majority of the scrap value in the scrap desk phone. This circuit board contains trace amounts of precious metals, including gold, silver, and platinum group metals. It is not very big, about 3 inches by 3 inches, and yet it contains a significant number of chips and capacitors, both on the front and back of the board. Without conducting costly analysis, there is no way to know what the &ldquo;melt value&rdquo; of the board is, however many buyers are willing to give a very conservative price just by looking at the board.</p>\r\n\r\n<p><a href=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Key_Contact_Board.jpg\"><img alt=\"Scrap Key Contact Board\" src=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Key_Contact_Board-225x300.jpg?resize=384%2C512\" style=\"height:512px; width:384px\" /></a></p>\r\n\r\n<p>The telephone key contact board.</p>\r\n\r\n<p>This is the manilla colored board we saw before. When we flip it over to see the green side of the board, we see it has gold plating on each key contact. This type of keyboard is known as a&nbsp;<em>rubber dome</em>&nbsp;or&nbsp;<em>rubber sheet</em>&nbsp;keyboard, and the gold plated parts you see above are very thinly plated. (On the order of 1 micron thick or less.)</p>\r\n\r\n<p>While this looks pretty rich with gold on the surface, even with some generous assumptions, the melt value of the gold you see is probably a maximum of $0.10, but probably closer to $0.05. Again, without costly analysis (and a few more boards), there is no way to know the precise value of the gold.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>There were 3 other boards: one additional small key contact board, one LCD screen with board attached, and another 1 inch by 1 inch board that contained the receiver switch. In modern office phones the value of the main processor board has all of the value, and these other boards have negligible value. As I explain below, properly recycling the LCD screen will probably come with a disposal fee.</p>\r\n\r\n<h2>The Results</h2>\r\n\r\n<p>Let&rsquo;s look at the value of our scrap. Prices are listed as of December 2019.</p>\r\n\r\n<p><a href=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Wire_Weight.jpg\"><img alt=\"Scrap Phone Wire Weight\" src=\"https://i0.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Wire_Weight-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>Our scrap wire weighs in at 0.08 Lbs</p>\r\n\r\n<p><strong>Our scrap wire weighs in at 0.08 Lb, and with an average price of $0.50 / Lb, is worth about $0.04.&nbsp;</strong>This price is actually pretty generous, considering that this wire is very thin telecom wire and would yield very little copper. You may not even be able to get that much.</p>\r\n\r\n<p><a href=\"https://i2.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Scrap_Weight.jpg\"><img alt=\"Scrap Phone Scrap Weight\" src=\"https://i0.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Scrap_Weight-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>Our scrap shred weighs in at 0.44 Lb.</p>\r\n\r\n<p><strong>Our scrap shred weighs in at 0.44 Lb, and with an average price of $0.03 / Lb, is worth about $0.01.</strong>&nbsp;There is very little to say here, but I wanted to make a note about the LCD screen you see above (which is called a character LCD screen).</p>\r\n\r\n<p>Scrap yards are not closely reviewing the things that get thrown into the shred pile, and the LCD screen will get bought by most scrap yard for shred price. In reality, they legally should probably not do that. Old LCD screens are likely to contain trace amounts of mercury in the fluorescent backlight assembly, and traces of other heavy metals.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>For this reason, and other potential hazmat concerns, scrap LCD screens are technically considered hazardous waste and have restrictions on how they must be handled. Most scrap yards are not set up to properly handle that type of scrap, legally speaking.</p>\r\n\r\n<p>Despite the above restrictions surrounding a small scrap LCD screen at a scrap yard, it is perfectly legal to throw an LCD screen in the trash in most of the United States, especially if you are an individual and not a business. Laws vary depending on state.</p>\r\n\r\n<p><a href=\"https://i1.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Gold_Plated_Board.jpg\"><img alt=\"Scrap Phone Gold Plated Board\" src=\"https://i2.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Gold_Plated_Board-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>Our scrap keyboard PCBs weigh 0.07 Lbs.</p>\r\n\r\n<p><strong>Our scrap keyboard contact PCBs weigh 0.07 Lb, and with a minimum price of $0.25&nbsp; / Lb, are worth about $0.02.</strong>&nbsp;This is not a very good price for the board, but it will be difficult to sell for more without selling to a refiner in large quantities..</p>\r\n\r\n<p>I estimated that a board like this has a maximum of $0.10 of gold per board, but probably closer to $0.05 per board. If you had a pound of these boards, you may have as much as $1.50 worth of gold melt value, but probably closer to $0.75.</p>\r\n\r\n<p><a href=\"https://i0.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Logic_Board_Weight.jpg\"><img alt=\"Scrap Phone Logic Board Weight\" src=\"https://i0.wp.com/www.scrapmetaljunkie.com/wp-content/uploads/2019/12/Scrap_Phone_Logic_Board_Weight-300x225.jpg?resize=512%2C384\" style=\"height:384px; width:512px\" /></a></p>\r\n\r\n<p>Our scrap circuit board weighs 0.11 Lb.</p>\r\n\r\n<p><strong>Our scrap circuit board weighs 0.11 Lbs, and with an average price of $1.50 per pound, is worth about $0.17.</strong>&nbsp;Again that is the price you can expect to get from a specialty buyer in small quantities. Your best bet for selling this type of scrap is to sell it to a refiner in large quantities.</p>\r\n\r\n<h2>The Total</h2>\r\n\r\n<p><strong>Beginning Weight: 2 Lbs</strong></p>\r\n\r\n<p><strong>Demanufacturing time: 5 minutes</strong></p>\r\n\r\n<p><strong>Scrap Value:<br />\r\nScrap wire: 0.08 Lb * $0.50 / Lb = $0.04<br />\r\nScrap shred: 0.44 Lb * $0.03 / Lb = $0.01.<br />\r\nScrap keyboard contacts: 0.07 Lb * $0.25 / Lb = $0.02.<br />\r\nScrap circuit board: 0.11 Lbs * $1.50 / Lb = $0.17</strong></p>\r\n\r\n<p><strong>TOTAL = $0.24</strong></p>\r\n\r\n<h2>Final Thoughts</h2>\r\n\r\n<p>Taking this phone apart took about 5 minutes, and earned us $0.24. In full transparency, the cost of properly disposing the LCD screen will probably offset much of the scrap value of the phone. There is not much you can do about that if you need to properly recycle the screen.</p>\r\n\r\n<p>The other thing I did not take into consideration is the value of the polymers. The plastic is all ABS, and there is a little rubber used in the keyboard. In extremely large quantities this stuff would probably be worth another $0.05 &ndash; $0.10 / Lb, which is much better than paying to throw it away. As far as I can tell, most curbside recycling doesn&rsquo;t accept ABS plastic, even if it is marked &ldquo;recyclable,&rdquo; so throwing it out is the only alternative.</p>\r\n', 250.00, 0.00, '235_procedure_Scrap_Desk_Phone_Overview.jpg', 'https://www.youtube.com/watch?v=CJ1sMyOfCFc', 1, 15),
(236, 'Shredding and Magnetic Separation', '<p>Size Reduction Shredder and Over the Conveyor Magnetic separation of small screws and metal parts.</p>\r\n\r\n<p>1. feed plastic into size reduction shredder, allow for the shredded material to fall onto the conveyor and travel under a series of magnetic seperation units</p>\r\n\r\n<p>2. clean the magnetic heads or check quality of the reground plastic for imputities with a magnet</p>\r\n\r\n<p>3. Bag and weigh the resulting materials</p>\r\n', 300.00, 0.00, '236_procedure_VULCANATOR-1-300x262.jpg', '', 1, 11),
(237, 'Semi-auto Dismantalling Line Remotes', '<p>Full details see the dismantelling remotes help file here:&nbsp;<br />\r\n<a href=\"https://viewpas.com/soft/help/Dismantelling-Remotes.html\" target=\"_blank\">https://viewpas.com/soft/help/Dismantelling-Remotes.html</a></p>\r\n', 400.00, 0.00, '237_procedure_allrem.jpeg', '', 1, 15),
(238, 'Stage, Test, Sell or Scrap', '<p>Stage To see if functional,&nbsp;</p>\r\n\r\n<p>If functional, check ebay price for same item.&nbsp;&nbsp;</p>\r\n\r\n<p>If can work with all parts add to Whole Computer Sale Item the total Kg&#39;s from this category</p>\r\n\r\n<p>If not go directly to strip and sort the main components.</p>\r\n', 50.00, 0.00, '238_procedure_images.jpg', '', 1, 15),
(239, 'Stripping Gold To Solution', '<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Pfane Scientific&#39;s Gold Dip solution is used to remove gold and precious metal plating from circuit boards, pins and other items plated with gold plating. &nbsp;Follow the steps below to achieve optimum extraction using the Gold Dip product.</span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong><br />\r\n	</strong></span></span></p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Preparing Gold Dip Solution:</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Measure 10 - 20 grams of Gold Dip Powder for every 1 liter of water being used.&nbsp;</span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Add water to the basin being used to strip product. </span><br />\r\n		</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\">Heat the water to 45 degrees celcius while stiring the Gold Dip powder.</span></span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">Circulate the solution for 5 minutes and let sit for 10 minutes for the active ingredients to react.</span></li>\r\n	<li>\r\n		<span style=\"font-size:14px;\">The solution is now ready.</span></li>\r\n</ol>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	<span style=\"font-size:14px;\"><span style=\"font-family:arial, helvetica, sans-serif;\"><strong>Stripping Plated Products To Solution</strong></span></span></p>\r\n<ol>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Plated products should be placed in the rack or on a flat surface allowin a small amount of space to remain between each item.</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Lower the rack into solution</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Turn on circulation pump</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Wait 5 - 8 minutes</span></span></li>\r\n	<li>\r\n		<span style=\"font-family:arial, helvetica, sans-serif;\"><span style=\"font-size:14px;\">Remove the baskets from solution and lower into the rinse container.</span></span><span style=\"font-size:14px;\"><br />\r\n		</span></li>\r\n	<li>\r\n		Rinse the productin the rinse container and unload into processing baskets</li>\r\n	<li>\r\n		Repeat steps 1 through 7 until completed</li>\r\n</ol>\r\n<p>\r\n	<span style=\"font-size:14px;\">If the solution takes more than 8 minutes to remove the plating. &nbsp;add 1% (water content) in grams of Gold Dip to the solution and continue.</span></p>', 1000.00, 0.00, '13_procedure_dip.jpeg', '', 1, 16),
(240, 'Run Parts Through 0.5mm Hammer Mill and Shaker Tables', '<p>\r\n	Put Material Through Hammer Mill For Size Reduction.</p>\r\n<p>\r\n	Run Accross Shaker Table for Concentrating Precious metals.</p>\r\n<p>\r\n	Sort (Results)</p>\r\n<p>\r\n	(Concentrates)</p>\r\n<p>\r\n	High Grades</p>\r\n<p>\r\n	Low Grades</p>\r\n<p>\r\n	Fiber</p>\r\n', 1000.00, 0.00, '14_procedure_Copy-of-16-hammer-mill-3.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/KmFUhKoD6Dw\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 16),
(241, 'Run Material Across Shaker Table', '', 2000.00, 0.00, '15_procedure_2x4-Shaker-Table.jpg', '', 1, 16),
(242, 'Electrolysis Gold From Solution', '<p>\r\n	<span 200=\"\" 400=\"\" 500=\"\" a=\"\" and=\"\" any=\"\" by=\"\" container=\"\" contents=\"\" dip=\"\" electrolosys=\"\" extra=\"\" face=\"\" filter=\"\" filters=\"\" followed=\"\" font=\"\" gold=\"\" impurities=\"\" in=\"\" into=\"\" is=\"\" liquid=\"\" material=\"\" mesh=\"\" note=\"\" of=\"\" out=\"\" precipitation=\"\" process=\"\" pump=\"\" repeat=\"\" rinsing=\"\" screening=\"\" screens=\"\" series=\"\" solution=\"\" span=\"\" style=\"\" that=\"\" the=\"\" then=\"\" through=\"\" to=\"\" transfering=\"\" using=\"\" volume=\"\" wash=\"\" with=\"\"><span style=\"\"><br />\r\n	</span></span></p>\r\n', 0.01, 0.00, '16_procedure_20170316_111618_718.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/hAkWMdrLXmo\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 16),
(243, 'Dismantle and Depopulate Circuit Boards/Equipment', '', 200.00, 0.00, '17_procedure_Screen Shot 2017-03-25 at 15.25.58.png', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/aHWO7gUfR2A\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>', 1, 16),
(244, 'Sorting Components', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 100.00, 0.00, '18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', '<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/3jxSKaIRhAQ?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 16),
(245, 'Shredding / Milling / Metal Separation', '<p>\r\n	Shred this material</p>\r\n<p>\r\n	Feed shredded material into Grinding mill</p>\r\n<p>\r\n	Separate Mixed Metal Powders into</p>\r\n<p>\r\n	Concentrates (Number 1s)</p>\r\n<p>\r\n	High Grades (Number 2s)</p>\r\n<p>\r\n	Low Grades (Number 3s)</p>\r\n<p>\r\n	Fiber/Resin (Number 4s)</p>\r\n', 600.00, 0.00, '19_procedure_16754194_1624751000874352_1912284270_n.jpg', '', 1, 16),
(246, 'Fine Grinding Concentrate / Components', '', 100.00, 0.00, '20_procedure_grinder.jpeg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/5X2LZBjhSRg?rel=0\" frameborder=\"0\" allowfullscreen></iframe>', 1, 16),
(247, 'Vinegar Gold Removal', '<p>\r\n	Using vinegar, salt and Hydrogen Peroxide 3% add 2 parts vinegar to .135 parts salt add .1 parts Hydrogen peroxide in a tank with a high powered bubbler.&nbsp;&nbsp;</p>\r\n<p>\r\n	Leave the solution bubbling 8 hours and turn off for 16 hours, within 2 days the solution should begin turning blue.&nbsp;</p>\r\n<p>\r\n	Within 4 days the blue solution should be very dark and foils from the plated materials should be floating and submerged inside the solution</p>\r\n<p>\r\n	When most of the foils are loose from the substrate material, empty the vinegar solution into a holding container through a filtration system to collect the gold foils from the solution.&nbsp;</p>\r\n<p>\r\n	After filtration is complete rinse the materials with a high powered spray and collect the remaining foils in the vinegar solution filter</p>\r\n<p>\r\n	When all foils are collected neutralize the vinegar solution with sodium bicarbonate and send for disposal.</p>\r\n', 50.00, 0.00, '21_procedure_DoorSign.png', '', 1, 16),
(248, 'Gold / Platinum Refining', '<p>\r\n	<a href=\"https://www.ishor.com/simplicity-refining-system-instructions\">https://www.ishor.com/simplicity-refining-system-instructions</a></p>\r\n', 1.00, 0.00, '25_procedure_1ash.jpg', '', 1, 16),
(249, 'Melting Metal Powders', '<p>\r\n	Charge a crucible with 1kg of Mixed Metal Powders Demagnetized material only add 25% Borax and set furnace to 1188 Celcius</p>\r\n<p>\r\n	Melt into fluid solution.</p>\r\n', 5.00, 0.00, '26_procedure_download.jpg', '', 1, 16),
(250, 'Wave Table Seperation', '', 200.00, 0.00, '27_procedure_1wave.jpg', '', 1, 16),
(251, 'Magnetic Separation', '<p>\r\n	Small scale separation of metal material in final cleanup stage of base and precious metals for further processing.</p>\r\n', 25.00, 0.00, '28_procedure_powermag-xl-lifting-magnet.jpg', '', 1, 16),
(252, 'Paver Block Manufacturing Line', '<p>\r\n	mix 10 liters PE Resin</p>\r\n<p>\r\n	mix 10 liters Hardener</p>\r\n<p>\r\n	Mix 100kg FR4 Fiber from Circuitboards</p>\r\n', 4000.00, 0.00, '29_procedure_paver-blocks-making-machine-250x250.jpg', '<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/yl1eI9n0GUM\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>', 1, 16),
(253, 'Electrolysis Copper From Mixed Anode', '', 30.00, 0.00, '30_procedure_gettyimages-150687252-1024x1024.jpg', '', 1, 16),
(254, 'Copper Pipe Extrusion Line', '', 550.00, 0.00, '31_procedure_inverted-vertical-wire-drawing-machine26138963023.jpg', '', 1, 16);

-- --------------------------------------------------------

--
-- Table structure for table `productded_detail`
--

CREATE TABLE `productded_detail` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `deductionid` int(11) DEFAULT NULL,
  `price` float(13,2) DEFAULT NULL,
  `includeprice` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productded_detail`
--

INSERT INTO `productded_detail` (`id`, `userid`, `productid`, `deductionid`, `price`, `includeprice`, `status`) VALUES
(1, 7, 429, 8, 750.00, 1, 1),
(2, 7, 429, 9, 150.00, 1, 1),
(3, 7, 429, 10, 550.00, 0, 1),
(4, 7, 429, 11, 1200.00, 0, 1),
(5, 7, 429, 12, 1500.00, 0, 1),
(6, 7, 429, 13, 2200.00, 0, 1),
(7, 7, 429, 14, 250.00, 1, 1),
(8, 7, 432, 8, 770.00, 0, 1),
(9, 7, 432, 9, 22.00, 1, 1),
(10, 7, 432, 10, 330.00, 0, 1),
(11, 7, 432, 11, 6600.00, 0, 1),
(12, 7, 432, 12, 355.00, 0, 1),
(13, 7, 432, 13, 45.00, 1, 1),
(14, 7, 432, 14, 80.00, 1, 1),
(15, 7, 428, 8, 750.00, 0, 1),
(16, 7, 428, 9, 150.00, 0, 1),
(17, 7, 428, 10, 550.00, 0, 1),
(18, 7, 428, 11, 1200.00, 0, 1),
(19, 7, 428, 12, 1500.00, 0, 1),
(20, 7, 428, 13, 2200.00, 0, 1),
(21, 7, 428, 14, 250.00, 0, 1),
(22, 7, 437, 8, 770.00, 0, 1),
(23, 7, 437, 9, 22.00, 0, 1),
(24, 7, 437, 10, 330.00, 0, 1),
(25, 7, 437, 11, 6600.00, 0, 1),
(26, 7, 437, 12, 355.00, 0, 1),
(27, 7, 437, 13, 45.00, 0, 1),
(28, 7, 437, 14, 80.00, 0, 1),
(29, 7, 438, 11, 6600.00, 1, 1),
(30, 7, 439, 11, 6600.00, 0, 1),
(31, 10, 512, 15, 2467.00, 0, 1),
(32, 10, 512, 16, 2712.00, 0, 1),
(33, 10, 512, 17, 5868.00, 0, 1),
(34, 10, 512, 18, 373.00, 0, 1),
(35, 10, 512, 19, 86.00, 0, 1),
(36, 10, 512, 20, 45.00, 0, 1),
(37, 10, 512, 21, 80.00, 0, 1),
(38, 7, 431, 11, 440.00, 0, 1),
(39, 10, 515, 15, 2467.00, 1, 1),
(40, 10, 515, 16, 2712.00, 0, 1),
(41, 10, 515, 17, 5868.00, 0, 1),
(42, 10, 515, 18, 373.00, 0, 1),
(43, 10, 515, 19, 86.00, 0, 1),
(44, 10, 515, 20, 45.00, 0, 1),
(45, 10, 515, 21, 80.00, 0, 1),
(46, 7, 426, 11, 1200.00, 1, 1),
(47, 7, 425, 11, 1200.00, 1, 1),
(48, 7, 422, 11, 440.00, 1, 1),
(49, 7, 423, 11, 1200.00, 0, 1),
(50, 7, 401, 11, 6600.00, 1, 1),
(51, 7, 401, 12, 355.00, 1, 1),
(52, 7, 401, 13, 45.00, 1, 1),
(53, 7, 401, 14, 80.00, 1, 1),
(54, 7, 426, 12, 1500.00, 1, 1),
(55, 7, 426, 13, 2200.00, 1, 1),
(56, 7, 426, 14, 250.00, 1, 1),
(57, 7, 425, 12, 1500.00, 1, 1),
(58, 7, 425, 13, 2200.00, 1, 1),
(59, 7, 425, 14, 250.00, 1, 1),
(60, 10, 499, 17, 5868.00, 1, 1),
(61, 10, 499, 18, 373.00, 1, 1),
(62, 10, 499, 19, 86.00, 1, 1),
(63, 10, 472, 17, 330.00, 0, 1),
(64, 10, 472, 18, 6600.00, 0, 1),
(65, 10, 472, 19, 355.00, 0, 1),
(66, 10, 464, 17, 330.00, 0, 1),
(67, 10, 464, 18, 6600.00, 0, 1),
(68, 10, 464, 19, 355.00, 0, 1),
(69, 10, 516, 17, 330.00, 0, 1),
(70, 10, 516, 18, 6600.00, 0, 1),
(71, 10, 516, 19, 355.00, 0, 1),
(72, 10, 457, 17, 330.00, 0, 1),
(73, 10, 457, 18, 6600.00, 0, 1),
(74, 10, 457, 19, 355.00, 0, 1),
(75, 10, 443, 17, 330.00, 0, 1),
(76, 10, 443, 18, 6600.00, 0, 1),
(77, 10, 443, 19, 355.00, 0, 1),
(78, 10, 517, 17, 330.00, 0, 1),
(79, 10, 517, 18, 6600.00, 0, 1),
(80, 10, 517, 19, 355.00, 0, 1),
(81, 10, 518, 17, 330.00, 0, 1),
(82, 10, 518, 18, 6600.00, 0, 1),
(83, 10, 518, 19, 355.00, 0, 1),
(84, 10, 519, 17, 5868.00, 0, 1),
(85, 10, 519, 18, 373.00, 0, 1),
(86, 10, 519, 19, 86.00, 0, 1),
(87, 10, 520, 17, 330.00, 0, 1),
(88, 10, 520, 18, 6600.00, 0, 1),
(89, 10, 520, 19, 355.00, 0, 1),
(90, 10, 501, 17, 5868.00, 1, 1),
(91, 10, 501, 18, 373.00, 1, 1),
(92, 10, 501, 19, 86.00, 1, 1),
(93, 10, 500, 17, 5868.00, 1, 1),
(94, 10, 500, 18, 373.00, 1, 1),
(95, 10, 500, 19, 86.00, 1, 1),
(96, 10, 501, 15, 2467.00, 1, 1),
(97, 10, 501, 16, 2712.00, 1, 1),
(98, 10, 500, 15, 2467.00, 1, 1),
(99, 10, 500, 16, 2712.00, 1, 1),
(100, 10, 499, 15, 2467.00, 1, 1),
(101, 10, 499, 16, 2712.00, 1, 1),
(102, 10, 451, 15, 373.00, 0, 1),
(103, 10, 451, 16, 2712.00, 0, 1),
(104, 10, 451, 17, 5868.00, 0, 1),
(105, 10, 451, 18, 373.00, 0, 1),
(106, 10, 451, 19, 86.00, 0, 1),
(107, 10, 450, 15, 373.00, 0, 1),
(108, 10, 450, 16, 2712.00, 0, 1),
(109, 10, 450, 17, 5868.00, 0, 1),
(110, 10, 450, 18, 373.00, 0, 1),
(111, 10, 450, 19, 86.00, 0, 1),
(112, 10, 476, 15, 2467.00, 0, 1),
(113, 10, 476, 16, 2712.00, 0, 1),
(114, 10, 476, 17, 5868.00, 0, 1),
(115, 10, 476, 18, 373.00, 0, 1),
(116, 10, 476, 19, 86.00, 0, 1),
(117, 10, 521, 15, 2467.00, 0, 1),
(118, 10, 521, 16, 2712.00, 0, 1),
(119, 10, 521, 17, 5868.00, 0, 1),
(120, 10, 521, 18, 373.00, 0, 1),
(121, 10, 521, 19, 86.00, 1, 1),
(122, 10, 509, 15, 2467.00, 1, 1),
(123, 10, 509, 16, 2712.00, 1, 1),
(124, 10, 509, 17, 5868.00, 1, 1),
(125, 10, 509, 18, 373.00, 1, 1),
(126, 10, 509, 19, 86.00, 1, 1),
(127, 10, 508, 15, 2467.00, 1, 1),
(128, 10, 508, 16, 2712.00, 1, 1),
(129, 10, 508, 17, 5868.00, 1, 1),
(130, 10, 508, 18, 373.00, 1, 1),
(131, 10, 508, 19, 86.00, 1, 1),
(132, 10, 507, 15, 2467.00, 1, 1),
(133, 10, 507, 16, 2712.00, 1, 1),
(134, 10, 507, 17, 5868.00, 1, 1),
(135, 10, 507, 18, 373.00, 1, 1),
(136, 10, 507, 19, 86.00, 1, 1),
(137, 10, 502, 15, 2467.00, 0, 1),
(138, 10, 502, 16, 2712.00, 1, 1),
(139, 10, 502, 17, 5868.00, 1, 1),
(140, 10, 502, 18, 373.00, 1, 1),
(141, 10, 502, 19, 86.00, 1, 1),
(142, 10, 506, 15, 2467.00, 0, 1),
(143, 10, 506, 16, 2712.00, 0, 1),
(144, 10, 506, 17, 5868.00, 0, 1),
(145, 10, 506, 18, 373.00, 0, 1),
(146, 10, 506, 19, 86.00, 0, 1),
(147, 10, 503, 15, 2467.00, 1, 1),
(148, 10, 503, 16, 2712.00, 1, 1),
(149, 10, 503, 17, 5868.00, 1, 1),
(150, 10, 503, 18, 373.00, 1, 1),
(151, 10, 503, 19, 86.00, 1, 1),
(152, 10, 505, 15, 2467.00, 1, 1),
(153, 10, 505, 16, 2712.00, 1, 1),
(154, 10, 505, 17, 5868.00, 1, 1),
(155, 10, 505, 18, 373.00, 1, 1),
(156, 10, 505, 19, 86.00, 1, 1),
(157, 10, 504, 15, 2467.00, 1, 1),
(158, 10, 504, 16, 2712.00, 1, 1),
(159, 10, 504, 17, 5868.00, 1, 1),
(160, 10, 504, 18, 373.00, 1, 1),
(161, 10, 504, 19, 86.00, 1, 1),
(162, 10, 494, 15, 2467.00, 1, 1),
(163, 10, 494, 16, 2712.00, 1, 1),
(164, 10, 494, 17, 5868.00, 1, 1),
(165, 10, 494, 18, 373.00, 1, 1),
(166, 10, 494, 19, 86.00, 1, 1),
(167, 10, 493, 15, 2467.00, 1, 1),
(168, 10, 493, 16, 2712.00, 1, 1),
(169, 10, 493, 17, 5868.00, 1, 1),
(170, 10, 493, 18, 373.00, 1, 1),
(171, 10, 493, 19, 86.00, 1, 1),
(172, 10, 492, 15, 2467.00, 1, 1),
(173, 10, 492, 16, 2712.00, 1, 1),
(174, 10, 492, 17, 5868.00, 1, 1),
(175, 10, 492, 18, 373.00, 1, 1),
(176, 10, 492, 19, 86.00, 1, 1),
(177, 10, 491, 15, 2467.00, 1, 1),
(178, 10, 491, 16, 2712.00, 1, 1),
(179, 10, 491, 17, 5868.00, 1, 1),
(180, 10, 491, 18, 373.00, 1, 1),
(181, 10, 491, 19, 86.00, 1, 1),
(182, 10, 442, 15, 2467.00, 1, 1),
(183, 10, 442, 16, 2712.00, 1, 1),
(184, 10, 442, 17, 5868.00, 1, 1),
(185, 10, 442, 18, 373.00, 1, 1),
(186, 10, 442, 19, 86.00, 1, 1),
(187, 10, 484, 15, 2467.00, 1, 1),
(188, 10, 484, 16, 2712.00, 1, 1),
(189, 10, 484, 17, 5868.00, 1, 1),
(190, 10, 484, 18, 373.00, 1, 1),
(191, 10, 484, 19, 86.00, 1, 1),
(192, 7, 411, 11, 1200.00, 1, 1),
(193, 7, 411, 12, 1500.00, 1, 1),
(194, 7, 411, 13, 2200.00, 1, 1),
(195, 7, 411, 14, 250.00, 1, 1),
(196, 7, 410, 11, 1200.00, 1, 1),
(197, 7, 410, 12, 1500.00, 1, 1),
(198, 7, 410, 13, 2200.00, 1, 1),
(199, 7, 410, 14, 250.00, 1, 1),
(200, 7, 408, 11, 1200.00, 1, 1),
(201, 7, 408, 12, 1500.00, 1, 1),
(202, 7, 408, 13, 2200.00, 1, 1),
(203, 7, 408, 14, 250.00, 1, 1),
(204, 7, 431, 12, 78.00, 0, 1),
(205, 7, 431, 13, 45.00, 1, 1),
(206, 7, 431, 14, 80.00, 0, 1),
(207, 7, 427, 11, 1200.00, 0, 1),
(208, 7, 427, 12, 1500.00, 0, 1),
(209, 7, 427, 13, 250.00, 0, 1),
(210, 7, 427, 14, 110.00, 0, 1),
(211, 7, 430, 11, 440.00, 0, 1),
(212, 7, 430, 12, 78.00, 0, 1),
(213, 7, 430, 13, 45.00, 0, 1),
(214, 7, 430, 14, 80.00, 0, 1),
(215, 7, 424, 11, 440.00, 1, 1),
(216, 7, 424, 12, 78.00, 1, 1),
(217, 7, 424, 13, 45.00, 1, 1),
(218, 7, 424, 14, 80.00, 1, 1),
(219, 7, 423, 12, 1500.00, 0, 1),
(220, 7, 423, 13, 2200.00, 0, 1),
(221, 7, 423, 14, 250.00, 1, 1),
(222, 7, 422, 12, 78.00, 1, 1),
(223, 7, 422, 13, 45.00, 1, 1),
(224, 7, 422, 14, 80.00, 1, 1),
(225, 7, 421, 11, 1200.00, 0, 1),
(226, 7, 421, 12, 1500.00, 0, 1),
(227, 7, 421, 13, 2200.00, 0, 1),
(228, 7, 421, 14, 250.00, 1, 1),
(229, 7, 420, 11, 1200.00, 1, 1),
(230, 7, 420, 12, 1500.00, 1, 1),
(231, 7, 420, 13, 2200.00, 1, 1),
(232, 7, 420, 14, 250.00, 1, 1),
(233, 7, 396, 11, 1200.00, 0, 1),
(234, 7, 396, 12, 1500.00, 0, 1),
(235, 7, 396, 13, 2200.00, 0, 1),
(236, 7, 396, 14, 250.00, 0, 1),
(237, 7, 426, 8, 750.00, 1, 1),
(238, 7, 426, 9, 150.00, 1, 1),
(239, 7, 426, 10, 550.00, 1, 1),
(240, 7, 425, 8, 750.00, 1, 1),
(241, 7, 425, 9, 150.00, 1, 1),
(242, 7, 425, 10, 550.00, 1, 1),
(243, 7, 420, 8, 750.00, 1, 1),
(244, 7, 420, 9, 150.00, 1, 1),
(245, 7, 420, 10, 550.00, 1, 1),
(246, 7, 529, 8, 750.00, 1, 1),
(247, 7, 529, 9, 150.00, 0, 1),
(248, 7, 529, 10, 550.00, 0, 1),
(249, 7, 529, 11, 1200.00, 0, 1),
(250, 7, 529, 12, 1500.00, 0, 1),
(251, 7, 529, 13, 2200.00, 0, 1),
(252, 7, 529, 14, 250.00, 1, 1),
(253, 7, 528, 8, 750.00, 1, 1),
(254, 7, 528, 9, 150.00, 0, 1),
(255, 7, 528, 10, 550.00, 0, 1),
(256, 7, 528, 11, 1200.00, 0, 1),
(257, 7, 528, 12, 1500.00, 0, 1),
(258, 7, 528, 13, 2200.00, 0, 1),
(259, 7, 528, 14, 250.00, 1, 1),
(260, 7, 527, 8, 750.00, 0, 1),
(261, 7, 527, 9, 150.00, 0, 1),
(262, 7, 527, 10, 550.00, 0, 1),
(263, 7, 527, 11, 1200.00, 0, 1),
(264, 7, 527, 12, 1500.00, 0, 1),
(265, 7, 527, 13, 2200.00, 0, 1),
(266, 7, 527, 14, 250.00, 1, 1),
(267, 7, 526, 8, 750.00, 1, 1),
(268, 7, 526, 9, 150.00, 0, 1),
(269, 7, 526, 10, 550.00, 0, 1),
(270, 7, 526, 11, 1200.00, 0, 1),
(271, 7, 526, 12, 1500.00, 0, 1),
(272, 7, 526, 13, 2200.00, 0, 1),
(273, 7, 526, 14, 250.00, 1, 1),
(274, 7, 539, 8, 750.00, 0, 1),
(275, 7, 539, 9, 150.00, 0, 1),
(276, 7, 539, 10, 550.00, 1, 1),
(277, 7, 539, 11, 1200.00, 0, 1),
(278, 7, 539, 12, 1500.00, 0, 1),
(279, 7, 539, 13, 250.00, 0, 1),
(280, 7, 539, 14, 110.00, 1, 1),
(281, 7, 538, 8, 750.00, 0, 1),
(282, 7, 538, 9, 150.00, 0, 1),
(283, 7, 538, 10, 550.00, 1, 1),
(284, 7, 538, 11, 1200.00, 0, 1),
(285, 7, 538, 12, 1500.00, 0, 1),
(286, 7, 538, 13, 250.00, 0, 1),
(287, 7, 538, 14, 110.00, 0, 1),
(288, 7, 537, 8, 750.00, 0, 1),
(289, 7, 537, 9, 150.00, 0, 1),
(290, 7, 537, 10, 550.00, 1, 1),
(291, 7, 537, 11, 1200.00, 0, 1),
(292, 7, 537, 12, 1500.00, 0, 1),
(293, 7, 537, 13, 250.00, 0, 1),
(294, 7, 537, 14, 110.00, 0, 1),
(295, 7, 414, 8, 750.00, 0, 1),
(296, 7, 414, 9, 150.00, 0, 1),
(297, 7, 414, 10, 550.00, 0, 1),
(298, 7, 414, 11, 1200.00, 0, 1),
(299, 7, 414, 12, 1500.00, 0, 1),
(300, 7, 414, 13, 2200.00, 0, 1),
(301, 7, 414, 14, 250.00, 1, 1),
(302, 7, 413, 8, 750.00, 0, 1),
(303, 7, 413, 9, 150.00, 0, 1),
(304, 7, 413, 10, 550.00, 0, 1),
(305, 7, 413, 11, 1200.00, 0, 1),
(306, 7, 413, 12, 1500.00, 0, 1),
(307, 7, 413, 13, 2200.00, 0, 1),
(308, 7, 413, 14, 250.00, 1, 1),
(309, 7, 412, 8, 750.00, 0, 1),
(310, 7, 412, 9, 150.00, 1, 1),
(311, 7, 412, 10, 550.00, 1, 1),
(312, 7, 412, 11, 1200.00, 0, 1),
(313, 7, 412, 12, 1500.00, 0, 1),
(314, 7, 412, 13, 250.00, 0, 1),
(315, 7, 412, 14, 110.00, 1, 1),
(316, 7, 407, 8, 750.00, 1, 1),
(317, 7, 407, 9, 150.00, 0, 1),
(318, 7, 407, 10, 550.00, 1, 1),
(319, 7, 407, 11, 1200.00, 1, 1),
(320, 7, 407, 12, 1500.00, 1, 1),
(321, 7, 407, 13, 250.00, 1, 1),
(322, 7, 407, 14, 110.00, 0, 1),
(323, 7, 406, 8, 750.00, 0, 1),
(324, 7, 406, 9, 150.00, 0, 1),
(325, 7, 406, 10, 550.00, 1, 1),
(326, 7, 406, 11, 1200.00, 0, 1),
(327, 7, 406, 12, 1500.00, 0, 1),
(328, 7, 406, 13, 250.00, 0, 1),
(329, 7, 406, 14, 110.00, 0, 1),
(330, 7, 405, 8, 750.00, 1, 1),
(331, 7, 405, 9, 150.00, 1, 1),
(332, 7, 405, 10, 550.00, 1, 1),
(333, 7, 405, 11, 1200.00, 1, 1),
(334, 7, 405, 12, 1500.00, 1, 1),
(335, 7, 405, 13, 2200.00, 1, 1),
(336, 7, 405, 14, 250.00, 1, 1),
(337, 7, 395, 8, 750.00, 1, 1),
(338, 7, 395, 9, 150.00, 0, 1),
(339, 7, 395, 10, 550.00, 0, 1),
(340, 7, 395, 11, 1200.00, 0, 1),
(341, 7, 395, 12, 1500.00, 0, 1),
(342, 7, 395, 13, 2200.00, 0, 1),
(343, 7, 395, 14, 250.00, 0, 1),
(344, 7, 394, 8, 750.00, 1, 1),
(345, 7, 394, 9, 150.00, 1, 1),
(346, 7, 394, 10, 550.00, 1, 1),
(347, 7, 394, 11, 1200.00, 1, 1),
(348, 7, 394, 12, 1500.00, 1, 1),
(349, 7, 394, 13, 2200.00, 0, 1),
(350, 7, 394, 14, 250.00, 0, 1),
(351, 7, 396, 8, 750.00, 1, 1),
(352, 7, 396, 9, 150.00, 0, 1),
(353, 7, 396, 10, 550.00, 0, 1),
(354, 10, 543, 15, 2467.00, 1, 1),
(355, 10, 543, 16, 2712.00, 1, 1),
(356, 10, 543, 17, 5868.00, 1, 1),
(357, 10, 543, 18, 373.00, 1, 1),
(358, 10, 543, 19, 86.00, 1, 1),
(359, 7, 419, 8, 750.00, 1, 1),
(360, 7, 419, 9, 150.00, 0, 1),
(361, 7, 419, 10, 550.00, 1, 1),
(362, 7, 419, 11, 1200.00, 0, 1),
(363, 7, 419, 12, 1500.00, 0, 1),
(364, 7, 419, 13, 2200.00, 0, 1),
(365, 7, 419, 14, 250.00, 0, 1),
(366, 7, 411, 8, 750.00, 0, 1),
(367, 7, 411, 9, 150.00, 0, 1),
(368, 7, 411, 10, 550.00, 0, 1),
(369, 7, 410, 8, 750.00, 0, 1),
(370, 7, 410, 9, 150.00, 0, 1),
(371, 7, 410, 10, 550.00, 0, 1),
(372, 7, 409, 8, 750.00, 1, 1),
(373, 7, 409, 9, 150.00, 1, 1),
(374, 7, 409, 10, 550.00, 1, 1),
(375, 7, 409, 11, 1200.00, 1, 1),
(376, 7, 409, 12, 1500.00, 1, 1),
(377, 7, 409, 13, 2200.00, 1, 1),
(378, 7, 409, 14, 250.00, 1, 1),
(379, 7, 408, 8, 750.00, 1, 1),
(380, 7, 408, 9, 150.00, 1, 1),
(381, 7, 408, 10, 550.00, 1, 1),
(382, 7, 417, 8, 750.00, 1, 1),
(383, 7, 417, 9, 150.00, 0, 1),
(384, 7, 417, 10, 550.00, 1, 1),
(385, 7, 417, 11, 1200.00, 0, 1),
(386, 7, 417, 12, 1500.00, 0, 1),
(387, 7, 417, 13, 2200.00, 0, 1),
(388, 7, 417, 14, 250.00, 0, 1),
(389, 7, 418, 8, 750.00, 1, 1),
(390, 7, 418, 9, 150.00, 0, 1),
(391, 7, 418, 10, 550.00, 1, 1),
(392, 7, 418, 11, 1200.00, 0, 1),
(393, 7, 418, 12, 1500.00, 0, 1),
(394, 7, 418, 13, 2200.00, 0, 1),
(395, 7, 418, 14, 250.00, 0, 1),
(396, 7, 416, 8, 750.00, 1, 1),
(397, 7, 416, 9, 150.00, 0, 1),
(398, 7, 416, 10, 550.00, 1, 1),
(399, 7, 416, 11, 1200.00, 0, 1),
(400, 7, 416, 12, 1500.00, 0, 1),
(401, 7, 416, 13, 2200.00, 0, 1),
(402, 7, 416, 14, 250.00, 0, 1),
(403, 7, 421, 8, 750.00, 1, 1),
(404, 7, 421, 9, 150.00, 0, 1),
(405, 7, 421, 10, 550.00, 0, 1),
(406, 7, 404, 8, 750.00, 1, 1),
(407, 7, 404, 9, 150.00, 0, 1),
(408, 7, 404, 10, 550.00, 0, 1),
(409, 7, 404, 11, 1200.00, 0, 1),
(410, 7, 404, 12, 1500.00, 0, 1),
(411, 7, 404, 13, 2200.00, 0, 1),
(412, 7, 404, 14, 250.00, 1, 1),
(413, 7, 403, 8, 750.00, 1, 1),
(414, 7, 403, 9, 150.00, 0, 1),
(415, 7, 403, 10, 550.00, 0, 1),
(416, 7, 403, 11, 1200.00, 0, 1),
(417, 7, 403, 12, 1500.00, 0, 1),
(418, 7, 403, 13, 2200.00, 0, 1),
(419, 7, 403, 14, 250.00, 1, 1),
(420, 11, 625, 22, 770.00, 0, 1),
(421, 11, 625, 23, 22.00, 0, 1),
(422, 11, 625, 24, 330.00, 1, 1),
(423, 11, 625, 25, 890.00, 0, 1),
(424, 11, 625, 26, 355.00, 0, 1),
(425, 11, 625, 27, 45.00, 1, 1),
(426, 11, 625, 28, 80.00, 0, 1),
(427, 11, 624, 22, 770.00, 1, 1),
(428, 11, 624, 23, 22.00, 1, 1),
(429, 11, 624, 24, 330.00, 1, 1),
(430, 11, 624, 25, 890.00, 0, 1),
(431, 11, 624, 26, 355.00, 0, 1),
(432, 11, 624, 27, 45.00, 1, 1),
(433, 11, 624, 28, 80.00, 1, 1),
(434, 11, 623, 22, 770.00, 1, 1),
(435, 11, 623, 23, 22.00, 1, 1),
(436, 11, 623, 24, 330.00, 1, 1),
(437, 11, 623, 25, 890.00, 0, 1),
(438, 11, 623, 26, 355.00, 0, 1),
(439, 11, 623, 27, 45.00, 0, 1),
(440, 11, 623, 28, 80.00, 1, 1),
(441, 7, 624, 8, 750.00, 0, 1),
(442, 7, 624, 9, 150.00, 0, 1),
(443, 7, 624, 10, 550.00, 0, 1),
(444, 7, 624, 11, 1200.00, 0, 1),
(445, 7, 624, 12, 1500.00, 0, 1),
(446, 7, 624, 13, 2200.00, 0, 1),
(447, 7, 624, 14, 250.00, 0, 1),
(448, 11, 604, 22, 770.00, 1, 1),
(449, 11, 604, 23, 22.00, 1, 1),
(450, 11, 604, 24, 330.00, 1, 1),
(451, 11, 604, 25, 890.00, 1, 1),
(452, 11, 604, 26, 355.00, 1, 1),
(453, 11, 604, 27, 45.00, 1, 1),
(454, 11, 604, 28, 80.00, 1, 1),
(455, 11, 603, 22, 770.00, 1, 1),
(456, 11, 603, 23, 22.00, 1, 1),
(457, 11, 603, 24, 330.00, 1, 1),
(458, 11, 603, 25, 890.00, 1, 1),
(459, 11, 603, 26, 355.00, 1, 1),
(460, 11, 603, 27, 45.00, 1, 1),
(461, 11, 603, 28, 80.00, 1, 1),
(462, 11, 616, 22, 770.00, 1, 1),
(463, 11, 616, 23, 22.00, 0, 1),
(464, 11, 616, 24, 330.00, 0, 1),
(465, 11, 616, 25, 890.00, 0, 1),
(466, 11, 616, 26, 355.00, 0, 1),
(467, 11, 616, 27, 45.00, 0, 1),
(468, 11, 616, 28, 80.00, 1, 1),
(469, 11, 622, 22, 770.00, 0, 1),
(470, 11, 622, 23, 22.00, 0, 1),
(471, 11, 622, 24, 330.00, 1, 1),
(472, 11, 622, 25, 890.00, 0, 1),
(473, 11, 622, 26, 355.00, 0, 1),
(474, 11, 622, 27, 45.00, 0, 1),
(475, 11, 622, 28, 80.00, 0, 1),
(476, 11, 621, 22, 770.00, 0, 1),
(477, 11, 621, 23, 22.00, 1, 1),
(478, 11, 621, 24, 330.00, 1, 1),
(479, 11, 621, 25, 890.00, 0, 1),
(480, 11, 621, 26, 355.00, 1, 1),
(481, 11, 621, 27, 45.00, 0, 1),
(482, 11, 621, 28, 80.00, 0, 1),
(483, 11, 606, 22, 770.00, 1, 1),
(484, 11, 606, 23, 22.00, 1, 1),
(485, 11, 606, 24, 330.00, 1, 1),
(486, 11, 606, 25, 890.00, 1, 1),
(487, 11, 606, 26, 355.00, 1, 1),
(488, 11, 606, 27, 45.00, 1, 1),
(489, 11, 606, 28, 80.00, 1, 1),
(490, 11, 605, 22, 770.00, 1, 1),
(491, 11, 605, 23, 22.00, 1, 1),
(492, 11, 605, 24, 330.00, 1, 1),
(493, 11, 605, 25, 890.00, 1, 1),
(494, 11, 605, 26, 355.00, 1, 1),
(495, 11, 605, 27, 45.00, 1, 1),
(496, 11, 605, 28, 80.00, 1, 1),
(497, 11, 619, 22, 770.00, 1, 1),
(498, 11, 619, 23, 22.00, 1, 1),
(499, 11, 619, 24, 330.00, 1, 1),
(500, 11, 619, 25, 890.00, 1, 1),
(501, 11, 619, 26, 355.00, 1, 1),
(502, 11, 619, 27, 45.00, 1, 1),
(503, 11, 619, 28, 80.00, 1, 1),
(504, 11, 613, 22, 770.00, 1, 1),
(505, 11, 613, 23, 22.00, 1, 1),
(506, 11, 613, 24, 330.00, 1, 1),
(507, 11, 613, 25, 890.00, 1, 1),
(508, 11, 613, 26, 355.00, 1, 1),
(509, 11, 613, 27, 45.00, 1, 1),
(510, 11, 613, 28, 80.00, 1, 1),
(511, 11, 612, 22, 770.00, 1, 1),
(512, 11, 612, 23, 22.00, 1, 1),
(513, 11, 612, 24, 330.00, 1, 1),
(514, 11, 612, 25, 890.00, 1, 1),
(515, 11, 612, 26, 355.00, 1, 1),
(516, 11, 612, 27, 45.00, 1, 1),
(517, 11, 612, 28, 80.00, 1, 1),
(518, 11, 611, 22, 770.00, 1, 1),
(519, 11, 611, 23, 22.00, 1, 1),
(520, 11, 611, 24, 330.00, 1, 1),
(521, 11, 611, 25, 890.00, 0, 1),
(522, 11, 611, 26, 355.00, 0, 1),
(523, 11, 611, 27, 45.00, 0, 1),
(524, 11, 611, 28, 80.00, 0, 1),
(525, 11, 610, 22, 770.00, 1, 1),
(526, 11, 610, 23, 22.00, 1, 1),
(527, 11, 610, 24, 330.00, 0, 1),
(528, 11, 610, 25, 890.00, 0, 1),
(529, 11, 610, 26, 355.00, 1, 1),
(530, 11, 610, 27, 45.00, 0, 1),
(531, 11, 610, 28, 80.00, 0, 1),
(532, 11, 609, 22, 770.00, 1, 1),
(533, 11, 609, 23, 22.00, 1, 1),
(534, 11, 609, 24, 330.00, 1, 1),
(535, 11, 609, 25, 890.00, 0, 1),
(536, 11, 609, 26, 355.00, 0, 1),
(537, 11, 609, 27, 45.00, 0, 1),
(538, 11, 609, 28, 80.00, 0, 1),
(539, 11, 608, 22, 770.00, 1, 1),
(540, 11, 608, 23, 22.00, 1, 1),
(541, 11, 608, 24, 330.00, 1, 1),
(542, 11, 608, 25, 890.00, 1, 1),
(543, 11, 608, 26, 355.00, 0, 1),
(544, 11, 608, 27, 45.00, 0, 1),
(545, 11, 608, 28, 80.00, 0, 1),
(546, 11, 607, 22, 770.00, 1, 1),
(547, 11, 607, 23, 22.00, 1, 1),
(548, 11, 607, 24, 330.00, 1, 1),
(549, 11, 607, 25, 890.00, 1, 1),
(550, 11, 607, 26, 355.00, 1, 1),
(551, 11, 607, 27, 45.00, 1, 1),
(552, 11, 607, 28, 80.00, 1, 1),
(553, 11, 601, 22, 770.00, 0, 1),
(554, 11, 601, 23, 22.00, 1, 1),
(555, 11, 601, 24, 330.00, 1, 1),
(556, 11, 601, 25, 890.00, 0, 1),
(557, 11, 601, 26, 355.00, 0, 1),
(558, 11, 601, 27, 45.00, 0, 1),
(559, 11, 601, 28, 80.00, 0, 1),
(560, 11, 600, 22, 770.00, 0, 1),
(561, 11, 600, 23, 22.00, 1, 1),
(562, 11, 600, 24, 330.00, 1, 1),
(563, 11, 600, 25, 890.00, 0, 1),
(564, 11, 600, 26, 355.00, 0, 1),
(565, 11, 600, 27, 45.00, 0, 1),
(566, 11, 600, 28, 80.00, 1, 1),
(567, 11, 599, 22, 770.00, 0, 1),
(568, 11, 599, 23, 22.00, 0, 1),
(569, 11, 599, 24, 330.00, 1, 1),
(570, 11, 599, 25, 890.00, 0, 1),
(571, 11, 599, 26, 355.00, 1, 1),
(572, 11, 599, 27, 45.00, 0, 1),
(573, 11, 599, 28, 80.00, 1, 1),
(574, 11, 598, 22, 770.00, 1, 1),
(575, 11, 598, 23, 22.00, 0, 1),
(576, 11, 598, 24, 330.00, 0, 1),
(577, 11, 598, 25, 890.00, 0, 1),
(578, 11, 598, 26, 355.00, 1, 1),
(579, 11, 598, 27, 45.00, 0, 1),
(580, 11, 598, 28, 80.00, 0, 1),
(581, 11, 597, 22, 770.00, 1, 1),
(582, 11, 597, 23, 22.00, 0, 1),
(583, 11, 597, 24, 330.00, 0, 1),
(584, 11, 597, 25, 890.00, 0, 1),
(585, 11, 597, 26, 355.00, 1, 1),
(586, 11, 597, 27, 45.00, 0, 1),
(587, 11, 597, 28, 80.00, 0, 1),
(588, 11, 596, 22, 770.00, 1, 1),
(589, 11, 596, 23, 22.00, 1, 1),
(590, 11, 596, 24, 330.00, 1, 1),
(591, 11, 596, 25, 890.00, 1, 1),
(592, 11, 596, 26, 355.00, 1, 1),
(593, 11, 596, 27, 45.00, 1, 1),
(594, 11, 596, 28, 80.00, 1, 1),
(595, 11, 595, 22, 770.00, 1, 1),
(596, 11, 595, 23, 22.00, 1, 1),
(597, 11, 595, 24, 330.00, 1, 1),
(598, 11, 595, 25, 890.00, 1, 1),
(599, 11, 595, 26, 355.00, 1, 1),
(600, 11, 595, 27, 45.00, 1, 1),
(601, 11, 595, 28, 80.00, 1, 1),
(602, 11, 594, 22, 770.00, 1, 1),
(603, 11, 594, 23, 22.00, 1, 1),
(604, 11, 594, 24, 330.00, 1, 1),
(605, 11, 594, 25, 890.00, 1, 1),
(606, 11, 594, 26, 355.00, 1, 1),
(607, 11, 594, 27, 45.00, 1, 1),
(608, 11, 594, 28, 80.00, 1, 1),
(609, 11, 593, 22, 770.00, 1, 1),
(610, 11, 593, 23, 22.00, 1, 1),
(611, 11, 593, 24, 330.00, 1, 1),
(612, 11, 593, 25, 890.00, 1, 1),
(613, 11, 593, 26, 355.00, 1, 1),
(614, 11, 593, 27, 45.00, 1, 1),
(615, 11, 593, 28, 80.00, 1, 1),
(616, 11, 592, 22, 770.00, 1, 1),
(617, 11, 592, 23, 22.00, 1, 1),
(618, 11, 592, 24, 330.00, 1, 1),
(619, 11, 592, 25, 890.00, 1, 1),
(620, 11, 592, 26, 355.00, 1, 1),
(621, 11, 592, 27, 45.00, 1, 1),
(622, 11, 592, 28, 80.00, 1, 1),
(623, 11, 591, 22, 770.00, 1, 1),
(624, 11, 591, 23, 22.00, 1, 1),
(625, 11, 591, 24, 330.00, 1, 1),
(626, 11, 591, 25, 890.00, 1, 1),
(627, 11, 591, 26, 355.00, 1, 1),
(628, 11, 591, 27, 45.00, 1, 1),
(629, 11, 591, 28, 80.00, 1, 1),
(630, 11, 590, 22, 770.00, 1, 1),
(631, 11, 590, 23, 22.00, 1, 1),
(632, 11, 590, 24, 330.00, 1, 1),
(633, 11, 590, 25, 890.00, 1, 1),
(634, 11, 590, 26, 355.00, 1, 1),
(635, 11, 590, 27, 45.00, 1, 1),
(636, 11, 590, 28, 80.00, 1, 1),
(637, 11, 589, 22, 770.00, 1, 1),
(638, 11, 589, 23, 22.00, 1, 1),
(639, 11, 589, 24, 330.00, 1, 1),
(640, 11, 589, 25, 890.00, 1, 1),
(641, 11, 589, 26, 355.00, 1, 1),
(642, 11, 589, 27, 45.00, 1, 1),
(643, 11, 589, 28, 80.00, 1, 1),
(644, 11, 588, 22, 770.00, 1, 1),
(645, 11, 588, 23, 22.00, 1, 1),
(646, 11, 588, 24, 330.00, 1, 1),
(647, 11, 588, 25, 890.00, 1, 1),
(648, 11, 588, 26, 355.00, 1, 1),
(649, 11, 588, 27, 45.00, 1, 1),
(650, 11, 588, 28, 80.00, 1, 1),
(651, 11, 587, 22, 770.00, 1, 1),
(652, 11, 587, 23, 22.00, 1, 1),
(653, 11, 587, 24, 330.00, 1, 1),
(654, 11, 587, 25, 890.00, 1, 1),
(655, 11, 587, 26, 355.00, 1, 1),
(656, 11, 587, 27, 45.00, 1, 1),
(657, 11, 587, 28, 80.00, 1, 1),
(658, 11, 586, 22, 770.00, 1, 1),
(659, 11, 586, 23, 22.00, 1, 1),
(660, 11, 586, 24, 330.00, 1, 1),
(661, 11, 586, 25, 890.00, 1, 1),
(662, 11, 586, 26, 355.00, 1, 1),
(663, 11, 586, 27, 45.00, 1, 1),
(664, 11, 586, 28, 80.00, 1, 1),
(665, 11, 585, 22, 770.00, 1, 1),
(666, 11, 585, 23, 22.00, 1, 1),
(667, 11, 585, 24, 330.00, 1, 1),
(668, 11, 585, 25, 890.00, 1, 1),
(669, 11, 585, 26, 355.00, 1, 1),
(670, 11, 585, 27, 45.00, 1, 1),
(671, 11, 585, 28, 80.00, 1, 1),
(672, 11, 584, 22, 770.00, 1, 1),
(673, 11, 584, 23, 22.00, 1, 1),
(674, 11, 584, 24, 330.00, 1, 1),
(675, 11, 584, 25, 890.00, 1, 1),
(676, 11, 584, 26, 355.00, 1, 1),
(677, 11, 584, 27, 45.00, 1, 1),
(678, 11, 584, 28, 80.00, 1, 1),
(679, 11, 583, 22, 770.00, 1, 1),
(680, 11, 583, 23, 22.00, 0, 1),
(681, 11, 583, 24, 330.00, 0, 1),
(682, 11, 583, 25, 890.00, 0, 1),
(683, 11, 583, 26, 355.00, 0, 1),
(684, 11, 583, 27, 45.00, 0, 1),
(685, 11, 583, 28, 80.00, 0, 1),
(686, 11, 582, 22, 770.00, 1, 1),
(687, 11, 582, 23, 22.00, 1, 1),
(688, 11, 582, 24, 330.00, 0, 1),
(689, 11, 582, 25, 890.00, 0, 1),
(690, 11, 582, 26, 355.00, 0, 1),
(691, 11, 582, 27, 45.00, 0, 1),
(692, 11, 582, 28, 80.00, 0, 1),
(693, 11, 581, 22, 770.00, 1, 1),
(694, 11, 581, 23, 22.00, 1, 1),
(695, 11, 581, 24, 330.00, 1, 1),
(696, 11, 581, 25, 890.00, 0, 1),
(697, 11, 581, 26, 355.00, 0, 1),
(698, 11, 581, 27, 45.00, 0, 1),
(699, 11, 581, 28, 80.00, 0, 1),
(700, 11, 620, 22, 770.00, 1, 1),
(701, 11, 620, 23, 22.00, 1, 1),
(702, 11, 620, 24, 330.00, 1, 1),
(703, 11, 620, 25, 890.00, 1, 1),
(704, 11, 620, 26, 355.00, 1, 1),
(705, 11, 620, 27, 45.00, 1, 1),
(706, 11, 620, 28, 80.00, 1, 1),
(707, 11, 615, 22, 770.00, 0, 1),
(708, 11, 615, 23, 22.00, 0, 1),
(709, 11, 615, 24, 330.00, 0, 1),
(710, 11, 615, 25, 890.00, 0, 1),
(711, 11, 615, 26, 355.00, 0, 1),
(712, 11, 615, 27, 45.00, 0, 1),
(713, 11, 615, 28, 80.00, 0, 1),
(714, 11, 602, 22, 770.00, 0, 1),
(715, 11, 602, 23, 22.00, 1, 1),
(716, 11, 602, 24, 330.00, 1, 1),
(717, 11, 602, 25, 890.00, 0, 1),
(718, 11, 602, 26, 355.00, 0, 1),
(719, 11, 602, 27, 45.00, 1, 1),
(720, 11, 602, 28, 80.00, 1, 1),
(721, 11, 561, 22, 770.00, 0, 1),
(722, 11, 561, 23, 22.00, 0, 1),
(723, 11, 561, 24, 330.00, 0, 1),
(724, 11, 561, 25, 890.00, 0, 1),
(725, 11, 561, 26, 355.00, 1, 1),
(726, 11, 561, 27, 45.00, 0, 1),
(727, 11, 561, 28, 80.00, 0, 1),
(728, 11, 566, 22, 770.00, 0, 1),
(729, 11, 566, 23, 22.00, 0, 1),
(730, 11, 566, 24, 330.00, 0, 1),
(731, 11, 566, 25, 890.00, 0, 1),
(732, 11, 566, 26, 355.00, 0, 1),
(733, 11, 566, 27, 45.00, 0, 1),
(734, 11, 566, 28, 80.00, 0, 1),
(735, 10, 708, 15, 2467.00, 0, 1),
(736, 10, 708, 16, 2712.00, 0, 1),
(737, 10, 708, 17, 5868.00, 0, 1),
(738, 10, 708, 18, 373.00, 0, 1),
(739, 10, 708, 19, 86.00, 0, 1),
(740, 10, 709, 15, 2467.00, 0, 1),
(741, 10, 709, 16, 2712.00, 0, 1),
(742, 10, 709, 17, 5868.00, 0, 1),
(743, 10, 709, 18, 373.00, 0, 1),
(744, 10, 709, 19, 86.00, 0, 1),
(745, 7, 423, 8, 750.00, 0, 1),
(746, 7, 423, 9, 150.00, 0, 1),
(747, 7, 423, 10, 550.00, 1, 1),
(748, 7, 415, 8, 750.00, 0, 1),
(749, 7, 415, 9, 150.00, 1, 1),
(750, 7, 415, 10, 550.00, 0, 1),
(751, 7, 415, 11, 1200.00, 0, 1),
(752, 7, 415, 12, 1500.00, 0, 1),
(753, 7, 415, 13, 2200.00, 0, 1),
(754, 7, 415, 14, 250.00, 1, 1),
(755, 7, 710, 8, 750.00, 0, 1),
(756, 7, 710, 9, 150.00, 0, 1),
(757, 7, 710, 10, 550.00, 0, 1),
(758, 7, 710, 11, 1200.00, 0, 1),
(759, 7, 710, 12, 1500.00, 0, 1),
(760, 7, 710, 13, 2200.00, 0, 1),
(761, 7, 710, 14, 250.00, 0, 1),
(762, 7, 711, 8, 750.00, 0, 1),
(763, 7, 711, 9, 150.00, 0, 1),
(764, 7, 711, 10, 550.00, 0, 1),
(765, 7, 711, 11, 1200.00, 0, 1),
(766, 7, 711, 12, 1500.00, 0, 1),
(767, 7, 711, 13, 2200.00, 0, 1),
(768, 7, 711, 14, 250.00, 0, 1),
(769, 7, 712, 8, 750.00, 0, 1),
(770, 7, 712, 9, 150.00, 0, 1),
(771, 7, 712, 10, 550.00, 0, 1),
(772, 7, 712, 11, 1200.00, 0, 1),
(773, 7, 712, 12, 1500.00, 0, 1),
(774, 7, 712, 13, 2200.00, 0, 1),
(775, 7, 712, 14, 250.00, 0, 1),
(776, 7, 713, 8, 750.00, 0, 1),
(777, 7, 713, 9, 150.00, 1, 1),
(778, 7, 713, 10, 550.00, 0, 1),
(779, 7, 713, 11, 1200.00, 0, 1),
(780, 7, 713, 12, 1500.00, 0, 1),
(781, 7, 713, 13, 2200.00, 0, 1),
(782, 7, 713, 14, 250.00, 1, 1),
(783, 7, 714, 8, 750.00, 0, 1),
(784, 7, 714, 9, 150.00, 1, 1),
(785, 7, 714, 10, 550.00, 0, 1),
(786, 7, 714, 11, 1200.00, 0, 1),
(787, 7, 714, 12, 1500.00, 0, 1),
(788, 7, 714, 13, 2200.00, 0, 1),
(789, 7, 714, 14, 250.00, 1, 1),
(790, 10, 715, 15, 2467.00, 1, 1),
(791, 10, 715, 16, 2712.00, 1, 1),
(792, 10, 715, 17, 5868.00, 1, 1),
(793, 10, 715, 18, 373.00, 0, 1),
(794, 10, 715, 19, 86.00, 0, 1),
(795, 10, 519, 15, 2467.00, 0, 1),
(796, 10, 519, 16, 2712.00, 0, 1),
(797, 10, 713, 15, 2467.00, 0, 1),
(798, 10, 713, 16, 2712.00, 0, 1),
(799, 10, 713, 17, 5868.00, 0, 1),
(800, 10, 713, 18, 373.00, 0, 1),
(801, 10, 713, 19, 86.00, 0, 1),
(802, 7, 720, 8, 750.00, 1, 1),
(803, 7, 720, 9, 150.00, 1, 1),
(804, 7, 720, 10, 550.00, 1, 1),
(805, 7, 720, 11, 1200.00, 1, 1),
(806, 7, 720, 12, 1500.00, 1, 1),
(807, 7, 720, 13, 250.00, 1, 1),
(808, 7, 720, 14, 110.00, 1, 1),
(809, 11, 748, 22, 770.00, 0, 1),
(810, 11, 748, 23, 22.00, 0, 1),
(811, 11, 748, 24, 330.00, 1, 1),
(812, 11, 748, 25, 890.00, 0, 1),
(813, 11, 748, 26, 355.00, 0, 1),
(814, 11, 748, 27, 45.00, 0, 1),
(815, 11, 748, 28, 80.00, 0, 1),
(816, 11, 736, 22, 770.00, 0, 1),
(817, 11, 736, 23, 22.00, 0, 1),
(818, 11, 736, 24, 330.00, 1, 1),
(819, 11, 736, 25, 890.00, 0, 1),
(820, 11, 736, 26, 355.00, 0, 1),
(821, 11, 736, 27, 45.00, 0, 1),
(822, 11, 736, 28, 80.00, 0, 1),
(823, 11, 724, 22, 770.00, 0, 1),
(824, 11, 724, 23, 22.00, 1, 1),
(825, 11, 724, 24, 330.00, 1, 1),
(826, 11, 724, 25, 890.00, 1, 1),
(827, 11, 724, 26, 355.00, 0, 1),
(828, 11, 724, 27, 45.00, 0, 1),
(829, 11, 724, 28, 80.00, 1, 1),
(830, 7, 732, 8, 750.00, 0, 1),
(831, 7, 732, 9, 150.00, 0, 1),
(832, 7, 732, 10, 550.00, 1, 1),
(833, 7, 732, 11, 1200.00, 0, 1),
(834, 7, 732, 12, 1500.00, 0, 1),
(835, 7, 732, 13, 250.00, 0, 1),
(836, 7, 732, 14, 110.00, 0, 1),
(837, 7, 744, 8, 750.00, 1, 1),
(838, 7, 744, 9, 150.00, 0, 1),
(839, 7, 744, 10, 550.00, 1, 1),
(840, 7, 744, 11, 1200.00, 0, 1),
(841, 7, 744, 12, 1500.00, 0, 1),
(842, 7, 744, 13, 250.00, 0, 1),
(843, 7, 744, 14, 110.00, 0, 1),
(844, 11, 545, 22, 770.00, 0, 1),
(845, 11, 545, 23, 22.00, 0, 1),
(846, 11, 545, 24, 330.00, 1, 1),
(847, 11, 545, 25, 890.00, 1, 1),
(848, 11, 545, 26, 355.00, 1, 1),
(849, 11, 545, 27, 45.00, 0, 1),
(850, 11, 545, 28, 80.00, 0, 1),
(851, 14, 835, 36, 770.00, 0, 1),
(852, 14, 835, 37, 22.00, 0, 1),
(853, 14, 835, 38, 330.00, 0, 1),
(854, 14, 835, 39, 6600.00, 0, 1),
(855, 14, 835, 40, 355.00, 1, 1),
(856, 14, 835, 41, 45.00, 1, 1),
(857, 14, 835, 42, 80.00, 0, 1),
(858, 14, 836, 36, 1000.00, 0, 1),
(859, 14, 836, 37, 150.00, 1, 1),
(860, 14, 836, 38, 250.00, 1, 1),
(861, 14, 836, 39, 2500.00, 0, 1),
(862, 14, 836, 40, 500.00, 0, 1),
(863, 14, 836, 41, 50.00, 1, 1),
(864, 14, 836, 42, 100.00, 0, 1),
(865, 14, 837, 36, 1000.00, 0, 1),
(866, 14, 837, 37, 150.00, 1, 1),
(867, 14, 837, 38, 250.00, 1, 1),
(868, 14, 837, 39, 2500.00, 0, 1),
(869, 14, 837, 40, 500.00, 1, 1),
(870, 14, 837, 41, 50.00, 1, 1),
(871, 14, 837, 42, 100.00, 1, 1),
(872, 7, 838, 8, 750.00, 0, 1),
(873, 7, 838, 9, 150.00, 0, 1),
(874, 7, 838, 10, 550.00, 0, 1),
(875, 7, 838, 11, 1200.00, 0, 1),
(876, 7, 838, 12, 1500.00, 0, 1),
(877, 7, 838, 13, 250.00, 0, 1),
(878, 7, 838, 14, 110.00, 0, 1),
(879, 7, 839, 8, 750.00, 0, 1),
(880, 7, 839, 9, 150.00, 0, 1),
(881, 7, 839, 10, 550.00, 0, 1),
(882, 7, 839, 11, 1200.00, 0, 1),
(883, 7, 839, 12, 1500.00, 0, 1),
(884, 7, 839, 13, 250.00, 0, 1),
(885, 7, 839, 14, 110.00, 0, 1),
(886, 14, 840, 36, 770.00, 0, 1),
(887, 14, 840, 37, 22.00, 0, 1),
(888, 14, 840, 38, 330.00, 0, 1),
(889, 14, 840, 39, 6600.00, 0, 1),
(890, 14, 840, 40, 355.00, 0, 1),
(891, 14, 840, 41, 45.00, 0, 1),
(892, 14, 840, 42, 80.00, 0, 1),
(893, 14, 817, 36, 1000.00, 0, 1),
(894, 14, 817, 37, 150.00, 0, 1),
(895, 14, 817, 38, 250.00, 1, 1),
(896, 14, 817, 39, 2500.00, 0, 1),
(897, 14, 817, 40, 500.00, 1, 1),
(898, 14, 817, 41, 50.00, 1, 1),
(899, 14, 817, 42, 100.00, 0, 1),
(900, 14, 816, 36, 1000.00, 0, 1),
(901, 14, 816, 37, 150.00, 0, 1),
(902, 14, 816, 38, 250.00, 0, 1),
(903, 14, 816, 39, 2500.00, 0, 1),
(904, 14, 816, 40, 500.00, 1, 1),
(905, 14, 816, 41, 50.00, 0, 1),
(906, 14, 816, 42, 100.00, 0, 1),
(907, 14, 815, 36, 1000.00, 0, 1),
(908, 14, 815, 37, 150.00, 0, 1),
(909, 14, 815, 38, 250.00, 1, 1),
(910, 14, 815, 39, 2500.00, 0, 1),
(911, 14, 815, 40, 500.00, 0, 1),
(912, 14, 815, 41, 50.00, 1, 1),
(913, 14, 815, 42, 100.00, 0, 1),
(914, 14, 814, 36, 1000.00, 0, 1),
(915, 14, 814, 37, 150.00, 1, 1),
(916, 14, 814, 38, 250.00, 1, 1),
(917, 14, 814, 39, 2500.00, 0, 1),
(918, 14, 814, 40, 500.00, 0, 1),
(919, 14, 814, 41, 50.00, 0, 1),
(920, 14, 814, 42, 100.00, 0, 1),
(921, 14, 813, 36, 1000.00, 0, 1),
(922, 14, 813, 37, 150.00, 0, 1),
(923, 14, 813, 38, 250.00, 1, 1),
(924, 14, 813, 39, 2500.00, 0, 1),
(925, 14, 813, 40, 500.00, 0, 1),
(926, 14, 813, 41, 50.00, 1, 1),
(927, 14, 813, 42, 100.00, 1, 1),
(928, 14, 825, 36, 1000.00, 0, 1),
(929, 14, 825, 37, 150.00, 0, 1),
(930, 14, 825, 38, 250.00, 1, 1),
(931, 14, 825, 39, 2500.00, 0, 1),
(932, 14, 825, 40, 500.00, 1, 1),
(933, 14, 825, 41, 50.00, 0, 1),
(934, 14, 825, 42, 100.00, 1, 1),
(935, 14, 828, 36, 1000.00, 0, 1),
(936, 14, 828, 37, 150.00, 1, 1),
(937, 14, 828, 38, 250.00, 1, 1),
(938, 14, 828, 39, 2500.00, 0, 1),
(939, 14, 828, 40, 500.00, 0, 1),
(940, 14, 828, 41, 50.00, 0, 1),
(941, 14, 828, 42, 100.00, 1, 1),
(942, 14, 827, 36, 1000.00, 0, 1),
(943, 14, 827, 37, 150.00, 1, 1),
(944, 14, 827, 38, 250.00, 1, 1),
(945, 14, 827, 39, 2500.00, 0, 1),
(946, 14, 827, 40, 500.00, 1, 1),
(947, 14, 827, 41, 50.00, 0, 1),
(948, 14, 827, 42, 100.00, 0, 1),
(949, 14, 826, 36, 1000.00, 0, 1),
(950, 14, 826, 37, 150.00, 1, 1),
(951, 14, 826, 38, 250.00, 1, 1),
(952, 14, 826, 39, 2500.00, 0, 1),
(953, 14, 826, 40, 500.00, 0, 1),
(954, 14, 826, 41, 50.00, 1, 1),
(955, 14, 826, 42, 100.00, 0, 1),
(956, 11, 841, 22, 770.00, 0, 1),
(957, 11, 841, 23, 22.00, 0, 1),
(958, 11, 841, 24, 330.00, 0, 1),
(959, 11, 841, 25, 890.00, 0, 1),
(960, 11, 841, 26, 355.00, 0, 1),
(961, 11, 841, 27, 45.00, 0, 1),
(962, 11, 841, 28, 80.00, 1, 1),
(963, 14, 842, 36, 1000.00, 0, 1),
(964, 14, 842, 37, 150.00, 0, 1),
(965, 14, 842, 38, 250.00, 1, 1),
(966, 14, 842, 39, 2500.00, 0, 1),
(967, 14, 842, 40, 500.00, 0, 1),
(968, 14, 842, 41, 50.00, 0, 1),
(969, 14, 842, 42, 100.00, 0, 1),
(970, 14, 843, 36, 0.00, 0, 1),
(971, 14, 843, 37, 0.00, 0, 1),
(972, 14, 843, 38, 0.00, 0, 1),
(973, 14, 843, 39, 10.00, 1, 1),
(974, 14, 843, 40, 272.00, 1, 1),
(975, 14, 843, 41, 210.00, 1, 1),
(976, 14, 843, 42, 37.00, 1, 1),
(977, 14, 844, 36, 0.00, 0, 1),
(978, 14, 844, 37, 0.00, 0, 1),
(979, 14, 844, 38, 0.00, 0, 1),
(980, 14, 844, 39, 10.00, 0, 1),
(981, 14, 844, 40, 272.00, 0, 1),
(982, 14, 844, 41, 210.00, 0, 1),
(983, 14, 844, 42, 37.00, 0, 1),
(984, 14, 845, 36, 1000.00, 0, 1),
(985, 14, 845, 37, 150.00, 0, 1),
(986, 14, 845, 38, 250.00, 0, 1),
(987, 14, 845, 39, 2500.00, 0, 1),
(988, 14, 845, 40, 500.00, 0, 1),
(989, 14, 845, 41, 50.00, 0, 1),
(990, 14, 845, 42, 100.00, 0, 1),
(991, 14, 846, 36, 1000.00, 0, 1),
(992, 14, 846, 37, 150.00, 0, 1),
(993, 14, 846, 38, 250.00, 0, 1),
(994, 14, 846, 39, 2500.00, 0, 1),
(995, 14, 846, 40, 500.00, 0, 1),
(996, 14, 846, 41, 50.00, 0, 1),
(997, 14, 846, 42, 100.00, 0, 1),
(998, 14, 847, 36, 1000.00, 0, 1),
(999, 14, 847, 37, 150.00, 0, 1),
(1000, 14, 847, 38, 250.00, 0, 1),
(1001, 14, 847, 39, 2500.00, 0, 1),
(1002, 14, 847, 40, 500.00, 0, 1),
(1003, 14, 847, 41, 50.00, 0, 1),
(1004, 14, 847, 42, 100.00, 0, 1),
(1005, 14, 848, 36, 1000.00, 0, 1),
(1006, 14, 848, 37, 150.00, 0, 1),
(1007, 14, 848, 38, 250.00, 0, 1),
(1008, 14, 848, 39, 2500.00, 0, 1),
(1009, 14, 848, 40, 500.00, 0, 1),
(1010, 14, 848, 41, 50.00, 0, 1),
(1011, 14, 848, 42, 100.00, 0, 1),
(1012, 14, 849, 36, 1000.00, 0, 1),
(1013, 14, 849, 37, 150.00, 0, 1),
(1014, 14, 849, 38, 250.00, 0, 1),
(1015, 14, 849, 39, 2500.00, 0, 1),
(1016, 14, 849, 40, 500.00, 0, 1),
(1017, 14, 849, 41, 50.00, 0, 1),
(1018, 14, 849, 42, 100.00, 0, 1),
(1019, 14, 850, 36, 1000.00, 0, 1),
(1020, 14, 850, 37, 150.00, 1, 1),
(1021, 14, 850, 38, 250.00, 1, 1),
(1022, 14, 850, 39, 2500.00, 0, 1),
(1023, 14, 850, 40, 500.00, 0, 1),
(1024, 14, 850, 41, 50.00, 0, 1),
(1025, 14, 850, 42, 100.00, 0, 1),
(1026, 14, 851, 36, 0.00, 0, 1),
(1027, 14, 851, 37, 0.00, 0, 1),
(1028, 14, 851, 38, 0.00, 0, 1),
(1029, 14, 851, 39, 10.00, 0, 1),
(1030, 14, 851, 40, 272.00, 0, 1),
(1031, 14, 851, 41, 210.00, 0, 1),
(1032, 14, 851, 42, 37.00, 0, 1),
(1033, 14, 852, 36, 0.00, 0, 1),
(1034, 14, 852, 37, 0.00, 0, 1),
(1035, 14, 852, 38, 0.00, 0, 1),
(1036, 14, 852, 39, 10.00, 0, 1),
(1037, 14, 852, 40, 272.00, 0, 1),
(1038, 14, 852, 41, 210.00, 0, 1),
(1039, 14, 852, 42, 37.00, 0, 1),
(1040, 14, 771, 36, 0.00, 0, 1),
(1041, 14, 771, 37, 0.00, 0, 1),
(1042, 14, 771, 38, 0.00, 0, 1),
(1043, 14, 771, 39, 10.00, 0, 1),
(1044, 14, 771, 40, 272.00, 0, 1),
(1045, 14, 771, 41, 210.00, 0, 1),
(1046, 14, 771, 42, 37.00, 0, 1),
(1047, 14, 775, 36, 0.00, 0, 1),
(1048, 14, 775, 37, 0.00, 0, 1),
(1049, 14, 775, 38, 0.00, 0, 1),
(1050, 14, 775, 39, 10.00, 0, 1),
(1051, 14, 775, 40, 272.00, 0, 1),
(1052, 14, 775, 41, 210.00, 0, 1),
(1053, 14, 775, 42, 37.00, 0, 1),
(1054, 14, 853, 36, 0.00, 0, 1),
(1055, 14, 853, 37, 0.00, 0, 1),
(1056, 14, 853, 38, 0.00, 0, 1),
(1057, 14, 853, 39, 10.00, 0, 1),
(1058, 14, 853, 40, 272.00, 1, 1),
(1059, 14, 853, 41, 210.00, 0, 1),
(1060, 14, 853, 42, 37.00, 0, 1),
(1061, 14, 822, 36, 0.00, 0, 1),
(1062, 14, 822, 37, 0.00, 0, 1),
(1063, 14, 822, 38, 0.00, 0, 1),
(1064, 14, 822, 39, 10.00, 1, 1),
(1065, 14, 822, 40, 272.00, 1, 1),
(1066, 14, 822, 41, 210.00, 1, 1),
(1067, 14, 822, 42, 37.00, 1, 1),
(1068, 14, 854, 36, 0.00, 0, 1),
(1069, 14, 854, 37, 0.00, 0, 1),
(1070, 14, 854, 38, 0.00, 0, 1),
(1071, 14, 854, 39, 10.00, 1, 1),
(1072, 14, 854, 40, 272.00, 1, 1),
(1073, 14, 854, 41, 210.00, 0, 1),
(1074, 14, 854, 42, 37.00, 1, 1),
(1075, 14, 855, 36, 0.00, 0, 1),
(1076, 14, 855, 37, 0.00, 0, 1),
(1077, 14, 855, 38, 0.00, 0, 1),
(1078, 14, 855, 39, 10.00, 0, 1),
(1079, 14, 855, 40, 272.00, 0, 1),
(1080, 14, 855, 41, 210.00, 0, 1),
(1081, 14, 855, 42, 37.00, 0, 1),
(1082, 14, 856, 36, 0.00, 0, 1),
(1083, 14, 856, 37, 0.00, 0, 1),
(1084, 14, 856, 38, 0.00, 0, 1),
(1085, 14, 856, 39, 10.00, 0, 1),
(1086, 14, 856, 40, 272.00, 0, 1),
(1087, 14, 856, 41, 210.00, 0, 1),
(1088, 14, 856, 42, 37.00, 0, 1),
(1089, 14, 857, 36, 0.00, 0, 1),
(1090, 14, 857, 37, 0.00, 0, 1),
(1091, 14, 857, 38, 0.00, 0, 1),
(1092, 14, 857, 39, 10.00, 0, 1),
(1093, 14, 857, 40, 272.00, 0, 1),
(1094, 14, 857, 41, 210.00, 0, 1),
(1095, 14, 857, 42, 37.00, 0, 1),
(1096, 14, 858, 36, 0.00, 0, 1),
(1097, 14, 858, 37, 0.00, 0, 1),
(1098, 14, 858, 38, 0.00, 0, 1),
(1099, 14, 858, 39, 10.00, 0, 1),
(1100, 14, 858, 40, 272.00, 0, 1),
(1101, 14, 858, 41, 210.00, 0, 1),
(1102, 14, 858, 42, 37.00, 0, 1),
(1103, 14, 859, 36, 0.00, 0, 1),
(1104, 14, 859, 37, 0.00, 0, 1),
(1105, 14, 859, 38, 0.00, 0, 1),
(1106, 14, 859, 39, 10.00, 1, 1),
(1107, 14, 859, 40, 272.00, 1, 1),
(1108, 14, 859, 41, 210.00, 1, 1),
(1109, 14, 859, 42, 37.00, 1, 1),
(1110, 14, 860, 36, 0.00, 0, 1),
(1111, 14, 860, 37, 0.00, 0, 1),
(1112, 14, 860, 38, 0.00, 0, 1),
(1113, 14, 860, 39, 10.00, 0, 1),
(1114, 14, 860, 40, 272.00, 0, 1),
(1115, 14, 860, 41, 210.00, 0, 1),
(1116, 14, 860, 42, 37.00, 0, 1),
(1117, 1, 861, 1, 770.00, 0, 1),
(1118, 1, 861, 2, 22.00, 0, 1),
(1119, 1, 861, 3, 330.00, 0, 1),
(1120, 1, 861, 4, 6600.00, 0, 1),
(1121, 1, 861, 5, 355.00, 0, 1),
(1122, 1, 861, 6, 45.00, 0, 1),
(1123, 1, 861, 7, 80.00, 0, 1),
(1124, 1, 862, 1, 770.00, 0, 1),
(1125, 1, 862, 2, 22.00, 0, 1),
(1126, 1, 862, 3, 330.00, 0, 1),
(1127, 1, 862, 4, 6600.00, 0, 1),
(1128, 1, 862, 5, 355.00, 0, 1),
(1129, 1, 862, 6, 45.00, 0, 1),
(1130, 1, 862, 7, 80.00, 0, 1),
(1131, 1, 863, 1, 770.00, 0, 1),
(1132, 1, 863, 2, 22.00, 0, 1),
(1133, 1, 863, 3, 330.00, 0, 1),
(1134, 1, 863, 4, 6600.00, 0, 1),
(1135, 1, 863, 5, 355.00, 0, 1),
(1136, 1, 863, 6, 45.00, 0, 1),
(1137, 1, 863, 7, 80.00, 0, 1),
(1138, 1, 876, 1, 770.00, 0, 1),
(1139, 1, 876, 2, 22.00, 0, 1),
(1140, 1, 876, 3, 330.00, 0, 1),
(1141, 1, 876, 4, 6600.00, 0, 1),
(1142, 1, 876, 5, 355.00, 0, 1),
(1143, 1, 876, 6, 45.00, 0, 1),
(1144, 1, 876, 7, 80.00, 0, 1),
(1145, 14, 888, 36, 0.00, 0, 1),
(1146, 14, 888, 37, 0.00, 0, 1),
(1147, 14, 888, 38, 0.00, 0, 1),
(1148, 14, 888, 39, 10.00, 1, 1),
(1149, 14, 888, 40, 272.00, 1, 1),
(1150, 14, 888, 41, 210.00, 1, 1),
(1151, 14, 888, 42, 37.00, 1, 1),
(1152, 14, 875, 36, 0.00, 0, 1),
(1153, 14, 875, 37, 0.00, 0, 1),
(1154, 14, 875, 38, 0.00, 0, 1),
(1155, 14, 875, 39, 10.00, 1, 1),
(1156, 14, 875, 40, 272.00, 1, 1),
(1157, 14, 875, 41, 210.00, 1, 1),
(1158, 14, 875, 42, 37.00, 1, 1),
(1159, 11, 889, 22, 770.00, 0, 1),
(1160, 11, 889, 23, 22.00, 0, 1),
(1161, 11, 889, 24, 330.00, 0, 1),
(1162, 11, 889, 25, 890.00, 0, 1),
(1163, 11, 889, 26, 355.00, 0, 1),
(1164, 11, 889, 27, 45.00, 1, 1),
(1165, 11, 889, 28, 80.00, 1, 1),
(1166, 11, 890, 22, 770.00, 0, 1),
(1167, 11, 890, 23, 22.00, 0, 1),
(1168, 11, 890, 24, 330.00, 0, 1),
(1169, 11, 890, 25, 890.00, 0, 1),
(1170, 11, 890, 26, 355.00, 0, 1),
(1171, 11, 890, 27, 45.00, 0, 1),
(1172, 11, 890, 28, 80.00, 0, 1),
(1173, 11, 891, 22, 770.00, 0, 1),
(1174, 11, 891, 23, 22.00, 0, 1),
(1175, 11, 891, 24, 330.00, 0, 1),
(1176, 11, 891, 25, 890.00, 0, 1),
(1177, 11, 891, 26, 355.00, 0, 1),
(1178, 11, 891, 27, 45.00, 0, 1),
(1179, 11, 891, 28, 80.00, 0, 1),
(1180, 11, 892, 22, 770.00, 0, 1),
(1181, 11, 892, 23, 22.00, 0, 1),
(1182, 11, 892, 24, 330.00, 1, 1),
(1183, 11, 892, 25, 890.00, 0, 1),
(1184, 11, 892, 26, 355.00, 1, 1),
(1185, 11, 892, 27, 45.00, 0, 1),
(1186, 11, 892, 28, 80.00, 0, 1),
(1187, 11, 893, 22, 770.00, 0, 1),
(1188, 11, 893, 23, 22.00, 0, 1),
(1189, 11, 893, 24, 330.00, 1, 1),
(1190, 11, 893, 25, 890.00, 0, 1),
(1191, 11, 893, 26, 355.00, 0, 1),
(1192, 11, 893, 27, 45.00, 1, 1),
(1193, 11, 893, 28, 80.00, 1, 1),
(1194, 11, 894, 22, 770.00, 0, 1),
(1195, 11, 894, 23, 22.00, 1, 1),
(1196, 11, 894, 24, 330.00, 1, 1),
(1197, 11, 894, 25, 890.00, 0, 1),
(1198, 11, 894, 26, 355.00, 1, 1),
(1199, 11, 894, 27, 45.00, 0, 1),
(1200, 11, 894, 28, 80.00, 0, 1),
(1201, 11, 895, 22, 770.00, 1, 1),
(1202, 11, 895, 23, 22.00, 0, 1),
(1203, 11, 895, 24, 330.00, 0, 1),
(1204, 11, 895, 25, 890.00, 0, 1),
(1205, 11, 895, 26, 355.00, 0, 1),
(1206, 11, 895, 27, 45.00, 0, 1),
(1207, 11, 895, 28, 80.00, 0, 1),
(1208, 11, 896, 22, 770.00, 0, 1),
(1209, 11, 896, 23, 22.00, 0, 1),
(1210, 11, 896, 24, 330.00, 0, 1),
(1211, 11, 896, 25, 890.00, 0, 1),
(1212, 11, 896, 26, 355.00, 0, 1),
(1213, 11, 896, 27, 45.00, 0, 1),
(1214, 11, 896, 28, 80.00, 0, 1),
(1215, 11, 897, 22, 770.00, 0, 1),
(1216, 11, 897, 23, 22.00, 1, 1),
(1217, 11, 897, 24, 330.00, 1, 1),
(1218, 11, 897, 25, 890.00, 0, 1),
(1219, 11, 897, 26, 355.00, 0, 1),
(1220, 11, 897, 27, 45.00, 0, 1),
(1221, 11, 897, 28, 80.00, 0, 1),
(1222, 7, 898, 8, 750.00, 0, 1),
(1223, 7, 898, 9, 150.00, 0, 1),
(1224, 7, 898, 10, 550.00, 0, 1),
(1225, 7, 898, 11, 1200.00, 0, 1),
(1226, 7, 898, 12, 1500.00, 0, 1),
(1227, 7, 898, 13, 250.00, 0, 1),
(1228, 7, 898, 14, 110.00, 0, 1),
(1229, 7, 899, 8, 750.00, 0, 1),
(1230, 7, 899, 9, 150.00, 0, 1),
(1231, 7, 899, 10, 550.00, 0, 1),
(1232, 7, 899, 11, 1200.00, 0, 1),
(1233, 7, 899, 12, 1500.00, 0, 1),
(1234, 7, 899, 13, 250.00, 0, 1),
(1235, 7, 899, 14, 110.00, 0, 1),
(1236, 7, 900, 8, 750.00, 0, 1),
(1237, 7, 900, 9, 150.00, 0, 1),
(1238, 7, 900, 10, 550.00, 0, 1),
(1239, 7, 900, 11, 1200.00, 0, 1),
(1240, 7, 900, 12, 1500.00, 0, 1),
(1241, 7, 900, 13, 250.00, 0, 1),
(1242, 7, 900, 14, 110.00, 0, 1),
(1243, 7, 901, 8, 750.00, 0, 1),
(1244, 7, 901, 9, 150.00, 0, 1),
(1245, 7, 901, 10, 550.00, 0, 1),
(1246, 7, 901, 11, 1200.00, 0, 1),
(1247, 7, 901, 12, 1500.00, 0, 1),
(1248, 7, 901, 13, 250.00, 0, 1),
(1249, 7, 901, 14, 110.00, 0, 1),
(1250, 7, 902, 8, 750.00, 0, 1),
(1251, 7, 902, 9, 150.00, 0, 1),
(1252, 7, 902, 10, 550.00, 0, 1),
(1253, 7, 902, 11, 1200.00, 0, 1),
(1254, 7, 902, 12, 1500.00, 0, 1),
(1255, 7, 902, 13, 250.00, 0, 1),
(1256, 7, 902, 14, 110.00, 0, 1),
(1257, 7, 903, 8, 750.00, 0, 1),
(1258, 7, 903, 9, 150.00, 0, 1),
(1259, 7, 903, 10, 550.00, 0, 1),
(1260, 7, 903, 11, 1200.00, 0, 1),
(1261, 7, 903, 12, 1500.00, 0, 1),
(1262, 7, 903, 13, 250.00, 0, 1),
(1263, 7, 903, 14, 110.00, 0, 1),
(1264, 7, 427, 8, 750.00, 0, 1),
(1265, 7, 427, 9, 150.00, 0, 1),
(1266, 7, 427, 10, 550.00, 0, 1),
(1267, 11, 904, 22, 770.00, 0, 1),
(1268, 11, 904, 23, 22.00, 0, 1),
(1269, 11, 904, 24, 330.00, 0, 1),
(1270, 11, 904, 25, 890.00, 0, 1),
(1271, 11, 904, 26, 355.00, 0, 1),
(1272, 11, 904, 27, 45.00, 1, 1),
(1273, 11, 904, 28, 80.00, 0, 1),
(1274, 15, 950, 43, 770.00, 1, 1),
(1275, 15, 950, 44, 22.00, 0, 1),
(1276, 15, 950, 45, 330.00, 1, 1),
(1277, 15, 950, 46, 6600.00, 1, 1),
(1278, 15, 950, 47, 355.00, 0, 1),
(1279, 15, 950, 48, 45.00, 0, 1),
(1280, 15, 950, 49, 80.00, 0, 1),
(1281, 15, 963, 43, 1200.00, 0, 1),
(1282, 15, 963, 44, 600.00, 0, 1),
(1283, 15, 963, 45, 330.00, 0, 1),
(1284, 15, 963, 46, 4500.00, 0, 1),
(1285, 15, 963, 47, 355.00, 0, 1),
(1286, 15, 963, 48, 155.00, 1, 1),
(1287, 15, 963, 49, 250.00, 0, 1),
(1288, 15, 962, 43, 1200.00, 0, 1),
(1289, 15, 962, 44, 600.00, 0, 1),
(1290, 15, 962, 45, 330.00, 1, 1),
(1291, 15, 962, 46, 4500.00, 0, 1),
(1292, 15, 962, 47, 355.00, 0, 1),
(1293, 15, 962, 48, 155.00, 0, 1),
(1294, 15, 962, 49, 250.00, 0, 1),
(1295, 15, 961, 43, 1200.00, 0, 1),
(1296, 15, 961, 44, 600.00, 0, 1),
(1297, 15, 961, 45, 330.00, 1, 1),
(1298, 15, 961, 46, 4500.00, 0, 1),
(1299, 15, 961, 47, 355.00, 0, 1),
(1300, 15, 961, 48, 155.00, 1, 1),
(1301, 15, 961, 49, 250.00, 0, 1),
(1302, 15, 960, 43, 1200.00, 0, 1),
(1303, 15, 960, 44, 600.00, 0, 1),
(1304, 15, 960, 45, 330.00, 1, 1),
(1305, 15, 960, 46, 4500.00, 0, 1),
(1306, 15, 960, 47, 355.00, 0, 1),
(1307, 15, 960, 48, 155.00, 1, 1),
(1308, 15, 960, 49, 250.00, 0, 1),
(1309, 15, 972, 43, 1200.00, 0, 1),
(1310, 15, 972, 44, 600.00, 0, 1),
(1311, 15, 972, 45, 330.00, 1, 1),
(1312, 15, 972, 46, 4500.00, 0, 1),
(1313, 15, 972, 47, 355.00, 0, 1),
(1314, 15, 972, 48, 155.00, 1, 1),
(1315, 15, 972, 49, 250.00, 1, 1),
(1316, 15, 971, 43, 1200.00, 0, 1),
(1317, 15, 971, 44, 600.00, 0, 1),
(1318, 15, 971, 45, 330.00, 1, 1),
(1319, 15, 971, 46, 4500.00, 0, 1),
(1320, 15, 971, 47, 355.00, 0, 1),
(1321, 15, 971, 48, 155.00, 0, 1),
(1322, 15, 971, 49, 250.00, 1, 1),
(1323, 15, 970, 43, 1200.00, 0, 1),
(1324, 15, 970, 44, 600.00, 0, 1),
(1325, 15, 970, 45, 330.00, 1, 1),
(1326, 15, 970, 46, 4500.00, 0, 1),
(1327, 15, 970, 47, 355.00, 0, 1),
(1328, 15, 970, 48, 155.00, 0, 1),
(1329, 15, 970, 49, 250.00, 1, 1),
(1330, 15, 969, 43, 1200.00, 0, 1),
(1331, 15, 969, 44, 600.00, 0, 1),
(1332, 15, 969, 45, 330.00, 1, 1),
(1333, 15, 969, 46, 4500.00, 0, 1),
(1334, 15, 969, 47, 355.00, 0, 1),
(1335, 15, 969, 48, 155.00, 1, 1),
(1336, 15, 969, 49, 250.00, 1, 1),
(1337, 15, 968, 43, 1200.00, 0, 1),
(1338, 15, 968, 44, 600.00, 1, 1),
(1339, 15, 968, 45, 330.00, 1, 1),
(1340, 15, 968, 46, 4500.00, 1, 1),
(1341, 15, 968, 47, 355.00, 1, 1),
(1342, 15, 968, 48, 155.00, 1, 1),
(1343, 15, 968, 49, 250.00, 1, 1),
(1344, 15, 922, 43, 1200.00, 0, 1),
(1345, 15, 922, 44, 600.00, 0, 1),
(1346, 15, 922, 45, 330.00, 0, 1),
(1347, 15, 922, 46, 4500.00, 0, 1),
(1348, 15, 922, 47, 355.00, 0, 1),
(1349, 15, 922, 48, 155.00, 0, 1),
(1350, 15, 922, 49, 250.00, 0, 1),
(1351, 15, 976, 43, 770.00, 0, 1),
(1352, 15, 976, 44, 22.00, 0, 1),
(1353, 15, 976, 45, 330.00, 0, 1),
(1354, 15, 976, 46, 6600.00, 0, 1),
(1355, 15, 976, 47, 355.00, 0, 1),
(1356, 15, 976, 48, 45.00, 0, 1),
(1357, 15, 976, 49, 80.00, 0, 1),
(1358, 15, 975, 43, 770.00, 0, 1),
(1359, 15, 975, 44, 22.00, 0, 1),
(1360, 15, 975, 45, 330.00, 0, 1),
(1361, 15, 975, 46, 6600.00, 0, 1),
(1362, 15, 975, 47, 355.00, 0, 1),
(1363, 15, 975, 48, 45.00, 0, 1),
(1364, 15, 975, 49, 80.00, 0, 1),
(1365, 15, 986, 43, 1200.00, 0, 1),
(1366, 15, 986, 44, 600.00, 1, 1),
(1367, 15, 986, 45, 330.00, 1, 1),
(1368, 15, 986, 46, 4500.00, 0, 1),
(1369, 15, 986, 47, 355.00, 0, 1),
(1370, 15, 986, 48, 155.00, 0, 1),
(1371, 15, 986, 49, 250.00, 1, 1),
(1372, 15, 989, 43, 1200.00, 0, 1),
(1373, 15, 989, 44, 600.00, 1, 1),
(1374, 15, 989, 45, 330.00, 0, 1),
(1375, 15, 989, 46, 4500.00, 0, 1),
(1376, 15, 989, 47, 355.00, 1, 1),
(1377, 15, 989, 48, 155.00, 1, 1),
(1378, 15, 989, 49, 250.00, 1, 1),
(1379, 15, 988, 43, 1200.00, 0, 1),
(1380, 15, 988, 44, 600.00, 1, 1),
(1381, 15, 988, 45, 330.00, 1, 1),
(1382, 15, 988, 46, 4500.00, 0, 1),
(1383, 15, 988, 47, 355.00, 1, 1),
(1384, 15, 988, 48, 155.00, 0, 1),
(1385, 15, 988, 49, 250.00, 0, 1),
(1386, 15, 974, 43, 1200.00, 1, 1),
(1387, 15, 974, 44, 600.00, 1, 1),
(1388, 15, 974, 45, 330.00, 1, 1),
(1389, 15, 974, 46, 4500.00, 1, 1),
(1390, 15, 974, 47, 355.00, 1, 1),
(1391, 15, 974, 48, 155.00, 1, 1),
(1392, 15, 974, 49, 250.00, 1, 1),
(1393, 15, 973, 43, 1200.00, 1, 1),
(1394, 15, 973, 44, 600.00, 1, 1),
(1395, 15, 973, 45, 330.00, 1, 1),
(1396, 15, 973, 46, 4500.00, 1, 1),
(1397, 15, 973, 47, 355.00, 1, 1),
(1398, 15, 973, 48, 155.00, 1, 1),
(1399, 15, 973, 49, 250.00, 1, 1),
(1400, 15, 944, 43, 1200.00, 0, 1),
(1401, 15, 944, 44, 600.00, 1, 1),
(1402, 15, 944, 45, 330.00, 1, 1),
(1403, 15, 944, 46, 4500.00, 0, 1),
(1404, 15, 944, 47, 355.00, 0, 1),
(1405, 15, 944, 48, 155.00, 1, 1),
(1406, 15, 944, 49, 250.00, 1, 1),
(1407, 15, 943, 43, 1200.00, 0, 1),
(1408, 15, 943, 44, 600.00, 1, 1),
(1409, 15, 943, 45, 330.00, 1, 1),
(1410, 15, 943, 46, 4500.00, 0, 1),
(1411, 15, 943, 47, 355.00, 0, 1),
(1412, 15, 943, 48, 155.00, 1, 1),
(1413, 15, 943, 49, 250.00, 1, 1),
(1414, 15, 942, 43, 1200.00, 0, 1),
(1415, 15, 942, 44, 600.00, 1, 1),
(1416, 15, 942, 45, 330.00, 1, 1),
(1417, 15, 942, 46, 4500.00, 0, 1),
(1418, 15, 942, 47, 355.00, 0, 1),
(1419, 15, 942, 48, 155.00, 1, 1),
(1420, 15, 942, 49, 250.00, 1, 1),
(1421, 15, 910, 43, 1200.00, 1, 1),
(1422, 15, 910, 44, 600.00, 1, 1),
(1423, 15, 910, 45, 330.00, 1, 1),
(1424, 15, 910, 46, 4500.00, 0, 1),
(1425, 15, 910, 47, 355.00, 1, 1),
(1426, 15, 910, 48, 155.00, 1, 1),
(1427, 15, 910, 49, 250.00, 1, 1),
(1428, 15, 987, 43, 770.00, 1, 1),
(1429, 15, 987, 44, 22.00, 1, 1),
(1430, 15, 987, 45, 330.00, 0, 1),
(1431, 15, 987, 46, 6600.00, 1, 1),
(1432, 15, 987, 47, 355.00, 1, 1),
(1433, 15, 987, 48, 45.00, 1, 1),
(1434, 15, 987, 49, 120.00, 0, 1),
(1435, 15, 955, 43, 1200.00, 1, 1),
(1436, 15, 955, 44, 600.00, 0, 1),
(1437, 15, 955, 45, 330.00, 1, 1),
(1438, 15, 955, 46, 4500.00, 1, 1),
(1439, 15, 955, 47, 355.00, 1, 1),
(1440, 15, 955, 48, 155.00, 0, 1),
(1441, 15, 955, 49, 250.00, 0, 1),
(1442, 15, 954, 43, 770.00, 1, 1),
(1443, 15, 954, 44, 22.00, 0, 1),
(1444, 15, 954, 45, 330.00, 1, 1),
(1445, 15, 954, 46, 6600.00, 0, 1),
(1446, 15, 954, 47, 355.00, 1, 1),
(1447, 15, 954, 48, 45.00, 0, 1),
(1448, 15, 954, 49, 120.00, 0, 1),
(1449, 15, 953, 43, 1200.00, 1, 1),
(1450, 15, 953, 44, 600.00, 1, 1),
(1451, 15, 953, 45, 330.00, 1, 1),
(1452, 15, 953, 46, 4500.00, 1, 1),
(1453, 15, 953, 47, 355.00, 1, 1),
(1454, 15, 953, 48, 155.00, 1, 1),
(1455, 15, 953, 49, 250.00, 1, 1),
(1456, 15, 992, 43, 1200.00, 0, 1),
(1457, 15, 992, 44, 600.00, 0, 1),
(1458, 15, 992, 45, 330.00, 1, 1),
(1459, 15, 992, 46, 4500.00, 0, 1),
(1460, 15, 992, 47, 355.00, 0, 1),
(1461, 15, 992, 48, 155.00, 1, 1),
(1462, 15, 992, 49, 250.00, 0, 1),
(1463, 15, 993, 43, 1200.00, 1, 1),
(1464, 15, 993, 44, 600.00, 0, 1),
(1465, 15, 993, 45, 330.00, 0, 1),
(1466, 15, 993, 46, 4500.00, 0, 1),
(1467, 15, 993, 47, 355.00, 0, 1),
(1468, 15, 993, 48, 155.00, 1, 1),
(1469, 15, 993, 49, 250.00, 0, 1),
(1470, 15, 994, 43, 1200.00, 0, 1),
(1471, 15, 994, 44, 600.00, 0, 1),
(1472, 15, 994, 45, 330.00, 0, 1),
(1473, 15, 994, 46, 4500.00, 0, 1),
(1474, 15, 994, 47, 355.00, 0, 1),
(1475, 15, 994, 48, 155.00, 1, 1),
(1476, 15, 994, 49, 250.00, 1, 1),
(1477, 11, 995, 22, 770.00, 0, 1),
(1478, 11, 995, 23, 22.00, 1, 1),
(1479, 11, 995, 24, 330.00, 0, 1),
(1480, 11, 995, 25, 890.00, 0, 1),
(1481, 11, 995, 26, 355.00, 0, 1),
(1482, 11, 995, 27, 45.00, 1, 1),
(1483, 11, 995, 28, 80.00, 1, 1),
(1484, 11, 996, 22, 770.00, 0, 1),
(1485, 11, 996, 23, 22.00, 1, 1),
(1486, 11, 996, 24, 330.00, 0, 1),
(1487, 11, 996, 25, 890.00, 0, 1),
(1488, 11, 996, 26, 355.00, 1, 1),
(1489, 11, 996, 27, 45.00, 0, 1),
(1490, 11, 996, 28, 80.00, 0, 1),
(1491, 11, 999, 22, 770.00, 0, 1),
(1492, 11, 999, 23, 22.00, 0, 1),
(1493, 11, 999, 24, 330.00, 0, 1),
(1494, 11, 999, 25, 890.00, 0, 1),
(1495, 11, 999, 26, 355.00, 0, 1),
(1496, 11, 999, 27, 45.00, 0, 1),
(1497, 11, 999, 28, 80.00, 0, 1),
(1498, 11, 1000, 22, 770.00, 0, 1),
(1499, 11, 1000, 23, 22.00, 0, 1),
(1500, 11, 1000, 24, 330.00, 0, 1),
(1501, 11, 1000, 25, 890.00, 0, 1),
(1502, 11, 1000, 26, 355.00, 0, 1),
(1503, 11, 1000, 27, 45.00, 0, 1),
(1504, 11, 1000, 28, 80.00, 0, 1),
(1505, 11, 1001, 22, 770.00, 0, 1),
(1506, 11, 1001, 23, 22.00, 0, 1),
(1507, 11, 1001, 24, 330.00, 0, 1),
(1508, 11, 1001, 25, 890.00, 0, 1),
(1509, 11, 1001, 26, 355.00, 0, 1),
(1510, 11, 1001, 27, 45.00, 0, 1),
(1511, 11, 1001, 28, 80.00, 0, 1),
(1512, 11, 1002, 22, 770.00, 0, 1),
(1513, 11, 1002, 23, 22.00, 0, 1),
(1514, 11, 1002, 24, 330.00, 0, 1),
(1515, 11, 1002, 25, 890.00, 1, 1),
(1516, 11, 1002, 26, 355.00, 0, 1),
(1517, 11, 1002, 27, 45.00, 0, 1),
(1518, 11, 1002, 28, 80.00, 0, 1),
(1519, 11, 1003, 22, 770.00, 1, 1),
(1520, 11, 1003, 23, 22.00, 0, 1),
(1521, 11, 1003, 24, 330.00, 0, 1),
(1522, 11, 1003, 25, 890.00, 1, 1),
(1523, 11, 1003, 26, 355.00, 0, 1),
(1524, 11, 1003, 27, 45.00, 0, 1),
(1525, 11, 1003, 28, 80.00, 0, 1),
(1526, 11, 1004, 22, 770.00, 1, 1),
(1527, 11, 1004, 23, 22.00, 0, 1),
(1528, 11, 1004, 24, 330.00, 0, 1),
(1529, 11, 1004, 25, 890.00, 0, 1),
(1530, 11, 1004, 26, 355.00, 0, 1),
(1531, 11, 1004, 27, 45.00, 0, 1),
(1532, 11, 1004, 28, 80.00, 0, 1),
(1533, 11, 1005, 22, 770.00, 0, 1),
(1534, 11, 1005, 23, 22.00, 0, 1),
(1535, 11, 1005, 24, 330.00, 0, 1),
(1536, 11, 1005, 25, 890.00, 0, 1),
(1537, 11, 1005, 26, 355.00, 0, 1),
(1538, 11, 1005, 27, 45.00, 0, 1),
(1539, 11, 1005, 28, 80.00, 0, 1),
(1540, 11, 1006, 22, 770.00, 0, 1),
(1541, 11, 1006, 23, 22.00, 0, 1),
(1542, 11, 1006, 24, 330.00, 0, 1),
(1543, 11, 1006, 25, 890.00, 0, 1),
(1544, 11, 1006, 26, 355.00, 0, 1),
(1545, 11, 1006, 27, 45.00, 0, 1),
(1546, 11, 1006, 28, 80.00, 0, 1),
(1547, 15, 1007, 43, 1200.00, 0, 1),
(1548, 15, 1007, 44, 600.00, 0, 1),
(1549, 15, 1007, 45, 330.00, 1, 1),
(1550, 15, 1007, 46, 4500.00, 0, 1),
(1551, 15, 1007, 47, 355.00, 0, 1),
(1552, 15, 1007, 48, 155.00, 0, 1),
(1553, 15, 1007, 49, 250.00, 0, 1),
(1554, 15, 1008, 43, 1200.00, 0, 1),
(1555, 15, 1008, 44, 600.00, 0, 1),
(1556, 15, 1008, 45, 330.00, 1, 1),
(1557, 15, 1008, 46, 4500.00, 0, 1),
(1558, 15, 1008, 47, 355.00, 0, 1),
(1559, 15, 1008, 48, 155.00, 0, 1),
(1560, 15, 1008, 49, 250.00, 0, 1),
(1561, 15, 1009, 43, 1200.00, 0, 1),
(1562, 15, 1009, 44, 600.00, 0, 1),
(1563, 15, 1009, 45, 330.00, 1, 1);
INSERT INTO `productded_detail` (`id`, `userid`, `productid`, `deductionid`, `price`, `includeprice`, `status`) VALUES
(1564, 15, 1009, 46, 4500.00, 0, 1),
(1565, 15, 1009, 47, 355.00, 1, 1),
(1566, 15, 1009, 48, 155.00, 0, 1),
(1567, 15, 1009, 49, 250.00, 0, 1),
(1568, 15, 1010, 43, 1200.00, 0, 1),
(1569, 15, 1010, 44, 600.00, 0, 1),
(1570, 15, 1010, 45, 330.00, 0, 1),
(1571, 15, 1010, 46, 4500.00, 0, 1),
(1572, 15, 1010, 47, 355.00, 0, 1),
(1573, 15, 1010, 48, 155.00, 0, 1),
(1574, 15, 1010, 49, 250.00, 0, 1),
(1575, 15, 1011, 43, 1200.00, 0, 1),
(1576, 15, 1011, 44, 600.00, 0, 1),
(1577, 15, 1011, 45, 330.00, 1, 1),
(1578, 15, 1011, 46, 4500.00, 0, 1),
(1579, 15, 1011, 47, 355.00, 1, 1),
(1580, 15, 1011, 48, 155.00, 1, 1),
(1581, 15, 1011, 49, 250.00, 0, 1),
(1582, 11, 1012, 22, 770.00, 1, 1),
(1583, 11, 1012, 23, 22.00, 1, 1),
(1584, 11, 1012, 24, 330.00, 1, 1),
(1585, 11, 1012, 25, 890.00, 0, 1),
(1586, 11, 1012, 26, 355.00, 0, 1),
(1587, 11, 1012, 27, 45.00, 0, 1),
(1588, 11, 1012, 28, 80.00, 0, 1),
(1589, 15, 1013, 43, 1200.00, 0, 1),
(1590, 15, 1013, 44, 600.00, 0, 1),
(1591, 15, 1013, 45, 330.00, 0, 1),
(1592, 15, 1013, 46, 4500.00, 0, 1),
(1593, 15, 1013, 47, 355.00, 0, 1),
(1594, 15, 1013, 48, 155.00, 0, 1),
(1595, 15, 1013, 49, 250.00, 0, 1),
(1596, 15, 1014, 43, 1200.00, 0, 1),
(1597, 15, 1014, 44, 600.00, 0, 1),
(1598, 15, 1014, 45, 330.00, 1, 1),
(1599, 15, 1014, 46, 4500.00, 0, 1),
(1600, 15, 1014, 47, 355.00, 0, 1),
(1601, 15, 1014, 48, 155.00, 0, 1),
(1602, 15, 1014, 49, 250.00, 0, 1),
(1603, 15, 1015, 43, 1200.00, 0, 1),
(1604, 15, 1015, 44, 600.00, 0, 1),
(1605, 15, 1015, 45, 330.00, 0, 1),
(1606, 15, 1015, 46, 4500.00, 0, 1),
(1607, 15, 1015, 47, 355.00, 0, 1),
(1608, 15, 1015, 48, 155.00, 0, 1),
(1609, 15, 1015, 49, 250.00, 0, 1),
(1610, 15, 1016, 43, 1200.00, 0, 1),
(1611, 15, 1016, 44, 600.00, 0, 1),
(1612, 15, 1016, 45, 330.00, 0, 1),
(1613, 15, 1016, 46, 4500.00, 0, 1),
(1614, 15, 1016, 47, 355.00, 0, 1),
(1615, 15, 1016, 48, 155.00, 0, 1),
(1616, 15, 1016, 49, 250.00, 0, 1),
(1617, 15, 1017, 43, 1200.00, 0, 1),
(1618, 15, 1017, 44, 600.00, 0, 1),
(1619, 15, 1017, 45, 330.00, 0, 1),
(1620, 15, 1017, 46, 4500.00, 0, 1),
(1621, 15, 1017, 47, 355.00, 0, 1),
(1622, 15, 1017, 48, 155.00, 0, 1),
(1623, 15, 1017, 49, 250.00, 0, 1),
(1624, 15, 1018, 43, 1200.00, 0, 1),
(1625, 15, 1018, 44, 600.00, 0, 1),
(1626, 15, 1018, 45, 330.00, 0, 1),
(1627, 15, 1018, 46, 4500.00, 0, 1),
(1628, 15, 1018, 47, 355.00, 0, 1),
(1629, 15, 1018, 48, 155.00, 0, 1),
(1630, 15, 1018, 49, 250.00, 0, 1),
(1631, 15, 918, 43, 1200.00, 0, 1),
(1632, 15, 918, 44, 600.00, 0, 1),
(1633, 15, 918, 45, 330.00, 0, 1),
(1634, 15, 918, 46, 4500.00, 0, 1),
(1635, 15, 918, 47, 355.00, 0, 1),
(1636, 15, 918, 48, 155.00, 0, 1),
(1637, 15, 918, 49, 250.00, 0, 1),
(1638, 15, 927, 43, 1200.00, 0, 1),
(1639, 15, 927, 44, 600.00, 0, 1),
(1640, 15, 927, 45, 330.00, 0, 1),
(1641, 15, 927, 46, 4500.00, 0, 1),
(1642, 15, 927, 47, 355.00, 0, 1),
(1643, 15, 927, 48, 155.00, 0, 1),
(1644, 15, 927, 49, 250.00, 0, 1),
(1645, 15, 930, 43, 1200.00, 0, 1),
(1646, 15, 930, 44, 600.00, 0, 1),
(1647, 15, 930, 45, 330.00, 0, 1),
(1648, 15, 930, 46, 4500.00, 0, 1),
(1649, 15, 930, 47, 355.00, 0, 1),
(1650, 15, 930, 48, 155.00, 0, 1),
(1651, 15, 930, 49, 250.00, 0, 1),
(1652, 15, 928, 43, 1200.00, 0, 1),
(1653, 15, 928, 44, 600.00, 0, 1),
(1654, 15, 928, 45, 330.00, 0, 1),
(1655, 15, 928, 46, 4500.00, 0, 1),
(1656, 15, 928, 47, 355.00, 0, 1),
(1657, 15, 928, 48, 155.00, 0, 1),
(1658, 15, 928, 49, 250.00, 0, 1),
(1659, 15, 929, 43, 1200.00, 0, 1),
(1660, 15, 929, 44, 600.00, 0, 1),
(1661, 15, 929, 45, 330.00, 0, 1),
(1662, 15, 929, 46, 4500.00, 0, 1),
(1663, 15, 929, 47, 355.00, 0, 1),
(1664, 15, 929, 48, 155.00, 0, 1),
(1665, 15, 929, 49, 250.00, 0, 1),
(1666, 15, 978, 43, 1200.00, 0, 1),
(1667, 15, 978, 44, 600.00, 0, 1),
(1668, 15, 978, 45, 330.00, 0, 1),
(1669, 15, 978, 46, 4500.00, 0, 1),
(1670, 15, 978, 47, 355.00, 0, 1),
(1671, 15, 978, 48, 155.00, 0, 1),
(1672, 15, 978, 49, 250.00, 0, 1),
(1673, 15, 968, 1, 770.00, 1, 1),
(1674, 15, 968, 2, 22.00, 0, 1),
(1675, 15, 968, 3, 330.00, 1, 1),
(1676, 15, 968, 4, 6600.00, 0, 1),
(1677, 15, 968, 5, 355.00, 0, 1),
(1678, 15, 968, 6, 45.00, 1, 1),
(1679, 15, 968, 7, 80.00, 0, 1),
(1680, 15, 969, 1, 770.00, 0, 1),
(1681, 15, 969, 2, 22.00, 1, 1),
(1682, 15, 969, 3, 330.00, 1, 1),
(1683, 15, 969, 4, 6600.00, 0, 1),
(1684, 15, 969, 5, 355.00, 0, 1),
(1685, 15, 969, 6, 45.00, 1, 1),
(1686, 15, 969, 7, 80.00, 0, 1),
(1687, 15, 970, 1, 770.00, 0, 1),
(1688, 15, 970, 2, 22.00, 1, 1),
(1689, 15, 970, 3, 330.00, 1, 1),
(1690, 15, 970, 4, 6600.00, 0, 1),
(1691, 15, 970, 5, 355.00, 0, 1),
(1692, 15, 970, 6, 45.00, 1, 1),
(1693, 15, 970, 7, 80.00, 0, 1),
(1694, 15, 991, 43, 1200.00, 1, 1),
(1695, 15, 991, 44, 600.00, 0, 1),
(1696, 15, 991, 45, 330.00, 1, 1),
(1697, 15, 991, 46, 4500.00, 0, 1),
(1698, 15, 991, 47, 355.00, 1, 1),
(1699, 15, 991, 48, 155.00, 1, 1),
(1700, 15, 991, 49, 250.00, 0, 1),
(1701, 15, 985, 43, 1200.00, 0, 1),
(1702, 15, 985, 44, 600.00, 1, 1),
(1703, 15, 985, 45, 330.00, 1, 1),
(1704, 15, 985, 46, 4500.00, 0, 1),
(1705, 15, 985, 47, 355.00, 1, 1),
(1706, 15, 985, 48, 155.00, 0, 1),
(1707, 15, 985, 49, 250.00, 1, 1),
(1708, 15, 984, 43, 1200.00, 0, 1),
(1709, 15, 984, 44, 600.00, 1, 1),
(1710, 15, 984, 45, 330.00, 1, 1),
(1711, 15, 984, 46, 4500.00, 0, 1),
(1712, 15, 984, 47, 355.00, 0, 1),
(1713, 15, 984, 48, 155.00, 0, 1),
(1714, 15, 984, 49, 250.00, 1, 1),
(1715, 15, 983, 43, 1200.00, 0, 1),
(1716, 15, 983, 44, 600.00, 1, 1),
(1717, 15, 983, 45, 330.00, 1, 1),
(1718, 15, 983, 46, 4500.00, 0, 1),
(1719, 15, 983, 47, 355.00, 0, 1),
(1720, 15, 983, 48, 155.00, 1, 1),
(1721, 15, 983, 49, 250.00, 0, 1),
(1722, 15, 980, 43, 1200.00, 0, 1),
(1723, 15, 980, 44, 600.00, 1, 1),
(1724, 15, 980, 45, 330.00, 1, 1),
(1725, 15, 980, 46, 4500.00, 0, 1),
(1726, 15, 980, 47, 355.00, 0, 1),
(1727, 15, 980, 48, 155.00, 1, 1),
(1728, 15, 980, 49, 250.00, 0, 1),
(1729, 15, 981, 43, 1200.00, 0, 1),
(1730, 15, 981, 44, 600.00, 1, 1),
(1731, 15, 981, 45, 330.00, 1, 1),
(1732, 15, 981, 46, 4500.00, 0, 1),
(1733, 15, 981, 47, 355.00, 0, 1),
(1734, 15, 981, 48, 155.00, 1, 1),
(1735, 15, 981, 49, 250.00, 0, 1),
(1736, 15, 967, 43, 1200.00, 1, 1),
(1737, 15, 967, 44, 600.00, 1, 1),
(1738, 15, 967, 45, 330.00, 0, 1),
(1739, 15, 967, 46, 4500.00, 1, 1),
(1740, 15, 967, 47, 355.00, 0, 1),
(1741, 15, 967, 48, 155.00, 1, 1),
(1742, 15, 967, 49, 250.00, 0, 1),
(1743, 15, 966, 43, 1200.00, 1, 1),
(1744, 15, 966, 44, 600.00, 1, 1),
(1745, 15, 966, 45, 330.00, 1, 1),
(1746, 15, 966, 46, 4500.00, 1, 1),
(1747, 15, 966, 47, 355.00, 1, 1),
(1748, 15, 966, 48, 155.00, 1, 1),
(1749, 15, 966, 49, 250.00, 1, 1),
(1750, 15, 964, 43, 1200.00, 1, 1),
(1751, 15, 964, 44, 600.00, 1, 1),
(1752, 15, 964, 45, 330.00, 1, 1),
(1753, 15, 964, 46, 4500.00, 1, 1),
(1754, 15, 964, 47, 355.00, 1, 1),
(1755, 15, 964, 48, 155.00, 1, 1),
(1756, 15, 964, 49, 250.00, 1, 1),
(1757, 15, 965, 43, 1200.00, 1, 1),
(1758, 15, 965, 44, 600.00, 1, 1),
(1759, 15, 965, 45, 330.00, 1, 1),
(1760, 15, 965, 46, 4500.00, 1, 1),
(1761, 15, 965, 47, 355.00, 1, 1),
(1762, 15, 965, 48, 155.00, 1, 1),
(1763, 15, 965, 49, 250.00, 1, 1),
(1764, 15, 959, 43, 1200.00, 0, 1),
(1765, 15, 959, 44, 600.00, 1, 1),
(1766, 15, 959, 45, 330.00, 0, 1),
(1767, 15, 959, 46, 4500.00, 0, 1),
(1768, 15, 959, 47, 355.00, 0, 1),
(1769, 15, 959, 48, 155.00, 1, 1),
(1770, 15, 959, 49, 250.00, 1, 1),
(1771, 15, 956, 43, 1200.00, 1, 1),
(1772, 15, 956, 44, 600.00, 1, 1),
(1773, 15, 956, 45, 330.00, 0, 1),
(1774, 15, 956, 46, 4500.00, 1, 1),
(1775, 15, 956, 47, 355.00, 1, 1),
(1776, 15, 956, 48, 155.00, 0, 1),
(1777, 15, 956, 49, 250.00, 1, 1),
(1778, 15, 958, 43, 1200.00, 0, 1),
(1779, 15, 958, 44, 600.00, 1, 1),
(1780, 15, 958, 45, 330.00, 0, 1),
(1781, 15, 958, 46, 4500.00, 1, 1),
(1782, 15, 958, 47, 355.00, 1, 1),
(1783, 15, 958, 48, 155.00, 1, 1),
(1784, 15, 958, 49, 250.00, 0, 1),
(1785, 15, 957, 43, 1200.00, 1, 1),
(1786, 15, 957, 44, 600.00, 1, 1),
(1787, 15, 957, 45, 330.00, 0, 1),
(1788, 15, 957, 46, 4500.00, 1, 1),
(1789, 15, 957, 47, 355.00, 0, 1),
(1790, 15, 957, 48, 155.00, 1, 1),
(1791, 15, 957, 49, 250.00, 1, 1),
(1792, 15, 915, 43, 1200.00, 0, 1),
(1793, 15, 915, 44, 600.00, 0, 1),
(1794, 15, 915, 45, 330.00, 0, 1),
(1795, 15, 915, 46, 4500.00, 0, 1),
(1796, 15, 915, 47, 355.00, 0, 1),
(1797, 15, 915, 48, 155.00, 0, 1),
(1798, 15, 915, 49, 250.00, 0, 1),
(1799, 15, 1019, 43, 1200.00, 0, 1),
(1800, 15, 1019, 44, 600.00, 0, 1),
(1801, 15, 1019, 45, 330.00, 0, 1),
(1802, 15, 1019, 46, 4500.00, 0, 1),
(1803, 15, 1019, 47, 355.00, 1, 1),
(1804, 15, 1019, 48, 155.00, 0, 1),
(1805, 15, 1019, 49, 250.00, 0, 1),
(1806, 15, 1020, 43, 1200.00, 0, 1),
(1807, 15, 1020, 44, 600.00, 0, 1),
(1808, 15, 1020, 45, 330.00, 1, 1),
(1809, 15, 1020, 46, 4500.00, 0, 1),
(1810, 15, 1020, 47, 355.00, 0, 1),
(1811, 15, 1020, 48, 155.00, 0, 1),
(1812, 15, 1020, 49, 250.00, 0, 1),
(1813, 15, 1021, 43, 1200.00, 0, 1),
(1814, 15, 1021, 44, 600.00, 0, 1),
(1815, 15, 1021, 45, 330.00, 0, 1),
(1816, 15, 1021, 46, 4500.00, 0, 1),
(1817, 15, 1021, 47, 355.00, 0, 1),
(1818, 15, 1021, 48, 155.00, 0, 1),
(1819, 15, 1021, 49, 250.00, 0, 1),
(1820, 15, 1022, 43, 1200.00, 0, 1),
(1821, 15, 1022, 44, 600.00, 0, 1),
(1822, 15, 1022, 45, 330.00, 0, 1),
(1823, 15, 1022, 46, 4500.00, 0, 1),
(1824, 15, 1022, 47, 355.00, 0, 1),
(1825, 15, 1022, 48, 155.00, 0, 1),
(1826, 15, 1022, 49, 250.00, 0, 1),
(1827, 15, 1023, 43, 1200.00, 0, 1),
(1828, 15, 1023, 44, 600.00, 0, 1),
(1829, 15, 1023, 45, 330.00, 0, 1),
(1830, 15, 1023, 46, 4500.00, 0, 1),
(1831, 15, 1023, 47, 355.00, 0, 1),
(1832, 15, 1023, 48, 155.00, 0, 1),
(1833, 15, 1023, 49, 250.00, 0, 1),
(1834, 11, 1111, 22, 770.00, 0, 1),
(1835, 11, 1111, 23, 22.00, 0, 1),
(1836, 11, 1111, 24, 330.00, 0, 1),
(1837, 11, 1111, 25, 890.00, 0, 1),
(1838, 11, 1111, 26, 355.00, 0, 1),
(1839, 11, 1111, 27, 45.00, 0, 1),
(1840, 11, 1111, 28, 80.00, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `productdetail`
--

CREATE TABLE `productdetail` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `itemid` int(11) DEFAULT NULL,
  `weight` float(13,2) DEFAULT NULL,
  `includeprice` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productdetail`
--

INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(1, 1, 2, 3, 7900.00, 1, 1),
(2, 1, 2, 4, 850.00, 1, 1),
(3, 1, 2, 5, 80000.00, 1, 1),
(4, 1, 2, 6, 25.00, 1, 1),
(5, 1, 3, 3, 95.00, 1, 1),
(6, 1, 3, 4, 1200.00, 1, 1),
(7, 1, 3, 5, 220000.00, 1, 1),
(8, 1, 3, 6, 44.00, 1, 1),
(9, 1, 4, 3, 2600.00, 1, 1),
(10, 1, 4, 5, 0.00, 0, 1),
(11, 1, 4, 6, 0.00, 0, 1),
(12, 1, 5, 3, 632.50, 1, 1),
(13, 1, 5, 5, 100000.00, 1, 1),
(14, 1, 5, 6, 30.00, 1, 1),
(15, 1, 6, 3, 310.00, 1, 1),
(16, 1, 6, 5, 0.00, 0, 1),
(17, 1, 6, 6, 3.00, 1, 1),
(18, 1, 7, 3, 1200.00, 1, 1),
(19, 1, 7, 5, 300000.00, 1, 1),
(20, 1, 7, 6, 70.00, 1, 1),
(21, 1, 8, 3, 1942.00, 1, 1),
(22, 1, 8, 5, 326430.00, 1, 1),
(23, 1, 8, 6, 380.00, 1, 1),
(24, 1, 9, 3, 1400.00, 1, 1),
(25, 1, 9, 5, 110000.00, 1, 1),
(26, 1, 9, 6, 0.00, 0, 1),
(27, 1, 10, 3, 900.00, 1, 1),
(28, 1, 10, 5, 100000.00, 1, 1),
(29, 1, 10, 6, 0.00, 0, 1),
(30, 1, 11, 3, 2000.00, 1, 1),
(31, 1, 11, 5, 0.00, 0, 1),
(32, 1, 11, 6, 0.00, 0, 1),
(33, 1, 12, 3, 66.30, 1, 1),
(34, 1, 12, 5, 185480.00, 1, 1),
(35, 1, 12, 6, 0.00, 0, 1),
(36, 1, 13, 3, 60.00, 1, 1),
(37, 1, 13, 5, 302640.00, 1, 1),
(38, 1, 13, 6, 40.00, 1, 1),
(39, 1, 14, 3, 32.51, 1, 1),
(40, 1, 14, 5, 320000.00, 1, 1),
(41, 1, 14, 6, 5.00, 0, 1),
(42, 1, 15, 3, 60.00, 1, 1),
(43, 1, 15, 5, 251600.00, 1, 1),
(44, 1, 15, 6, 10.00, 1, 1),
(45, 1, 16, 3, 95.50, 1, 1),
(46, 1, 16, 5, 300000.00, 1, 1),
(47, 1, 16, 6, 6.90, 1, 1),
(48, 1, 17, 3, 196.55, 1, 1),
(49, 1, 17, 5, 280000.00, 1, 1),
(50, 1, 17, 6, 12.00, 1, 1),
(51, 1, 18, 3, 300.00, 1, 1),
(52, 1, 18, 5, 600000.00, 1, 1),
(53, 1, 18, 6, 1.00, 0, 1),
(54, 1, 8, 4, 1422.00, 1, 1),
(55, 1, 19, 3, 0.00, 1, 1),
(56, 1, 19, 5, 0.00, 0, 1),
(57, 1, 19, 6, 0.00, 0, 1),
(58, 1, 20, 3, 0.00, 0, 1),
(59, 1, 20, 5, 0.00, 0, 1),
(60, 1, 20, 6, 0.00, 0, 1),
(61, 1, 18, 4, 1500.00, 0, 1),
(62, 1, 14, 4, 400.00, 1, 1),
(63, 1, 13, 4, 620.00, 1, 1),
(64, 1, 16, 4, 1854.43, 1, 1),
(65, 1, 15, 4, 18000.00, 1, 1),
(66, 1, 21, 3, 46.43, 1, 1),
(67, 1, 21, 5, 100000.00, 0, 1),
(68, 1, 21, 6, 3.00, 0, 1),
(69, 1, 22, 3, 12.00, 1, 1),
(70, 1, 22, 5, 0.00, 0, 1),
(71, 1, 22, 6, 0.00, 0, 1),
(72, 1, 23, 3, 20.00, 1, 1),
(73, 1, 23, 5, 0.00, 0, 1),
(74, 1, 23, 6, 0.00, 0, 1),
(75, 1, 7, 4, 1600.00, 1, 1),
(76, 1, 19, 4, 0.00, 1, 1),
(77, 1, 24, 3, 40.00, 1, 1),
(78, 1, 24, 5, 270000.00, 1, 1),
(79, 1, 24, 6, 0.00, 0, 1),
(80, 1, 25, 3, 60.00, 1, 1),
(81, 1, 25, 5, 244787.00, 1, 1),
(82, 1, 25, 6, 5.00, 1, 1),
(83, 1, 26, 3, 60.00, 1, 1),
(84, 1, 26, 5, 276210.00, 1, 1),
(85, 1, 26, 6, 35.00, 1, 1),
(86, 1, 26, 4, 1290.50, 1, 1),
(87, 1, 12, 4, 400.00, 1, 1),
(88, 1, 25, 4, 300.00, 1, 1),
(89, 1, 24, 4, 950.00, 1, 1),
(90, 1, 21, 4, 800.00, 0, 1),
(91, 1, 27, 3, 202.00, 1, 1),
(92, 1, 27, 4, 1655.50, 1, 1),
(93, 1, 27, 5, 232200.00, 1, 1),
(94, 1, 27, 6, 14.00, 1, 1),
(95, 1, 27, 7, 0.00, 0, 1),
(96, 1, 27, 8, 0.00, 0, 1),
(97, 1, 26, 7, 723790.00, 1, 1),
(103, 1, 27, 9, 0.00, 0, 1),
(104, 1, 27, 10, 0.00, 0, 1),
(105, 1, 27, 11, 0.00, 0, 1),
(106, 1, 27, 12, 28.00, 1, 1),
(107, 1, 27, 13, 0.00, 0, 1),
(108, 1, 27, 14, 0.00, 0, 1),
(109, 1, 27, 15, 0.00, 0, 1),
(110, 1, 26, 8, 0.00, 0, 1),
(111, 1, 26, 9, 2000.00, 1, 1),
(112, 1, 26, 10, 0.00, 0, 1),
(113, 1, 26, 11, 0.00, 0, 1),
(114, 1, 26, 12, 35.00, 1, 1),
(115, 1, 26, 13, 0.00, 0, 1),
(116, 1, 26, 14, 0.00, 0, 1),
(117, 1, 26, 15, 0.00, 0, 1),
(118, 1, 25, 7, 0.00, 0, 1),
(119, 1, 25, 8, 0.00, 0, 1),
(120, 1, 25, 9, 0.00, 0, 1),
(121, 1, 25, 10, 0.00, 0, 1),
(122, 1, 25, 11, 0.00, 0, 1),
(123, 1, 25, 12, 5.00, 1, 1),
(124, 1, 25, 13, 0.00, 0, 1),
(125, 1, 25, 14, 0.00, 0, 1),
(126, 1, 25, 15, 0.00, 0, 1),
(127, 1, 24, 7, 0.00, 0, 1),
(128, 1, 24, 8, 0.00, 0, 1),
(129, 1, 24, 9, 0.00, 0, 1),
(130, 1, 24, 10, 0.00, 0, 1),
(131, 1, 24, 11, 0.00, 0, 1),
(132, 1, 24, 12, 0.00, 0, 1),
(133, 1, 24, 13, 0.00, 0, 1),
(134, 1, 24, 14, 0.00, 0, 1),
(135, 1, 24, 15, 0.00, 0, 1),
(136, 1, 23, 4, 0.00, 0, 1),
(137, 1, 23, 7, 0.00, 0, 1),
(138, 1, 23, 8, 0.00, 0, 1),
(139, 1, 23, 9, 0.00, 0, 1),
(140, 1, 23, 10, 0.00, 0, 1),
(141, 1, 23, 11, 0.00, 0, 1),
(142, 1, 23, 12, 0.00, 0, 1),
(143, 1, 23, 13, 0.00, 0, 1),
(144, 1, 23, 14, 0.00, 0, 1),
(145, 1, 23, 15, 0.00, 0, 1),
(146, 1, 22, 4, 0.00, 0, 1),
(147, 1, 22, 7, 0.00, 0, 1),
(148, 1, 22, 8, 0.00, 0, 1),
(149, 1, 22, 9, 0.00, 0, 1),
(150, 1, 22, 10, 0.00, 0, 1),
(151, 1, 22, 11, 0.00, 0, 1),
(152, 1, 22, 12, 0.00, 0, 1),
(153, 1, 22, 13, 0.00, 0, 1),
(154, 1, 22, 14, 0.00, 0, 1),
(155, 1, 22, 15, 0.00, 0, 1),
(156, 1, 21, 7, 0.00, 0, 1),
(157, 1, 21, 8, 0.00, 0, 1),
(158, 1, 21, 9, 200000.00, 0, 1),
(159, 1, 21, 10, 0.00, 0, 1),
(160, 1, 21, 11, 0.00, 0, 1),
(161, 1, 21, 12, 0.00, 0, 1),
(162, 1, 21, 13, 0.00, 0, 1),
(163, 1, 21, 14, 0.00, 0, 1),
(164, 1, 21, 15, 0.00, 0, 1),
(165, 1, 19, 7, 0.00, 0, 1),
(166, 1, 19, 8, 0.00, 0, 1),
(167, 1, 19, 9, 0.00, 0, 1),
(168, 1, 19, 10, 0.00, 0, 1),
(169, 1, 19, 11, 0.00, 0, 1),
(170, 1, 19, 12, 0.00, 0, 1),
(171, 1, 19, 13, 0.00, 0, 1),
(172, 1, 19, 14, 0.00, 1, 1),
(173, 1, 19, 15, 0.00, 1, 1),
(174, 1, 18, 7, 0.00, 0, 1),
(175, 1, 18, 8, 0.00, 0, 1),
(176, 1, 18, 9, 0.00, 0, 1),
(177, 1, 18, 10, 0.00, 0, 1),
(178, 1, 18, 11, 0.00, 0, 1),
(179, 1, 18, 12, 0.00, 0, 1),
(180, 1, 18, 13, 0.00, 0, 1),
(181, 1, 18, 14, 0.00, 0, 1),
(182, 1, 18, 15, 0.00, 0, 1),
(183, 1, 17, 4, 2300.00, 1, 1),
(184, 1, 17, 7, 0.00, 0, 1),
(185, 1, 17, 8, 0.00, 0, 1),
(186, 1, 17, 9, 0.00, 0, 1),
(187, 1, 17, 10, 0.00, 0, 1),
(188, 1, 17, 11, 0.00, 0, 1),
(189, 1, 17, 12, 0.00, 1, 1),
(190, 1, 17, 13, 0.00, 0, 1),
(191, 1, 17, 14, 0.00, 0, 1),
(192, 1, 17, 15, 0.00, 0, 1),
(193, 1, 16, 7, 706000.00, 1, 1),
(194, 1, 16, 8, 0.00, 0, 1),
(195, 1, 16, 9, 54000.00, 1, 1),
(196, 1, 16, 10, 0.00, 0, 1),
(197, 1, 16, 11, 0.00, 0, 1),
(198, 1, 16, 12, 45.50, 1, 1),
(199, 1, 16, 13, 0.00, 0, 1),
(200, 1, 16, 14, 0.00, 0, 1),
(201, 1, 16, 15, 0.00, 0, 1),
(202, 1, 15, 7, 0.00, 0, 1),
(203, 1, 15, 8, 0.00, 0, 1),
(204, 1, 15, 9, 0.00, 0, 1),
(205, 1, 15, 10, 0.00, 0, 1),
(206, 1, 15, 11, 0.00, 0, 1),
(207, 1, 15, 12, 100.00, 1, 1),
(208, 1, 15, 13, 0.00, 0, 1),
(209, 1, 15, 14, 0.00, 0, 1),
(210, 1, 15, 15, 0.00, 0, 1),
(211, 1, 14, 7, 0.00, 0, 1),
(212, 1, 14, 8, 0.00, 0, 1),
(213, 1, 14, 9, 0.00, 0, 1),
(214, 1, 14, 10, 0.00, 0, 1),
(215, 1, 14, 11, 0.00, 0, 1),
(216, 1, 14, 12, 0.00, 0, 1),
(217, 1, 14, 13, 0.00, 0, 1),
(218, 1, 14, 14, 0.00, 0, 1),
(219, 1, 14, 15, 0.00, 0, 1),
(220, 1, 20, 4, 0.00, 0, 1),
(221, 1, 20, 7, 0.00, 0, 1),
(222, 1, 20, 8, 0.00, 0, 1),
(223, 1, 20, 9, 0.00, 0, 1),
(224, 1, 20, 10, 0.00, 0, 1),
(225, 1, 20, 11, 0.00, 0, 1),
(226, 1, 20, 12, 0.00, 0, 1),
(227, 1, 20, 13, 0.00, 0, 1),
(228, 1, 20, 14, 0.00, 0, 1),
(229, 1, 20, 15, 0.00, 0, 1),
(230, 1, 13, 7, 697360.00, 1, 1),
(231, 1, 13, 8, 0.00, 0, 1),
(232, 1, 13, 9, 0.00, 0, 1),
(233, 1, 13, 10, 0.00, 0, 1),
(234, 1, 13, 11, 0.00, 0, 1),
(235, 1, 13, 12, 40.00, 1, 1),
(236, 1, 13, 13, 0.00, 0, 1),
(237, 1, 13, 14, 0.00, 0, 1),
(238, 1, 13, 15, 0.00, 0, 1),
(239, 1, 12, 7, 714520.00, 1, 1),
(240, 1, 12, 8, 0.00, 0, 1),
(241, 1, 12, 9, 0.00, 0, 1),
(242, 1, 12, 10, 0.00, 0, 1),
(243, 1, 12, 11, 0.00, 0, 1),
(244, 1, 12, 12, 0.00, 0, 1),
(245, 1, 12, 13, 0.00, 0, 1),
(246, 1, 12, 14, 0.00, 0, 1),
(247, 1, 12, 15, 0.00, 0, 1),
(248, 1, 11, 4, 0.00, 0, 1),
(249, 1, 11, 7, 0.00, 0, 1),
(250, 1, 11, 8, 0.00, 0, 1),
(251, 1, 11, 9, 0.00, 0, 1),
(252, 1, 11, 10, 0.00, 0, 1),
(253, 1, 11, 11, 0.00, 0, 1),
(254, 1, 11, 12, 0.00, 0, 1),
(255, 1, 11, 13, 0.00, 0, 1),
(256, 1, 11, 14, 0.00, 0, 1),
(257, 1, 11, 15, 0.00, 0, 1),
(258, 1, 7, 7, 600000.00, 1, 1),
(259, 1, 7, 8, 0.00, 0, 1),
(260, 1, 7, 9, 22500.00, 1, 1),
(261, 1, 7, 10, 0.00, 0, 1),
(262, 1, 7, 11, 0.00, 0, 1),
(263, 1, 7, 12, 140.00, 1, 1),
(264, 1, 7, 13, 0.00, 0, 1),
(265, 1, 7, 14, 0.00, 0, 1),
(266, 1, 7, 15, 0.00, 0, 1),
(267, 1, 9, 4, 2300.00, 1, 1),
(268, 1, 9, 7, 0.00, 0, 1),
(269, 1, 9, 8, 0.00, 0, 1),
(270, 1, 9, 9, 0.00, 0, 1),
(271, 1, 9, 10, 0.00, 0, 1),
(272, 1, 9, 11, 0.00, 0, 1),
(273, 1, 9, 12, 0.00, 0, 1),
(274, 1, 9, 13, 0.00, 0, 1),
(275, 1, 9, 14, 0.00, 0, 1),
(276, 1, 9, 15, 0.00, 0, 1),
(277, 1, 10, 4, 1500.00, 1, 1),
(278, 1, 10, 7, 0.00, 0, 1),
(279, 1, 10, 8, 0.00, 0, 1),
(280, 1, 10, 9, 0.00, 0, 1),
(281, 1, 10, 10, 0.00, 0, 1),
(282, 1, 10, 11, 0.00, 0, 1),
(283, 1, 10, 12, 0.00, 0, 1),
(284, 1, 10, 13, 0.00, 0, 1),
(285, 1, 10, 14, 0.00, 0, 1),
(286, 1, 10, 15, 0.00, 0, 1),
(287, 1, 8, 7, 673570.00, 1, 1),
(288, 1, 8, 8, 0.00, 0, 1),
(289, 1, 8, 9, 0.00, 0, 1),
(290, 1, 8, 10, 0.00, 0, 1),
(291, 1, 8, 11, 0.00, 0, 1),
(292, 1, 8, 12, 220.00, 1, 1),
(293, 1, 8, 13, 0.00, 0, 1),
(294, 1, 8, 14, 0.00, 0, 1),
(295, 1, 8, 15, 0.00, 0, 1),
(296, 1, 6, 4, 0.00, 0, 1),
(297, 1, 6, 7, 0.00, 0, 1),
(298, 1, 6, 8, 0.00, 0, 1),
(299, 1, 6, 9, 0.00, 0, 1),
(300, 1, 6, 10, 0.00, 0, 1),
(301, 1, 6, 11, 0.00, 0, 1),
(302, 1, 6, 12, 0.00, 0, 1),
(303, 1, 6, 13, 0.00, 0, 1),
(304, 1, 6, 14, 0.00, 0, 1),
(305, 1, 6, 15, 0.00, 0, 1),
(306, 1, 5, 4, 250.00, 1, 1),
(307, 1, 5, 7, 0.00, 0, 1),
(308, 1, 5, 8, 0.00, 0, 1),
(309, 1, 5, 9, 0.00, 0, 1),
(310, 1, 5, 10, 0.00, 0, 1),
(311, 1, 5, 11, 0.00, 0, 1),
(312, 1, 5, 12, 0.00, 0, 1),
(313, 1, 5, 13, 0.00, 0, 1),
(314, 1, 5, 14, 0.00, 0, 1),
(315, 1, 5, 15, 0.00, 0, 1),
(316, 1, 4, 4, 0.00, 0, 1),
(317, 1, 4, 7, 0.00, 0, 1),
(318, 1, 4, 8, 0.00, 0, 1),
(319, 1, 4, 9, 0.00, 0, 1),
(320, 1, 4, 10, 0.00, 0, 1),
(321, 1, 4, 11, 0.00, 0, 1),
(322, 1, 4, 12, 0.00, 0, 1),
(323, 1, 4, 13, 0.00, 0, 1),
(324, 1, 4, 14, 0.00, 0, 1),
(325, 1, 4, 15, 0.00, 0, 1),
(326, 1, 3, 7, 0.00, 0, 1),
(327, 1, 3, 8, 0.00, 0, 1),
(328, 1, 3, 9, 0.00, 0, 1),
(329, 1, 3, 10, 0.00, 0, 1),
(330, 1, 3, 11, 0.00, 0, 1),
(331, 1, 3, 12, 88.00, 1, 1),
(332, 1, 3, 13, 0.00, 0, 1),
(333, 1, 3, 14, 0.00, 0, 1),
(334, 1, 3, 15, 0.00, 0, 1),
(335, 1, 2, 7, 0.00, 0, 1),
(336, 1, 2, 8, 0.00, 0, 1),
(337, 1, 2, 9, 0.00, 0, 1),
(338, 1, 2, 10, 0.00, 0, 1),
(339, 1, 2, 11, 0.00, 0, 1),
(340, 1, 2, 12, 0.00, 1, 1),
(341, 1, 2, 13, 0.00, 0, 1),
(342, 1, 2, 14, 0.00, 0, 1),
(343, 1, 2, 15, 0.00, 0, 1),
(344, 1, 1, 3, 5400.00, 1, 1),
(345, 1, 1, 4, 1200.00, 1, 1),
(346, 1, 1, 5, 120000.00, 1, 1),
(347, 1, 1, 6, 0.00, 0, 1),
(348, 1, 1, 7, 0.00, 0, 1),
(349, 1, 1, 8, 0.00, 0, 1),
(350, 1, 1, 9, 0.00, 0, 1),
(351, 1, 1, 10, 0.00, 0, 1),
(352, 1, 1, 11, 0.00, 0, 1),
(353, 1, 1, 12, 0.00, 0, 1),
(354, 1, 1, 13, 0.00, 0, 1),
(355, 1, 1, 14, 0.00, 0, 1),
(356, 1, 1, 15, 0.00, 0, 1),
(357, 1, 30, 3, 0.00, 1, 1),
(358, 1, 30, 4, 10000.00, 1, 1),
(359, 1, 30, 5, 0.00, 0, 1),
(360, 1, 30, 6, 20000.00, 1, 1),
(361, 1, 30, 7, 0.00, 0, 1),
(362, 1, 30, 8, 0.00, 0, 1),
(363, 1, 30, 9, 0.00, 0, 1),
(364, 1, 30, 10, 0.00, 0, 1),
(365, 1, 30, 11, 0.00, 0, 1),
(366, 1, 30, 12, 0.00, 0, 1),
(367, 1, 30, 13, 0.00, 0, 1),
(368, 1, 30, 14, 0.00, 0, 1),
(369, 1, 30, 15, 0.00, 0, 1),
(370, 1, 28, 3, 282.00, 1, 1),
(371, 1, 28, 4, 5480.00, 1, 1),
(372, 1, 28, 5, 390000.00, 1, 1),
(373, 1, 28, 6, 80.00, 1, 1),
(374, 1, 28, 7, 780000.00, 1, 1),
(375, 1, 28, 8, 0.00, 0, 1),
(376, 1, 28, 9, 0.00, 0, 1),
(377, 1, 28, 10, 0.00, 0, 1),
(378, 1, 28, 11, 0.00, 0, 1),
(379, 1, 28, 12, 160.00, 1, 1),
(380, 1, 28, 13, 0.00, 0, 1),
(381, 1, 28, 14, 0.00, 0, 1),
(382, 1, 28, 15, 0.00, 0, 1),
(383, 1, 29, 3, 0.00, 0, 1),
(384, 1, 29, 4, 200000.00, 1, 1),
(385, 1, 29, 5, 200000.00, 1, 1),
(386, 1, 29, 6, 0.00, 0, 1),
(387, 1, 29, 7, 0.00, 0, 1),
(388, 1, 29, 8, 10000.00, 1, 1),
(389, 1, 29, 9, 0.00, 0, 1),
(390, 1, 29, 10, 0.00, 0, 1),
(391, 1, 29, 11, 0.00, 0, 1),
(392, 1, 29, 12, 40000.00, 1, 1),
(393, 1, 29, 13, 0.00, 0, 1),
(394, 1, 29, 14, 0.00, 0, 1),
(395, 1, 29, 15, 0.00, 0, 1),
(396, 1, 30, 3, 0.00, 1, 1),
(397, 1, 30, 4, 350.00, 1, 1),
(398, 1, 30, 5, 100.00, 1, 1),
(399, 1, 30, 6, 450.00, 1, 1),
(400, 1, 30, 7, 100.00, 1, 1),
(401, 1, 30, 8, 0.00, 0, 1),
(402, 1, 30, 9, 0.00, 0, 1),
(403, 1, 30, 10, 0.00, 0, 1),
(404, 1, 30, 11, 0.00, 0, 1),
(405, 1, 30, 12, 0.00, 0, 1),
(406, 1, 30, 13, 0.00, 0, 1),
(407, 1, 30, 14, 0.00, 0, 1),
(408, 1, 30, 15, 0.00, 0, 1),
(409, 1, 31, 3, 0.00, 0, 1),
(410, 1, 31, 4, 0.00, 0, 1),
(411, 1, 31, 5, 300.00, 1, 1),
(412, 1, 31, 6, 0.00, 0, 1),
(413, 1, 31, 7, 650.00, 1, 1),
(414, 1, 31, 8, 0.00, 0, 1),
(415, 1, 31, 9, 0.00, 0, 1),
(416, 1, 31, 10, 0.00, 0, 1),
(417, 1, 31, 11, 0.00, 0, 1),
(418, 1, 31, 12, 0.00, 0, 1),
(419, 1, 31, 13, 0.00, 0, 1),
(420, 1, 31, 14, 40.00, 1, 1),
(421, 1, 31, 15, 10.00, 1, 1),
(422, 1, 32, 3, 0.00, 0, 1),
(423, 1, 32, 4, 350000.00, 1, 1),
(424, 1, 32, 5, 100000.00, 0, 1),
(425, 1, 32, 6, 0.00, 0, 1),
(426, 1, 32, 7, 100000.00, 0, 1),
(427, 1, 32, 8, 0.00, 0, 1),
(428, 1, 32, 9, 450000.00, 0, 1),
(429, 1, 32, 10, 0.00, 0, 1),
(430, 1, 32, 11, 0.00, 0, 1),
(431, 1, 32, 12, 0.00, 0, 1),
(432, 1, 32, 13, 0.00, 0, 1),
(433, 1, 32, 14, 0.00, 0, 1),
(434, 1, 32, 15, 0.00, 0, 1),
(435, 1, 33, 3, 0.00, 0, 1),
(436, 1, 33, 4, 0.00, 0, 1),
(437, 1, 33, 5, 320000.00, 1, 1),
(438, 1, 33, 6, 0.00, 0, 1),
(439, 1, 33, 7, 680000.00, 0, 1),
(440, 1, 33, 8, 0.00, 0, 1),
(441, 1, 33, 9, 0.00, 0, 1),
(442, 1, 33, 10, 0.00, 0, 1),
(443, 1, 33, 11, 0.00, 0, 1),
(444, 1, 33, 12, 0.00, 0, 1),
(445, 1, 33, 13, 0.00, 0, 1),
(446, 1, 33, 14, 0.00, 0, 1),
(447, 1, 33, 15, 0.00, 0, 1),
(448, 1, 34, 3, 450.00, 1, 1),
(449, 1, 34, 4, 0.00, 0, 1),
(450, 1, 34, 5, 250000.00, 1, 1),
(451, 1, 34, 6, 0.00, 0, 1),
(452, 1, 34, 7, 0.00, 0, 1),
(453, 1, 34, 8, 0.00, 0, 1),
(454, 1, 34, 9, 0.00, 0, 1),
(455, 1, 34, 10, 0.00, 0, 1),
(456, 1, 34, 11, 0.00, 0, 1),
(457, 1, 34, 12, 0.00, 0, 1),
(458, 1, 34, 13, 0.00, 0, 1),
(459, 1, 34, 14, 0.00, 1, 1),
(460, 1, 34, 15, 0.00, 0, 1),
(461, 1, 35, 3, 0.00, 0, 1),
(462, 1, 35, 4, 0.00, 0, 1),
(463, 1, 35, 5, 800000.00, 1, 1),
(464, 1, 35, 6, 0.00, 0, 1),
(465, 1, 35, 7, 0.00, 0, 1),
(466, 1, 35, 8, 0.00, 0, 1),
(467, 1, 35, 9, 0.00, 0, 1),
(468, 1, 35, 10, 0.00, 0, 1),
(469, 1, 35, 11, 0.00, 0, 1),
(470, 1, 35, 12, 0.00, 0, 1),
(471, 1, 35, 13, 0.00, 0, 1),
(472, 1, 35, 14, 0.00, 0, 1),
(473, 1, 35, 15, 0.00, 0, 1),
(474, 1, 36, 3, 0.00, 0, 1),
(475, 1, 36, 4, 0.00, 0, 1),
(476, 1, 36, 5, 0.00, 0, 1),
(477, 1, 36, 6, 0.00, 0, 1),
(478, 1, 36, 7, 100000.00, 1, 1),
(479, 1, 36, 8, 0.00, 0, 1),
(480, 1, 36, 9, 0.00, 0, 1),
(481, 1, 36, 10, 0.00, 0, 1),
(482, 1, 36, 11, 0.00, 0, 1),
(483, 1, 36, 12, 0.00, 0, 1),
(484, 1, 36, 13, 0.00, 0, 1),
(485, 1, 36, 14, 0.00, 0, 1),
(486, 1, 36, 15, 100000.00, 1, 1),
(487, 1, 37, 3, 0.00, 0, 1),
(488, 1, 37, 4, 0.00, 0, 1),
(489, 1, 37, 5, 950000.00, 1, 1),
(490, 1, 37, 6, 0.00, 0, 1),
(491, 1, 37, 7, 0.00, 0, 1),
(492, 1, 37, 8, 0.00, 0, 1),
(493, 1, 37, 9, 0.00, 0, 1),
(494, 1, 37, 10, 0.00, 0, 1),
(495, 1, 37, 11, 0.00, 0, 1),
(496, 1, 37, 12, 0.00, 0, 1),
(497, 1, 37, 13, 0.00, 0, 1),
(498, 1, 37, 14, 50000.00, 1, 1),
(499, 1, 37, 15, 0.00, 0, 1),
(500, 1, 38, 3, 0.00, 0, 1),
(501, 1, 38, 4, 0.00, 0, 1),
(502, 1, 38, 5, 0.00, 0, 1),
(503, 1, 38, 6, 0.00, 0, 1),
(504, 1, 38, 7, 0.00, 0, 1),
(505, 1, 38, 8, 999999.00, 1, 1),
(506, 1, 38, 9, 0.00, 0, 1),
(507, 1, 38, 10, 0.00, 0, 1),
(508, 1, 38, 11, 0.00, 0, 1),
(509, 1, 38, 12, 0.00, 0, 1),
(510, 1, 38, 13, 0.00, 0, 1),
(511, 1, 38, 14, 0.00, 0, 1),
(512, 1, 38, 15, 0.00, 0, 1),
(513, 1, 39, 3, 0.00, 0, 1),
(514, 1, 39, 4, 0.00, 0, 1),
(515, 1, 39, 5, 0.00, 0, 1),
(516, 1, 39, 6, 0.00, 0, 1),
(517, 1, 39, 7, 1000000.00, 1, 1),
(518, 1, 39, 8, 0.00, 0, 1),
(519, 1, 39, 9, 0.00, 0, 1),
(520, 1, 39, 10, 0.00, 0, 1),
(521, 1, 39, 11, 0.00, 0, 1),
(522, 1, 39, 12, 0.00, 0, 1),
(523, 1, 39, 13, 0.00, 0, 1),
(524, 1, 39, 14, 0.00, 0, 1),
(525, 1, 39, 15, 0.00, 0, 1),
(526, 1, 40, 3, 0.00, 0, 1),
(527, 1, 40, 4, 0.00, 0, 1),
(528, 1, 40, 5, 0.00, 0, 1),
(529, 1, 40, 6, 0.00, 0, 1),
(530, 1, 40, 7, 500000.00, 1, 1),
(531, 1, 40, 8, 0.00, 0, 1),
(532, 1, 40, 9, 0.00, 0, 1),
(533, 1, 40, 10, 0.00, 0, 1),
(534, 1, 40, 11, 0.00, 0, 1),
(535, 1, 40, 12, 0.00, 1, 1),
(536, 1, 40, 13, 0.00, 1, 1),
(537, 1, 40, 14, 0.00, 1, 1),
(538, 1, 40, 15, 0.00, 1, 1),
(539, 1, 41, 3, 500.00, 1, 1),
(540, 1, 41, 4, 1000.00, 1, 1),
(541, 1, 41, 5, 400000.00, 1, 1),
(542, 1, 41, 6, 0.00, 0, 1),
(543, 1, 41, 7, 0.00, 0, 1),
(544, 1, 41, 8, 0.00, 0, 1),
(545, 1, 41, 9, 0.00, 0, 1),
(546, 1, 41, 10, 0.00, 0, 1),
(547, 1, 41, 11, 0.00, 0, 1),
(548, 1, 41, 12, 0.00, 0, 1),
(549, 1, 41, 13, 0.00, 0, 1),
(550, 1, 41, 14, 0.00, 0, 1),
(551, 1, 41, 15, 0.00, 0, 1),
(552, 1, 42, 3, 68.00, 1, 1),
(553, 1, 42, 4, 886.60, 1, 1),
(554, 1, 42, 5, 210020.00, 1, 1),
(555, 1, 42, 6, 12.00, 0, 1),
(556, 1, 42, 7, 749680.00, 1, 1),
(557, 1, 42, 8, 0.00, 0, 1),
(558, 1, 42, 9, 0.00, 0, 1),
(559, 1, 42, 10, 0.00, 0, 1),
(560, 1, 42, 11, 0.00, 0, 1),
(561, 1, 42, 12, 6.00, 0, 1),
(562, 1, 42, 13, 0.00, 0, 1),
(563, 1, 42, 14, 0.00, 0, 1),
(564, 1, 42, 15, 0.00, 0, 1),
(565, 1, 43, 3, 1000000.00, 1, 1),
(566, 1, 43, 4, 0.00, 0, 1),
(567, 1, 43, 5, 0.00, 0, 1),
(568, 1, 43, 6, 0.00, 0, 1),
(569, 1, 43, 7, 0.00, 0, 1),
(570, 1, 43, 8, 0.00, 0, 1),
(571, 1, 43, 9, 0.00, 0, 1),
(572, 1, 43, 10, 0.00, 0, 1),
(573, 1, 43, 11, 0.00, 0, 1),
(574, 1, 43, 12, 0.00, 0, 1),
(575, 1, 43, 13, 0.00, 0, 1),
(576, 1, 43, 14, 0.00, 0, 1),
(577, 1, 43, 15, 0.00, 0, 1),
(578, 1, 44, 3, 0.00, 0, 1),
(579, 1, 44, 4, 0.00, 0, 1),
(580, 1, 44, 5, 220000.00, 1, 1),
(581, 1, 44, 6, 0.00, 0, 1),
(582, 1, 44, 7, 0.00, 0, 1),
(583, 1, 44, 8, 0.00, 0, 1),
(584, 1, 44, 9, 0.00, 0, 1),
(585, 1, 44, 10, 0.00, 0, 1),
(586, 1, 44, 11, 0.00, 0, 1),
(587, 1, 44, 12, 0.00, 0, 1),
(588, 1, 44, 13, 0.00, 0, 1),
(589, 1, 44, 14, 0.00, 0, 1),
(590, 1, 44, 15, 0.00, 0, 1),
(591, 1, 45, 3, 0.00, 0, 1),
(592, 1, 45, 4, 0.00, 0, 1),
(593, 1, 45, 5, 112000.00, 1, 1),
(594, 1, 45, 6, 0.00, 0, 1),
(595, 1, 45, 7, 0.00, 0, 1),
(596, 1, 45, 8, 0.00, 0, 1),
(597, 1, 45, 9, 0.00, 0, 1),
(598, 1, 45, 10, 0.00, 0, 1),
(599, 1, 45, 11, 0.00, 0, 1),
(600, 1, 45, 12, 0.00, 0, 1),
(601, 1, 45, 13, 0.00, 0, 1),
(602, 1, 45, 14, 0.00, 0, 1),
(603, 1, 45, 15, 0.00, 0, 1),
(604, 1, 46, 3, 3200.00, 1, 1),
(605, 1, 46, 4, 12500.00, 1, 1),
(606, 1, 46, 5, 100000.00, 1, 1),
(607, 1, 46, 6, 100.00, 1, 1),
(608, 1, 46, 7, 0.00, 0, 1),
(609, 1, 46, 8, 0.00, 0, 1),
(610, 1, 46, 9, 0.00, 0, 1),
(611, 1, 46, 10, 0.00, 0, 1),
(612, 1, 46, 11, 0.00, 0, 1),
(613, 1, 46, 12, 220.00, 1, 1),
(614, 1, 46, 13, 0.00, 0, 1),
(615, 1, 46, 14, 0.00, 0, 1),
(616, 1, 46, 15, 0.00, 0, 1),
(617, 1, 47, 3, 28.00, 1, 1),
(618, 1, 47, 4, 120.00, 1, 1),
(619, 1, 47, 5, 100000.00, 1, 1),
(620, 1, 47, 6, 3.00, 1, 1),
(621, 1, 47, 7, 768200.00, 0, 1),
(622, 1, 47, 8, 0.00, 0, 1),
(623, 1, 47, 9, 0.00, 0, 1),
(624, 1, 47, 10, 0.00, 0, 1),
(625, 1, 47, 11, 0.00, 0, 1),
(626, 1, 47, 12, 3.00, 1, 1),
(627, 1, 47, 13, 0.00, 0, 1),
(628, 1, 47, 14, 0.00, 0, 1),
(629, 1, 47, 15, 0.00, 0, 1),
(630, 1, 48, 3, 126.00, 1, 1),
(631, 1, 48, 4, 1400.00, 1, 1),
(632, 1, 48, 5, 200000.00, 1, 1),
(633, 1, 48, 6, 25.00, 1, 1),
(634, 1, 48, 7, 691900.00, 1, 1),
(635, 1, 48, 8, 0.00, 0, 1),
(636, 1, 48, 9, 25000.00, 1, 1),
(637, 1, 48, 10, 0.00, 0, 1),
(638, 1, 48, 11, 0.00, 0, 1),
(639, 1, 48, 12, 25.00, 1, 1),
(640, 1, 48, 13, 0.00, 0, 1),
(641, 1, 48, 14, 0.00, 0, 1),
(642, 1, 48, 15, 0.00, 0, 1),
(643, 1, 49, 3, 0.00, 0, 1),
(644, 1, 49, 4, 0.00, 0, 1),
(645, 1, 49, 5, 0.00, 0, 1),
(646, 1, 49, 6, 0.00, 0, 1),
(647, 1, 49, 7, 0.00, 0, 1),
(648, 1, 49, 8, 0.00, 0, 1),
(649, 1, 49, 9, 999999.00, 1, 1),
(650, 1, 49, 10, 0.00, 0, 1),
(651, 1, 49, 11, 0.00, 0, 1),
(652, 1, 49, 12, 0.00, 0, 1),
(653, 1, 49, 13, 0.00, 0, 1),
(654, 1, 49, 14, 0.00, 0, 1),
(655, 1, 49, 15, 0.00, 0, 1),
(656, 1, 50, 3, 32000.00, 1, 1),
(657, 1, 50, 4, 76000.00, 1, 1),
(658, 1, 50, 5, 770000.00, 1, 1),
(659, 1, 50, 6, 3200.00, 1, 1),
(660, 1, 50, 7, 0.00, 0, 1),
(661, 1, 50, 8, 0.00, 0, 1),
(662, 1, 50, 9, 0.00, 0, 1),
(663, 1, 50, 10, 0.00, 0, 1),
(664, 1, 50, 11, 0.00, 0, 1),
(665, 1, 50, 12, 1800.00, 1, 1),
(666, 1, 50, 13, 0.00, 0, 1),
(667, 1, 50, 14, 0.00, 0, 1),
(668, 1, 50, 15, 0.00, 0, 1),
(669, 1, 51, 3, 285.00, 1, 1),
(670, 1, 51, 4, 24600.00, 1, 1),
(671, 1, 51, 5, 699500.00, 1, 1),
(672, 1, 51, 6, 9.90, 1, 1),
(673, 1, 51, 12, 30.50, 1, 1),
(674, 1, 52, 3, 0.00, 0, 1),
(675, 1, 52, 4, 0.00, 0, 1),
(676, 1, 52, 5, 0.00, 0, 1),
(677, 1, 52, 6, 0.00, 0, 1),
(678, 1, 52, 12, 0.00, 0, 1),
(679, 1, 53, 3, 0.00, 1, 1),
(680, 1, 53, 4, 0.00, 0, 1),
(681, 1, 53, 5, 0.00, 0, 1),
(682, 1, 53, 6, 0.00, 0, 1),
(683, 1, 53, 12, 0.00, 0, 1),
(684, 1, 54, 3, 0.00, 1, 1),
(685, 1, 54, 4, 0.00, 0, 1),
(686, 1, 54, 5, 0.00, 0, 1),
(687, 1, 54, 6, 0.00, 0, 1),
(688, 1, 54, 12, 0.00, 0, 1),
(689, 1, 55, 3, 0.00, 1, 1),
(690, 1, 55, 4, 0.00, 0, 1),
(691, 1, 55, 5, 0.00, 0, 1),
(692, 1, 55, 6, 0.00, 0, 1),
(693, 1, 55, 12, 0.00, 0, 1),
(694, 1, 56, 3, 196.00, 1, 1),
(695, 1, 56, 4, 1645.00, 1, 1),
(696, 1, 56, 5, 220000.00, 1, 1),
(697, 1, 56, 6, 14.00, 1, 1),
(698, 1, 56, 12, 30.00, 1, 1),
(699, 1, 57, 3, 1970.80, 1, 1),
(700, 1, 57, 4, 0.00, 0, 1),
(701, 1, 57, 5, 1.00, 0, 1),
(702, 1, 57, 6, 0.00, 0, 1),
(703, 1, 57, 12, 0.00, 0, 1),
(704, 1, 58, 3, 0.00, 1, 1),
(705, 1, 58, 4, 0.00, 0, 1),
(706, 1, 58, 5, 245000.00, 1, 1),
(707, 1, 58, 6, 0.00, 0, 1),
(708, 1, 58, 12, 0.00, 0, 1),
(709, 1, 59, 3, 6.00, 1, 1),
(710, 1, 59, 4, 0.00, 0, 1),
(711, 1, 59, 5, 240000.00, 1, 1),
(712, 1, 59, 6, 0.00, 0, 1),
(713, 1, 59, 12, 0.00, 0, 1),
(714, 1, 60, 3, 10.00, 1, 1),
(715, 1, 60, 4, 0.00, 0, 1),
(716, 1, 60, 5, 280000.00, 1, 1),
(717, 1, 60, 6, 0.00, 0, 1),
(718, 1, 60, 12, 0.00, 0, 1),
(719, 1, 61, 3, 10.00, 1, 1),
(720, 1, 61, 4, 0.00, 0, 1),
(721, 1, 61, 5, 276533.00, 1, 1),
(722, 1, 61, 6, 0.00, 0, 1),
(723, 1, 61, 12, 0.00, 0, 1),
(724, 1, 62, 3, 6.00, 1, 1),
(725, 1, 62, 4, 0.00, 0, 1),
(726, 1, 62, 5, 187000.00, 1, 1),
(727, 1, 62, 6, 0.00, 0, 1),
(728, 1, 62, 12, 0.00, 0, 1),
(729, 1, 63, 3, 0.00, 0, 1),
(730, 1, 63, 4, 300.00, 0, 1),
(731, 1, 63, 5, 240000.00, 1, 1),
(732, 1, 63, 6, 0.00, 0, 1),
(733, 1, 63, 12, 0.00, 0, 1),
(734, 1, 64, 3, 0.00, 0, 1),
(735, 1, 64, 4, 0.00, 0, 1),
(736, 1, 64, 5, 265000.00, 1, 1),
(737, 1, 64, 6, 0.00, 0, 1),
(738, 1, 64, 12, 0.00, 0, 1),
(739, 1, 65, 3, 60.00, 1, 1),
(740, 1, 65, 4, 320.00, 1, 1),
(741, 1, 65, 5, 184000.00, 1, 1),
(742, 1, 65, 6, 0.00, 0, 1),
(743, 1, 65, 12, 0.00, 0, 1),
(744, 1, 66, 3, 115.00, 1, 1),
(745, 1, 66, 4, 2500.00, 1, 1),
(746, 1, 66, 5, 200000.00, 1, 1),
(747, 1, 66, 6, 95.00, 1, 1),
(748, 1, 66, 12, 100.00, 1, 1),
(749, 1, 67, 3, 85.00, 1, 1),
(750, 1, 67, 4, 199.00, 1, 1),
(751, 1, 67, 5, 255000.00, 1, 1),
(752, 1, 67, 6, 95.00, 1, 1),
(753, 1, 67, 12, 88.00, 1, 1),
(754, 1, 68, 3, 0.00, 0, 1),
(755, 1, 68, 4, 350.00, 1, 1),
(756, 1, 68, 5, 240000.00, 1, 1),
(757, 1, 68, 6, 0.00, 0, 1),
(758, 1, 68, 12, 0.00, 0, 1),
(759, 1, 69, 3, 67.00, 1, 1),
(760, 1, 69, 4, 400.00, 1, 1),
(761, 1, 69, 5, 170000.00, 1, 1),
(762, 1, 69, 6, 20.00, 1, 1),
(763, 1, 69, 12, 30.00, 1, 1),
(764, 1, 70, 3, 310.00, 1, 1),
(765, 1, 70, 4, 3500.00, 1, 1),
(766, 1, 70, 5, 200000.00, 1, 1),
(767, 1, 70, 6, 22.00, 1, 1),
(768, 1, 70, 12, 122.00, 1, 1),
(769, 1, 71, 3, 0.00, 0, 1),
(770, 1, 71, 4, 0.00, 0, 1),
(771, 1, 71, 5, 1.00, 1, 1),
(772, 1, 71, 6, 0.00, 0, 1),
(773, 1, 71, 12, 0.00, 0, 1),
(774, 1, 72, 3, 4550.62, 1, 1),
(775, 1, 72, 4, 16000.00, 1, 1),
(776, 1, 72, 5, 100000.00, 1, 1),
(777, 1, 72, 6, 0.00, 1, 1),
(778, 1, 72, 12, 0.00, 1, 1),
(779, 1, 73, 3, 7700.00, 1, 1),
(780, 1, 73, 4, 17000.00, 1, 1),
(781, 1, 73, 5, 100000.00, 1, 1),
(782, 1, 73, 6, 0.00, 1, 1),
(783, 1, 73, 12, 0.00, 1, 1),
(784, 1, 74, 3, 6450.00, 1, 1),
(785, 1, 74, 4, 18000.00, 1, 1),
(786, 1, 74, 5, 100000.00, 1, 1),
(787, 1, 74, 6, 0.00, 1, 1),
(788, 1, 74, 12, 0.00, 1, 1),
(789, 1, 75, 3, 200.00, 1, 1),
(790, 1, 75, 4, 0.00, 1, 1),
(791, 1, 75, 5, 300000.00, 1, 1),
(792, 1, 75, 6, 0.00, 1, 1),
(793, 1, 75, 12, 0.00, 1, 1),
(794, 1, 76, 3, 0.00, 0, 1),
(795, 1, 76, 4, 600.00, 1, 1),
(796, 1, 76, 5, 200000.00, 1, 1),
(797, 1, 76, 6, 0.00, 0, 1),
(798, 1, 76, 12, 0.00, 0, 1),
(799, 1, 77, 3, 50.00, 1, 1),
(800, 1, 77, 4, 200.00, 1, 1),
(801, 1, 77, 5, 240000.00, 1, 1),
(802, 1, 77, 6, 0.00, 0, 1),
(803, 1, 77, 12, 0.00, 0, 1),
(804, 1, 78, 3, 0.00, 0, 1),
(805, 1, 78, 4, 0.00, 0, 1),
(806, 1, 78, 5, 380000.00, 1, 1),
(807, 1, 78, 6, 0.00, 0, 1),
(808, 1, 78, 12, 0.00, 0, 1),
(809, 1, 79, 3, 60.00, 1, 1),
(810, 1, 79, 4, 200.00, 1, 1),
(811, 1, 79, 5, 120000.00, 1, 1),
(812, 1, 79, 6, 1.00, 0, 1),
(813, 1, 79, 12, 1.00, 0, 1),
(814, 1, 80, 3, 90.00, 1, 1),
(815, 1, 80, 4, 666.00, 1, 1),
(816, 1, 80, 5, 210000.00, 1, 1),
(817, 1, 80, 6, 0.00, 0, 1),
(818, 1, 80, 12, 0.00, 0, 1),
(819, 1, 81, 3, 50.00, 1, 1),
(820, 1, 81, 4, 200.00, 1, 1),
(821, 1, 81, 5, 200000.00, 1, 1),
(822, 1, 81, 6, 0.00, 1, 1),
(823, 1, 81, 12, 0.00, 1, 1),
(824, 1, 82, 3, 130.00, 1, 1),
(825, 1, 82, 4, 1250.00, 1, 1),
(826, 1, 82, 5, 250000.00, 1, 1),
(827, 1, 82, 6, 0.00, 0, 1),
(828, 1, 82, 12, 0.00, 0, 1),
(829, 1, 83, 3, 107.00, 1, 1),
(830, 1, 83, 4, 0.00, 0, 1),
(831, 1, 83, 5, 230000.00, 1, 1),
(832, 1, 83, 6, 0.00, 0, 1),
(833, 1, 83, 12, 0.00, 0, 1),
(834, 1, 84, 3, 123.00, 1, 1),
(835, 1, 84, 4, 2562.00, 1, 1),
(836, 1, 84, 5, 288040.00, 1, 1),
(837, 1, 84, 6, 12.00, 1, 1),
(838, 1, 84, 12, 9.00, 1, 1),
(839, 1, 85, 3, 57.10, 1, 1),
(840, 1, 85, 4, 540.00, 1, 1),
(841, 1, 85, 5, 212000.00, 1, 1),
(842, 1, 85, 6, 3.00, 1, 1),
(843, 1, 85, 12, 6.00, 1, 1),
(844, 1, 86, 3, 21.00, 1, 1),
(845, 1, 86, 4, 188.00, 1, 1),
(846, 1, 86, 5, 231020.00, 1, 1),
(847, 1, 86, 6, 2.00, 1, 1),
(848, 1, 86, 12, 3.00, 1, 1),
(849, 1, 87, 3, 222.00, 1, 1),
(850, 1, 87, 4, 2222.00, 1, 1),
(851, 1, 87, 5, 222222.00, 1, 1),
(852, 1, 87, 6, 22.00, 1, 1),
(853, 1, 87, 12, 2.00, 1, 1),
(854, 1, 88, 3, 365.00, 1, 1),
(855, 1, 88, 4, 1800.00, 1, 1),
(856, 1, 88, 5, 350000.00, 1, 1),
(857, 1, 88, 6, 35.00, 1, 1),
(858, 1, 88, 12, 12.00, 1, 1),
(859, 1, 89, 3, 112.00, 1, 1),
(860, 1, 89, 4, 212.00, 1, 1),
(861, 1, 89, 5, 310000.00, 1, 1),
(862, 1, 89, 6, 21.00, 1, 1),
(863, 1, 89, 12, 9.00, 1, 1),
(864, 1, 90, 3, 800.00, 1, 1),
(865, 1, 90, 4, 500.00, 1, 1),
(866, 1, 90, 5, 210000.00, 1, 1),
(867, 1, 90, 6, 0.00, 0, 1),
(868, 1, 90, 12, 0.00, 0, 1),
(869, 1, 91, 3, 1200.00, 1, 1),
(870, 1, 91, 4, 1200.00, 1, 1),
(871, 1, 91, 5, 215000.00, 1, 1),
(872, 1, 91, 6, 0.00, 0, 1),
(873, 1, 91, 12, 0.00, 0, 1),
(874, 1, 92, 3, 2000.00, 1, 1),
(875, 1, 92, 4, 2000.00, 1, 1),
(876, 1, 92, 5, 250000.00, 1, 1),
(877, 1, 92, 6, 0.00, 0, 1),
(878, 1, 92, 12, 0.00, 0, 1),
(879, 1, 93, 3, 144.00, 1, 1),
(880, 1, 93, 4, 312.00, 1, 1),
(881, 1, 93, 5, 310000.00, 1, 1),
(882, 1, 93, 6, 1.00, 1, 1),
(883, 1, 93, 12, 18.00, 1, 1),
(884, 1, 94, 3, 210.00, 1, 1),
(885, 1, 94, 4, 1655.00, 1, 1),
(886, 1, 94, 5, 262351.00, 1, 1),
(887, 1, 94, 6, 3.00, 1, 1),
(888, 1, 94, 12, 22.00, 1, 1),
(889, 1, 95, 3, 397.65, 1, 1),
(890, 1, 95, 4, 48.00, 1, 1),
(891, 1, 95, 5, 260000.00, 1, 1),
(892, 1, 95, 6, 0.00, 0, 1),
(893, 1, 95, 12, 0.00, 0, 1),
(894, 1, 96, 3, 31.00, 1, 1),
(895, 1, 96, 4, 41.00, 1, 1),
(896, 1, 96, 5, 220000.00, 1, 1),
(897, 1, 96, 6, 0.00, 0, 1),
(898, 1, 96, 12, 0.00, 0, 1),
(899, 1, 97, 3, 180.50, 1, 1),
(900, 1, 97, 4, 41.00, 1, 1),
(901, 1, 97, 5, 220000.00, 1, 1),
(902, 1, 97, 6, 0.00, 0, 1),
(903, 1, 97, 12, 0.00, 0, 1),
(904, 1, 98, 3, 1102.00, 1, 1),
(905, 1, 98, 4, 2222.00, 1, 1),
(906, 1, 98, 5, 222000.00, 1, 1),
(907, 1, 98, 6, 33.00, 1, 1),
(908, 1, 98, 12, 33.00, 1, 1),
(909, 1, 99, 3, 677.00, 1, 1),
(910, 1, 99, 4, 333.00, 1, 1),
(911, 1, 99, 5, 220000.00, 1, 1),
(912, 1, 99, 6, 20.00, 1, 1),
(913, 1, 99, 12, 20.00, 1, 1),
(914, 1, 100, 3, 510.40, 1, 1),
(915, 1, 100, 4, 600.00, 1, 1),
(916, 1, 100, 5, 220000.00, 1, 1),
(917, 1, 100, 6, 20.00, 1, 1),
(918, 1, 100, 12, 15.00, 1, 1),
(919, 1, 101, 3, 264.00, 1, 1),
(920, 1, 101, 4, 322.00, 1, 1),
(921, 1, 101, 5, 202545.00, 1, 1),
(922, 1, 101, 6, 15.00, 1, 1),
(923, 1, 101, 12, 10.00, 1, 1),
(924, 1, 102, 3, 2.10, 1, 1),
(925, 1, 102, 4, 70.00, 1, 1),
(926, 1, 102, 5, 334590.00, 1, 1),
(927, 1, 102, 6, 0.00, 0, 1),
(928, 1, 102, 12, 0.00, 0, 1),
(929, 1, 103, 3, 0.41, 1, 1),
(930, 1, 103, 4, 30.00, 1, 1),
(931, 1, 103, 5, 248300.00, 1, 1),
(932, 1, 103, 6, 0.00, 0, 1),
(933, 1, 103, 12, 0.00, 0, 1),
(934, 1, 104, 3, 0.14, 1, 1),
(935, 1, 104, 4, 30.00, 1, 1),
(936, 1, 104, 5, 180000.00, 1, 1),
(937, 1, 104, 6, 0.00, 0, 1),
(938, 1, 104, 12, 0.00, 0, 1),
(939, 1, 105, 3, 0.00, 0, 1),
(940, 1, 105, 4, 0.00, 0, 1),
(941, 1, 105, 5, 0.00, 0, 1),
(942, 1, 105, 6, 0.00, 0, 1),
(943, 1, 105, 12, 0.00, 0, 1),
(944, 1, 106, 3, 4186.30, 1, 1),
(945, 1, 106, 4, 12845.00, 1, 1),
(946, 1, 106, 5, 100277.00, 1, 1),
(947, 1, 106, 6, 80.00, 1, 1),
(948, 1, 106, 12, 1223.00, 1, 1),
(949, 1, 107, 3, 8266.41, 1, 1),
(950, 1, 107, 4, 17345.80, 1, 1),
(951, 1, 107, 5, 81255.00, 1, 1),
(952, 1, 107, 6, 94.20, 1, 1),
(953, 1, 107, 12, 112.00, 1, 1),
(954, 1, 108, 3, 1549.25, 1, 1),
(955, 1, 108, 4, 12422.50, 1, 1),
(956, 1, 108, 5, 89912.00, 1, 1),
(957, 1, 108, 6, 114.00, 1, 1),
(958, 1, 108, 12, 1212.00, 1, 1),
(959, 1, 109, 3, 888.00, 1, 1),
(960, 1, 109, 4, 7466.00, 1, 1),
(961, 1, 109, 5, 120224.00, 1, 1),
(962, 1, 109, 6, 160.00, 1, 1),
(963, 1, 109, 12, 288.00, 1, 1),
(964, 1, 110, 3, 51.00, 1, 1),
(965, 1, 110, 4, 50.00, 1, 1),
(966, 1, 110, 5, 500000.00, 1, 1),
(967, 1, 110, 6, 50.00, 1, 1),
(968, 1, 110, 12, 50.00, 1, 1),
(969, 1, 111, 3, 441.00, 1, 1),
(970, 1, 111, 4, 2100.00, 1, 1),
(971, 1, 111, 5, 53400.00, 1, 1),
(972, 1, 111, 6, 25.00, 1, 1),
(973, 1, 111, 12, 42.00, 1, 1),
(974, 1, 112, 3, 185.00, 1, 1),
(975, 1, 112, 4, 480.00, 1, 1),
(976, 1, 112, 5, 245000.00, 1, 1),
(977, 1, 112, 6, 12.00, 1, 1),
(978, 1, 112, 12, 28.00, 1, 1),
(979, 1, 113, 3, 148.00, 1, 1),
(980, 1, 113, 4, 2500.00, 1, 1),
(981, 1, 113, 5, 265120.00, 1, 1),
(982, 1, 113, 6, 18.00, 1, 1),
(983, 1, 113, 12, 16.00, 1, 1),
(984, 1, 114, 3, 122.00, 1, 1),
(985, 1, 114, 4, 312.00, 1, 1),
(986, 1, 114, 5, 242150.00, 1, 1),
(987, 1, 114, 6, 8.00, 1, 1),
(988, 1, 114, 12, 9.00, 1, 1),
(989, 1, 115, 3, 6.00, 1, 1),
(990, 1, 115, 4, 189.00, 1, 1),
(991, 1, 115, 5, 289585.00, 1, 1),
(992, 1, 115, 6, 3.00, 1, 1),
(993, 1, 115, 12, 3.00, 1, 1),
(994, 1, 116, 3, 291.00, 1, 1),
(995, 1, 116, 4, 6499.00, 1, 1),
(996, 1, 116, 5, 232024.00, 1, 1),
(997, 1, 116, 6, 71.00, 1, 1),
(998, 1, 116, 12, 81.00, 1, 1),
(999, 1, 117, 3, 273.00, 1, 1),
(1000, 1, 117, 4, 400.00, 1, 1),
(1001, 1, 117, 5, 245612.00, 1, 1),
(1002, 1, 117, 6, 72.00, 1, 1),
(1003, 1, 117, 12, 58.00, 1, 1),
(1004, 1, 118, 3, 1.00, 1, 1),
(1005, 1, 118, 4, 1.00, 1, 1),
(1006, 1, 118, 5, 1.00, 1, 1),
(1007, 1, 119, 3, 11.00, 1, 1),
(1008, 1, 119, 4, 40.00, 1, 1),
(1009, 1, 119, 5, 81000.00, 1, 1),
(1010, 1, 119, 6, 3.00, 1, 1),
(1011, 1, 119, 12, 1.00, 1, 1),
(1012, 1, 119, 13, 15000.00, 1, 1),
(1013, 1, 119, 14, 60000.00, 1, 1),
(1014, 1, 119, 15, 340.00, 1, 1),
(1015, 1, 119, 16, 1.00, 1, 1),
(1016, 1, 119, 17, 710000.00, 1, 1),
(1017, 1, 119, 18, 3.00, 1, 1),
(1018, 1, 119, 19, 0.00, 0, 1),
(1019, 1, 120, 3, 0.00, 1, 1),
(1020, 1, 120, 4, 0.00, 1, 1),
(1021, 1, 120, 5, 999999.00, 1, 1),
(1022, 1, 120, 6, 0.00, 1, 1),
(1023, 1, 120, 12, 0.00, 1, 1),
(1024, 1, 120, 13, 0.00, 1, 1),
(1025, 1, 120, 14, 0.00, 1, 1),
(1026, 1, 120, 15, 0.00, 1, 1),
(1027, 1, 120, 16, 0.00, 1, 1),
(1028, 1, 120, 17, 0.00, 1, 1),
(1029, 1, 120, 18, 0.00, 1, 1),
(1030, 1, 120, 19, 0.00, 1, 1),
(1031, 1, 54, 13, 0.00, 0, 1),
(1032, 1, 54, 14, 0.00, 0, 1),
(1033, 1, 54, 15, 0.00, 0, 1),
(1034, 1, 54, 16, 0.00, 0, 1),
(1035, 1, 54, 17, 0.00, 0, 1),
(1036, 1, 54, 18, 0.00, 0, 1),
(1037, 1, 54, 19, 0.00, 0, 1),
(1038, 1, 121, 3, 0.00, 0, 1),
(1039, 1, 121, 4, 0.00, 0, 1),
(1040, 1, 121, 5, 888200.00, 1, 1),
(1041, 1, 121, 6, 0.00, 0, 1),
(1042, 1, 121, 12, 0.00, 0, 1),
(1043, 1, 121, 13, 0.00, 0, 1),
(1044, 1, 121, 14, 0.00, 0, 1),
(1045, 1, 121, 15, 0.00, 0, 1),
(1046, 1, 121, 16, 0.00, 0, 1),
(1047, 1, 121, 17, 0.00, 0, 1),
(1048, 1, 121, 18, 0.00, 0, 1),
(1049, 1, 121, 19, 0.00, 0, 1),
(1050, 1, 122, 3, 0.00, 1, 1),
(1051, 1, 122, 4, 0.00, 0, 1),
(1052, 1, 122, 5, 1.00, 1, 1),
(1053, 1, 122, 6, 0.00, 0, 1),
(1054, 1, 122, 12, 0.00, 0, 1),
(1055, 1, 122, 13, 0.00, 0, 1),
(1056, 1, 122, 14, 0.00, 0, 1),
(1057, 1, 122, 15, 0.00, 0, 1),
(1058, 1, 122, 16, 0.00, 0, 1),
(1059, 1, 122, 17, 0.00, 0, 1),
(1060, 1, 122, 18, 0.00, 0, 1),
(1061, 1, 122, 19, 0.00, 0, 1),
(1062, 1, 123, 3, 0.00, 0, 1),
(1063, 1, 123, 4, 0.00, 0, 1),
(1064, 1, 123, 5, 999999.00, 1, 1),
(1065, 1, 123, 6, 0.00, 0, 1),
(1066, 1, 123, 12, 0.00, 0, 1),
(1067, 1, 123, 13, 0.00, 0, 1),
(1068, 1, 123, 14, 0.00, 0, 1),
(1069, 1, 123, 15, 0.00, 0, 1),
(1070, 1, 123, 16, 0.00, 0, 1),
(1071, 1, 123, 17, 0.00, 0, 1),
(1072, 1, 123, 18, 0.00, 0, 1),
(1073, 1, 123, 19, 0.00, 0, 1),
(1074, 1, 40, 16, 0.00, 0, 1),
(1075, 1, 40, 17, 0.00, 0, 1),
(1076, 1, 40, 18, 0.00, 0, 1),
(1077, 1, 40, 19, 0.00, 0, 1),
(1078, 1, 95, 13, 0.00, 0, 1),
(1079, 1, 95, 14, 0.00, 0, 1),
(1080, 1, 95, 15, 0.00, 0, 1),
(1081, 1, 95, 16, 0.00, 0, 1),
(1082, 1, 95, 17, 0.00, 0, 1),
(1083, 1, 95, 18, 0.00, 0, 1),
(1084, 1, 95, 19, 0.00, 0, 1),
(1085, 1, 96, 13, 0.00, 0, 1),
(1086, 1, 96, 14, 0.00, 0, 1),
(1087, 1, 96, 15, 0.00, 0, 1),
(1088, 1, 96, 16, 0.00, 0, 1),
(1089, 1, 96, 17, 0.00, 0, 1),
(1090, 1, 96, 18, 0.00, 0, 1),
(1091, 1, 96, 19, 0.00, 0, 1),
(1092, 1, 97, 13, 0.00, 0, 1),
(1093, 1, 97, 14, 0.00, 0, 1),
(1094, 1, 97, 15, 0.00, 0, 1),
(1095, 1, 97, 16, 0.00, 0, 1),
(1096, 1, 97, 17, 0.00, 0, 1),
(1097, 1, 97, 18, 0.00, 0, 1),
(1098, 1, 97, 19, 0.00, 0, 1),
(1099, 1, 94, 13, 540.00, 1, 1),
(1100, 1, 94, 14, 96000.00, 1, 1),
(1101, 1, 94, 15, 34450.00, 1, 1),
(1102, 1, 94, 16, 0.00, 1, 1),
(1103, 1, 94, 17, 30450.00, 1, 1),
(1104, 1, 94, 18, 0.00, 1, 1),
(1105, 1, 94, 19, 0.00, 0, 1),
(1106, 1, 93, 13, 14560.00, 1, 1),
(1107, 1, 93, 14, 89500.00, 1, 1),
(1108, 1, 93, 15, 58460.00, 1, 1),
(1109, 1, 93, 16, 0.00, 1, 1),
(1110, 1, 93, 17, 21490.00, 1, 1),
(1111, 1, 93, 18, 400.00, 1, 1),
(1112, 1, 93, 19, 0.00, 0, 1),
(1125, 1, 124, 3, 0.00, 0, 1),
(1126, 1, 124, 4, 0.00, 0, 1),
(1127, 1, 124, 5, 999999.00, 1, 1),
(1128, 1, 124, 6, 0.00, 0, 1),
(1129, 1, 124, 12, 0.00, 0, 1),
(1130, 1, 124, 13, 0.00, 0, 1),
(1131, 1, 124, 14, 0.00, 0, 1),
(1132, 1, 124, 15, 0.00, 0, 1),
(1133, 1, 124, 16, 0.00, 0, 1),
(1134, 1, 124, 17, 0.00, 0, 1),
(1135, 1, 124, 18, 0.00, 0, 1),
(1136, 1, 124, 19, 0.00, 0, 1),
(1137, 1, 125, 3, 0.00, 0, 1),
(1138, 1, 125, 4, 0.00, 0, 1),
(1139, 1, 125, 5, 880000.00, 1, 1),
(1140, 1, 125, 6, 0.00, 0, 1),
(1141, 1, 125, 12, 0.00, 0, 1),
(1142, 1, 125, 13, 0.00, 0, 1),
(1143, 1, 125, 14, 0.00, 0, 1),
(1144, 1, 125, 15, 0.00, 0, 1),
(1145, 1, 125, 16, 0.00, 0, 1),
(1146, 1, 125, 17, 0.00, 0, 1),
(1147, 1, 125, 18, 0.00, 0, 1),
(1148, 1, 125, 19, 0.00, 0, 1),
(1149, 1, 126, 3, 10.00, 1, 1),
(1150, 1, 126, 4, 30.00, 1, 1),
(1151, 1, 126, 5, 280000.00, 1, 1),
(1152, 1, 126, 6, 0.00, 0, 1),
(1153, 1, 126, 12, 0.00, 0, 1),
(1154, 1, 126, 13, 0.00, 0, 1),
(1155, 1, 126, 14, 0.00, 0, 1),
(1156, 1, 126, 15, 0.00, 0, 1),
(1157, 1, 126, 16, 0.00, 0, 1),
(1158, 1, 126, 17, 0.00, 0, 1),
(1159, 1, 126, 18, 0.00, 0, 1),
(1160, 1, 126, 19, 0.00, 0, 1),
(1161, 1, 127, 3, 0.00, 0, 1),
(1162, 1, 127, 4, 0.00, 0, 1),
(1163, 1, 127, 5, 0.00, 0, 1),
(1164, 1, 127, 6, 0.00, 0, 1),
(1165, 1, 127, 12, 0.00, 0, 1),
(1166, 1, 127, 13, 0.00, 0, 1),
(1167, 1, 127, 14, 0.00, 0, 1),
(1168, 1, 127, 15, 0.00, 0, 1),
(1169, 1, 127, 16, 0.00, 0, 1),
(1170, 1, 127, 17, 0.00, 0, 1),
(1171, 1, 127, 18, 0.00, 0, 1),
(1172, 1, 127, 19, 0.00, 0, 1),
(1173, 1, 128, 3, 0.00, 0, 1),
(1174, 1, 128, 4, 0.00, 0, 1),
(1175, 1, 128, 5, 999999.00, 1, 1),
(1176, 1, 128, 6, 0.00, 0, 1),
(1177, 1, 128, 12, 0.00, 0, 1),
(1178, 1, 128, 13, 0.00, 0, 1),
(1179, 1, 128, 14, 0.00, 0, 1),
(1180, 1, 128, 15, 0.00, 0, 1),
(1181, 1, 128, 16, 0.00, 0, 1),
(1182, 1, 128, 17, 0.00, 0, 1),
(1183, 1, 128, 18, 0.00, 0, 1),
(1184, 1, 128, 19, 0.00, 0, 1),
(1185, 1, 129, 3, 0.00, 0, 1),
(1186, 1, 129, 4, 0.00, 0, 1),
(1187, 1, 129, 5, 999999.00, 1, 1),
(1188, 1, 129, 6, 0.00, 0, 1),
(1189, 1, 129, 12, 0.00, 0, 1),
(1190, 1, 129, 13, 0.00, 0, 1),
(1191, 1, 129, 14, 0.00, 0, 1),
(1192, 1, 129, 15, 0.00, 0, 1),
(1193, 1, 129, 16, 0.00, 0, 1),
(1194, 1, 129, 17, 0.00, 0, 1),
(1195, 1, 129, 18, 0.00, 0, 1),
(1196, 1, 129, 19, 0.00, 0, 1),
(1197, 1, 130, 3, 0.00, 0, 1),
(1198, 1, 130, 4, 0.00, 0, 1),
(1199, 1, 130, 5, 0.00, 0, 1),
(1200, 1, 130, 6, 0.00, 0, 1),
(1201, 1, 130, 12, 0.00, 0, 1),
(1202, 1, 130, 13, 0.00, 0, 1),
(1203, 1, 130, 14, 0.00, 0, 1),
(1204, 1, 130, 15, 0.00, 0, 1),
(1205, 1, 130, 16, 0.00, 0, 1),
(1206, 1, 130, 17, 0.00, 0, 1),
(1207, 1, 130, 18, 0.00, 0, 1),
(1208, 1, 130, 19, 0.00, 0, 1),
(1209, 1, 131, 3, 0.00, 0, 1),
(1210, 1, 131, 4, 0.00, 0, 1),
(1211, 1, 131, 5, 0.00, 0, 1),
(1212, 1, 131, 6, 0.00, 0, 1),
(1213, 1, 131, 12, 0.00, 0, 1),
(1214, 1, 131, 13, 0.00, 0, 1),
(1215, 1, 131, 14, 0.00, 0, 1),
(1216, 1, 131, 15, 0.00, 0, 1),
(1217, 1, 131, 16, 0.00, 0, 1),
(1218, 1, 131, 17, 0.00, 0, 1),
(1219, 1, 131, 18, 0.00, 0, 1),
(1220, 1, 131, 19, 0.00, 0, 1),
(3833, 1, 132, 3, 32.51, 1, 1),
(3834, 1, 132, 5, 320000.00, 1, 1),
(3835, 1, 132, 6, 5.00, 0, 1),
(3836, 1, 132, 4, 400.00, 1, 1),
(3837, 1, 132, 7, 0.00, 0, 1),
(3838, 1, 132, 8, 0.00, 0, 1),
(3839, 1, 132, 9, 0.00, 0, 1),
(3840, 1, 132, 10, 0.00, 0, 1),
(3841, 1, 132, 11, 0.00, 0, 1),
(3842, 1, 132, 12, 0.00, 0, 1),
(3843, 1, 132, 13, 0.00, 0, 1),
(3844, 1, 132, 14, 0.00, 0, 1),
(3845, 1, 132, 15, 0.00, 0, 1),
(3846, 1, 133, 3, 60.00, 1, 1),
(3847, 1, 133, 5, 251600.00, 1, 1),
(3848, 1, 133, 6, 10.00, 1, 1),
(3849, 1, 133, 4, 18000.00, 1, 1),
(3850, 1, 133, 7, 0.00, 0, 1),
(3851, 1, 133, 8, 0.00, 0, 1),
(3852, 1, 133, 9, 0.00, 0, 1),
(3853, 1, 133, 10, 0.00, 0, 1),
(3854, 1, 133, 11, 0.00, 0, 1),
(3855, 1, 133, 12, 100.00, 1, 1),
(3856, 1, 133, 13, 0.00, 0, 1),
(3857, 1, 133, 14, 0.00, 0, 1),
(3858, 1, 133, 15, 0.00, 0, 1),
(3859, 1, 134, 3, 300.00, 1, 1),
(3860, 1, 134, 5, 600000.00, 1, 1),
(3861, 1, 134, 6, 1.00, 0, 1),
(3862, 1, 134, 4, 1500.00, 0, 1),
(3863, 1, 134, 7, 0.00, 0, 1),
(3864, 1, 134, 8, 0.00, 0, 1),
(3865, 1, 134, 9, 0.00, 0, 1),
(3866, 1, 134, 10, 0.00, 0, 1),
(3867, 1, 134, 11, 0.00, 0, 1),
(3868, 1, 134, 12, 0.00, 0, 1),
(3869, 1, 134, 13, 0.00, 0, 1),
(3870, 1, 134, 14, 0.00, 0, 1),
(3871, 1, 134, 15, 0.00, 0, 1),
(3872, 1, 135, 3, 0.00, 1, 1),
(3873, 1, 135, 5, 0.00, 0, 1),
(3874, 1, 135, 6, 0.00, 0, 1),
(3875, 1, 135, 4, 0.00, 1, 1),
(3876, 1, 135, 7, 0.00, 0, 1),
(3877, 1, 135, 8, 0.00, 0, 1),
(3878, 1, 135, 9, 0.00, 0, 1),
(3879, 1, 135, 10, 0.00, 0, 1),
(3880, 1, 135, 11, 0.00, 0, 1),
(3881, 1, 135, 12, 0.00, 0, 1),
(3882, 1, 135, 13, 0.00, 0, 1),
(3883, 1, 135, 14, 0.00, 1, 1),
(3884, 1, 135, 15, 0.00, 1, 1),
(3885, 1, 136, 3, 0.00, 0, 1),
(3886, 1, 136, 5, 0.00, 0, 1),
(3887, 1, 136, 6, 0.00, 0, 1),
(3888, 1, 136, 4, 0.00, 0, 1),
(3889, 1, 136, 7, 0.00, 0, 1),
(3890, 1, 136, 8, 0.00, 0, 1),
(3891, 1, 136, 9, 0.00, 0, 1),
(3892, 1, 136, 10, 0.00, 0, 1),
(3893, 1, 136, 11, 0.00, 0, 1),
(3894, 1, 136, 12, 0.00, 0, 1),
(3895, 1, 136, 13, 0.00, 0, 1),
(3896, 1, 136, 14, 0.00, 0, 1),
(3897, 1, 136, 15, 0.00, 0, 1),
(3898, 1, 137, 3, 40.00, 1, 1),
(3899, 1, 137, 5, 270000.00, 1, 1),
(3900, 1, 137, 6, 0.00, 0, 1),
(3901, 1, 137, 4, 950.00, 1, 1),
(3902, 1, 137, 7, 0.00, 0, 1),
(3903, 1, 137, 8, 0.00, 0, 1),
(3904, 1, 137, 9, 0.00, 0, 1),
(3905, 1, 137, 10, 0.00, 0, 1),
(3906, 1, 137, 11, 0.00, 0, 1),
(3907, 1, 137, 12, 0.00, 0, 1),
(3908, 1, 137, 13, 0.00, 0, 1),
(3909, 1, 137, 14, 0.00, 0, 1),
(3910, 1, 137, 15, 0.00, 0, 1),
(3911, 1, 138, 3, 60.00, 1, 1),
(3912, 1, 138, 5, 244787.00, 1, 1),
(3913, 1, 138, 6, 5.00, 1, 1),
(3914, 1, 138, 4, 300.00, 1, 1),
(3915, 1, 138, 7, 0.00, 0, 1),
(3916, 1, 138, 8, 0.00, 0, 1),
(3917, 1, 138, 9, 0.00, 0, 1),
(3918, 1, 138, 10, 0.00, 0, 1),
(3919, 1, 138, 11, 0.00, 0, 1),
(3920, 1, 138, 12, 5.00, 1, 1),
(3921, 1, 138, 13, 0.00, 0, 1),
(3922, 1, 138, 14, 0.00, 0, 1),
(3923, 1, 138, 15, 0.00, 0, 1),
(3924, 1, 139, 3, 0.00, 0, 1),
(3925, 1, 139, 4, 200000.00, 1, 1),
(3926, 1, 139, 5, 200000.00, 1, 1),
(3927, 1, 139, 6, 0.00, 0, 1),
(3928, 1, 139, 7, 0.00, 0, 1),
(3929, 1, 139, 8, 10000.00, 1, 1),
(3930, 1, 139, 9, 0.00, 0, 1),
(3931, 1, 139, 10, 0.00, 0, 1),
(3932, 1, 139, 11, 0.00, 0, 1),
(3933, 1, 139, 12, 40000.00, 1, 1),
(3934, 1, 139, 13, 0.00, 0, 1),
(3935, 1, 139, 14, 0.00, 0, 1),
(3936, 1, 139, 15, 0.00, 0, 1),
(3937, 1, 140, 3, 0.00, 1, 1),
(3938, 1, 140, 4, 10000.00, 1, 1),
(3939, 1, 140, 5, 0.00, 0, 1),
(3940, 1, 140, 6, 20000.00, 1, 1),
(3941, 1, 140, 7, 0.00, 0, 1),
(3942, 1, 140, 8, 0.00, 0, 1),
(3943, 1, 140, 9, 0.00, 0, 1),
(3944, 1, 140, 10, 0.00, 0, 1),
(3945, 1, 140, 11, 0.00, 0, 1),
(3946, 1, 140, 12, 0.00, 0, 1),
(3947, 1, 140, 13, 0.00, 0, 1),
(3948, 1, 140, 14, 0.00, 0, 1),
(3949, 1, 140, 15, 0.00, 0, 1),
(3950, 1, 140, 3, 0.00, 1, 1),
(3951, 1, 140, 4, 350.00, 1, 1),
(3952, 1, 140, 5, 100.00, 1, 1),
(3953, 1, 140, 6, 450.00, 1, 1),
(3954, 1, 140, 7, 100.00, 1, 1),
(3955, 1, 140, 8, 0.00, 0, 1),
(3956, 1, 140, 9, 0.00, 0, 1),
(3957, 1, 140, 10, 0.00, 0, 1),
(3958, 1, 140, 11, 0.00, 0, 1),
(3959, 1, 140, 12, 0.00, 0, 1),
(3960, 1, 140, 13, 0.00, 0, 1),
(3961, 1, 140, 14, 0.00, 0, 1),
(3962, 1, 140, 15, 0.00, 0, 1),
(3963, 1, 141, 3, 0.00, 0, 1),
(3964, 1, 141, 4, 350000.00, 1, 1),
(3965, 1, 141, 5, 100000.00, 0, 1),
(3966, 1, 141, 6, 0.00, 0, 1),
(3967, 1, 141, 7, 100000.00, 0, 1),
(3968, 1, 141, 8, 0.00, 0, 1),
(3969, 1, 141, 9, 450000.00, 0, 1),
(3970, 1, 141, 10, 0.00, 0, 1),
(3971, 1, 141, 11, 0.00, 0, 1),
(3972, 1, 141, 12, 0.00, 0, 1),
(3973, 1, 141, 13, 0.00, 0, 1),
(3974, 1, 141, 14, 0.00, 0, 1),
(3975, 1, 141, 15, 0.00, 0, 1),
(3976, 1, 142, 3, 0.00, 0, 1),
(3977, 1, 142, 4, 0.00, 0, 1),
(3978, 1, 142, 5, 320000.00, 1, 1),
(3979, 1, 142, 6, 0.00, 0, 1),
(3980, 1, 142, 7, 680000.00, 0, 1),
(3981, 1, 142, 8, 0.00, 0, 1),
(3982, 1, 142, 9, 0.00, 0, 1),
(3983, 1, 142, 10, 0.00, 0, 1),
(3984, 1, 142, 11, 0.00, 0, 1),
(3985, 1, 142, 12, 0.00, 0, 1),
(3986, 1, 142, 13, 0.00, 0, 1),
(3987, 1, 142, 14, 0.00, 0, 1),
(3988, 1, 142, 15, 0.00, 0, 1),
(3989, 1, 143, 3, 450.00, 1, 1),
(3990, 1, 143, 4, 0.00, 0, 1),
(3991, 1, 143, 5, 250000.00, 1, 1),
(3992, 1, 143, 6, 0.00, 0, 1),
(3993, 1, 143, 7, 0.00, 0, 1),
(3994, 1, 143, 8, 0.00, 0, 1),
(3995, 1, 143, 9, 0.00, 0, 1),
(3996, 1, 143, 10, 0.00, 0, 1),
(3997, 1, 143, 11, 0.00, 0, 1),
(3998, 1, 143, 12, 0.00, 0, 1),
(3999, 1, 143, 13, 0.00, 0, 1),
(4000, 1, 143, 14, 0.00, 1, 1),
(4001, 1, 143, 15, 0.00, 0, 1),
(4002, 1, 144, 3, 0.00, 0, 1),
(4003, 1, 144, 4, 0.00, 0, 1),
(4004, 1, 144, 5, 800000.00, 1, 1),
(4005, 1, 144, 6, 0.00, 0, 1),
(4006, 1, 144, 7, 0.00, 0, 1),
(4007, 1, 144, 8, 0.00, 0, 1),
(4008, 1, 144, 9, 0.00, 0, 1),
(4009, 1, 144, 10, 0.00, 0, 1),
(4010, 1, 144, 11, 0.00, 0, 1),
(4011, 1, 144, 12, 0.00, 0, 1),
(4012, 1, 144, 13, 0.00, 0, 1),
(4013, 1, 144, 14, 0.00, 0, 1),
(4014, 1, 144, 15, 0.00, 0, 1),
(4015, 1, 145, 3, 0.00, 0, 1),
(4016, 1, 145, 4, 0.00, 0, 1),
(4017, 1, 145, 5, 0.00, 0, 1),
(4018, 1, 145, 6, 0.00, 0, 1),
(4019, 1, 145, 7, 100000.00, 1, 1),
(4020, 1, 145, 8, 0.00, 0, 1),
(4021, 1, 145, 9, 0.00, 0, 1),
(4022, 1, 145, 10, 0.00, 0, 1),
(4023, 1, 145, 11, 0.00, 0, 1),
(4024, 1, 145, 12, 0.00, 0, 1),
(4025, 1, 145, 13, 0.00, 0, 1),
(4026, 1, 145, 14, 0.00, 0, 1),
(4027, 1, 145, 15, 100000.00, 1, 1),
(4028, 1, 146, 3, 0.00, 0, 1),
(4029, 1, 146, 4, 0.00, 0, 1),
(4030, 1, 146, 5, 950000.00, 1, 1),
(4031, 1, 146, 6, 0.00, 0, 1),
(4032, 1, 146, 7, 0.00, 0, 1),
(4033, 1, 146, 8, 0.00, 0, 1),
(4034, 1, 146, 9, 0.00, 0, 1),
(4035, 1, 146, 10, 0.00, 0, 1),
(4036, 1, 146, 11, 0.00, 0, 1),
(4037, 1, 146, 12, 0.00, 0, 1),
(4038, 1, 146, 13, 0.00, 0, 1),
(4039, 1, 146, 14, 50000.00, 1, 1),
(4040, 1, 146, 15, 0.00, 0, 1),
(4041, 1, 147, 3, 0.00, 0, 1),
(4042, 1, 147, 4, 0.00, 0, 1),
(4043, 1, 147, 5, 0.00, 0, 1),
(4044, 1, 147, 6, 0.00, 0, 1),
(4045, 1, 147, 7, 0.00, 0, 1),
(4046, 1, 147, 8, 999999.00, 1, 1),
(4047, 1, 147, 9, 0.00, 0, 1),
(4048, 1, 147, 10, 0.00, 0, 1),
(4049, 1, 147, 11, 0.00, 0, 1),
(4050, 1, 147, 12, 0.00, 0, 1),
(4051, 1, 147, 13, 0.00, 0, 1),
(4052, 1, 147, 14, 0.00, 0, 1),
(4053, 1, 147, 15, 0.00, 0, 1),
(4054, 1, 148, 3, 0.00, 0, 1),
(4055, 1, 148, 4, 0.00, 0, 1),
(4056, 1, 148, 5, 0.00, 0, 1),
(4057, 1, 148, 6, 0.00, 0, 1),
(4058, 1, 148, 7, 1000000.00, 1, 1),
(4059, 1, 148, 8, 0.00, 0, 1),
(4060, 1, 148, 9, 0.00, 0, 1),
(4061, 1, 148, 10, 0.00, 0, 1),
(4062, 1, 148, 11, 0.00, 0, 1),
(4063, 1, 148, 12, 0.00, 0, 1),
(4064, 1, 148, 13, 0.00, 0, 1),
(4065, 1, 148, 14, 0.00, 0, 1),
(4066, 1, 148, 15, 0.00, 0, 1),
(4067, 1, 149, 3, 0.00, 0, 1),
(4068, 1, 149, 4, 0.00, 0, 1),
(4069, 1, 149, 5, 0.00, 0, 1),
(4070, 1, 149, 6, 0.00, 0, 1),
(4071, 1, 149, 7, 500000.00, 1, 1),
(4072, 1, 149, 8, 0.00, 0, 1),
(4073, 1, 149, 9, 0.00, 0, 1),
(4074, 1, 149, 10, 0.00, 0, 1),
(4075, 1, 149, 11, 0.00, 0, 1),
(4076, 1, 149, 12, 0.00, 1, 1),
(4077, 1, 149, 13, 0.00, 1, 1),
(4078, 1, 149, 14, 0.00, 1, 1),
(4079, 1, 149, 15, 0.00, 1, 1),
(4080, 1, 149, 16, 0.00, 0, 1),
(4081, 1, 149, 17, 0.00, 0, 1),
(4082, 1, 149, 18, 0.00, 0, 1),
(4083, 1, 149, 19, 0.00, 0, 1),
(4084, 1, 150, 3, 68.00, 1, 1),
(4085, 1, 150, 4, 886.60, 1, 1),
(4086, 1, 150, 5, 210020.00, 1, 1),
(4087, 1, 150, 6, 12.00, 0, 1),
(4088, 1, 150, 7, 749680.00, 1, 1),
(4089, 1, 150, 8, 0.00, 0, 1),
(4090, 1, 150, 9, 0.00, 0, 1),
(4091, 1, 150, 10, 0.00, 0, 1),
(4092, 1, 150, 11, 0.00, 0, 1),
(4093, 1, 150, 12, 6.00, 0, 1),
(4094, 1, 150, 13, 0.00, 0, 1),
(4095, 1, 150, 14, 0.00, 0, 1),
(4096, 1, 150, 15, 0.00, 0, 1),
(4097, 1, 151, 3, 1000000.00, 1, 1),
(4098, 1, 151, 4, 0.00, 0, 1),
(4099, 1, 151, 5, 0.00, 0, 1),
(4100, 1, 151, 6, 0.00, 0, 1),
(4101, 1, 151, 7, 0.00, 0, 1),
(4102, 1, 151, 8, 0.00, 0, 1),
(4103, 1, 151, 9, 0.00, 0, 1),
(4104, 1, 151, 10, 0.00, 0, 1),
(4105, 1, 151, 11, 0.00, 0, 1),
(4106, 1, 151, 12, 0.00, 0, 1),
(4107, 1, 151, 13, 0.00, 0, 1),
(4108, 1, 151, 14, 0.00, 0, 1),
(4109, 1, 151, 15, 0.00, 0, 1),
(4110, 1, 152, 3, 28.00, 1, 1),
(4111, 1, 152, 4, 120.00, 1, 1),
(4112, 1, 152, 5, 100000.00, 1, 1),
(4113, 1, 152, 6, 3.00, 1, 1),
(4114, 1, 152, 7, 768200.00, 0, 1),
(4115, 1, 152, 8, 0.00, 0, 1),
(4116, 1, 152, 9, 0.00, 0, 1),
(4117, 1, 152, 10, 0.00, 0, 1),
(4118, 1, 152, 11, 0.00, 0, 1),
(4119, 1, 152, 12, 3.00, 1, 1),
(4120, 1, 152, 13, 0.00, 0, 1),
(4121, 1, 152, 14, 0.00, 0, 1),
(4122, 1, 152, 15, 0.00, 0, 1),
(4123, 1, 153, 3, 0.00, 0, 1),
(4124, 1, 153, 4, 0.00, 0, 1),
(4125, 1, 153, 5, 0.00, 0, 1),
(4126, 1, 153, 6, 0.00, 0, 1),
(4127, 1, 153, 7, 0.00, 0, 1),
(4128, 1, 153, 8, 0.00, 0, 1),
(4129, 1, 153, 9, 999999.00, 1, 1),
(4130, 1, 153, 10, 0.00, 0, 1),
(4131, 1, 153, 11, 0.00, 0, 1),
(4132, 1, 153, 12, 0.00, 0, 1),
(4133, 1, 153, 13, 0.00, 0, 1),
(4134, 1, 153, 14, 0.00, 0, 1),
(4135, 1, 153, 15, 0.00, 0, 1),
(4136, 1, 154, 3, 0.00, 0, 1),
(4137, 1, 154, 4, 0.00, 0, 1),
(4138, 1, 154, 5, 0.00, 0, 1),
(4139, 1, 154, 6, 0.00, 0, 1),
(4140, 1, 154, 12, 0.00, 0, 1),
(4141, 1, 155, 3, 0.00, 1, 1),
(4142, 1, 155, 4, 0.00, 0, 1),
(4143, 1, 155, 5, 0.00, 0, 1),
(4144, 1, 155, 6, 0.00, 0, 1),
(4145, 1, 155, 12, 0.00, 0, 1),
(4146, 1, 156, 3, 0.00, 1, 1),
(4147, 1, 156, 4, 0.00, 0, 1),
(4148, 1, 156, 5, 0.00, 0, 1),
(4149, 1, 156, 6, 0.00, 0, 1),
(4150, 1, 156, 12, 0.00, 0, 1),
(4151, 1, 156, 13, 0.00, 0, 1),
(4152, 1, 156, 14, 0.00, 0, 1),
(4153, 1, 156, 15, 0.00, 0, 1),
(4154, 1, 156, 16, 0.00, 0, 1),
(4155, 1, 156, 17, 0.00, 0, 1),
(4156, 1, 156, 18, 0.00, 0, 1),
(4157, 1, 156, 19, 0.00, 0, 1),
(4158, 1, 157, 3, 0.00, 1, 1),
(4159, 1, 157, 4, 0.00, 0, 1),
(4160, 1, 157, 5, 0.00, 0, 1),
(4161, 1, 157, 6, 0.00, 0, 1),
(4162, 1, 157, 12, 0.00, 0, 1),
(4163, 1, 158, 3, 196.00, 1, 1),
(4164, 1, 158, 4, 1645.00, 1, 1),
(4165, 1, 158, 5, 220000.00, 1, 1),
(4166, 1, 158, 6, 14.00, 1, 1),
(4167, 1, 158, 12, 30.00, 1, 1),
(4168, 1, 159, 3, 0.00, 0, 1),
(4169, 1, 159, 4, 300.00, 0, 1),
(4170, 1, 159, 5, 240000.00, 1, 1),
(4171, 1, 159, 6, 0.00, 0, 1),
(4172, 1, 159, 12, 0.00, 0, 1),
(4173, 1, 160, 3, 0.00, 0, 1),
(4174, 1, 160, 4, 0.00, 0, 1),
(4175, 1, 160, 5, 265000.00, 1, 1),
(4176, 1, 160, 6, 0.00, 0, 1),
(4177, 1, 160, 12, 0.00, 0, 1),
(4178, 1, 161, 3, 60.00, 1, 1),
(4179, 1, 161, 4, 320.00, 1, 1),
(4180, 1, 161, 5, 184000.00, 1, 1),
(4181, 1, 161, 6, 0.00, 0, 1),
(4182, 1, 161, 12, 0.00, 0, 1),
(4183, 1, 162, 3, 0.00, 0, 1),
(4184, 1, 162, 4, 350.00, 1, 1),
(4185, 1, 162, 5, 240000.00, 1, 1),
(4186, 1, 162, 6, 0.00, 0, 1),
(4187, 1, 162, 12, 0.00, 0, 1),
(4188, 1, 163, 3, 67.00, 1, 1),
(4189, 1, 163, 4, 400.00, 1, 1),
(4190, 1, 163, 5, 170000.00, 1, 1),
(4191, 1, 163, 6, 20.00, 1, 1),
(4192, 1, 163, 12, 30.00, 1, 1),
(4193, 1, 164, 3, 0.00, 0, 1),
(4194, 1, 164, 4, 0.00, 0, 1),
(4195, 1, 164, 5, 1.00, 1, 1),
(4196, 1, 164, 6, 0.00, 0, 1),
(4197, 1, 164, 12, 0.00, 0, 1),
(4198, 1, 165, 3, 0.00, 0, 1),
(4199, 1, 165, 4, 600.00, 1, 1),
(4200, 1, 165, 5, 200000.00, 1, 1),
(4201, 1, 165, 6, 0.00, 0, 1),
(4202, 1, 165, 12, 0.00, 0, 1),
(4203, 1, 166, 3, 50.00, 1, 1),
(4204, 1, 166, 4, 200.00, 1, 1),
(4205, 1, 166, 5, 240000.00, 1, 1),
(4206, 1, 166, 6, 0.00, 0, 1),
(4207, 1, 166, 12, 0.00, 0, 1),
(4208, 1, 167, 3, 60.00, 1, 1),
(4209, 1, 167, 4, 200.00, 1, 1),
(4210, 1, 167, 5, 120000.00, 1, 1),
(4211, 1, 167, 6, 1.00, 0, 1),
(4212, 1, 167, 12, 1.00, 0, 1),
(4213, 1, 168, 3, 90.00, 1, 1),
(4214, 1, 168, 4, 666.00, 1, 1),
(4215, 1, 168, 5, 210000.00, 1, 1),
(4216, 1, 168, 6, 0.00, 0, 1),
(4217, 1, 168, 12, 0.00, 0, 1),
(4218, 1, 169, 3, 243.00, 1, 1),
(4219, 1, 169, 4, 1562.00, 1, 1),
(4220, 1, 169, 5, 220000.00, 1, 1),
(4221, 1, 169, 6, 15.00, 1, 1),
(4222, 1, 169, 12, 49.00, 1, 1),
(4223, 1, 170, 3, 97.10, 1, 1),
(4224, 1, 170, 4, 540.00, 1, 1),
(4225, 1, 170, 5, 212000.00, 1, 1),
(4226, 1, 170, 6, 0.00, 0, 1),
(4227, 1, 170, 12, 6.00, 1, 1),
(4228, 1, 171, 3, 88.00, 1, 1),
(4229, 1, 171, 4, 188.00, 1, 1),
(4230, 1, 171, 5, 250000.00, 1, 1),
(4231, 1, 171, 6, 0.00, 0, 1),
(4232, 1, 171, 12, 0.00, 0, 1),
(4233, 1, 172, 3, 222.00, 1, 1),
(4234, 1, 172, 4, 2222.00, 1, 1),
(4235, 1, 172, 5, 222222.00, 1, 1),
(4236, 1, 172, 6, 22.00, 1, 1),
(4237, 1, 172, 12, 2.00, 1, 1),
(4238, 1, 173, 3, 365.00, 1, 1),
(4239, 1, 173, 4, 1800.00, 1, 1),
(4240, 1, 173, 5, 350000.00, 1, 1),
(4241, 1, 173, 6, 35.00, 1, 1),
(4242, 1, 173, 12, 12.00, 1, 1),
(4243, 1, 174, 3, 112.00, 1, 1),
(4244, 1, 174, 4, 212.00, 1, 1),
(4245, 1, 174, 5, 310000.00, 1, 1),
(4246, 1, 174, 6, 21.00, 1, 1),
(4247, 1, 174, 12, 9.00, 1, 1),
(4248, 1, 175, 3, 800.00, 1, 1),
(4249, 1, 175, 4, 500.00, 1, 1),
(4250, 1, 175, 5, 210000.00, 1, 1),
(4251, 1, 175, 6, 0.00, 0, 1),
(4252, 1, 175, 12, 0.00, 0, 1),
(4253, 1, 176, 3, 1200.00, 1, 1),
(4254, 1, 176, 4, 1200.00, 1, 1),
(4255, 1, 176, 5, 215000.00, 1, 1),
(4256, 1, 176, 6, 0.00, 0, 1),
(4257, 1, 176, 12, 0.00, 0, 1),
(4258, 1, 177, 3, 2000.00, 1, 1),
(4259, 1, 177, 4, 2000.00, 1, 1),
(4260, 1, 177, 5, 250000.00, 1, 1),
(4261, 1, 177, 6, 0.00, 0, 1),
(4262, 1, 177, 12, 0.00, 0, 1),
(4263, 1, 178, 3, 144.00, 1, 1),
(4264, 1, 178, 4, 312.00, 1, 1),
(4265, 1, 178, 5, 310000.00, 1, 1),
(4266, 1, 178, 6, 1.00, 1, 1),
(4267, 1, 178, 12, 0.00, 1, 1),
(4268, 1, 178, 13, 0.00, 0, 1),
(4269, 1, 178, 14, 0.00, 0, 1),
(4270, 1, 178, 15, 0.00, 0, 1),
(4271, 1, 178, 16, 0.00, 0, 1),
(4272, 1, 178, 17, 0.00, 0, 1),
(4273, 1, 178, 18, 0.00, 0, 1),
(4274, 1, 178, 19, 0.00, 0, 1),
(4275, 1, 179, 3, 210.00, 1, 1),
(4276, 1, 179, 4, 1655.00, 1, 1),
(4277, 1, 179, 5, 262351.00, 1, 1),
(4278, 1, 179, 6, 3.00, 1, 1),
(4279, 1, 179, 12, 0.00, 0, 1),
(4280, 1, 179, 13, 0.00, 0, 1),
(4281, 1, 179, 14, 0.00, 0, 1),
(4282, 1, 179, 15, 0.00, 0, 1),
(4283, 1, 179, 16, 0.00, 0, 1),
(4284, 1, 179, 17, 0.00, 0, 1),
(4285, 1, 179, 18, 0.00, 0, 1),
(4286, 1, 179, 19, 0.00, 0, 1),
(4287, 1, 180, 3, 588.00, 1, 1),
(4288, 1, 180, 4, 0.00, 0, 1),
(4289, 1, 180, 5, 220000.00, 1, 1),
(4290, 1, 180, 6, 0.00, 0, 1),
(4291, 1, 180, 12, 0.00, 0, 1),
(4292, 1, 180, 13, 0.00, 0, 1),
(4293, 1, 180, 14, 0.00, 0, 1),
(4294, 1, 180, 15, 0.00, 0, 1),
(4295, 1, 180, 16, 0.00, 0, 1),
(4296, 1, 180, 17, 0.00, 0, 1),
(4297, 1, 180, 18, 0.00, 0, 1),
(4298, 1, 180, 19, 0.00, 0, 1),
(4299, 1, 181, 3, 144.00, 1, 1),
(4300, 1, 181, 4, 0.00, 0, 1),
(4301, 1, 181, 5, 220000.00, 1, 1),
(4302, 1, 181, 6, 0.00, 0, 1),
(4303, 1, 181, 12, 0.00, 0, 1),
(4304, 1, 181, 13, 0.00, 0, 1),
(4305, 1, 181, 14, 0.00, 0, 1),
(4306, 1, 181, 15, 0.00, 0, 1),
(4307, 1, 181, 16, 0.00, 0, 1),
(4308, 1, 181, 17, 0.00, 0, 1),
(4309, 1, 181, 18, 0.00, 0, 1),
(4310, 1, 181, 19, 0.00, 0, 1),
(4311, 1, 182, 3, 323.50, 1, 1),
(4312, 1, 182, 4, 0.00, 0, 1),
(4313, 1, 182, 5, 220000.00, 1, 1),
(4314, 1, 182, 6, 0.00, 0, 1),
(4315, 1, 182, 12, 0.00, 0, 1),
(4316, 1, 182, 13, 0.00, 0, 1),
(4317, 1, 182, 14, 0.00, 0, 1),
(4318, 1, 182, 15, 0.00, 0, 1),
(4319, 1, 182, 16, 0.00, 0, 1),
(4320, 1, 182, 17, 0.00, 0, 1),
(4321, 1, 182, 18, 0.00, 0, 1),
(4322, 1, 182, 19, 0.00, 0, 1),
(4323, 1, 183, 3, 1102.00, 1, 1),
(4324, 1, 183, 4, 2222.00, 1, 1),
(4325, 1, 183, 5, 222000.00, 1, 1),
(4326, 1, 183, 6, 33.00, 1, 1),
(4327, 1, 183, 12, 33.00, 1, 1),
(4328, 1, 184, 3, 677.00, 1, 1),
(4329, 1, 184, 4, 333.00, 1, 1),
(4330, 1, 184, 5, 220000.00, 1, 1),
(4331, 1, 184, 6, 20.00, 1, 1),
(4332, 1, 184, 12, 20.00, 1, 1),
(4333, 1, 185, 3, 510.40, 1, 1),
(4334, 1, 185, 4, 600.00, 1, 1),
(4335, 1, 185, 5, 220000.00, 1, 1),
(4336, 1, 185, 6, 20.00, 1, 1),
(4337, 1, 185, 12, 15.00, 1, 1),
(4338, 1, 186, 3, 264.00, 1, 1),
(4339, 1, 186, 4, 322.00, 1, 1),
(4340, 1, 186, 5, 202545.00, 1, 1),
(4341, 1, 186, 6, 15.00, 1, 1),
(4342, 1, 186, 12, 10.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(4343, 1, 187, 3, 0.00, 0, 1),
(4344, 1, 187, 4, 0.00, 0, 1),
(4345, 1, 187, 5, 280000.00, 1, 1),
(4346, 1, 187, 6, 0.00, 0, 1),
(4347, 1, 187, 12, 0.00, 0, 1),
(4348, 1, 188, 3, 0.00, 0, 1),
(4349, 1, 188, 4, 0.00, 0, 1),
(4350, 1, 188, 5, 230000.00, 1, 1),
(4351, 1, 188, 6, 0.00, 0, 1),
(4352, 1, 188, 12, 0.00, 0, 1),
(4353, 1, 189, 3, 0.00, 0, 1),
(4354, 1, 189, 4, 0.00, 0, 1),
(4355, 1, 189, 5, 180000.00, 1, 1),
(4356, 1, 189, 6, 0.00, 0, 1),
(4357, 1, 189, 12, 0.00, 0, 1),
(4358, 1, 190, 3, 0.00, 0, 1),
(4359, 1, 190, 4, 0.00, 0, 1),
(4360, 1, 190, 5, 0.00, 0, 1),
(4361, 1, 190, 6, 0.00, 0, 1),
(4362, 1, 190, 12, 0.00, 0, 1),
(4363, 1, 191, 3, 4186.30, 1, 1),
(4364, 1, 191, 4, 12845.00, 1, 1),
(4365, 1, 191, 5, 100277.00, 1, 1),
(4366, 1, 191, 6, 80.00, 1, 1),
(4367, 1, 191, 12, 1223.00, 1, 1),
(4368, 1, 192, 3, 8266.41, 1, 1),
(4369, 1, 192, 4, 17345.80, 1, 1),
(4370, 1, 192, 5, 81255.00, 1, 1),
(4371, 1, 192, 6, 94.20, 1, 1),
(4372, 1, 192, 12, 112.00, 1, 1),
(4373, 1, 193, 3, 1549.25, 1, 1),
(4374, 1, 193, 4, 12422.50, 1, 1),
(4375, 1, 193, 5, 89912.00, 1, 1),
(4376, 1, 193, 6, 114.00, 1, 1),
(4377, 1, 193, 12, 1212.00, 1, 1),
(4378, 1, 194, 3, 888.00, 1, 1),
(4379, 1, 194, 4, 7466.00, 1, 1),
(4380, 1, 194, 5, 120224.00, 1, 1),
(4381, 1, 194, 6, 160.00, 1, 1),
(4382, 1, 194, 12, 288.00, 1, 1),
(4383, 1, 195, 3, 321.00, 1, 1),
(4384, 1, 195, 4, 2100.00, 1, 1),
(4385, 1, 195, 5, 210000.00, 1, 1),
(4386, 1, 195, 6, 25.00, 1, 1),
(4387, 1, 195, 12, 212.00, 1, 1),
(4388, 1, 196, 3, 303.00, 1, 1),
(4389, 1, 196, 4, 480.00, 1, 1),
(4390, 1, 196, 5, 245000.00, 1, 1),
(4391, 1, 196, 6, 12.00, 1, 1),
(4392, 1, 196, 12, 88.00, 1, 1),
(4393, 1, 197, 3, 188.00, 1, 1),
(4394, 1, 197, 4, 2500.00, 1, 1),
(4395, 1, 197, 5, 265120.00, 1, 1),
(4396, 1, 197, 6, 28.00, 1, 1),
(4397, 1, 197, 12, 56.00, 1, 1),
(4398, 1, 198, 3, 112.00, 1, 1),
(4399, 1, 198, 4, 312.00, 1, 1),
(4400, 1, 198, 5, 242150.00, 1, 1),
(4401, 1, 198, 6, 8.00, 1, 1),
(4402, 1, 198, 12, 12.00, 1, 1),
(4403, 1, 199, 3, 68.00, 1, 1),
(4404, 1, 199, 4, 289.00, 1, 1),
(4405, 1, 199, 5, 289585.00, 1, 1),
(4406, 1, 199, 6, 13.00, 1, 1),
(4407, 1, 199, 12, 18.00, 1, 1),
(4408, 1, 200, 3, 291.00, 1, 1),
(4409, 1, 200, 4, 6499.00, 1, 1),
(4410, 1, 200, 5, 232024.00, 1, 1),
(4411, 1, 200, 6, 71.00, 1, 1),
(4412, 1, 200, 12, 81.00, 1, 1),
(4413, 1, 201, 3, 273.00, 1, 1),
(4414, 1, 201, 4, 400.00, 1, 1),
(4415, 1, 201, 5, 245612.00, 1, 1),
(4416, 1, 201, 6, 72.00, 1, 1),
(4417, 1, 201, 12, 58.00, 1, 1),
(4418, 1, 202, 3, 0.00, 0, 1),
(4419, 1, 202, 4, 0.00, 0, 1),
(4420, 1, 202, 5, 999999.00, 1, 1),
(4421, 1, 202, 6, 0.00, 0, 1),
(4422, 1, 202, 12, 0.00, 0, 1),
(4423, 1, 202, 13, 0.00, 0, 1),
(4424, 1, 202, 14, 0.00, 0, 1),
(4425, 1, 202, 15, 0.00, 0, 1),
(4426, 1, 202, 16, 0.00, 0, 1),
(4427, 1, 202, 17, 0.00, 0, 1),
(4428, 1, 202, 18, 0.00, 0, 1),
(4429, 1, 202, 19, 0.00, 0, 1),
(4430, 1, 203, 3, 0.00, 0, 1),
(4431, 1, 203, 4, 0.00, 0, 1),
(4432, 1, 203, 5, 880000.00, 1, 1),
(4433, 1, 203, 6, 0.00, 0, 1),
(4434, 1, 203, 12, 0.00, 0, 1),
(4435, 1, 203, 13, 0.00, 0, 1),
(4436, 1, 203, 14, 0.00, 0, 1),
(4437, 1, 203, 15, 0.00, 0, 1),
(4438, 1, 203, 16, 0.00, 0, 1),
(4439, 1, 203, 17, 0.00, 0, 1),
(4440, 1, 203, 18, 0.00, 0, 1),
(4441, 1, 203, 19, 0.00, 0, 1),
(4442, 1, 204, 3, 10.00, 1, 1),
(4443, 1, 204, 4, 30.00, 1, 1),
(4444, 1, 204, 5, 280000.00, 1, 1),
(4445, 1, 204, 6, 0.00, 0, 1),
(4446, 1, 204, 12, 0.00, 0, 1),
(4447, 1, 204, 13, 0.00, 0, 1),
(4448, 1, 204, 14, 0.00, 0, 1),
(4449, 1, 204, 15, 0.00, 0, 1),
(4450, 1, 204, 16, 0.00, 0, 1),
(4451, 1, 204, 17, 0.00, 0, 1),
(4452, 1, 204, 18, 0.00, 0, 1),
(4453, 1, 204, 19, 0.00, 0, 1),
(4454, 1, 205, 3, 0.00, 0, 1),
(4455, 1, 205, 4, 0.00, 0, 1),
(4456, 1, 205, 5, 0.00, 0, 1),
(4457, 1, 205, 6, 0.00, 0, 1),
(4458, 1, 205, 12, 0.00, 0, 1),
(4459, 1, 205, 13, 0.00, 0, 1),
(4460, 1, 205, 14, 0.00, 0, 1),
(4461, 1, 205, 15, 0.00, 0, 1),
(4462, 1, 205, 16, 0.00, 0, 1),
(4463, 1, 205, 17, 0.00, 0, 1),
(4464, 1, 205, 18, 0.00, 0, 1),
(4465, 1, 205, 19, 0.00, 0, 1),
(4466, 1, 206, 3, 0.00, 0, 1),
(4467, 1, 206, 4, 0.00, 0, 1),
(4468, 1, 206, 5, 0.00, 0, 1),
(4469, 1, 206, 6, 0.00, 0, 1),
(4470, 1, 206, 12, 0.00, 0, 1),
(4471, 1, 206, 13, 0.00, 0, 1),
(4472, 1, 206, 14, 0.00, 0, 1),
(4473, 1, 206, 15, 0.00, 0, 1),
(4474, 1, 206, 16, 0.00, 0, 1),
(4475, 1, 206, 17, 0.00, 0, 1),
(4476, 1, 206, 18, 0.00, 0, 1),
(4477, 1, 206, 19, 0.00, 0, 1),
(4478, 1, 207, 3, 32.51, 1, 1),
(4479, 1, 207, 5, 320000.00, 1, 1),
(4480, 1, 207, 6, 5.00, 0, 1),
(4481, 1, 207, 4, 400.00, 1, 1),
(4482, 1, 207, 7, 0.00, 0, 1),
(4483, 1, 207, 8, 0.00, 0, 1),
(4484, 1, 207, 9, 0.00, 0, 1),
(4485, 1, 207, 10, 0.00, 0, 1),
(4486, 1, 207, 11, 0.00, 0, 1),
(4487, 1, 207, 12, 0.00, 0, 1),
(4488, 1, 207, 13, 0.00, 0, 1),
(4489, 1, 207, 14, 0.00, 0, 1),
(4490, 1, 207, 15, 0.00, 0, 1),
(4491, 1, 208, 3, 60.00, 1, 1),
(4492, 1, 208, 5, 251600.00, 1, 1),
(4493, 1, 208, 6, 10.00, 1, 1),
(4494, 1, 208, 4, 18000.00, 1, 1),
(4495, 1, 208, 7, 0.00, 0, 1),
(4496, 1, 208, 8, 0.00, 0, 1),
(4497, 1, 208, 9, 0.00, 0, 1),
(4498, 1, 208, 10, 0.00, 0, 1),
(4499, 1, 208, 11, 0.00, 0, 1),
(4500, 1, 208, 12, 100.00, 1, 1),
(4501, 1, 208, 13, 0.00, 0, 1),
(4502, 1, 208, 14, 0.00, 0, 1),
(4503, 1, 208, 15, 0.00, 0, 1),
(4504, 1, 209, 3, 300.00, 1, 1),
(4505, 1, 209, 5, 600000.00, 1, 1),
(4506, 1, 209, 6, 1.00, 0, 1),
(4507, 1, 209, 4, 1500.00, 0, 1),
(4508, 1, 209, 7, 0.00, 0, 1),
(4509, 1, 209, 8, 0.00, 0, 1),
(4510, 1, 209, 9, 0.00, 0, 1),
(4511, 1, 209, 10, 0.00, 0, 1),
(4512, 1, 209, 11, 0.00, 0, 1),
(4513, 1, 209, 12, 0.00, 0, 1),
(4514, 1, 209, 13, 0.00, 0, 1),
(4515, 1, 209, 14, 0.00, 0, 1),
(4516, 1, 209, 15, 0.00, 0, 1),
(4517, 1, 210, 3, 0.00, 1, 1),
(4518, 1, 210, 5, 0.00, 0, 1),
(4519, 1, 210, 6, 0.00, 0, 1),
(4520, 1, 210, 4, 0.00, 1, 1),
(4521, 1, 210, 7, 0.00, 0, 1),
(4522, 1, 210, 8, 0.00, 0, 1),
(4523, 1, 210, 9, 0.00, 0, 1),
(4524, 1, 210, 10, 0.00, 0, 1),
(4525, 1, 210, 11, 0.00, 0, 1),
(4526, 1, 210, 12, 0.00, 0, 1),
(4527, 1, 210, 13, 0.00, 0, 1),
(4528, 1, 210, 14, 0.00, 1, 1),
(4529, 1, 210, 15, 0.00, 1, 1),
(4530, 1, 211, 3, 0.00, 0, 1),
(4531, 1, 211, 5, 0.00, 0, 1),
(4532, 1, 211, 6, 0.00, 0, 1),
(4533, 1, 211, 4, 0.00, 0, 1),
(4534, 1, 211, 7, 0.00, 0, 1),
(4535, 1, 211, 8, 0.00, 0, 1),
(4536, 1, 211, 9, 0.00, 0, 1),
(4537, 1, 211, 10, 0.00, 0, 1),
(4538, 1, 211, 11, 0.00, 0, 1),
(4539, 1, 211, 12, 0.00, 0, 1),
(4540, 1, 211, 13, 0.00, 0, 1),
(4541, 1, 211, 14, 0.00, 0, 1),
(4542, 1, 211, 15, 0.00, 0, 1),
(4543, 1, 212, 3, 40.00, 1, 1),
(4544, 1, 212, 5, 270000.00, 1, 1),
(4545, 1, 212, 6, 0.00, 0, 1),
(4546, 1, 212, 4, 950.00, 1, 1),
(4547, 1, 212, 7, 0.00, 0, 1),
(4548, 1, 212, 8, 0.00, 0, 1),
(4549, 1, 212, 9, 0.00, 0, 1),
(4550, 1, 212, 10, 0.00, 0, 1),
(4551, 1, 212, 11, 0.00, 0, 1),
(4552, 1, 212, 12, 0.00, 0, 1),
(4553, 1, 212, 13, 0.00, 0, 1),
(4554, 1, 212, 14, 0.00, 0, 1),
(4555, 1, 212, 15, 0.00, 0, 1),
(4556, 1, 213, 3, 60.00, 1, 1),
(4557, 1, 213, 5, 244787.00, 1, 1),
(4558, 1, 213, 6, 5.00, 1, 1),
(4559, 1, 213, 4, 300.00, 1, 1),
(4560, 1, 213, 7, 0.00, 0, 1),
(4561, 1, 213, 8, 0.00, 0, 1),
(4562, 1, 213, 9, 0.00, 0, 1),
(4563, 1, 213, 10, 0.00, 0, 1),
(4564, 1, 213, 11, 0.00, 0, 1),
(4565, 1, 213, 12, 5.00, 1, 1),
(4566, 1, 213, 13, 0.00, 0, 1),
(4567, 1, 213, 14, 0.00, 0, 1),
(4568, 1, 213, 15, 0.00, 0, 1),
(4569, 1, 214, 3, 0.00, 0, 1),
(4570, 1, 214, 4, 200000.00, 1, 1),
(4571, 1, 214, 5, 200000.00, 1, 1),
(4572, 1, 214, 6, 0.00, 0, 1),
(4573, 1, 214, 7, 0.00, 0, 1),
(4574, 1, 214, 8, 10000.00, 1, 1),
(4575, 1, 214, 9, 0.00, 0, 1),
(4576, 1, 214, 10, 0.00, 0, 1),
(4577, 1, 214, 11, 0.00, 0, 1),
(4578, 1, 214, 12, 40000.00, 1, 1),
(4579, 1, 214, 13, 0.00, 0, 1),
(4580, 1, 214, 14, 0.00, 0, 1),
(4581, 1, 214, 15, 0.00, 0, 1),
(4582, 1, 215, 3, 0.00, 1, 1),
(4583, 1, 215, 4, 10000.00, 1, 1),
(4584, 1, 215, 5, 0.00, 0, 1),
(4585, 1, 215, 6, 20000.00, 1, 1),
(4586, 1, 215, 7, 0.00, 0, 1),
(4587, 1, 215, 8, 0.00, 0, 1),
(4588, 1, 215, 9, 0.00, 0, 1),
(4589, 1, 215, 10, 0.00, 0, 1),
(4590, 1, 215, 11, 0.00, 0, 1),
(4591, 1, 215, 12, 0.00, 0, 1),
(4592, 1, 215, 13, 0.00, 0, 1),
(4593, 1, 215, 14, 0.00, 0, 1),
(4594, 1, 215, 15, 0.00, 0, 1),
(4595, 1, 215, 3, 0.00, 1, 1),
(4596, 1, 215, 4, 350.00, 1, 1),
(4597, 1, 215, 5, 100.00, 1, 1),
(4598, 1, 215, 6, 450.00, 1, 1),
(4599, 1, 215, 7, 100.00, 1, 1),
(4600, 1, 215, 8, 0.00, 0, 1),
(4601, 1, 215, 9, 0.00, 0, 1),
(4602, 1, 215, 10, 0.00, 0, 1),
(4603, 1, 215, 11, 0.00, 0, 1),
(4604, 1, 215, 12, 0.00, 0, 1),
(4605, 1, 215, 13, 0.00, 0, 1),
(4606, 1, 215, 14, 0.00, 0, 1),
(4607, 1, 215, 15, 0.00, 0, 1),
(4608, 1, 216, 3, 0.00, 0, 1),
(4609, 1, 216, 4, 350000.00, 1, 1),
(4610, 1, 216, 5, 100000.00, 0, 1),
(4611, 1, 216, 6, 0.00, 0, 1),
(4612, 1, 216, 7, 100000.00, 0, 1),
(4613, 1, 216, 8, 0.00, 0, 1),
(4614, 1, 216, 9, 450000.00, 0, 1),
(4615, 1, 216, 10, 0.00, 0, 1),
(4616, 1, 216, 11, 0.00, 0, 1),
(4617, 1, 216, 12, 0.00, 0, 1),
(4618, 1, 216, 13, 0.00, 0, 1),
(4619, 1, 216, 14, 0.00, 0, 1),
(4620, 1, 216, 15, 0.00, 0, 1),
(4621, 1, 217, 3, 0.00, 0, 1),
(4622, 1, 217, 4, 0.00, 0, 1),
(4623, 1, 217, 5, 320000.00, 1, 1),
(4624, 1, 217, 6, 0.00, 0, 1),
(4625, 1, 217, 7, 680000.00, 0, 1),
(4626, 1, 217, 8, 0.00, 0, 1),
(4627, 1, 217, 9, 0.00, 0, 1),
(4628, 1, 217, 10, 0.00, 0, 1),
(4629, 1, 217, 11, 0.00, 0, 1),
(4630, 1, 217, 12, 0.00, 0, 1),
(4631, 1, 217, 13, 0.00, 0, 1),
(4632, 1, 217, 14, 0.00, 0, 1),
(4633, 1, 217, 15, 0.00, 0, 1),
(4634, 1, 218, 3, 450.00, 1, 1),
(4635, 1, 218, 4, 0.00, 0, 1),
(4636, 1, 218, 5, 250000.00, 1, 1),
(4637, 1, 218, 6, 0.00, 0, 1),
(4638, 1, 218, 7, 0.00, 0, 1),
(4639, 1, 218, 8, 0.00, 0, 1),
(4640, 1, 218, 9, 0.00, 0, 1),
(4641, 1, 218, 10, 0.00, 0, 1),
(4642, 1, 218, 11, 0.00, 0, 1),
(4643, 1, 218, 12, 0.00, 0, 1),
(4644, 1, 218, 13, 0.00, 0, 1),
(4645, 1, 218, 14, 0.00, 1, 1),
(4646, 1, 218, 15, 0.00, 0, 1),
(4647, 1, 219, 3, 0.00, 0, 1),
(4648, 1, 219, 4, 0.00, 0, 1),
(4649, 1, 219, 5, 800000.00, 1, 1),
(4650, 1, 219, 6, 0.00, 0, 1),
(4651, 1, 219, 7, 0.00, 0, 1),
(4652, 1, 219, 8, 0.00, 0, 1),
(4653, 1, 219, 9, 0.00, 0, 1),
(4654, 1, 219, 10, 0.00, 0, 1),
(4655, 1, 219, 11, 0.00, 0, 1),
(4656, 1, 219, 12, 0.00, 0, 1),
(4657, 1, 219, 13, 0.00, 0, 1),
(4658, 1, 219, 14, 0.00, 0, 1),
(4659, 1, 219, 15, 0.00, 0, 1),
(4660, 1, 220, 3, 0.00, 0, 1),
(4661, 1, 220, 4, 0.00, 0, 1),
(4662, 1, 220, 5, 0.00, 0, 1),
(4663, 1, 220, 6, 0.00, 0, 1),
(4664, 1, 220, 7, 100000.00, 1, 1),
(4665, 1, 220, 8, 0.00, 0, 1),
(4666, 1, 220, 9, 0.00, 0, 1),
(4667, 1, 220, 10, 0.00, 0, 1),
(4668, 1, 220, 11, 0.00, 0, 1),
(4669, 1, 220, 12, 0.00, 0, 1),
(4670, 1, 220, 13, 0.00, 0, 1),
(4671, 1, 220, 14, 0.00, 0, 1),
(4672, 1, 220, 15, 100000.00, 1, 1),
(4673, 1, 221, 3, 0.00, 0, 1),
(4674, 1, 221, 4, 0.00, 0, 1),
(4675, 1, 221, 5, 950000.00, 1, 1),
(4676, 1, 221, 6, 0.00, 0, 1),
(4677, 1, 221, 7, 0.00, 0, 1),
(4678, 1, 221, 8, 0.00, 0, 1),
(4679, 1, 221, 9, 0.00, 0, 1),
(4680, 1, 221, 10, 0.00, 0, 1),
(4681, 1, 221, 11, 0.00, 0, 1),
(4682, 1, 221, 12, 0.00, 0, 1),
(4683, 1, 221, 13, 0.00, 0, 1),
(4684, 1, 221, 14, 50000.00, 1, 1),
(4685, 1, 221, 15, 0.00, 0, 1),
(4686, 1, 222, 3, 0.00, 0, 1),
(4687, 1, 222, 4, 0.00, 0, 1),
(4688, 1, 222, 5, 0.00, 0, 1),
(4689, 1, 222, 6, 0.00, 0, 1),
(4690, 1, 222, 7, 0.00, 0, 1),
(4691, 1, 222, 8, 999999.00, 1, 1),
(4692, 1, 222, 9, 0.00, 0, 1),
(4693, 1, 222, 10, 0.00, 0, 1),
(4694, 1, 222, 11, 0.00, 0, 1),
(4695, 1, 222, 12, 0.00, 0, 1),
(4696, 1, 222, 13, 0.00, 0, 1),
(4697, 1, 222, 14, 0.00, 0, 1),
(4698, 1, 222, 15, 0.00, 0, 1),
(4699, 1, 223, 3, 0.00, 0, 1),
(4700, 1, 223, 4, 0.00, 0, 1),
(4701, 1, 223, 5, 0.00, 0, 1),
(4702, 1, 223, 6, 0.00, 0, 1),
(4703, 1, 223, 7, 1000000.00, 1, 1),
(4704, 1, 223, 8, 0.00, 0, 1),
(4705, 1, 223, 9, 0.00, 0, 1),
(4706, 1, 223, 10, 0.00, 0, 1),
(4707, 1, 223, 11, 0.00, 0, 1),
(4708, 1, 223, 12, 0.00, 0, 1),
(4709, 1, 223, 13, 0.00, 0, 1),
(4710, 1, 223, 14, 0.00, 0, 1),
(4711, 1, 223, 15, 0.00, 0, 1),
(4712, 1, 224, 3, 0.00, 0, 1),
(4713, 1, 224, 4, 0.00, 0, 1),
(4714, 1, 224, 5, 0.00, 0, 1),
(4715, 1, 224, 6, 0.00, 0, 1),
(4716, 1, 224, 7, 500000.00, 1, 1),
(4717, 1, 224, 8, 0.00, 0, 1),
(4718, 1, 224, 9, 0.00, 0, 1),
(4719, 1, 224, 10, 0.00, 0, 1),
(4720, 1, 224, 11, 0.00, 0, 1),
(4721, 1, 224, 12, 0.00, 1, 1),
(4722, 1, 224, 13, 0.00, 1, 1),
(4723, 1, 224, 14, 0.00, 1, 1),
(4724, 1, 224, 15, 0.00, 1, 1),
(4725, 1, 224, 16, 0.00, 0, 1),
(4726, 1, 224, 17, 0.00, 0, 1),
(4727, 1, 224, 18, 0.00, 0, 1),
(4728, 1, 224, 19, 0.00, 0, 1),
(4729, 1, 225, 3, 68.00, 1, 1),
(4730, 1, 225, 4, 886.60, 1, 1),
(4731, 1, 225, 5, 210020.00, 1, 1),
(4732, 1, 225, 6, 12.00, 0, 1),
(4733, 1, 225, 7, 749680.00, 1, 1),
(4734, 1, 225, 8, 0.00, 0, 1),
(4735, 1, 225, 9, 0.00, 0, 1),
(4736, 1, 225, 10, 0.00, 0, 1),
(4737, 1, 225, 11, 0.00, 0, 1),
(4738, 1, 225, 12, 6.00, 0, 1),
(4739, 1, 225, 13, 0.00, 0, 1),
(4740, 1, 225, 14, 0.00, 0, 1),
(4741, 1, 225, 15, 0.00, 0, 1),
(4742, 1, 226, 3, 1000000.00, 1, 1),
(4743, 1, 226, 4, 0.00, 0, 1),
(4744, 1, 226, 5, 0.00, 0, 1),
(4745, 1, 226, 6, 0.00, 0, 1),
(4746, 1, 226, 7, 0.00, 0, 1),
(4747, 1, 226, 8, 0.00, 0, 1),
(4748, 1, 226, 9, 0.00, 0, 1),
(4749, 1, 226, 10, 0.00, 0, 1),
(4750, 1, 226, 11, 0.00, 0, 1),
(4751, 1, 226, 12, 0.00, 0, 1),
(4752, 1, 226, 13, 0.00, 0, 1),
(4753, 1, 226, 14, 0.00, 0, 1),
(4754, 1, 226, 15, 0.00, 0, 1),
(4755, 1, 227, 3, 28.00, 1, 1),
(4756, 1, 227, 4, 120.00, 1, 1),
(4757, 1, 227, 5, 100000.00, 1, 1),
(4758, 1, 227, 6, 3.00, 1, 1),
(4759, 1, 227, 7, 768200.00, 0, 1),
(4760, 1, 227, 8, 0.00, 0, 1),
(4761, 1, 227, 9, 0.00, 0, 1),
(4762, 1, 227, 10, 0.00, 0, 1),
(4763, 1, 227, 11, 0.00, 0, 1),
(4764, 1, 227, 12, 3.00, 1, 1),
(4765, 1, 227, 13, 0.00, 0, 1),
(4766, 1, 227, 14, 0.00, 0, 1),
(4767, 1, 227, 15, 0.00, 0, 1),
(4768, 1, 228, 3, 0.00, 0, 1),
(4769, 1, 228, 4, 0.00, 0, 1),
(4770, 1, 228, 5, 0.00, 0, 1),
(4771, 1, 228, 6, 0.00, 0, 1),
(4772, 1, 228, 7, 0.00, 0, 1),
(4773, 1, 228, 8, 0.00, 0, 1),
(4774, 1, 228, 9, 999999.00, 1, 1),
(4775, 1, 228, 10, 0.00, 0, 1),
(4776, 1, 228, 11, 0.00, 0, 1),
(4777, 1, 228, 12, 0.00, 0, 1),
(4778, 1, 228, 13, 0.00, 0, 1),
(4779, 1, 228, 14, 0.00, 0, 1),
(4780, 1, 228, 15, 0.00, 0, 1),
(4781, 1, 229, 3, 0.00, 0, 1),
(4782, 1, 229, 4, 0.00, 0, 1),
(4783, 1, 229, 5, 0.00, 0, 1),
(4784, 1, 229, 6, 0.00, 0, 1),
(4785, 1, 229, 12, 0.00, 0, 1),
(4786, 1, 230, 3, 0.00, 1, 1),
(4787, 1, 230, 4, 0.00, 0, 1),
(4788, 1, 230, 5, 0.00, 0, 1),
(4789, 1, 230, 6, 0.00, 0, 1),
(4790, 1, 230, 12, 0.00, 0, 1),
(4791, 1, 231, 3, 0.00, 1, 1),
(4792, 1, 231, 4, 0.00, 0, 1),
(4793, 1, 231, 5, 0.00, 0, 1),
(4794, 1, 231, 6, 0.00, 0, 1),
(4795, 1, 231, 12, 0.00, 0, 1),
(4796, 1, 231, 13, 0.00, 0, 1),
(4797, 1, 231, 14, 0.00, 0, 1),
(4798, 1, 231, 15, 0.00, 0, 1),
(4799, 1, 231, 16, 0.00, 0, 1),
(4800, 1, 231, 17, 0.00, 0, 1),
(4801, 1, 231, 18, 0.00, 0, 1),
(4802, 1, 231, 19, 0.00, 0, 1),
(4803, 1, 232, 3, 0.00, 1, 1),
(4804, 1, 232, 4, 0.00, 0, 1),
(4805, 1, 232, 5, 0.00, 0, 1),
(4806, 1, 232, 6, 0.00, 0, 1),
(4807, 1, 232, 12, 0.00, 0, 1),
(4808, 1, 233, 3, 196.00, 1, 1),
(4809, 1, 233, 4, 1645.00, 1, 1),
(4810, 1, 233, 5, 220000.00, 1, 1),
(4811, 1, 233, 6, 14.00, 1, 1),
(4812, 1, 233, 12, 30.00, 1, 1),
(4813, 1, 234, 3, 0.00, 0, 1),
(4814, 1, 234, 4, 300.00, 0, 1),
(4815, 1, 234, 5, 240000.00, 1, 1),
(4816, 1, 234, 6, 0.00, 0, 1),
(4817, 1, 234, 12, 0.00, 0, 1),
(4818, 1, 235, 3, 0.00, 0, 1),
(4819, 1, 235, 4, 0.00, 0, 1),
(4820, 1, 235, 5, 265000.00, 1, 1),
(4821, 1, 235, 6, 0.00, 0, 1),
(4822, 1, 235, 12, 0.00, 0, 1),
(4823, 1, 236, 3, 60.00, 1, 1),
(4824, 1, 236, 4, 320.00, 1, 1),
(4825, 1, 236, 5, 184000.00, 1, 1),
(4826, 1, 236, 6, 0.00, 0, 1),
(4827, 1, 236, 12, 0.00, 0, 1),
(4828, 1, 237, 3, 0.00, 0, 1),
(4829, 1, 237, 4, 350.00, 1, 1),
(4830, 1, 237, 5, 240000.00, 1, 1),
(4831, 1, 237, 6, 0.00, 0, 1),
(4832, 1, 237, 12, 0.00, 0, 1),
(4833, 1, 238, 3, 67.00, 1, 1),
(4834, 1, 238, 4, 400.00, 1, 1),
(4835, 1, 238, 5, 170000.00, 1, 1),
(4836, 1, 238, 6, 20.00, 1, 1),
(4837, 1, 238, 12, 30.00, 1, 1),
(4838, 1, 239, 3, 0.00, 0, 1),
(4839, 1, 239, 4, 0.00, 0, 1),
(4840, 1, 239, 5, 1.00, 1, 1),
(4841, 1, 239, 6, 0.00, 0, 1),
(4842, 1, 239, 12, 0.00, 0, 1),
(4843, 1, 240, 3, 0.00, 0, 1),
(4844, 1, 240, 4, 600.00, 1, 1),
(4845, 1, 240, 5, 200000.00, 1, 1),
(4846, 1, 240, 6, 0.00, 0, 1),
(4847, 1, 240, 12, 0.00, 0, 1),
(4848, 1, 241, 3, 50.00, 1, 1),
(4849, 1, 241, 4, 200.00, 1, 1),
(4850, 1, 241, 5, 240000.00, 1, 1),
(4851, 1, 241, 6, 0.00, 0, 1),
(4852, 1, 241, 12, 0.00, 0, 1),
(4853, 1, 242, 3, 60.00, 1, 1),
(4854, 1, 242, 4, 200.00, 1, 1),
(4855, 1, 242, 5, 120000.00, 1, 1),
(4856, 1, 242, 6, 1.00, 0, 1),
(4857, 1, 242, 12, 1.00, 0, 1),
(4858, 1, 243, 3, 90.00, 1, 1),
(4859, 1, 243, 4, 666.00, 1, 1),
(4860, 1, 243, 5, 210000.00, 1, 1),
(4861, 1, 243, 6, 0.00, 0, 1),
(4862, 1, 243, 12, 0.00, 0, 1),
(4863, 1, 244, 3, 243.00, 1, 1),
(4864, 1, 244, 4, 1562.00, 1, 1),
(4865, 1, 244, 5, 220000.00, 1, 1),
(4866, 1, 244, 6, 15.00, 1, 1),
(4867, 1, 244, 12, 49.00, 1, 1),
(4868, 1, 245, 3, 97.10, 1, 1),
(4869, 1, 245, 4, 540.00, 1, 1),
(4870, 1, 245, 5, 212000.00, 1, 1),
(4871, 1, 245, 6, 0.00, 0, 1),
(4872, 1, 245, 12, 6.00, 1, 1),
(4873, 1, 246, 3, 88.00, 1, 1),
(4874, 1, 246, 4, 188.00, 1, 1),
(4875, 1, 246, 5, 250000.00, 1, 1),
(4876, 1, 246, 6, 0.00, 0, 1),
(4877, 1, 246, 12, 0.00, 0, 1),
(4878, 1, 247, 3, 222.00, 1, 1),
(4879, 1, 247, 4, 2222.00, 1, 1),
(4880, 1, 247, 5, 222222.00, 1, 1),
(4881, 1, 247, 6, 22.00, 1, 1),
(4882, 1, 247, 12, 2.00, 1, 1),
(4883, 1, 248, 3, 365.00, 1, 1),
(4884, 1, 248, 4, 1800.00, 1, 1),
(4885, 1, 248, 5, 350000.00, 1, 1),
(4886, 1, 248, 6, 35.00, 1, 1),
(4887, 1, 248, 12, 12.00, 1, 1),
(4888, 1, 249, 3, 112.00, 1, 1),
(4889, 1, 249, 4, 212.00, 1, 1),
(4890, 1, 249, 5, 310000.00, 1, 1),
(4891, 1, 249, 6, 21.00, 1, 1),
(4892, 1, 249, 12, 9.00, 1, 1),
(4893, 1, 250, 3, 800.00, 1, 1),
(4894, 1, 250, 4, 500.00, 1, 1),
(4895, 1, 250, 5, 210000.00, 1, 1),
(4896, 1, 250, 6, 0.00, 0, 1),
(4897, 1, 250, 12, 0.00, 0, 1),
(4898, 1, 251, 3, 1200.00, 1, 1),
(4899, 1, 251, 4, 1200.00, 1, 1),
(4900, 1, 251, 5, 215000.00, 1, 1),
(4901, 1, 251, 6, 0.00, 0, 1),
(4902, 1, 251, 12, 0.00, 0, 1),
(4903, 1, 252, 3, 2000.00, 1, 1),
(4904, 1, 252, 4, 2000.00, 1, 1),
(4905, 1, 252, 5, 250000.00, 1, 1),
(4906, 1, 252, 6, 0.00, 0, 1),
(4907, 1, 252, 12, 0.00, 0, 1),
(4908, 1, 253, 3, 144.00, 1, 1),
(4909, 1, 253, 4, 312.00, 1, 1),
(4910, 1, 253, 5, 310000.00, 1, 1),
(4911, 1, 253, 6, 1.00, 1, 1),
(4912, 1, 253, 12, 0.00, 1, 1),
(4913, 1, 253, 13, 0.00, 0, 1),
(4914, 1, 253, 14, 0.00, 0, 1),
(4915, 1, 253, 15, 0.00, 0, 1),
(4916, 1, 253, 16, 0.00, 0, 1),
(4917, 1, 253, 17, 0.00, 0, 1),
(4918, 1, 253, 18, 0.00, 0, 1),
(4919, 1, 253, 19, 0.00, 0, 1),
(4920, 1, 254, 3, 210.00, 1, 1),
(4921, 1, 254, 4, 1655.00, 1, 1),
(4922, 1, 254, 5, 262351.00, 1, 1),
(4923, 1, 254, 6, 3.00, 1, 1),
(4924, 1, 254, 12, 0.00, 0, 1),
(4925, 1, 254, 13, 0.00, 0, 1),
(4926, 1, 254, 14, 0.00, 0, 1),
(4927, 1, 254, 15, 0.00, 0, 1),
(4928, 1, 254, 16, 0.00, 0, 1),
(4929, 1, 254, 17, 0.00, 0, 1),
(4930, 1, 254, 18, 0.00, 0, 1),
(4931, 1, 254, 19, 0.00, 0, 1),
(4932, 1, 255, 3, 588.00, 1, 1),
(4933, 1, 255, 4, 0.00, 0, 1),
(4934, 1, 255, 5, 220000.00, 1, 1),
(4935, 1, 255, 6, 0.00, 0, 1),
(4936, 1, 255, 12, 0.00, 0, 1),
(4937, 1, 255, 13, 0.00, 0, 1),
(4938, 1, 255, 14, 0.00, 0, 1),
(4939, 1, 255, 15, 0.00, 0, 1),
(4940, 1, 255, 16, 0.00, 0, 1),
(4941, 1, 255, 17, 0.00, 0, 1),
(4942, 1, 255, 18, 0.00, 0, 1),
(4943, 1, 255, 19, 0.00, 0, 1),
(4944, 1, 256, 3, 144.00, 1, 1),
(4945, 1, 256, 4, 0.00, 0, 1),
(4946, 1, 256, 5, 220000.00, 1, 1),
(4947, 1, 256, 6, 0.00, 0, 1),
(4948, 1, 256, 12, 0.00, 0, 1),
(4949, 1, 256, 13, 0.00, 0, 1),
(4950, 1, 256, 14, 0.00, 0, 1),
(4951, 1, 256, 15, 0.00, 0, 1),
(4952, 1, 256, 16, 0.00, 0, 1),
(4953, 1, 256, 17, 0.00, 0, 1),
(4954, 1, 256, 18, 0.00, 0, 1),
(4955, 1, 256, 19, 0.00, 0, 1),
(4956, 1, 257, 3, 323.50, 1, 1),
(4957, 1, 257, 4, 0.00, 0, 1),
(4958, 1, 257, 5, 220000.00, 1, 1),
(4959, 1, 257, 6, 0.00, 0, 1),
(4960, 1, 257, 12, 0.00, 0, 1),
(4961, 1, 257, 13, 0.00, 0, 1),
(4962, 1, 257, 14, 0.00, 0, 1),
(4963, 1, 257, 15, 0.00, 0, 1),
(4964, 1, 257, 16, 0.00, 0, 1),
(4965, 1, 257, 17, 0.00, 0, 1),
(4966, 1, 257, 18, 0.00, 0, 1),
(4967, 1, 257, 19, 0.00, 0, 1),
(4968, 1, 258, 3, 1102.00, 1, 1),
(4969, 1, 258, 4, 2222.00, 1, 1),
(4970, 1, 258, 5, 222000.00, 1, 1),
(4971, 1, 258, 6, 33.00, 1, 1),
(4972, 1, 258, 12, 33.00, 1, 1),
(4973, 1, 259, 3, 677.00, 1, 1),
(4974, 1, 259, 4, 333.00, 1, 1),
(4975, 1, 259, 5, 220000.00, 1, 1),
(4976, 1, 259, 6, 20.00, 1, 1),
(4977, 1, 259, 12, 20.00, 1, 1),
(4978, 1, 260, 3, 510.40, 1, 1),
(4979, 1, 260, 4, 600.00, 1, 1),
(4980, 1, 260, 5, 220000.00, 1, 1),
(4981, 1, 260, 6, 20.00, 1, 1),
(4982, 1, 260, 12, 15.00, 1, 1),
(4983, 1, 261, 3, 264.00, 1, 1),
(4984, 1, 261, 4, 322.00, 1, 1),
(4985, 1, 261, 5, 202545.00, 1, 1),
(4986, 1, 261, 6, 15.00, 1, 1),
(4987, 1, 261, 12, 10.00, 1, 1),
(4988, 1, 262, 3, 0.00, 0, 1),
(4989, 1, 262, 4, 0.00, 0, 1),
(4990, 1, 262, 5, 280000.00, 1, 1),
(4991, 1, 262, 6, 0.00, 0, 1),
(4992, 1, 262, 12, 0.00, 0, 1),
(4993, 1, 263, 3, 0.00, 0, 1),
(4994, 1, 263, 4, 0.00, 0, 1),
(4995, 1, 263, 5, 230000.00, 1, 1),
(4996, 1, 263, 6, 0.00, 0, 1),
(4997, 1, 263, 12, 0.00, 0, 1),
(4998, 1, 264, 3, 0.00, 0, 1),
(4999, 1, 264, 4, 0.00, 0, 1),
(5000, 1, 264, 5, 180000.00, 1, 1),
(5001, 1, 264, 6, 0.00, 0, 1),
(5002, 1, 264, 12, 0.00, 0, 1),
(5003, 1, 265, 3, 0.00, 0, 1),
(5004, 1, 265, 4, 0.00, 0, 1),
(5005, 1, 265, 5, 0.00, 0, 1),
(5006, 1, 265, 6, 0.00, 0, 1),
(5007, 1, 265, 12, 0.00, 0, 1),
(5008, 1, 266, 3, 4186.30, 1, 1),
(5009, 1, 266, 4, 12845.00, 1, 1),
(5010, 1, 266, 5, 100277.00, 1, 1),
(5011, 1, 266, 6, 80.00, 1, 1),
(5012, 1, 266, 12, 1223.00, 1, 1),
(5013, 1, 267, 3, 8266.41, 1, 1),
(5014, 1, 267, 4, 17345.80, 1, 1),
(5015, 1, 267, 5, 81255.00, 1, 1),
(5016, 1, 267, 6, 94.20, 1, 1),
(5017, 1, 267, 12, 112.00, 1, 1),
(5018, 1, 268, 3, 1549.25, 1, 1),
(5019, 1, 268, 4, 12422.50, 1, 1),
(5020, 1, 268, 5, 89912.00, 1, 1),
(5021, 1, 268, 6, 114.00, 1, 1),
(5022, 1, 268, 12, 1212.00, 1, 1),
(5023, 1, 269, 3, 888.00, 1, 1),
(5024, 1, 269, 4, 7466.00, 1, 1),
(5025, 1, 269, 5, 120224.00, 1, 1),
(5026, 1, 269, 6, 160.00, 1, 1),
(5027, 1, 269, 12, 288.00, 1, 1),
(5028, 1, 270, 3, 321.00, 1, 1),
(5029, 1, 270, 4, 2100.00, 1, 1),
(5030, 1, 270, 5, 210000.00, 1, 1),
(5031, 1, 270, 6, 25.00, 1, 1),
(5032, 1, 270, 12, 212.00, 1, 1),
(5033, 1, 271, 3, 303.00, 1, 1),
(5034, 1, 271, 4, 480.00, 1, 1),
(5035, 1, 271, 5, 245000.00, 1, 1),
(5036, 1, 271, 6, 12.00, 1, 1),
(5037, 1, 271, 12, 88.00, 1, 1),
(5038, 1, 272, 3, 188.00, 1, 1),
(5039, 1, 272, 4, 2500.00, 1, 1),
(5040, 1, 272, 5, 265120.00, 1, 1),
(5041, 1, 272, 6, 28.00, 1, 1),
(5042, 1, 272, 12, 56.00, 1, 1),
(5043, 1, 273, 3, 112.00, 1, 1),
(5044, 1, 273, 4, 312.00, 1, 1),
(5045, 1, 273, 5, 242150.00, 1, 1),
(5046, 1, 273, 6, 8.00, 1, 1),
(5047, 1, 273, 12, 12.00, 1, 1),
(5048, 1, 274, 3, 68.00, 1, 1),
(5049, 1, 274, 4, 289.00, 1, 1),
(5050, 1, 274, 5, 289585.00, 1, 1),
(5051, 1, 274, 6, 13.00, 1, 1),
(5052, 1, 274, 12, 18.00, 1, 1),
(5053, 1, 275, 3, 291.00, 1, 1),
(5054, 1, 275, 4, 6499.00, 1, 1),
(5055, 1, 275, 5, 232024.00, 1, 1),
(5056, 1, 275, 6, 71.00, 1, 1),
(5057, 1, 275, 12, 81.00, 1, 1),
(5058, 1, 276, 3, 273.00, 1, 1),
(5059, 1, 276, 4, 400.00, 1, 1),
(5060, 1, 276, 5, 245612.00, 1, 1),
(5061, 1, 276, 6, 72.00, 1, 1),
(5062, 1, 276, 12, 58.00, 1, 1),
(5063, 1, 277, 3, 0.00, 0, 1),
(5064, 1, 277, 4, 0.00, 0, 1),
(5065, 1, 277, 5, 999999.00, 1, 1),
(5066, 1, 277, 6, 0.00, 0, 1),
(5067, 1, 277, 12, 0.00, 0, 1),
(5068, 1, 277, 13, 0.00, 0, 1),
(5069, 1, 277, 14, 0.00, 0, 1),
(5070, 1, 277, 15, 0.00, 0, 1),
(5071, 1, 277, 16, 0.00, 0, 1),
(5072, 1, 277, 17, 0.00, 0, 1),
(5073, 1, 277, 18, 0.00, 0, 1),
(5074, 1, 277, 19, 0.00, 0, 1),
(5075, 1, 278, 3, 0.00, 0, 1),
(5076, 1, 278, 4, 0.00, 0, 1),
(5077, 1, 278, 5, 880000.00, 1, 1),
(5078, 1, 278, 6, 0.00, 0, 1),
(5079, 1, 278, 12, 0.00, 0, 1),
(5080, 1, 278, 13, 0.00, 0, 1),
(5081, 1, 278, 14, 0.00, 0, 1),
(5082, 1, 278, 15, 0.00, 0, 1),
(5083, 1, 278, 16, 0.00, 0, 1),
(5084, 1, 278, 17, 0.00, 0, 1),
(5085, 1, 278, 18, 0.00, 0, 1),
(5086, 1, 278, 19, 0.00, 0, 1),
(5087, 1, 279, 3, 10.00, 1, 1),
(5088, 1, 279, 4, 30.00, 1, 1),
(5089, 1, 279, 5, 280000.00, 1, 1),
(5090, 1, 279, 6, 0.00, 0, 1),
(5091, 1, 279, 12, 0.00, 0, 1),
(5092, 1, 279, 13, 0.00, 0, 1),
(5093, 1, 279, 14, 0.00, 0, 1),
(5094, 1, 279, 15, 0.00, 0, 1),
(5095, 1, 279, 16, 0.00, 0, 1),
(5096, 1, 279, 17, 0.00, 0, 1),
(5097, 1, 279, 18, 0.00, 0, 1),
(5098, 1, 279, 19, 0.00, 0, 1),
(5099, 1, 280, 3, 0.00, 0, 1),
(5100, 1, 280, 4, 0.00, 0, 1),
(5101, 1, 280, 5, 0.00, 0, 1),
(5102, 1, 280, 6, 0.00, 0, 1),
(5103, 1, 280, 12, 0.00, 0, 1),
(5104, 1, 280, 13, 0.00, 0, 1),
(5105, 1, 280, 14, 0.00, 0, 1),
(5106, 1, 280, 15, 0.00, 0, 1),
(5107, 1, 280, 16, 0.00, 0, 1),
(5108, 1, 280, 17, 0.00, 0, 1),
(5109, 1, 280, 18, 0.00, 0, 1),
(5110, 1, 280, 19, 0.00, 0, 1),
(5111, 1, 281, 3, 0.00, 0, 1),
(5112, 1, 281, 4, 0.00, 0, 1),
(5113, 1, 281, 5, 0.00, 0, 1),
(5114, 1, 281, 6, 0.00, 0, 1),
(5115, 1, 281, 12, 0.00, 0, 1),
(5116, 1, 281, 13, 0.00, 0, 1),
(5117, 1, 281, 14, 0.00, 0, 1),
(5118, 1, 281, 15, 0.00, 0, 1),
(5119, 1, 281, 16, 0.00, 0, 1),
(5120, 1, 281, 17, 0.00, 0, 1),
(5121, 1, 281, 18, 0.00, 0, 1),
(5122, 1, 281, 19, 0.00, 0, 1),
(5123, 1, 282, 3, 32.51, 1, 1),
(5124, 1, 282, 5, 320000.00, 1, 1),
(5125, 1, 282, 6, 5.00, 0, 1),
(5126, 1, 282, 4, 400.00, 1, 1),
(5127, 1, 282, 7, 0.00, 0, 1),
(5128, 1, 282, 8, 0.00, 0, 1),
(5129, 1, 282, 9, 0.00, 0, 1),
(5130, 1, 282, 10, 0.00, 0, 1),
(5131, 1, 282, 11, 0.00, 0, 1),
(5132, 1, 282, 12, 0.00, 0, 1),
(5133, 1, 282, 13, 0.00, 0, 1),
(5134, 1, 282, 14, 0.00, 0, 1),
(5135, 1, 282, 15, 0.00, 0, 1),
(5136, 1, 283, 3, 60.00, 1, 1),
(5137, 1, 283, 5, 251600.00, 1, 1),
(5138, 1, 283, 6, 10.00, 1, 1),
(5139, 1, 283, 4, 18000.00, 1, 1),
(5140, 1, 283, 7, 0.00, 0, 1),
(5141, 1, 283, 8, 0.00, 0, 1),
(5142, 1, 283, 9, 0.00, 0, 1),
(5143, 1, 283, 10, 0.00, 0, 1),
(5144, 1, 283, 11, 0.00, 0, 1),
(5145, 1, 283, 12, 100.00, 1, 1),
(5146, 1, 283, 13, 0.00, 0, 1),
(5147, 1, 283, 14, 0.00, 0, 1),
(5148, 1, 283, 15, 0.00, 0, 1),
(5149, 1, 284, 3, 300.00, 1, 1),
(5150, 1, 284, 5, 600000.00, 1, 1),
(5151, 1, 284, 6, 1.00, 0, 1),
(5152, 1, 284, 4, 1500.00, 0, 1),
(5153, 1, 284, 7, 0.00, 0, 1),
(5154, 1, 284, 8, 0.00, 0, 1),
(5155, 1, 284, 9, 0.00, 0, 1),
(5156, 1, 284, 10, 0.00, 0, 1),
(5157, 1, 284, 11, 0.00, 0, 1),
(5158, 1, 284, 12, 0.00, 0, 1),
(5159, 1, 284, 13, 0.00, 0, 1),
(5160, 1, 284, 14, 0.00, 0, 1),
(5161, 1, 284, 15, 0.00, 0, 1),
(5162, 1, 285, 3, 0.00, 1, 1),
(5163, 1, 285, 5, 0.00, 0, 1),
(5164, 1, 285, 6, 0.00, 0, 1),
(5165, 1, 285, 4, 0.00, 1, 1),
(5166, 1, 285, 7, 0.00, 0, 1),
(5167, 1, 285, 8, 0.00, 0, 1),
(5168, 1, 285, 9, 0.00, 0, 1),
(5169, 1, 285, 10, 0.00, 0, 1),
(5170, 1, 285, 11, 0.00, 0, 1),
(5171, 1, 285, 12, 0.00, 0, 1),
(5172, 1, 285, 13, 0.00, 0, 1),
(5173, 1, 285, 14, 0.00, 1, 1),
(5174, 1, 285, 15, 0.00, 1, 1),
(5175, 1, 286, 3, 0.00, 0, 1),
(5176, 1, 286, 5, 0.00, 0, 1),
(5177, 1, 286, 6, 0.00, 0, 1),
(5178, 1, 286, 4, 0.00, 0, 1),
(5179, 1, 286, 7, 0.00, 0, 1),
(5180, 1, 286, 8, 0.00, 0, 1),
(5181, 1, 286, 9, 0.00, 0, 1),
(5182, 1, 286, 10, 0.00, 0, 1),
(5183, 1, 286, 11, 0.00, 0, 1),
(5184, 1, 286, 12, 0.00, 0, 1),
(5185, 1, 286, 13, 0.00, 0, 1),
(5186, 1, 286, 14, 0.00, 0, 1),
(5187, 1, 286, 15, 0.00, 0, 1),
(5188, 1, 287, 3, 40.00, 1, 1),
(5189, 1, 287, 5, 270000.00, 1, 1),
(5190, 1, 287, 6, 0.00, 0, 1),
(5191, 1, 287, 4, 950.00, 1, 1),
(5192, 1, 287, 7, 0.00, 0, 1),
(5193, 1, 287, 8, 0.00, 0, 1),
(5194, 1, 287, 9, 0.00, 0, 1),
(5195, 1, 287, 10, 0.00, 0, 1),
(5196, 1, 287, 11, 0.00, 0, 1),
(5197, 1, 287, 12, 0.00, 0, 1),
(5198, 1, 287, 13, 0.00, 0, 1),
(5199, 1, 287, 14, 0.00, 0, 1),
(5200, 1, 287, 15, 0.00, 0, 1),
(5201, 1, 288, 3, 60.00, 1, 1),
(5202, 1, 288, 5, 244787.00, 1, 1),
(5203, 1, 288, 6, 5.00, 1, 1),
(5204, 1, 288, 4, 300.00, 1, 1),
(5205, 1, 288, 7, 0.00, 0, 1),
(5206, 1, 288, 8, 0.00, 0, 1),
(5207, 1, 288, 9, 0.00, 0, 1),
(5208, 1, 288, 10, 0.00, 0, 1),
(5209, 1, 288, 11, 0.00, 0, 1),
(5210, 1, 288, 12, 5.00, 1, 1),
(5211, 1, 288, 13, 0.00, 0, 1),
(5212, 1, 288, 14, 0.00, 0, 1),
(5213, 1, 288, 15, 0.00, 0, 1),
(5214, 1, 289, 3, 0.00, 0, 1),
(5215, 1, 289, 4, 200000.00, 1, 1),
(5216, 1, 289, 5, 200000.00, 1, 1),
(5217, 1, 289, 6, 0.00, 0, 1),
(5218, 1, 289, 7, 0.00, 0, 1),
(5219, 1, 289, 8, 10000.00, 1, 1),
(5220, 1, 289, 9, 0.00, 0, 1),
(5221, 1, 289, 10, 0.00, 0, 1),
(5222, 1, 289, 11, 0.00, 0, 1),
(5223, 1, 289, 12, 40000.00, 1, 1),
(5224, 1, 289, 13, 0.00, 0, 1),
(5225, 1, 289, 14, 0.00, 0, 1),
(5226, 1, 289, 15, 0.00, 0, 1),
(5227, 1, 290, 3, 0.00, 1, 1),
(5228, 1, 290, 4, 10000.00, 1, 1),
(5229, 1, 290, 5, 0.00, 0, 1),
(5230, 1, 290, 6, 20000.00, 1, 1),
(5231, 1, 290, 7, 0.00, 0, 1),
(5232, 1, 290, 8, 0.00, 0, 1),
(5233, 1, 290, 9, 0.00, 0, 1),
(5234, 1, 290, 10, 0.00, 0, 1),
(5235, 1, 290, 11, 0.00, 0, 1),
(5236, 1, 290, 12, 0.00, 0, 1),
(5237, 1, 290, 13, 0.00, 0, 1),
(5238, 1, 290, 14, 0.00, 0, 1),
(5239, 1, 290, 15, 0.00, 0, 1),
(5240, 1, 290, 3, 0.00, 1, 1),
(5241, 1, 290, 4, 350.00, 1, 1),
(5242, 1, 290, 5, 100.00, 1, 1),
(5243, 1, 290, 6, 450.00, 1, 1),
(5244, 1, 290, 7, 100.00, 1, 1),
(5245, 1, 290, 8, 0.00, 0, 1),
(5246, 1, 290, 9, 0.00, 0, 1),
(5247, 1, 290, 10, 0.00, 0, 1),
(5248, 1, 290, 11, 0.00, 0, 1),
(5249, 1, 290, 12, 0.00, 0, 1),
(5250, 1, 290, 13, 0.00, 0, 1),
(5251, 1, 290, 14, 0.00, 0, 1),
(5252, 1, 290, 15, 0.00, 0, 1),
(5253, 1, 291, 3, 0.00, 0, 1),
(5254, 1, 291, 4, 350000.00, 1, 1),
(5255, 1, 291, 5, 100000.00, 0, 1),
(5256, 1, 291, 6, 0.00, 0, 1),
(5257, 1, 291, 7, 100000.00, 0, 1),
(5258, 1, 291, 8, 0.00, 0, 1),
(5259, 1, 291, 9, 450000.00, 0, 1),
(5260, 1, 291, 10, 0.00, 0, 1),
(5261, 1, 291, 11, 0.00, 0, 1),
(5262, 1, 291, 12, 0.00, 0, 1),
(5263, 1, 291, 13, 0.00, 0, 1),
(5264, 1, 291, 14, 0.00, 0, 1),
(5265, 1, 291, 15, 0.00, 0, 1),
(5266, 1, 292, 3, 0.00, 0, 1),
(5267, 1, 292, 4, 0.00, 0, 1),
(5268, 1, 292, 5, 320000.00, 1, 1),
(5269, 1, 292, 6, 0.00, 0, 1),
(5270, 1, 292, 7, 680000.00, 0, 1),
(5271, 1, 292, 8, 0.00, 0, 1),
(5272, 1, 292, 9, 0.00, 0, 1),
(5273, 1, 292, 10, 0.00, 0, 1),
(5274, 1, 292, 11, 0.00, 0, 1),
(5275, 1, 292, 12, 0.00, 0, 1),
(5276, 1, 292, 13, 0.00, 0, 1),
(5277, 1, 292, 14, 0.00, 0, 1),
(5278, 1, 292, 15, 0.00, 0, 1),
(5279, 1, 293, 3, 450.00, 1, 1),
(5280, 1, 293, 4, 0.00, 0, 1),
(5281, 1, 293, 5, 250000.00, 1, 1),
(5282, 1, 293, 6, 0.00, 0, 1),
(5283, 1, 293, 7, 0.00, 0, 1),
(5284, 1, 293, 8, 0.00, 0, 1),
(5285, 1, 293, 9, 0.00, 0, 1),
(5286, 1, 293, 10, 0.00, 0, 1),
(5287, 1, 293, 11, 0.00, 0, 1),
(5288, 1, 293, 12, 0.00, 0, 1),
(5289, 1, 293, 13, 0.00, 0, 1),
(5290, 1, 293, 14, 0.00, 1, 1),
(5291, 1, 293, 15, 0.00, 0, 1),
(5292, 1, 294, 3, 0.00, 0, 1),
(5293, 1, 294, 4, 0.00, 0, 1),
(5294, 1, 294, 5, 800000.00, 1, 1),
(5295, 1, 294, 6, 0.00, 0, 1),
(5296, 1, 294, 7, 0.00, 0, 1),
(5297, 1, 294, 8, 0.00, 0, 1),
(5298, 1, 294, 9, 0.00, 0, 1),
(5299, 1, 294, 10, 0.00, 0, 1),
(5300, 1, 294, 11, 0.00, 0, 1),
(5301, 1, 294, 12, 0.00, 0, 1),
(5302, 1, 294, 13, 0.00, 0, 1),
(5303, 1, 294, 14, 0.00, 0, 1),
(5304, 1, 294, 15, 0.00, 0, 1),
(5305, 1, 295, 3, 0.00, 0, 1),
(5306, 1, 295, 4, 0.00, 0, 1),
(5307, 1, 295, 5, 0.00, 0, 1),
(5308, 1, 295, 6, 0.00, 0, 1),
(5309, 1, 295, 7, 100000.00, 1, 1),
(5310, 1, 295, 8, 0.00, 0, 1),
(5311, 1, 295, 9, 0.00, 0, 1),
(5312, 1, 295, 10, 0.00, 0, 1),
(5313, 1, 295, 11, 0.00, 0, 1),
(5314, 1, 295, 12, 0.00, 0, 1),
(5315, 1, 295, 13, 0.00, 0, 1),
(5316, 1, 295, 14, 0.00, 0, 1),
(5317, 1, 295, 15, 100000.00, 1, 1),
(5318, 1, 296, 3, 0.00, 0, 1),
(5319, 1, 296, 4, 0.00, 0, 1),
(5320, 1, 296, 5, 950000.00, 1, 1),
(5321, 1, 296, 6, 0.00, 0, 1),
(5322, 1, 296, 7, 0.00, 0, 1),
(5323, 1, 296, 8, 0.00, 0, 1),
(5324, 1, 296, 9, 0.00, 0, 1),
(5325, 1, 296, 10, 0.00, 0, 1),
(5326, 1, 296, 11, 0.00, 0, 1),
(5327, 1, 296, 12, 0.00, 0, 1),
(5328, 1, 296, 13, 0.00, 0, 1),
(5329, 1, 296, 14, 50000.00, 1, 1),
(5330, 1, 296, 15, 0.00, 0, 1),
(5331, 1, 297, 3, 0.00, 0, 1),
(5332, 1, 297, 4, 0.00, 0, 1),
(5333, 1, 297, 5, 0.00, 0, 1),
(5334, 1, 297, 6, 0.00, 0, 1),
(5335, 1, 297, 7, 0.00, 0, 1),
(5336, 1, 297, 8, 999999.00, 1, 1),
(5337, 1, 297, 9, 0.00, 0, 1),
(5338, 1, 297, 10, 0.00, 0, 1),
(5339, 1, 297, 11, 0.00, 0, 1),
(5340, 1, 297, 12, 0.00, 0, 1),
(5341, 1, 297, 13, 0.00, 0, 1),
(5342, 1, 297, 14, 0.00, 0, 1),
(5343, 1, 297, 15, 0.00, 0, 1),
(5344, 1, 298, 3, 0.00, 0, 1),
(5345, 1, 298, 4, 0.00, 0, 1),
(5346, 1, 298, 5, 0.00, 0, 1),
(5347, 1, 298, 6, 0.00, 0, 1),
(5348, 1, 298, 7, 1000000.00, 1, 1),
(5349, 1, 298, 8, 0.00, 0, 1),
(5350, 1, 298, 9, 0.00, 0, 1),
(5351, 1, 298, 10, 0.00, 0, 1),
(5352, 1, 298, 11, 0.00, 0, 1),
(5353, 1, 298, 12, 0.00, 0, 1),
(5354, 1, 298, 13, 0.00, 0, 1),
(5355, 1, 298, 14, 0.00, 0, 1),
(5356, 1, 298, 15, 0.00, 0, 1),
(5357, 1, 299, 3, 0.00, 0, 1),
(5358, 1, 299, 4, 0.00, 0, 1),
(5359, 1, 299, 5, 0.00, 0, 1),
(5360, 1, 299, 6, 0.00, 0, 1),
(5361, 1, 299, 7, 500000.00, 1, 1),
(5362, 1, 299, 8, 0.00, 0, 1),
(5363, 1, 299, 9, 0.00, 0, 1),
(5364, 1, 299, 10, 0.00, 0, 1),
(5365, 1, 299, 11, 0.00, 0, 1),
(5366, 1, 299, 12, 0.00, 1, 1),
(5367, 1, 299, 13, 0.00, 1, 1),
(5368, 1, 299, 14, 0.00, 1, 1),
(5369, 1, 299, 15, 0.00, 1, 1),
(5370, 1, 299, 16, 0.00, 0, 1),
(5371, 1, 299, 17, 0.00, 0, 1),
(5372, 1, 299, 18, 0.00, 0, 1),
(5373, 1, 299, 19, 0.00, 0, 1),
(5374, 1, 300, 3, 68.00, 1, 1),
(5375, 1, 300, 4, 886.60, 1, 1),
(5376, 1, 300, 5, 210020.00, 1, 1),
(5377, 1, 300, 6, 12.00, 0, 1),
(5378, 1, 300, 7, 749680.00, 1, 1),
(5379, 1, 300, 8, 0.00, 0, 1),
(5380, 1, 300, 9, 0.00, 0, 1),
(5381, 1, 300, 10, 0.00, 0, 1),
(5382, 1, 300, 11, 0.00, 0, 1),
(5383, 1, 300, 12, 6.00, 0, 1),
(5384, 1, 300, 13, 0.00, 0, 1),
(5385, 1, 300, 14, 0.00, 0, 1),
(5386, 1, 300, 15, 0.00, 0, 1),
(5387, 1, 301, 3, 1000000.00, 1, 1),
(5388, 1, 301, 4, 0.00, 0, 1),
(5389, 1, 301, 5, 0.00, 0, 1),
(5390, 1, 301, 6, 0.00, 0, 1),
(5391, 1, 301, 7, 0.00, 0, 1),
(5392, 1, 301, 8, 0.00, 0, 1),
(5393, 1, 301, 9, 0.00, 0, 1),
(5394, 1, 301, 10, 0.00, 0, 1),
(5395, 1, 301, 11, 0.00, 0, 1),
(5396, 1, 301, 12, 0.00, 0, 1),
(5397, 1, 301, 13, 0.00, 0, 1),
(5398, 1, 301, 14, 0.00, 0, 1),
(5399, 1, 301, 15, 0.00, 0, 1),
(5400, 1, 302, 3, 28.00, 1, 1),
(5401, 1, 302, 4, 120.00, 1, 1),
(5402, 1, 302, 5, 100000.00, 1, 1),
(5403, 1, 302, 6, 3.00, 1, 1),
(5404, 1, 302, 7, 768200.00, 0, 1),
(5405, 1, 302, 8, 0.00, 0, 1),
(5406, 1, 302, 9, 0.00, 0, 1),
(5407, 1, 302, 10, 0.00, 0, 1),
(5408, 1, 302, 11, 0.00, 0, 1),
(5409, 1, 302, 12, 3.00, 1, 1),
(5410, 1, 302, 13, 0.00, 0, 1),
(5411, 1, 302, 14, 0.00, 0, 1),
(5412, 1, 302, 15, 0.00, 0, 1),
(5413, 1, 303, 3, 0.00, 0, 1),
(5414, 1, 303, 4, 0.00, 0, 1),
(5415, 1, 303, 5, 0.00, 0, 1),
(5416, 1, 303, 6, 0.00, 0, 1),
(5417, 1, 303, 7, 0.00, 0, 1),
(5418, 1, 303, 8, 0.00, 0, 1),
(5419, 1, 303, 9, 999999.00, 1, 1),
(5420, 1, 303, 10, 0.00, 0, 1),
(5421, 1, 303, 11, 0.00, 0, 1),
(5422, 1, 303, 12, 0.00, 0, 1),
(5423, 1, 303, 13, 0.00, 0, 1),
(5424, 1, 303, 14, 0.00, 0, 1),
(5425, 1, 303, 15, 0.00, 0, 1),
(5426, 1, 304, 3, 0.00, 0, 1),
(5427, 1, 304, 4, 0.00, 0, 1),
(5428, 1, 304, 5, 0.00, 0, 1),
(5429, 1, 304, 6, 0.00, 0, 1),
(5430, 1, 304, 12, 0.00, 0, 1),
(5431, 1, 305, 3, 0.00, 1, 1),
(5432, 1, 305, 4, 0.00, 0, 1),
(5433, 1, 305, 5, 0.00, 0, 1),
(5434, 1, 305, 6, 0.00, 0, 1),
(5435, 1, 305, 12, 0.00, 0, 1),
(5436, 1, 306, 3, 0.00, 1, 1),
(5437, 1, 306, 4, 0.00, 0, 1),
(5438, 1, 306, 5, 0.00, 0, 1),
(5439, 1, 306, 6, 0.00, 0, 1),
(5440, 1, 306, 12, 0.00, 0, 1),
(5441, 1, 306, 13, 0.00, 0, 1),
(5442, 1, 306, 14, 0.00, 0, 1),
(5443, 1, 306, 15, 0.00, 0, 1),
(5444, 1, 306, 16, 0.00, 0, 1),
(5445, 1, 306, 17, 0.00, 0, 1),
(5446, 1, 306, 18, 0.00, 0, 1),
(5447, 1, 306, 19, 0.00, 0, 1),
(5448, 1, 307, 3, 0.00, 1, 1),
(5449, 1, 307, 4, 0.00, 0, 1),
(5450, 1, 307, 5, 0.00, 0, 1),
(5451, 1, 307, 6, 0.00, 0, 1),
(5452, 1, 307, 12, 0.00, 0, 1),
(5453, 1, 308, 3, 196.00, 1, 1),
(5454, 1, 308, 4, 1645.00, 1, 1),
(5455, 1, 308, 5, 220000.00, 1, 1),
(5456, 1, 308, 6, 14.00, 1, 1),
(5457, 1, 308, 12, 30.00, 1, 1),
(5458, 1, 309, 3, 0.00, 0, 1),
(5459, 1, 309, 4, 300.00, 0, 1),
(5460, 1, 309, 5, 240000.00, 1, 1),
(5461, 1, 309, 6, 0.00, 0, 1),
(5462, 1, 309, 12, 0.00, 0, 1),
(5463, 1, 310, 3, 0.00, 0, 1),
(5464, 1, 310, 4, 0.00, 0, 1),
(5465, 1, 310, 5, 265000.00, 1, 1),
(5466, 1, 310, 6, 0.00, 0, 1),
(5467, 1, 310, 12, 0.00, 0, 1),
(5468, 1, 311, 3, 60.00, 1, 1),
(5469, 1, 311, 4, 320.00, 1, 1),
(5470, 1, 311, 5, 184000.00, 1, 1),
(5471, 1, 311, 6, 0.00, 0, 1),
(5472, 1, 311, 12, 0.00, 0, 1),
(5473, 1, 312, 3, 0.00, 0, 1),
(5474, 1, 312, 4, 350.00, 1, 1),
(5475, 1, 312, 5, 240000.00, 1, 1),
(5476, 1, 312, 6, 0.00, 0, 1),
(5477, 1, 312, 12, 0.00, 0, 1),
(5478, 1, 313, 3, 67.00, 1, 1),
(5479, 1, 313, 4, 400.00, 1, 1),
(5480, 1, 313, 5, 170000.00, 1, 1),
(5481, 1, 313, 6, 20.00, 1, 1),
(5482, 1, 313, 12, 30.00, 1, 1),
(5483, 1, 314, 3, 0.00, 0, 1),
(5484, 1, 314, 4, 0.00, 0, 1),
(5485, 1, 314, 5, 1.00, 1, 1),
(5486, 1, 314, 6, 0.00, 0, 1),
(5487, 1, 314, 12, 0.00, 0, 1),
(5488, 1, 315, 3, 0.00, 0, 1),
(5489, 1, 315, 4, 600.00, 1, 1),
(5490, 1, 315, 5, 200000.00, 1, 1),
(5491, 1, 315, 6, 0.00, 0, 1),
(5492, 1, 315, 12, 0.00, 0, 1),
(5493, 1, 316, 3, 50.00, 1, 1),
(5494, 1, 316, 4, 200.00, 1, 1),
(5495, 1, 316, 5, 240000.00, 1, 1),
(5496, 1, 316, 6, 0.00, 0, 1),
(5497, 1, 316, 12, 0.00, 0, 1),
(5498, 1, 317, 3, 60.00, 1, 1),
(5499, 1, 317, 4, 200.00, 1, 1),
(5500, 1, 317, 5, 120000.00, 1, 1),
(5501, 1, 317, 6, 1.00, 0, 1),
(5502, 1, 317, 12, 1.00, 0, 1),
(5503, 1, 318, 3, 90.00, 1, 1),
(5504, 1, 318, 4, 666.00, 1, 1),
(5505, 1, 318, 5, 210000.00, 1, 1),
(5506, 1, 318, 6, 0.00, 0, 1),
(5507, 1, 318, 12, 0.00, 0, 1),
(5508, 1, 319, 3, 243.00, 1, 1),
(5509, 1, 319, 4, 1562.00, 1, 1),
(5510, 1, 319, 5, 220000.00, 1, 1),
(5511, 1, 319, 6, 15.00, 1, 1),
(5512, 1, 319, 12, 49.00, 1, 1),
(5513, 1, 320, 3, 97.10, 1, 1),
(5514, 1, 320, 4, 540.00, 1, 1),
(5515, 1, 320, 5, 212000.00, 1, 1),
(5516, 1, 320, 6, 0.00, 0, 1),
(5517, 1, 320, 12, 6.00, 1, 1),
(5518, 1, 321, 3, 88.00, 1, 1),
(5519, 1, 321, 4, 188.00, 1, 1),
(5520, 1, 321, 5, 250000.00, 1, 1),
(5521, 1, 321, 6, 0.00, 0, 1),
(5522, 1, 321, 12, 0.00, 0, 1),
(5523, 1, 322, 3, 222.00, 1, 1),
(5524, 1, 322, 4, 2222.00, 1, 1),
(5525, 1, 322, 5, 222222.00, 1, 1),
(5526, 1, 322, 6, 22.00, 1, 1),
(5527, 1, 322, 12, 2.00, 1, 1),
(5528, 1, 323, 3, 365.00, 1, 1),
(5529, 1, 323, 4, 1800.00, 1, 1),
(5530, 1, 323, 5, 350000.00, 1, 1),
(5531, 1, 323, 6, 35.00, 1, 1),
(5532, 1, 323, 12, 12.00, 1, 1),
(5533, 1, 324, 3, 112.00, 1, 1),
(5534, 1, 324, 4, 212.00, 1, 1),
(5535, 1, 324, 5, 310000.00, 1, 1),
(5536, 1, 324, 6, 21.00, 1, 1),
(5537, 1, 324, 12, 9.00, 1, 1),
(5538, 1, 325, 3, 800.00, 1, 1),
(5539, 1, 325, 4, 500.00, 1, 1),
(5540, 1, 325, 5, 210000.00, 1, 1),
(5541, 1, 325, 6, 0.00, 0, 1),
(5542, 1, 325, 12, 0.00, 0, 1),
(5543, 1, 326, 3, 1200.00, 1, 1),
(5544, 1, 326, 4, 1200.00, 1, 1),
(5545, 1, 326, 5, 215000.00, 1, 1),
(5546, 1, 326, 6, 0.00, 0, 1),
(5547, 1, 326, 12, 0.00, 0, 1),
(5548, 1, 327, 3, 2000.00, 1, 1),
(5549, 1, 327, 4, 2000.00, 1, 1),
(5550, 1, 327, 5, 250000.00, 1, 1),
(5551, 1, 327, 6, 0.00, 0, 1),
(5552, 1, 327, 12, 0.00, 0, 1),
(5553, 1, 328, 3, 144.00, 1, 1),
(5554, 1, 328, 4, 312.00, 1, 1),
(5555, 1, 328, 5, 310000.00, 1, 1),
(5556, 1, 328, 6, 1.00, 1, 1),
(5557, 1, 328, 12, 0.00, 1, 1),
(5558, 1, 328, 13, 0.00, 0, 1),
(5559, 1, 328, 14, 0.00, 0, 1),
(5560, 1, 328, 15, 0.00, 0, 1),
(5561, 1, 328, 16, 0.00, 0, 1),
(5562, 1, 328, 17, 0.00, 0, 1),
(5563, 1, 328, 18, 0.00, 0, 1),
(5564, 1, 328, 19, 0.00, 0, 1),
(5565, 1, 329, 3, 210.00, 1, 1),
(5566, 1, 329, 4, 1655.00, 1, 1),
(5567, 1, 329, 5, 262351.00, 1, 1),
(5568, 1, 329, 6, 3.00, 1, 1),
(5569, 1, 329, 12, 0.00, 0, 1),
(5570, 1, 329, 13, 0.00, 0, 1),
(5571, 1, 329, 14, 0.00, 0, 1),
(5572, 1, 329, 15, 0.00, 0, 1),
(5573, 1, 329, 16, 0.00, 0, 1),
(5574, 1, 329, 17, 0.00, 0, 1),
(5575, 1, 329, 18, 0.00, 0, 1),
(5576, 1, 329, 19, 0.00, 0, 1),
(5577, 1, 330, 3, 588.00, 1, 1),
(5578, 1, 330, 4, 0.00, 0, 1),
(5579, 1, 330, 5, 220000.00, 1, 1),
(5580, 1, 330, 6, 0.00, 0, 1),
(5581, 1, 330, 12, 0.00, 0, 1),
(5582, 1, 330, 13, 0.00, 0, 1),
(5583, 1, 330, 14, 0.00, 0, 1),
(5584, 1, 330, 15, 0.00, 0, 1),
(5585, 1, 330, 16, 0.00, 0, 1),
(5586, 1, 330, 17, 0.00, 0, 1),
(5587, 1, 330, 18, 0.00, 0, 1),
(5588, 1, 330, 19, 0.00, 0, 1),
(5589, 1, 331, 3, 144.00, 1, 1),
(5590, 1, 331, 4, 0.00, 0, 1),
(5591, 1, 331, 5, 220000.00, 1, 1),
(5592, 1, 331, 6, 0.00, 0, 1),
(5593, 1, 331, 12, 0.00, 0, 1),
(5594, 1, 331, 13, 0.00, 0, 1),
(5595, 1, 331, 14, 0.00, 0, 1),
(5596, 1, 331, 15, 0.00, 0, 1),
(5597, 1, 331, 16, 0.00, 0, 1),
(5598, 1, 331, 17, 0.00, 0, 1),
(5599, 1, 331, 18, 0.00, 0, 1),
(5600, 1, 331, 19, 0.00, 0, 1),
(5601, 1, 332, 3, 323.50, 1, 1),
(5602, 1, 332, 4, 0.00, 0, 1),
(5603, 1, 332, 5, 220000.00, 1, 1),
(5604, 1, 332, 6, 0.00, 0, 1),
(5605, 1, 332, 12, 0.00, 0, 1),
(5606, 1, 332, 13, 0.00, 0, 1),
(5607, 1, 332, 14, 0.00, 0, 1),
(5608, 1, 332, 15, 0.00, 0, 1),
(5609, 1, 332, 16, 0.00, 0, 1),
(5610, 1, 332, 17, 0.00, 0, 1),
(5611, 1, 332, 18, 0.00, 0, 1),
(5612, 1, 332, 19, 0.00, 0, 1),
(5613, 1, 333, 3, 1102.00, 1, 1),
(5614, 1, 333, 4, 2222.00, 1, 1),
(5615, 1, 333, 5, 222000.00, 1, 1),
(5616, 1, 333, 6, 33.00, 1, 1),
(5617, 1, 333, 12, 33.00, 1, 1),
(5618, 1, 334, 3, 677.00, 1, 1),
(5619, 1, 334, 4, 333.00, 1, 1),
(5620, 1, 334, 5, 220000.00, 1, 1),
(5621, 1, 334, 6, 20.00, 1, 1),
(5622, 1, 334, 12, 20.00, 1, 1),
(5623, 1, 335, 3, 510.40, 1, 1),
(5624, 1, 335, 4, 600.00, 1, 1),
(5625, 1, 335, 5, 220000.00, 1, 1),
(5626, 1, 335, 6, 20.00, 1, 1),
(5627, 1, 335, 12, 15.00, 1, 1),
(5628, 1, 336, 3, 264.00, 1, 1),
(5629, 1, 336, 4, 322.00, 1, 1),
(5630, 1, 336, 5, 202545.00, 1, 1),
(5631, 1, 336, 6, 15.00, 1, 1),
(5632, 1, 336, 12, 10.00, 1, 1),
(5633, 1, 337, 3, 0.00, 0, 1),
(5634, 1, 337, 4, 0.00, 0, 1),
(5635, 1, 337, 5, 280000.00, 1, 1),
(5636, 1, 337, 6, 0.00, 0, 1),
(5637, 1, 337, 12, 0.00, 0, 1),
(5638, 1, 338, 3, 0.00, 0, 1),
(5639, 1, 338, 4, 0.00, 0, 1),
(5640, 1, 338, 5, 230000.00, 1, 1),
(5641, 1, 338, 6, 0.00, 0, 1),
(5642, 1, 338, 12, 0.00, 0, 1),
(5643, 1, 339, 3, 0.00, 0, 1),
(5644, 1, 339, 4, 0.00, 0, 1),
(5645, 1, 339, 5, 180000.00, 1, 1),
(5646, 1, 339, 6, 0.00, 0, 1),
(5647, 1, 339, 12, 0.00, 0, 1),
(5648, 1, 340, 3, 0.00, 0, 1),
(5649, 1, 340, 4, 0.00, 0, 1),
(5650, 1, 340, 5, 0.00, 0, 1),
(5651, 1, 340, 6, 0.00, 0, 1),
(5652, 1, 340, 12, 0.00, 0, 1),
(5653, 1, 341, 3, 4186.30, 1, 1),
(5654, 1, 341, 4, 12845.00, 1, 1),
(5655, 1, 341, 5, 100277.00, 1, 1),
(5656, 1, 341, 6, 80.00, 1, 1),
(5657, 1, 341, 12, 1223.00, 1, 1),
(5658, 1, 342, 3, 8266.41, 1, 1),
(5659, 1, 342, 4, 17345.80, 1, 1),
(5660, 1, 342, 5, 81255.00, 1, 1),
(5661, 1, 342, 6, 94.20, 1, 1),
(5662, 1, 342, 12, 112.00, 1, 1),
(5663, 1, 343, 3, 1549.25, 1, 1),
(5664, 1, 343, 4, 12422.50, 1, 1),
(5665, 1, 343, 5, 89912.00, 1, 1),
(5666, 1, 343, 6, 114.00, 1, 1),
(5667, 1, 343, 12, 1212.00, 1, 1),
(5668, 1, 344, 3, 888.00, 1, 1),
(5669, 1, 344, 4, 7466.00, 1, 1),
(5670, 1, 344, 5, 120224.00, 1, 1),
(5671, 1, 344, 6, 160.00, 1, 1),
(5672, 1, 344, 12, 288.00, 1, 1),
(5673, 1, 345, 3, 321.00, 1, 1),
(5674, 1, 345, 4, 2100.00, 1, 1),
(5675, 1, 345, 5, 210000.00, 1, 1),
(5676, 1, 345, 6, 25.00, 1, 1),
(5677, 1, 345, 12, 212.00, 1, 1),
(5678, 1, 346, 3, 303.00, 1, 1),
(5679, 1, 346, 4, 480.00, 1, 1),
(5680, 1, 346, 5, 245000.00, 1, 1),
(5681, 1, 346, 6, 12.00, 1, 1),
(5682, 1, 346, 12, 88.00, 1, 1),
(5683, 1, 347, 3, 188.00, 1, 1),
(5684, 1, 347, 4, 2500.00, 1, 1),
(5685, 1, 347, 5, 265120.00, 1, 1),
(5686, 1, 347, 6, 28.00, 1, 1),
(5687, 1, 347, 12, 56.00, 1, 1),
(5688, 1, 348, 3, 112.00, 1, 1),
(5689, 1, 348, 4, 312.00, 1, 1),
(5690, 1, 348, 5, 242150.00, 1, 1),
(5691, 1, 348, 6, 8.00, 1, 1),
(5692, 1, 348, 12, 12.00, 1, 1),
(5693, 1, 349, 3, 68.00, 1, 1),
(5694, 1, 349, 4, 289.00, 1, 1),
(5695, 1, 349, 5, 289585.00, 1, 1),
(5696, 1, 349, 6, 13.00, 1, 1),
(5697, 1, 349, 12, 18.00, 1, 1),
(5698, 1, 350, 3, 291.00, 1, 1),
(5699, 1, 350, 4, 6499.00, 1, 1),
(5700, 1, 350, 5, 232024.00, 1, 1),
(5701, 1, 350, 6, 71.00, 1, 1),
(5702, 1, 350, 12, 81.00, 1, 1),
(5703, 1, 351, 3, 273.00, 1, 1),
(5704, 1, 351, 4, 400.00, 1, 1),
(5705, 1, 351, 5, 245612.00, 1, 1),
(5706, 1, 351, 6, 72.00, 1, 1),
(5707, 1, 351, 12, 58.00, 1, 1),
(5708, 1, 352, 3, 0.00, 0, 1),
(5709, 1, 352, 4, 0.00, 0, 1),
(5710, 1, 352, 5, 999999.00, 1, 1),
(5711, 1, 352, 6, 0.00, 0, 1),
(5712, 1, 352, 12, 0.00, 0, 1),
(5713, 1, 352, 13, 0.00, 0, 1),
(5714, 1, 352, 14, 0.00, 0, 1),
(5715, 1, 352, 15, 0.00, 0, 1),
(5716, 1, 352, 16, 0.00, 0, 1),
(5717, 1, 352, 17, 0.00, 0, 1),
(5718, 1, 352, 18, 0.00, 0, 1),
(5719, 1, 352, 19, 0.00, 0, 1),
(5720, 1, 353, 3, 0.00, 0, 1),
(5721, 1, 353, 4, 0.00, 0, 1),
(5722, 1, 353, 5, 880000.00, 1, 1),
(5723, 1, 353, 6, 0.00, 0, 1),
(5724, 1, 353, 12, 0.00, 0, 1),
(5725, 1, 353, 13, 0.00, 0, 1),
(5726, 1, 353, 14, 0.00, 0, 1),
(5727, 1, 353, 15, 0.00, 0, 1),
(5728, 1, 353, 16, 0.00, 0, 1),
(5729, 1, 353, 17, 0.00, 0, 1),
(5730, 1, 353, 18, 0.00, 0, 1),
(5731, 1, 353, 19, 0.00, 0, 1),
(5732, 1, 354, 3, 10.00, 1, 1),
(5733, 1, 354, 4, 30.00, 1, 1),
(5734, 1, 354, 5, 280000.00, 1, 1),
(5735, 1, 354, 6, 0.00, 0, 1),
(5736, 1, 354, 12, 0.00, 0, 1),
(5737, 1, 354, 13, 0.00, 0, 1),
(5738, 1, 354, 14, 0.00, 0, 1),
(5739, 1, 354, 15, 0.00, 0, 1),
(5740, 1, 354, 16, 0.00, 0, 1),
(5741, 1, 354, 17, 0.00, 0, 1),
(5742, 1, 354, 18, 0.00, 0, 1),
(5743, 1, 354, 19, 0.00, 0, 1),
(5744, 1, 355, 3, 0.00, 0, 1),
(5745, 1, 355, 4, 0.00, 0, 1),
(5746, 1, 355, 5, 0.00, 0, 1),
(5747, 1, 355, 6, 0.00, 0, 1),
(5748, 1, 355, 12, 0.00, 0, 1),
(5749, 1, 355, 13, 0.00, 0, 1),
(5750, 1, 355, 14, 0.00, 0, 1),
(5751, 1, 355, 15, 0.00, 0, 1),
(5752, 1, 355, 16, 0.00, 0, 1),
(5753, 1, 355, 17, 0.00, 0, 1),
(5754, 1, 355, 18, 0.00, 0, 1),
(5755, 1, 355, 19, 0.00, 0, 1),
(5756, 1, 356, 3, 0.00, 0, 1),
(5757, 1, 356, 4, 0.00, 0, 1),
(5758, 1, 356, 5, 0.00, 0, 1),
(5759, 1, 356, 6, 0.00, 0, 1),
(5760, 1, 356, 12, 0.00, 0, 1),
(5761, 1, 356, 13, 0.00, 0, 1),
(5762, 1, 356, 14, 0.00, 0, 1),
(5763, 1, 356, 15, 0.00, 0, 1),
(5764, 1, 356, 16, 0.00, 0, 1),
(5765, 1, 356, 17, 0.00, 0, 1),
(5766, 1, 356, 18, 0.00, 0, 1),
(5767, 1, 356, 19, 0.00, 0, 1),
(5768, 7, 357, 54, 32.51, 1, 1),
(5769, 7, 357, 56, 320000.00, 1, 1),
(5770, 7, 357, 57, 5.00, 0, 1),
(5771, 7, 357, 55, 400.00, 1, 1),
(5772, 7, 357, 7, 0.00, 0, 1),
(5773, 7, 357, 8, 0.00, 0, 1),
(5774, 7, 357, 9, 0.00, 0, 1),
(5775, 7, 357, 10, 0.00, 0, 1),
(5776, 7, 357, 11, 0.00, 0, 1),
(5777, 7, 357, 58, 0.00, 0, 1),
(5778, 7, 357, 59, 0.00, 0, 1),
(5779, 7, 357, 60, 0.00, 0, 1),
(5780, 7, 357, 61, 0.00, 0, 1),
(5781, 7, 358, 54, 60.00, 1, 1),
(5782, 7, 358, 56, 251600.00, 1, 1),
(5783, 7, 358, 57, 10.00, 1, 1),
(5784, 7, 358, 55, 18000.00, 1, 1),
(5785, 7, 358, 7, 0.00, 0, 1),
(5786, 7, 358, 8, 0.00, 0, 1),
(5787, 7, 358, 9, 0.00, 0, 1),
(5788, 7, 358, 10, 0.00, 0, 1),
(5789, 7, 358, 11, 0.00, 0, 1),
(5790, 7, 358, 58, 100.00, 1, 1),
(5791, 7, 358, 59, 0.00, 0, 1),
(5792, 7, 358, 60, 0.00, 0, 1),
(5793, 7, 358, 61, 0.00, 0, 1),
(5794, 7, 359, 54, 300.00, 1, 1),
(5795, 7, 359, 56, 600000.00, 1, 1),
(5796, 7, 359, 57, 1.00, 0, 1),
(5797, 7, 359, 55, 1500.00, 0, 1),
(5798, 7, 359, 7, 0.00, 0, 1),
(5799, 7, 359, 8, 0.00, 0, 1),
(5800, 7, 359, 9, 0.00, 0, 1),
(5801, 7, 359, 10, 0.00, 0, 1),
(5802, 7, 359, 11, 0.00, 0, 1),
(5803, 7, 359, 58, 0.00, 0, 1),
(5804, 7, 359, 59, 0.00, 0, 1),
(5805, 7, 359, 60, 0.00, 0, 1),
(5806, 7, 359, 61, 0.00, 0, 1),
(5807, 7, 360, 54, 0.00, 1, 1),
(5808, 7, 360, 56, 0.00, 0, 1),
(5809, 7, 360, 57, 0.00, 0, 1),
(5810, 7, 360, 55, 0.00, 1, 1),
(5811, 7, 360, 7, 0.00, 0, 1),
(5812, 7, 360, 8, 0.00, 0, 1),
(5813, 7, 360, 9, 0.00, 0, 1),
(5814, 7, 360, 10, 0.00, 0, 1),
(5815, 7, 360, 11, 0.00, 0, 1),
(5816, 7, 360, 58, 0.00, 0, 1),
(5817, 7, 360, 59, 0.00, 0, 1),
(5818, 7, 360, 60, 0.00, 1, 1),
(5819, 7, 360, 61, 0.00, 1, 1),
(5820, 7, 361, 54, 0.00, 0, 1),
(5821, 7, 361, 56, 0.00, 0, 1),
(5822, 7, 361, 57, 0.00, 0, 1),
(5823, 7, 361, 55, 0.00, 0, 1),
(5824, 7, 361, 7, 0.00, 0, 1),
(5825, 7, 361, 8, 0.00, 0, 1),
(5826, 7, 361, 9, 0.00, 0, 1),
(5827, 7, 361, 10, 0.00, 0, 1),
(5828, 7, 361, 11, 0.00, 0, 1),
(5829, 7, 361, 58, 0.00, 0, 1),
(5830, 7, 361, 59, 0.00, 0, 1),
(5831, 7, 361, 60, 0.00, 0, 1),
(5832, 7, 361, 61, 0.00, 0, 1),
(5833, 7, 362, 54, 40.00, 1, 1),
(5834, 7, 362, 56, 270000.00, 1, 1),
(5835, 7, 362, 57, 0.00, 0, 1),
(5836, 7, 362, 55, 950.00, 1, 1),
(5837, 7, 362, 7, 0.00, 0, 1),
(5838, 7, 362, 8, 0.00, 0, 1),
(5839, 7, 362, 9, 0.00, 0, 1),
(5840, 7, 362, 10, 0.00, 0, 1),
(5841, 7, 362, 11, 0.00, 0, 1),
(5842, 7, 362, 58, 0.00, 0, 1),
(5843, 7, 362, 59, 0.00, 0, 1),
(5844, 7, 362, 60, 0.00, 0, 1),
(5845, 7, 362, 61, 0.00, 0, 1),
(5846, 7, 363, 54, 60.00, 1, 1),
(5847, 7, 363, 56, 244787.00, 1, 1),
(5848, 7, 363, 57, 5.00, 1, 1),
(5849, 7, 363, 55, 300.00, 1, 1),
(5850, 7, 363, 7, 0.00, 0, 1),
(5851, 7, 363, 8, 0.00, 0, 1),
(5852, 7, 363, 9, 0.00, 0, 1),
(5853, 7, 363, 10, 0.00, 0, 1),
(5854, 7, 363, 11, 0.00, 0, 1),
(5855, 7, 363, 58, 5.00, 1, 1),
(5856, 7, 363, 59, 0.00, 0, 1),
(5857, 7, 363, 60, 0.00, 0, 1),
(5858, 7, 363, 61, 0.00, 0, 1),
(5859, 7, 364, 54, 0.00, 0, 1),
(5860, 7, 364, 55, 200000.00, 1, 1),
(5861, 7, 364, 56, 200000.00, 1, 1),
(5862, 7, 364, 57, 0.00, 0, 1),
(5863, 7, 364, 7, 0.00, 0, 1),
(5864, 7, 364, 8, 10000.00, 1, 1),
(5865, 7, 364, 9, 0.00, 0, 1),
(5866, 7, 364, 10, 0.00, 0, 1),
(5867, 7, 364, 11, 0.00, 0, 1),
(5868, 7, 364, 58, 40000.00, 1, 1),
(5869, 7, 364, 59, 0.00, 0, 1),
(5870, 7, 364, 60, 0.00, 0, 1),
(5871, 7, 364, 61, 0.00, 0, 1),
(5872, 7, 365, 54, 0.00, 1, 1),
(5873, 7, 365, 55, 10000.00, 1, 1),
(5874, 7, 365, 56, 0.00, 0, 1),
(5875, 7, 365, 57, 20000.00, 1, 1),
(5876, 7, 365, 7, 0.00, 0, 1),
(5877, 7, 365, 8, 0.00, 0, 1),
(5878, 7, 365, 9, 0.00, 0, 1),
(5879, 7, 365, 10, 0.00, 0, 1),
(5880, 7, 365, 11, 0.00, 0, 1),
(5881, 7, 365, 58, 0.00, 0, 1),
(5882, 7, 365, 59, 0.00, 0, 1),
(5883, 7, 365, 60, 0.00, 0, 1),
(5884, 7, 365, 61, 0.00, 0, 1),
(5885, 7, 365, 54, 0.00, 1, 1),
(5886, 7, 365, 55, 350.00, 1, 1),
(5887, 7, 365, 56, 100.00, 1, 1),
(5888, 7, 365, 57, 450.00, 1, 1),
(5889, 7, 365, 7, 100.00, 1, 1),
(5890, 7, 365, 8, 0.00, 0, 1),
(5891, 7, 365, 9, 0.00, 0, 1),
(5892, 7, 365, 10, 0.00, 0, 1),
(5893, 7, 365, 11, 0.00, 0, 1),
(5894, 7, 365, 58, 0.00, 0, 1),
(5895, 7, 365, 59, 0.00, 0, 1),
(5896, 7, 365, 60, 0.00, 0, 1),
(5897, 7, 365, 61, 0.00, 0, 1),
(5898, 7, 366, 54, 0.00, 0, 1),
(5899, 7, 366, 55, 350000.00, 1, 1),
(5900, 7, 366, 56, 100000.00, 0, 1),
(5901, 7, 366, 57, 0.00, 0, 1),
(5902, 7, 366, 7, 100000.00, 0, 1),
(5903, 7, 366, 8, 0.00, 0, 1),
(5904, 7, 366, 9, 450000.00, 0, 1),
(5905, 7, 366, 10, 0.00, 0, 1),
(5906, 7, 366, 11, 0.00, 0, 1),
(5907, 7, 366, 58, 0.00, 0, 1),
(5908, 7, 366, 59, 0.00, 0, 1),
(5909, 7, 366, 60, 0.00, 0, 1),
(5910, 7, 366, 61, 0.00, 0, 1),
(5911, 7, 367, 54, 0.00, 0, 1),
(5912, 7, 367, 55, 0.00, 0, 1),
(5913, 7, 367, 56, 320000.00, 1, 1),
(5914, 7, 367, 57, 0.00, 0, 1),
(5915, 7, 367, 7, 680000.00, 0, 1),
(5916, 7, 367, 8, 0.00, 0, 1),
(5917, 7, 367, 9, 0.00, 0, 1),
(5918, 7, 367, 10, 0.00, 0, 1),
(5919, 7, 367, 11, 0.00, 0, 1),
(5920, 7, 367, 58, 0.00, 0, 1),
(5921, 7, 367, 59, 0.00, 0, 1),
(5922, 7, 367, 60, 0.00, 0, 1),
(5923, 7, 367, 61, 0.00, 0, 1),
(5924, 7, 368, 54, 450.00, 1, 1),
(5925, 7, 368, 55, 0.00, 0, 1),
(5926, 7, 368, 56, 250000.00, 1, 1),
(5927, 7, 368, 57, 0.00, 0, 1),
(5928, 7, 368, 7, 0.00, 0, 1),
(5929, 7, 368, 8, 0.00, 0, 1),
(5930, 7, 368, 9, 0.00, 0, 1),
(5931, 7, 368, 10, 0.00, 0, 1),
(5932, 7, 368, 11, 0.00, 0, 1),
(5933, 7, 368, 58, 0.00, 0, 1),
(5934, 7, 368, 59, 0.00, 0, 1),
(5935, 7, 368, 60, 0.00, 1, 1),
(5936, 7, 368, 61, 0.00, 0, 1),
(5937, 7, 369, 54, 0.00, 0, 1),
(5938, 7, 369, 55, 0.00, 0, 1),
(5939, 7, 369, 56, 800000.00, 1, 1),
(5940, 7, 369, 57, 0.00, 0, 1),
(5941, 7, 369, 7, 0.00, 0, 1),
(5942, 7, 369, 8, 0.00, 0, 1),
(5943, 7, 369, 9, 0.00, 0, 1),
(5944, 7, 369, 10, 0.00, 0, 1),
(5945, 7, 369, 11, 0.00, 0, 1),
(5946, 7, 369, 58, 0.00, 0, 1),
(5947, 7, 369, 59, 0.00, 0, 1),
(5948, 7, 369, 60, 0.00, 0, 1),
(5949, 7, 369, 61, 0.00, 0, 1),
(5950, 7, 370, 54, 0.00, 0, 1),
(5951, 7, 370, 55, 0.00, 0, 1),
(5952, 7, 370, 56, 0.00, 0, 1),
(5953, 7, 370, 57, 0.00, 0, 1),
(5954, 7, 370, 7, 100000.00, 1, 1),
(5955, 7, 370, 8, 0.00, 0, 1),
(5956, 7, 370, 9, 0.00, 0, 1),
(5957, 7, 370, 10, 0.00, 0, 1),
(5958, 7, 370, 11, 0.00, 0, 1),
(5959, 7, 370, 58, 0.00, 0, 1),
(5960, 7, 370, 59, 0.00, 0, 1),
(5961, 7, 370, 60, 0.00, 0, 1),
(5962, 7, 370, 61, 100000.00, 1, 1),
(5963, 7, 371, 54, 0.00, 0, 1),
(5964, 7, 371, 55, 0.00, 0, 1),
(5965, 7, 371, 56, 950000.00, 1, 1),
(5966, 7, 371, 57, 0.00, 0, 1),
(5967, 7, 371, 7, 0.00, 0, 1),
(5968, 7, 371, 8, 0.00, 0, 1),
(5969, 7, 371, 9, 0.00, 0, 1),
(5970, 7, 371, 10, 0.00, 0, 1),
(5971, 7, 371, 11, 0.00, 0, 1),
(5972, 7, 371, 58, 0.00, 0, 1),
(5973, 7, 371, 59, 0.00, 0, 1),
(5974, 7, 371, 60, 50000.00, 1, 1),
(5975, 7, 371, 61, 0.00, 0, 1),
(5976, 7, 372, 54, 0.00, 0, 1),
(5977, 7, 372, 55, 0.00, 0, 1),
(5978, 7, 372, 56, 0.00, 0, 1),
(5979, 7, 372, 57, 0.00, 0, 1),
(5980, 7, 372, 7, 0.00, 0, 1),
(5981, 7, 372, 8, 999999.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(5982, 7, 372, 9, 0.00, 0, 1),
(5983, 7, 372, 10, 0.00, 0, 1),
(5984, 7, 372, 11, 0.00, 0, 1),
(5985, 7, 372, 58, 0.00, 0, 1),
(5986, 7, 372, 59, 0.00, 0, 1),
(5987, 7, 372, 60, 0.00, 0, 1),
(5988, 7, 372, 61, 0.00, 0, 1),
(5989, 7, 373, 54, 0.00, 0, 1),
(5990, 7, 373, 55, 0.00, 0, 1),
(5991, 7, 373, 56, 0.00, 0, 1),
(5992, 7, 373, 57, 0.00, 0, 1),
(5993, 7, 373, 7, 1000000.00, 1, 1),
(5994, 7, 373, 8, 0.00, 0, 1),
(5995, 7, 373, 9, 0.00, 0, 1),
(5996, 7, 373, 10, 0.00, 0, 1),
(5997, 7, 373, 11, 0.00, 0, 1),
(5998, 7, 373, 58, 0.00, 0, 1),
(5999, 7, 373, 59, 0.00, 0, 1),
(6000, 7, 373, 60, 0.00, 0, 1),
(6001, 7, 373, 61, 0.00, 0, 1),
(6002, 7, 374, 54, 0.00, 0, 1),
(6003, 7, 374, 55, 0.00, 0, 1),
(6004, 7, 374, 56, 0.00, 0, 1),
(6005, 7, 374, 57, 0.00, 0, 1),
(6006, 7, 374, 7, 500000.00, 1, 1),
(6007, 7, 374, 8, 0.00, 0, 1),
(6008, 7, 374, 9, 0.00, 0, 1),
(6009, 7, 374, 10, 0.00, 0, 1),
(6010, 7, 374, 11, 0.00, 0, 1),
(6011, 7, 374, 58, 0.00, 1, 1),
(6012, 7, 374, 59, 0.00, 1, 1),
(6013, 7, 374, 60, 0.00, 1, 1),
(6014, 7, 374, 61, 0.00, 1, 1),
(6015, 7, 374, 62, 0.00, 0, 1),
(6016, 7, 374, 63, 0.00, 0, 1),
(6017, 7, 374, 64, 0.00, 0, 1),
(6018, 7, 374, 19, 0.00, 0, 1),
(6019, 7, 375, 54, 68.00, 1, 1),
(6020, 7, 375, 55, 886.60, 1, 1),
(6021, 7, 375, 56, 210020.00, 1, 1),
(6022, 7, 375, 57, 12.00, 0, 1),
(6023, 7, 375, 7, 749680.00, 1, 1),
(6024, 7, 375, 8, 0.00, 0, 1),
(6025, 7, 375, 9, 0.00, 0, 1),
(6026, 7, 375, 10, 0.00, 0, 1),
(6027, 7, 375, 11, 0.00, 0, 1),
(6028, 7, 375, 58, 6.00, 0, 1),
(6029, 7, 375, 59, 0.00, 0, 1),
(6030, 7, 375, 60, 0.00, 0, 1),
(6031, 7, 375, 61, 0.00, 0, 1),
(6032, 7, 376, 54, 1000000.00, 1, 1),
(6033, 7, 376, 55, 0.00, 0, 1),
(6034, 7, 376, 56, 0.00, 0, 1),
(6035, 7, 376, 57, 0.00, 0, 1),
(6036, 7, 376, 7, 0.00, 0, 1),
(6037, 7, 376, 8, 0.00, 0, 1),
(6038, 7, 376, 9, 0.00, 0, 1),
(6039, 7, 376, 10, 0.00, 0, 1),
(6040, 7, 376, 11, 0.00, 0, 1),
(6041, 7, 376, 58, 0.00, 0, 1),
(6042, 7, 376, 59, 0.00, 0, 1),
(6043, 7, 376, 60, 0.00, 0, 1),
(6044, 7, 376, 61, 0.00, 0, 1),
(6045, 7, 377, 54, 28.00, 1, 1),
(6046, 7, 377, 55, 120.00, 1, 1),
(6047, 7, 377, 56, 100000.00, 1, 1),
(6048, 7, 377, 57, 3.00, 1, 1),
(6049, 7, 377, 7, 768200.00, 0, 1),
(6050, 7, 377, 8, 0.00, 0, 1),
(6051, 7, 377, 9, 0.00, 0, 1),
(6052, 7, 377, 10, 0.00, 0, 1),
(6053, 7, 377, 11, 0.00, 0, 1),
(6054, 7, 377, 58, 3.00, 1, 1),
(6055, 7, 377, 59, 0.00, 0, 1),
(6056, 7, 377, 60, 0.00, 0, 1),
(6057, 7, 377, 61, 0.00, 0, 1),
(6058, 7, 378, 54, 0.00, 0, 1),
(6059, 7, 378, 55, 0.00, 0, 1),
(6060, 7, 378, 56, 0.00, 0, 1),
(6061, 7, 378, 57, 0.00, 0, 1),
(6062, 7, 378, 7, 0.00, 0, 1),
(6063, 7, 378, 8, 0.00, 0, 1),
(6064, 7, 378, 9, 999999.00, 1, 1),
(6065, 7, 378, 10, 0.00, 0, 1),
(6066, 7, 378, 11, 0.00, 0, 1),
(6067, 7, 378, 58, 0.00, 0, 1),
(6068, 7, 378, 59, 0.00, 0, 1),
(6069, 7, 378, 60, 0.00, 0, 1),
(6070, 7, 378, 61, 0.00, 0, 1),
(6071, 7, 379, 54, 0.00, 0, 1),
(6072, 7, 379, 55, 0.00, 0, 1),
(6073, 7, 379, 56, 0.00, 0, 1),
(6074, 7, 379, 57, 0.00, 0, 1),
(6075, 7, 379, 58, 0.00, 0, 1),
(6076, 7, 380, 54, 0.00, 1, 1),
(6077, 7, 380, 55, 0.00, 0, 1),
(6078, 7, 380, 56, 0.00, 0, 1),
(6079, 7, 380, 57, 0.00, 0, 1),
(6080, 7, 380, 58, 0.00, 0, 1),
(6081, 7, 381, 54, 0.00, 1, 1),
(6082, 7, 381, 55, 0.00, 0, 1),
(6083, 7, 381, 56, 0.00, 0, 1),
(6084, 7, 381, 57, 0.00, 0, 1),
(6085, 7, 381, 58, 0.00, 0, 1),
(6086, 7, 381, 59, 0.00, 0, 1),
(6087, 7, 381, 60, 0.00, 0, 1),
(6088, 7, 381, 61, 0.00, 0, 1),
(6089, 7, 381, 62, 0.00, 0, 1),
(6090, 7, 381, 63, 0.00, 0, 1),
(6091, 7, 381, 64, 0.00, 0, 1),
(6092, 7, 381, 19, 0.00, 0, 1),
(6093, 7, 382, 54, 0.00, 1, 1),
(6094, 7, 382, 55, 0.00, 0, 1),
(6095, 7, 382, 56, 0.00, 0, 1),
(6096, 7, 382, 57, 0.00, 0, 1),
(6097, 7, 382, 58, 0.00, 0, 1),
(6098, 7, 383, 54, 196.00, 1, 1),
(6099, 7, 383, 55, 1645.00, 1, 1),
(6100, 7, 383, 56, 220000.00, 1, 1),
(6101, 7, 383, 57, 14.00, 1, 1),
(6102, 7, 383, 58, 30.00, 1, 1),
(6103, 7, 384, 54, 0.00, 0, 1),
(6104, 7, 384, 55, 300.00, 0, 1),
(6105, 7, 384, 56, 240000.00, 1, 1),
(6106, 7, 384, 57, 0.00, 0, 1),
(6107, 7, 384, 58, 0.00, 0, 1),
(6108, 7, 385, 54, 0.00, 0, 1),
(6109, 7, 385, 55, 0.00, 0, 1),
(6110, 7, 385, 56, 265000.00, 1, 1),
(6111, 7, 385, 57, 0.00, 0, 1),
(6112, 7, 385, 58, 0.00, 0, 1),
(6113, 7, 386, 54, 60.00, 1, 1),
(6114, 7, 386, 55, 320.00, 1, 1),
(6115, 7, 386, 56, 184000.00, 1, 1),
(6116, 7, 386, 57, 0.00, 0, 1),
(6117, 7, 386, 58, 0.00, 0, 1),
(6118, 7, 387, 54, 0.00, 0, 1),
(6119, 7, 387, 55, 350.00, 1, 1),
(6120, 7, 387, 56, 240000.00, 1, 1),
(6121, 7, 387, 57, 0.00, 0, 1),
(6122, 7, 387, 58, 0.00, 0, 1),
(6123, 7, 388, 54, 67.00, 1, 1),
(6124, 7, 388, 55, 400.00, 1, 1),
(6125, 7, 388, 56, 170000.00, 1, 1),
(6126, 7, 388, 57, 20.00, 1, 1),
(6127, 7, 388, 58, 30.00, 1, 1),
(6128, 7, 389, 54, 0.00, 0, 1),
(6129, 7, 389, 55, 0.00, 0, 1),
(6130, 7, 389, 56, 1.00, 1, 1),
(6131, 7, 389, 57, 0.00, 0, 1),
(6132, 7, 389, 58, 0.00, 0, 1),
(6133, 7, 390, 54, 0.00, 0, 1),
(6134, 7, 390, 55, 600.00, 1, 1),
(6135, 7, 390, 56, 200000.00, 1, 1),
(6136, 7, 390, 57, 0.00, 0, 1),
(6137, 7, 390, 58, 0.00, 0, 1),
(6138, 7, 391, 54, 50.00, 1, 1),
(6139, 7, 391, 55, 200.00, 1, 1),
(6140, 7, 391, 56, 240000.00, 1, 1),
(6141, 7, 391, 57, 0.00, 0, 1),
(6142, 7, 391, 58, 0.00, 0, 1),
(6143, 7, 392, 54, 60.00, 1, 1),
(6144, 7, 392, 55, 200.00, 1, 1),
(6145, 7, 392, 56, 120000.00, 1, 1),
(6146, 7, 392, 57, 1.00, 0, 1),
(6147, 7, 392, 58, 1.00, 0, 1),
(6148, 7, 393, 54, 90.00, 1, 1),
(6149, 7, 393, 55, 666.00, 1, 1),
(6150, 7, 393, 56, 210000.00, 1, 1),
(6151, 7, 393, 57, 0.00, 0, 1),
(6152, 7, 393, 58, 0.00, 0, 1),
(6153, 7, 394, 54, 243.00, 1, 1),
(6154, 7, 394, 55, 1562.00, 1, 1),
(6155, 7, 394, 56, 220000.00, 1, 1),
(6156, 7, 394, 57, 15.00, 1, 1),
(6157, 7, 394, 58, 49.00, 1, 1),
(6158, 7, 395, 54, 97.10, 1, 1),
(6159, 7, 395, 55, 540.00, 1, 1),
(6160, 7, 395, 56, 212000.00, 1, 1),
(6161, 7, 395, 57, 0.00, 0, 1),
(6162, 7, 395, 58, 6.00, 1, 1),
(6163, 7, 396, 54, 88.00, 1, 1),
(6164, 7, 396, 55, 188.00, 1, 1),
(6165, 7, 396, 56, 250000.00, 1, 1),
(6166, 7, 396, 57, 0.00, 0, 1),
(6167, 7, 396, 58, 0.00, 0, 1),
(6168, 7, 397, 54, 222.00, 1, 1),
(6169, 7, 397, 55, 2222.00, 1, 1),
(6170, 7, 397, 56, 222222.00, 1, 1),
(6171, 7, 397, 57, 22.00, 1, 1),
(6172, 7, 397, 58, 2.00, 1, 1),
(6173, 7, 398, 54, 365.00, 1, 1),
(6174, 7, 398, 55, 1800.00, 1, 1),
(6175, 7, 398, 56, 350000.00, 1, 1),
(6176, 7, 398, 57, 35.00, 1, 1),
(6177, 7, 398, 58, 12.00, 1, 1),
(6178, 7, 399, 54, 112.00, 1, 1),
(6179, 7, 399, 55, 212.00, 1, 1),
(6180, 7, 399, 56, 310000.00, 1, 1),
(6181, 7, 399, 57, 21.00, 1, 1),
(6182, 7, 399, 58, 9.00, 1, 1),
(6183, 7, 400, 54, 800.00, 1, 1),
(6184, 7, 400, 55, 500.00, 1, 1),
(6185, 7, 400, 56, 210000.00, 1, 1),
(6186, 7, 400, 57, 0.00, 0, 1),
(6187, 7, 400, 58, 0.00, 0, 1),
(6188, 7, 401, 54, 1200.00, 1, 1),
(6189, 7, 401, 55, 1200.00, 0, 1),
(6190, 7, 401, 56, 215000.00, 0, 1),
(6191, 7, 401, 57, 0.00, 0, 1),
(6192, 7, 401, 58, 0.00, 0, 1),
(6193, 7, 402, 54, 2000.00, 1, 1),
(6194, 7, 402, 55, 2000.00, 1, 1),
(6195, 7, 402, 56, 250000.00, 1, 1),
(6196, 7, 402, 57, 0.00, 0, 1),
(6197, 7, 402, 58, 0.00, 0, 1),
(6198, 7, 403, 54, 144.00, 1, 1),
(6199, 7, 403, 55, 312.00, 1, 1),
(6200, 7, 403, 56, 310000.00, 1, 1),
(6201, 7, 403, 57, 1.00, 1, 1),
(6202, 7, 403, 58, 0.00, 1, 1),
(6203, 7, 403, 59, 0.00, 0, 1),
(6204, 7, 403, 60, 0.00, 0, 1),
(6205, 7, 403, 61, 0.00, 0, 1),
(6206, 7, 403, 62, 0.00, 0, 1),
(6207, 7, 403, 63, 0.00, 0, 1),
(6208, 7, 403, 64, 0.00, 0, 1),
(6209, 7, 403, 19, 0.00, 0, 1),
(6210, 7, 404, 54, 210.00, 1, 1),
(6211, 7, 404, 55, 1655.00, 1, 1),
(6212, 7, 404, 56, 262351.00, 1, 1),
(6213, 7, 404, 57, 3.00, 1, 1),
(6214, 7, 404, 58, 0.00, 0, 1),
(6215, 7, 404, 59, 0.00, 0, 1),
(6216, 7, 404, 60, 0.00, 0, 1),
(6217, 7, 404, 61, 0.00, 0, 1),
(6218, 7, 404, 62, 0.00, 0, 1),
(6219, 7, 404, 63, 0.00, 0, 1),
(6220, 7, 404, 64, 0.00, 0, 1),
(6221, 7, 404, 19, 0.00, 0, 1),
(6222, 7, 405, 54, 588.00, 1, 1),
(6223, 7, 405, 55, 0.00, 0, 1),
(6224, 7, 405, 56, 220000.00, 1, 1),
(6225, 7, 405, 57, 0.00, 0, 1),
(6226, 7, 405, 58, 0.00, 0, 1),
(6227, 7, 405, 59, 0.00, 0, 1),
(6228, 7, 405, 60, 0.00, 0, 1),
(6229, 7, 405, 61, 0.00, 0, 1),
(6230, 7, 405, 62, 0.00, 0, 1),
(6231, 7, 405, 63, 0.00, 0, 1),
(6232, 7, 405, 64, 0.00, 0, 1),
(6233, 7, 405, 19, 0.00, 0, 1),
(6234, 7, 406, 54, 14.00, 1, 1),
(6235, 7, 406, 55, 41.00, 0, 1),
(6236, 7, 406, 56, 220000.00, 1, 1),
(6237, 7, 406, 57, 0.00, 0, 1),
(6238, 7, 406, 58, 0.00, 0, 1),
(6239, 7, 406, 59, 0.00, 0, 1),
(6240, 7, 406, 60, 0.00, 0, 1),
(6241, 7, 406, 61, 0.00, 0, 1),
(6242, 7, 406, 62, 0.00, 0, 1),
(6243, 7, 406, 63, 0.00, 0, 1),
(6244, 7, 406, 64, 0.00, 0, 1),
(6245, 7, 406, 19, 0.00, 0, 1),
(6246, 7, 407, 54, 280.50, 1, 1),
(6247, 7, 407, 55, 41.00, 0, 1),
(6248, 7, 407, 56, 220000.00, 1, 1),
(6249, 7, 407, 57, 0.00, 0, 1),
(6250, 7, 407, 58, 0.00, 0, 1),
(6251, 7, 407, 59, 0.00, 0, 1),
(6252, 7, 407, 60, 0.00, 0, 1),
(6253, 7, 407, 61, 0.00, 0, 1),
(6254, 7, 407, 62, 0.00, 0, 1),
(6255, 7, 407, 63, 0.00, 0, 1),
(6256, 7, 407, 64, 0.00, 0, 1),
(6257, 7, 407, 19, 0.00, 0, 1),
(6258, 7, 408, 54, 1102.00, 1, 1),
(6259, 7, 408, 55, 2222.00, 1, 1),
(6260, 7, 408, 56, 222000.00, 1, 1),
(6261, 7, 408, 57, 33.00, 0, 1),
(6262, 7, 408, 58, 33.00, 0, 1),
(6263, 7, 409, 54, 677.00, 1, 1),
(6264, 7, 409, 55, 333.00, 1, 1),
(6265, 7, 409, 56, 220000.00, 1, 1),
(6266, 7, 409, 57, 20.00, 1, 1),
(6267, 7, 409, 58, 20.00, 1, 1),
(6268, 7, 410, 54, 510.40, 1, 1),
(6269, 7, 410, 55, 600.00, 1, 1),
(6270, 7, 410, 56, 220000.00, 1, 1),
(6271, 7, 410, 57, 20.00, 1, 1),
(6272, 7, 410, 58, 15.00, 1, 1),
(6273, 7, 411, 54, 264.00, 1, 1),
(6274, 7, 411, 55, 322.00, 1, 1),
(6275, 7, 411, 56, 202545.00, 1, 1),
(6276, 7, 411, 57, 15.00, 1, 1),
(6277, 7, 411, 58, 10.00, 1, 1),
(6278, 7, 412, 54, 0.00, 0, 1),
(6279, 7, 412, 55, 0.00, 0, 1),
(6280, 7, 412, 56, 364530.00, 1, 1),
(6281, 7, 412, 57, 0.00, 0, 1),
(6282, 7, 412, 58, 0.00, 0, 1),
(6283, 7, 413, 54, 0.00, 0, 1),
(6284, 7, 413, 55, 0.00, 0, 1),
(6285, 7, 413, 56, 140000.00, 1, 1),
(6286, 7, 413, 57, 0.00, 0, 1),
(6287, 7, 413, 58, 0.00, 0, 1),
(6288, 7, 414, 54, 0.00, 0, 1),
(6289, 7, 414, 55, 0.00, 0, 1),
(6290, 7, 414, 56, 72000.00, 1, 1),
(6291, 7, 414, 57, 0.00, 0, 1),
(6292, 7, 414, 58, 0.00, 0, 1),
(6293, 7, 415, 54, 0.00, 0, 1),
(6294, 7, 415, 55, 0.00, 0, 1),
(6295, 7, 415, 56, 0.00, 0, 1),
(6296, 7, 415, 57, 0.00, 0, 1),
(6297, 7, 415, 58, 0.00, 0, 1),
(6298, 7, 416, 54, 4186.30, 1, 1),
(6299, 7, 416, 55, 12845.00, 1, 1),
(6300, 7, 416, 56, 100277.00, 1, 1),
(6301, 7, 416, 57, 80.00, 1, 1),
(6302, 7, 416, 58, 1223.00, 1, 1),
(6303, 7, 417, 54, 8266.41, 1, 1),
(6304, 7, 417, 55, 17345.80, 1, 1),
(6305, 7, 417, 56, 81255.00, 1, 1),
(6306, 7, 417, 57, 94.20, 1, 1),
(6307, 7, 417, 58, 112.00, 1, 1),
(6308, 7, 418, 54, 1549.25, 1, 1),
(6309, 7, 418, 55, 12422.50, 1, 1),
(6310, 7, 418, 56, 89912.00, 1, 1),
(6311, 7, 418, 57, 114.00, 1, 1),
(6312, 7, 418, 58, 1212.00, 1, 1),
(6313, 7, 419, 54, 888.00, 1, 1),
(6314, 7, 419, 55, 7466.00, 1, 1),
(6315, 7, 419, 56, 120224.00, 1, 1),
(6316, 7, 419, 57, 160.00, 1, 1),
(6317, 7, 419, 58, 288.00, 1, 1),
(6318, 7, 420, 54, 321.00, 1, 1),
(6319, 7, 420, 55, 2100.00, 1, 1),
(6320, 7, 420, 56, 210000.00, 1, 1),
(6321, 7, 420, 57, 25.00, 1, 1),
(6322, 7, 420, 58, 212.00, 1, 1),
(6323, 7, 421, 54, 185.00, 1, 1),
(6324, 7, 421, 55, 480.00, 1, 1),
(6325, 7, 421, 56, 245000.00, 1, 1),
(6326, 7, 421, 57, 12.00, 1, 1),
(6327, 7, 421, 58, 88.00, 1, 1),
(6328, 7, 422, 54, 188.00, 1, 1),
(6329, 7, 422, 55, 2500.00, 1, 1),
(6330, 7, 422, 56, 265120.00, 1, 1),
(6331, 7, 422, 57, 28.00, 1, 1),
(6332, 7, 422, 58, 56.00, 1, 1),
(6333, 7, 423, 54, 52.00, 1, 1),
(6334, 7, 423, 55, 312.00, 1, 1),
(6335, 7, 423, 56, 242150.00, 1, 1),
(6336, 7, 423, 57, 8.00, 1, 1),
(6337, 7, 423, 58, 12.00, 1, 1),
(6338, 7, 424, 54, 68.00, 1, 1),
(6339, 7, 424, 55, 289.00, 0, 1),
(6340, 7, 424, 56, 289585.00, 1, 1),
(6341, 7, 424, 57, 13.00, 0, 1),
(6342, 7, 424, 58, 18.00, 0, 1),
(6343, 7, 425, 54, 291.00, 1, 1),
(6344, 7, 425, 55, 6499.00, 1, 1),
(6345, 7, 425, 56, 232024.00, 1, 1),
(6346, 7, 425, 57, 71.00, 1, 1),
(6347, 7, 425, 58, 81.00, 1, 1),
(6348, 7, 426, 54, 273.00, 1, 1),
(6349, 7, 426, 55, 400.00, 1, 1),
(6350, 7, 426, 56, 245612.00, 1, 1),
(6351, 7, 426, 57, 72.00, 1, 1),
(6352, 7, 426, 58, 58.00, 1, 1),
(6353, 7, 427, 54, 0.00, 0, 1),
(6354, 7, 427, 55, 0.00, 0, 1),
(6355, 7, 427, 56, 999999.00, 1, 1),
(6356, 7, 427, 57, 0.00, 0, 1),
(6357, 7, 427, 58, 0.00, 0, 1),
(6358, 7, 427, 59, 0.00, 0, 1),
(6359, 7, 427, 60, 0.00, 0, 1),
(6360, 7, 427, 61, 0.00, 0, 1),
(6361, 7, 427, 62, 0.00, 0, 1),
(6362, 7, 427, 63, 0.00, 0, 1),
(6363, 7, 427, 64, 0.00, 0, 1),
(6364, 7, 427, 19, 0.00, 0, 1),
(6365, 7, 428, 54, 0.00, 0, 1),
(6366, 7, 428, 55, 0.00, 0, 1),
(6367, 7, 428, 56, 880000.00, 1, 1),
(6368, 7, 428, 57, 0.00, 0, 1),
(6369, 7, 428, 58, 0.00, 0, 1),
(6370, 7, 428, 59, 0.00, 0, 1),
(6371, 7, 428, 60, 0.00, 0, 1),
(6372, 7, 428, 61, 0.00, 0, 1),
(6373, 7, 428, 62, 0.00, 0, 1),
(6374, 7, 428, 63, 0.00, 0, 1),
(6375, 7, 428, 64, 0.00, 0, 1),
(6376, 7, 428, 19, 0.00, 0, 1),
(6377, 7, 429, 54, 10.00, 1, 1),
(6378, 7, 429, 55, 30.00, 1, 1),
(6379, 7, 429, 56, 280000.00, 1, 1),
(6380, 7, 429, 57, 0.00, 0, 1),
(6381, 7, 429, 58, 0.00, 0, 1),
(6382, 7, 429, 59, 0.00, 0, 1),
(6383, 7, 429, 60, 0.00, 0, 1),
(6384, 7, 429, 61, 0.00, 0, 1),
(6385, 7, 429, 62, 0.00, 0, 1),
(6386, 7, 429, 63, 0.00, 0, 1),
(6387, 7, 429, 64, 0.00, 0, 1),
(6388, 7, 429, 19, 0.00, 0, 1),
(6389, 7, 430, 54, 0.00, 0, 1),
(6390, 7, 430, 55, 0.00, 0, 1),
(6391, 7, 430, 56, 34000.00, 1, 1),
(6392, 7, 430, 57, 0.00, 0, 1),
(6393, 7, 430, 58, 0.00, 0, 1),
(6394, 7, 430, 59, 0.00, 0, 1),
(6395, 7, 430, 60, 0.00, 0, 1),
(6396, 7, 430, 61, 0.00, 0, 1),
(6397, 7, 430, 62, 0.00, 0, 1),
(6398, 7, 430, 63, 0.00, 0, 1),
(6399, 7, 430, 64, 0.00, 0, 1),
(6400, 7, 430, 19, 0.00, 0, 1),
(6401, 7, 431, 54, 100.00, 0, 1),
(6402, 7, 431, 55, 0.00, 0, 1),
(6403, 7, 431, 56, 999999.00, 1, 1),
(6404, 7, 431, 57, 0.00, 0, 1),
(6405, 7, 431, 58, 0.00, 0, 1),
(6406, 7, 431, 59, 0.00, 0, 1),
(6407, 7, 431, 60, 0.00, 0, 1),
(6408, 7, 431, 61, 0.00, 0, 1),
(6409, 7, 431, 62, 0.00, 0, 1),
(6410, 7, 431, 63, 0.00, 0, 1),
(6411, 7, 431, 64, 0.00, 0, 1),
(6412, 7, 431, 19, 0.00, 0, 1),
(6413, 1, 432, 3, 32.51, 1, 1),
(6414, 1, 432, 5, 320000.00, 1, 1),
(6415, 1, 432, 6, 5.00, 0, 1),
(6416, 1, 432, 4, 400.00, 1, 1),
(6417, 1, 432, 7, 0.00, 0, 1),
(6418, 1, 432, 8, 0.00, 0, 1),
(6419, 1, 432, 9, 0.00, 0, 1),
(6420, 1, 432, 10, 0.00, 0, 1),
(6421, 1, 432, 11, 0.00, 0, 1),
(6422, 1, 432, 12, 0.00, 0, 1),
(6423, 1, 432, 13, 0.00, 0, 1),
(6424, 1, 432, 14, 0.00, 0, 1),
(6425, 1, 432, 15, 0.00, 0, 1),
(6426, 1, 433, 3, 60.00, 1, 1),
(6427, 1, 433, 5, 251600.00, 1, 1),
(6428, 1, 433, 6, 10.00, 1, 1),
(6429, 1, 433, 4, 18000.00, 1, 1),
(6430, 1, 433, 7, 0.00, 0, 1),
(6431, 1, 433, 8, 0.00, 0, 1),
(6432, 1, 433, 9, 0.00, 0, 1),
(6433, 1, 433, 10, 0.00, 0, 1),
(6434, 1, 433, 11, 0.00, 0, 1),
(6435, 1, 433, 12, 100.00, 1, 1),
(6436, 1, 433, 13, 0.00, 0, 1),
(6437, 1, 433, 14, 0.00, 0, 1),
(6438, 1, 433, 15, 0.00, 0, 1),
(6439, 1, 434, 3, 300.00, 1, 1),
(6440, 1, 434, 5, 600000.00, 1, 1),
(6441, 1, 434, 6, 1.00, 0, 1),
(6442, 1, 434, 4, 1500.00, 0, 1),
(6443, 1, 434, 7, 0.00, 0, 1),
(6444, 1, 434, 8, 0.00, 0, 1),
(6445, 1, 434, 9, 0.00, 0, 1),
(6446, 1, 434, 10, 0.00, 0, 1),
(6447, 1, 434, 11, 0.00, 0, 1),
(6448, 1, 434, 12, 0.00, 0, 1),
(6449, 1, 434, 13, 0.00, 0, 1),
(6450, 1, 434, 14, 0.00, 0, 1),
(6451, 1, 434, 15, 0.00, 0, 1),
(6452, 1, 435, 3, 0.00, 1, 1),
(6453, 1, 435, 5, 0.00, 0, 1),
(6454, 1, 435, 6, 0.00, 0, 1),
(6455, 1, 435, 4, 0.00, 1, 1),
(6456, 1, 435, 7, 0.00, 0, 1),
(6457, 1, 435, 8, 0.00, 0, 1),
(6458, 1, 435, 9, 0.00, 0, 1),
(6459, 1, 435, 10, 0.00, 0, 1),
(6460, 1, 435, 11, 0.00, 0, 1),
(6461, 1, 435, 12, 0.00, 0, 1),
(6462, 1, 435, 13, 0.00, 0, 1),
(6463, 1, 435, 14, 0.00, 1, 1),
(6464, 1, 435, 15, 0.00, 1, 1),
(6465, 1, 436, 3, 0.00, 0, 1),
(6466, 1, 436, 5, 0.00, 0, 1),
(6467, 1, 436, 6, 0.00, 0, 1),
(6468, 1, 436, 4, 0.00, 0, 1),
(6469, 1, 436, 7, 0.00, 0, 1),
(6470, 1, 436, 8, 0.00, 0, 1),
(6471, 1, 436, 9, 0.00, 0, 1),
(6472, 1, 436, 10, 0.00, 0, 1),
(6473, 1, 436, 11, 0.00, 0, 1),
(6474, 1, 436, 12, 0.00, 0, 1),
(6475, 1, 436, 13, 0.00, 0, 1),
(6476, 1, 436, 14, 0.00, 0, 1),
(6477, 1, 436, 15, 0.00, 0, 1),
(6478, 1, 437, 3, 40.00, 1, 1),
(6479, 1, 437, 5, 270000.00, 1, 1),
(6480, 1, 437, 6, 0.00, 0, 1),
(6481, 1, 437, 4, 950.00, 1, 1),
(6482, 1, 437, 7, 0.00, 0, 1),
(6483, 1, 437, 8, 0.00, 0, 1),
(6484, 1, 437, 9, 0.00, 0, 1),
(6485, 1, 437, 10, 0.00, 0, 1),
(6486, 1, 437, 11, 0.00, 0, 1),
(6487, 1, 437, 12, 0.00, 0, 1),
(6488, 1, 437, 13, 0.00, 0, 1),
(6489, 1, 437, 14, 0.00, 0, 1),
(6490, 1, 437, 15, 0.00, 0, 1),
(6491, 1, 438, 3, 60.00, 1, 1),
(6492, 1, 438, 5, 244787.00, 1, 1),
(6493, 1, 438, 6, 5.00, 1, 1),
(6494, 1, 438, 4, 300.00, 1, 1),
(6495, 1, 438, 7, 0.00, 0, 1),
(6496, 1, 438, 8, 0.00, 0, 1),
(6497, 1, 438, 9, 0.00, 0, 1),
(6498, 1, 438, 10, 0.00, 0, 1),
(6499, 1, 438, 11, 0.00, 0, 1),
(6500, 1, 438, 12, 5.00, 1, 1),
(6501, 1, 438, 13, 0.00, 0, 1),
(6502, 1, 438, 14, 0.00, 0, 1),
(6503, 1, 438, 15, 0.00, 0, 1),
(6504, 1, 439, 3, 0.00, 0, 1),
(6505, 1, 439, 4, 200000.00, 1, 1),
(6506, 1, 439, 5, 200000.00, 1, 1),
(6507, 1, 439, 6, 0.00, 0, 1),
(6508, 1, 439, 7, 0.00, 0, 1),
(6509, 1, 439, 8, 10000.00, 1, 1),
(6510, 1, 439, 9, 0.00, 0, 1),
(6511, 1, 439, 10, 0.00, 0, 1),
(6512, 1, 439, 11, 0.00, 0, 1),
(6513, 1, 439, 12, 40000.00, 1, 1),
(6514, 1, 439, 13, 0.00, 0, 1),
(6515, 1, 439, 14, 0.00, 0, 1),
(6516, 1, 439, 15, 0.00, 0, 1),
(6517, 1, 440, 3, 0.00, 1, 1),
(6518, 1, 440, 4, 10000.00, 1, 1),
(6519, 1, 440, 5, 0.00, 0, 1),
(6520, 1, 440, 6, 20000.00, 1, 1),
(6521, 1, 440, 7, 0.00, 0, 1),
(6522, 1, 440, 8, 0.00, 0, 1),
(6523, 1, 440, 9, 0.00, 0, 1),
(6524, 1, 440, 10, 0.00, 0, 1),
(6525, 1, 440, 11, 0.00, 0, 1),
(6526, 1, 440, 12, 0.00, 0, 1),
(6527, 1, 440, 13, 0.00, 0, 1),
(6528, 1, 440, 14, 0.00, 0, 1),
(6529, 1, 440, 15, 0.00, 0, 1),
(6530, 1, 440, 3, 0.00, 1, 1),
(6531, 1, 440, 4, 350.00, 1, 1),
(6532, 1, 440, 5, 100.00, 1, 1),
(6533, 1, 440, 6, 450.00, 1, 1),
(6534, 1, 440, 7, 100.00, 1, 1),
(6535, 1, 440, 8, 0.00, 0, 1),
(6536, 1, 440, 9, 0.00, 0, 1),
(6537, 1, 440, 10, 0.00, 0, 1),
(6538, 1, 440, 11, 0.00, 0, 1),
(6539, 1, 440, 12, 0.00, 0, 1),
(6540, 1, 440, 13, 0.00, 0, 1),
(6541, 1, 440, 14, 0.00, 0, 1),
(6542, 1, 440, 15, 0.00, 0, 1),
(6543, 1, 441, 3, 0.00, 0, 1),
(6544, 1, 441, 4, 350000.00, 1, 1),
(6545, 1, 441, 5, 100000.00, 0, 1),
(6546, 1, 441, 6, 0.00, 0, 1),
(6547, 1, 441, 7, 100000.00, 0, 1),
(6548, 1, 441, 8, 0.00, 0, 1),
(6549, 1, 441, 9, 450000.00, 0, 1),
(6550, 1, 441, 10, 0.00, 0, 1),
(6551, 1, 441, 11, 0.00, 0, 1),
(6552, 1, 441, 12, 0.00, 0, 1),
(6553, 1, 441, 13, 0.00, 0, 1),
(6554, 1, 441, 14, 0.00, 0, 1),
(6555, 1, 441, 15, 0.00, 0, 1),
(6556, 1, 442, 3, 0.00, 0, 1),
(6557, 1, 442, 4, 0.00, 0, 1),
(6558, 1, 442, 5, 320000.00, 1, 1),
(6559, 1, 442, 6, 0.00, 0, 1),
(6560, 1, 442, 7, 680000.00, 0, 1),
(6561, 1, 442, 8, 0.00, 0, 1),
(6562, 1, 442, 9, 0.00, 0, 1),
(6563, 1, 442, 10, 0.00, 0, 1),
(6564, 1, 442, 11, 0.00, 0, 1),
(6565, 1, 442, 12, 0.00, 0, 1),
(6566, 1, 442, 13, 0.00, 0, 1),
(6567, 1, 442, 14, 0.00, 0, 1),
(6568, 1, 442, 15, 0.00, 0, 1),
(6569, 1, 443, 3, 450.00, 1, 1),
(6570, 1, 443, 4, 0.00, 0, 1),
(6571, 1, 443, 5, 250000.00, 1, 1),
(6572, 1, 443, 6, 0.00, 0, 1),
(6573, 1, 443, 7, 0.00, 0, 1),
(6574, 1, 443, 8, 0.00, 0, 1),
(6575, 1, 443, 9, 0.00, 0, 1),
(6576, 1, 443, 10, 0.00, 0, 1),
(6577, 1, 443, 11, 0.00, 0, 1),
(6578, 1, 443, 12, 0.00, 0, 1),
(6579, 1, 443, 13, 0.00, 0, 1),
(6580, 1, 443, 14, 0.00, 1, 1),
(6581, 1, 443, 15, 0.00, 0, 1),
(6582, 1, 444, 3, 0.00, 0, 1),
(6583, 1, 444, 4, 0.00, 0, 1),
(6584, 1, 444, 5, 800000.00, 1, 1),
(6585, 1, 444, 6, 0.00, 0, 1),
(6586, 1, 444, 7, 0.00, 0, 1),
(6587, 1, 444, 8, 0.00, 0, 1),
(6588, 1, 444, 9, 0.00, 0, 1),
(6589, 1, 444, 10, 0.00, 0, 1),
(6590, 1, 444, 11, 0.00, 0, 1),
(6591, 1, 444, 12, 0.00, 0, 1),
(6592, 1, 444, 13, 0.00, 0, 1),
(6593, 1, 444, 14, 0.00, 0, 1),
(6594, 1, 444, 15, 0.00, 0, 1),
(6595, 1, 445, 3, 0.00, 0, 1),
(6596, 1, 445, 4, 0.00, 0, 1),
(6597, 1, 445, 5, 0.00, 0, 1),
(6598, 1, 445, 6, 0.00, 0, 1),
(6599, 1, 445, 7, 100000.00, 1, 1),
(6600, 1, 445, 8, 0.00, 0, 1),
(6601, 1, 445, 9, 0.00, 0, 1),
(6602, 1, 445, 10, 0.00, 0, 1),
(6603, 1, 445, 11, 0.00, 0, 1),
(6604, 1, 445, 12, 0.00, 0, 1),
(6605, 1, 445, 13, 0.00, 0, 1),
(6606, 1, 445, 14, 0.00, 0, 1),
(6607, 1, 445, 15, 100000.00, 1, 1),
(6608, 1, 446, 3, 0.00, 0, 1),
(6609, 1, 446, 4, 0.00, 0, 1),
(6610, 1, 446, 5, 950000.00, 1, 1),
(6611, 1, 446, 6, 0.00, 0, 1),
(6612, 1, 446, 7, 0.00, 0, 1),
(6613, 1, 446, 8, 0.00, 0, 1),
(6614, 1, 446, 9, 0.00, 0, 1),
(6615, 1, 446, 10, 0.00, 0, 1),
(6616, 1, 446, 11, 0.00, 0, 1),
(6617, 1, 446, 12, 0.00, 0, 1),
(6618, 1, 446, 13, 0.00, 0, 1),
(6619, 1, 446, 14, 50000.00, 1, 1),
(6620, 1, 446, 15, 0.00, 0, 1),
(6621, 1, 447, 3, 0.00, 0, 1),
(6622, 1, 447, 4, 0.00, 0, 1),
(6623, 1, 447, 5, 0.00, 0, 1),
(6624, 1, 447, 6, 0.00, 0, 1),
(6625, 1, 447, 7, 0.00, 0, 1),
(6626, 1, 447, 8, 999999.00, 1, 1),
(6627, 1, 447, 9, 0.00, 0, 1),
(6628, 1, 447, 10, 0.00, 0, 1),
(6629, 1, 447, 11, 0.00, 0, 1),
(6630, 1, 447, 12, 0.00, 0, 1),
(6631, 1, 447, 13, 0.00, 0, 1),
(6632, 1, 447, 14, 0.00, 0, 1),
(6633, 1, 447, 15, 0.00, 0, 1),
(6634, 1, 448, 3, 0.00, 0, 1),
(6635, 1, 448, 4, 0.00, 0, 1),
(6636, 1, 448, 5, 0.00, 0, 1),
(6637, 1, 448, 6, 0.00, 0, 1),
(6638, 1, 448, 7, 1000000.00, 1, 1),
(6639, 1, 448, 8, 0.00, 0, 1),
(6640, 1, 448, 9, 0.00, 0, 1),
(6641, 1, 448, 10, 0.00, 0, 1),
(6642, 1, 448, 11, 0.00, 0, 1),
(6643, 1, 448, 12, 0.00, 0, 1),
(6644, 1, 448, 13, 0.00, 0, 1),
(6645, 1, 448, 14, 0.00, 0, 1),
(6646, 1, 448, 15, 0.00, 0, 1),
(6647, 1, 449, 3, 0.00, 0, 1),
(6648, 1, 449, 4, 0.00, 0, 1),
(6649, 1, 449, 5, 0.00, 0, 1),
(6650, 1, 449, 6, 0.00, 0, 1),
(6651, 1, 449, 7, 500000.00, 1, 1),
(6652, 1, 449, 8, 0.00, 0, 1),
(6653, 1, 449, 9, 0.00, 0, 1),
(6654, 1, 449, 10, 0.00, 0, 1),
(6655, 1, 449, 11, 0.00, 0, 1),
(6656, 1, 449, 12, 0.00, 1, 1),
(6657, 1, 449, 13, 0.00, 1, 1),
(6658, 1, 449, 14, 0.00, 1, 1),
(6659, 1, 449, 15, 0.00, 1, 1),
(6660, 1, 449, 16, 0.00, 0, 1),
(6661, 1, 449, 17, 0.00, 0, 1),
(6662, 1, 449, 18, 0.00, 0, 1),
(6663, 1, 449, 19, 0.00, 0, 1),
(6664, 1, 450, 3, 68.00, 1, 1),
(6665, 1, 450, 4, 886.60, 1, 1),
(6666, 1, 450, 5, 210020.00, 1, 1),
(6667, 1, 450, 6, 12.00, 0, 1),
(6668, 1, 450, 7, 749680.00, 1, 1),
(6669, 1, 450, 8, 0.00, 0, 1),
(6670, 1, 450, 9, 0.00, 0, 1),
(6671, 1, 450, 10, 0.00, 0, 1),
(6672, 1, 450, 11, 0.00, 0, 1),
(6673, 1, 450, 12, 6.00, 0, 1),
(6674, 1, 450, 13, 0.00, 0, 1),
(6675, 1, 450, 14, 0.00, 0, 1),
(6676, 1, 450, 15, 0.00, 0, 1),
(6677, 1, 451, 3, 1000000.00, 1, 1),
(6678, 1, 451, 4, 0.00, 0, 1),
(6679, 1, 451, 5, 0.00, 0, 1),
(6680, 1, 451, 6, 0.00, 0, 1),
(6681, 1, 451, 7, 0.00, 0, 1),
(6682, 1, 451, 8, 0.00, 0, 1),
(6683, 1, 451, 9, 0.00, 0, 1),
(6684, 1, 451, 10, 0.00, 0, 1),
(6685, 1, 451, 11, 0.00, 0, 1),
(6686, 1, 451, 12, 0.00, 0, 1),
(6687, 1, 451, 13, 0.00, 0, 1),
(6688, 1, 451, 14, 0.00, 0, 1),
(6689, 1, 451, 15, 0.00, 0, 1),
(6690, 1, 452, 3, 28.00, 1, 1),
(6691, 1, 452, 4, 120.00, 1, 1),
(6692, 1, 452, 5, 100000.00, 1, 1),
(6693, 1, 452, 6, 3.00, 1, 1),
(6694, 1, 452, 7, 768200.00, 0, 1),
(6695, 1, 452, 8, 0.00, 0, 1),
(6696, 1, 452, 9, 0.00, 0, 1),
(6697, 1, 452, 10, 0.00, 0, 1),
(6698, 1, 452, 11, 0.00, 0, 1),
(6699, 1, 452, 12, 3.00, 1, 1),
(6700, 1, 452, 13, 0.00, 0, 1),
(6701, 1, 452, 14, 0.00, 0, 1),
(6702, 1, 452, 15, 0.00, 0, 1),
(6703, 1, 453, 3, 0.00, 0, 1),
(6704, 1, 453, 4, 0.00, 0, 1),
(6705, 1, 453, 5, 0.00, 0, 1),
(6706, 1, 453, 6, 0.00, 0, 1),
(6707, 1, 453, 7, 0.00, 0, 1),
(6708, 1, 453, 8, 0.00, 0, 1),
(6709, 1, 453, 9, 999999.00, 1, 1),
(6710, 1, 453, 10, 0.00, 0, 1),
(6711, 1, 453, 11, 0.00, 0, 1),
(6712, 1, 453, 12, 0.00, 0, 1),
(6713, 1, 453, 13, 0.00, 0, 1),
(6714, 1, 453, 14, 0.00, 0, 1),
(6715, 1, 453, 15, 0.00, 0, 1),
(6716, 1, 454, 3, 0.00, 0, 1),
(6717, 1, 454, 4, 0.00, 0, 1),
(6718, 1, 454, 5, 0.00, 0, 1),
(6719, 1, 454, 6, 0.00, 0, 1),
(6720, 1, 454, 12, 0.00, 0, 1),
(6721, 1, 455, 3, 0.00, 1, 1),
(6722, 1, 455, 4, 0.00, 0, 1),
(6723, 1, 455, 5, 0.00, 0, 1),
(6724, 1, 455, 6, 0.00, 0, 1),
(6725, 1, 455, 12, 0.00, 0, 1),
(6726, 1, 456, 3, 0.00, 1, 1),
(6727, 1, 456, 4, 0.00, 0, 1),
(6728, 1, 456, 5, 0.00, 0, 1),
(6729, 1, 456, 6, 0.00, 0, 1),
(6730, 1, 456, 12, 0.00, 0, 1),
(6731, 1, 456, 13, 0.00, 0, 1),
(6732, 1, 456, 14, 0.00, 0, 1),
(6733, 1, 456, 15, 0.00, 0, 1),
(6734, 1, 456, 16, 0.00, 0, 1),
(6735, 1, 456, 17, 0.00, 0, 1),
(6736, 1, 456, 18, 0.00, 0, 1),
(6737, 1, 456, 19, 0.00, 0, 1),
(6738, 1, 457, 3, 0.00, 1, 1),
(6739, 1, 457, 4, 0.00, 0, 1),
(6740, 1, 457, 5, 0.00, 0, 1),
(6741, 1, 457, 6, 0.00, 0, 1),
(6742, 1, 457, 12, 0.00, 0, 1),
(6743, 1, 458, 3, 196.00, 1, 1),
(6744, 1, 458, 4, 1645.00, 1, 1),
(6745, 1, 458, 5, 220000.00, 1, 1),
(6746, 1, 458, 6, 14.00, 1, 1),
(6747, 1, 458, 12, 30.00, 1, 1),
(6748, 1, 459, 3, 0.00, 0, 1),
(6749, 1, 459, 4, 300.00, 0, 1),
(6750, 1, 459, 5, 240000.00, 1, 1),
(6751, 1, 459, 6, 0.00, 0, 1),
(6752, 1, 459, 12, 0.00, 0, 1),
(6753, 1, 460, 3, 0.00, 0, 1),
(6754, 1, 460, 4, 0.00, 0, 1),
(6755, 1, 460, 5, 265000.00, 1, 1),
(6756, 1, 460, 6, 0.00, 0, 1),
(6757, 1, 460, 12, 0.00, 0, 1),
(6758, 1, 461, 3, 60.00, 1, 1),
(6759, 1, 461, 4, 320.00, 1, 1),
(6760, 1, 461, 5, 184000.00, 1, 1),
(6761, 1, 461, 6, 0.00, 0, 1),
(6762, 1, 461, 12, 0.00, 0, 1),
(6763, 1, 462, 3, 0.00, 0, 1),
(6764, 1, 462, 4, 350.00, 1, 1),
(6765, 1, 462, 5, 240000.00, 1, 1),
(6766, 1, 462, 6, 0.00, 0, 1),
(6767, 1, 462, 12, 0.00, 0, 1),
(6768, 1, 463, 3, 67.00, 1, 1),
(6769, 1, 463, 4, 400.00, 1, 1),
(6770, 1, 463, 5, 170000.00, 1, 1),
(6771, 1, 463, 6, 20.00, 1, 1),
(6772, 1, 463, 12, 30.00, 1, 1),
(6773, 1, 464, 3, 0.00, 0, 1),
(6774, 1, 464, 4, 0.00, 0, 1),
(6775, 1, 464, 5, 1.00, 1, 1),
(6776, 1, 464, 6, 0.00, 0, 1),
(6777, 1, 464, 12, 0.00, 0, 1),
(6778, 1, 465, 3, 0.00, 0, 1),
(6779, 1, 465, 4, 600.00, 1, 1),
(6780, 1, 465, 5, 200000.00, 1, 1),
(6781, 1, 465, 6, 0.00, 0, 1),
(6782, 1, 465, 12, 0.00, 0, 1),
(6783, 1, 466, 3, 50.00, 1, 1),
(6784, 1, 466, 4, 200.00, 1, 1),
(6785, 1, 466, 5, 240000.00, 1, 1),
(6786, 1, 466, 6, 0.00, 0, 1),
(6787, 1, 466, 12, 0.00, 0, 1),
(6788, 1, 467, 3, 60.00, 1, 1),
(6789, 1, 467, 4, 200.00, 1, 1),
(6790, 1, 467, 5, 120000.00, 1, 1),
(6791, 1, 467, 6, 1.00, 0, 1),
(6792, 1, 467, 12, 1.00, 0, 1),
(6793, 1, 468, 3, 90.00, 1, 1),
(6794, 1, 468, 4, 666.00, 1, 1),
(6795, 1, 468, 5, 210000.00, 1, 1),
(6796, 1, 468, 6, 0.00, 0, 1),
(6797, 1, 468, 12, 0.00, 0, 1),
(6798, 1, 469, 3, 243.00, 1, 1),
(6799, 1, 469, 4, 1562.00, 1, 1),
(6800, 1, 469, 5, 220000.00, 1, 1),
(6801, 1, 469, 6, 15.00, 1, 1),
(6802, 1, 469, 12, 49.00, 1, 1),
(6803, 1, 470, 3, 97.10, 1, 1),
(6804, 1, 470, 4, 540.00, 1, 1),
(6805, 1, 470, 5, 212000.00, 1, 1),
(6806, 1, 470, 6, 0.00, 0, 1),
(6807, 1, 470, 12, 6.00, 1, 1),
(6808, 1, 471, 3, 88.00, 1, 1),
(6809, 1, 471, 4, 188.00, 1, 1),
(6810, 1, 471, 5, 250000.00, 1, 1),
(6811, 1, 471, 6, 0.00, 0, 1),
(6812, 1, 471, 12, 0.00, 0, 1),
(6813, 1, 472, 3, 222.00, 1, 1),
(6814, 1, 472, 4, 2222.00, 1, 1),
(6815, 1, 472, 5, 222222.00, 1, 1),
(6816, 1, 472, 6, 22.00, 1, 1),
(6817, 1, 472, 12, 2.00, 1, 1),
(6818, 1, 473, 3, 365.00, 1, 1),
(6819, 1, 473, 4, 1800.00, 1, 1),
(6820, 1, 473, 5, 350000.00, 1, 1),
(6821, 1, 473, 6, 35.00, 1, 1),
(6822, 1, 473, 12, 12.00, 1, 1),
(6823, 1, 474, 3, 112.00, 1, 1),
(6824, 1, 474, 4, 212.00, 1, 1),
(6825, 1, 474, 5, 310000.00, 1, 1),
(6826, 1, 474, 6, 21.00, 1, 1),
(6827, 1, 474, 12, 9.00, 1, 1),
(6828, 1, 475, 3, 800.00, 1, 1),
(6829, 1, 475, 4, 500.00, 1, 1),
(6830, 1, 475, 5, 210000.00, 1, 1),
(6831, 1, 475, 6, 0.00, 0, 1),
(6832, 1, 475, 12, 0.00, 0, 1),
(6833, 1, 476, 3, 1200.00, 1, 1),
(6834, 1, 476, 4, 1200.00, 1, 1),
(6835, 1, 476, 5, 215000.00, 1, 1),
(6836, 1, 476, 6, 0.00, 0, 1),
(6837, 1, 476, 12, 0.00, 0, 1),
(6838, 1, 477, 3, 2000.00, 1, 1),
(6839, 1, 477, 4, 2000.00, 1, 1),
(6840, 1, 477, 5, 250000.00, 1, 1),
(6841, 1, 477, 6, 0.00, 0, 1),
(6842, 1, 477, 12, 0.00, 0, 1),
(6843, 1, 478, 3, 144.00, 1, 1),
(6844, 1, 478, 4, 312.00, 1, 1),
(6845, 1, 478, 5, 310000.00, 1, 1),
(6846, 1, 478, 6, 1.00, 1, 1),
(6847, 1, 478, 12, 0.00, 1, 1),
(6848, 1, 478, 13, 0.00, 0, 1),
(6849, 1, 478, 14, 0.00, 0, 1),
(6850, 1, 478, 15, 0.00, 0, 1),
(6851, 1, 478, 16, 0.00, 0, 1),
(6852, 1, 478, 17, 0.00, 0, 1),
(6853, 1, 478, 18, 0.00, 0, 1),
(6854, 1, 478, 19, 0.00, 0, 1),
(6855, 1, 479, 3, 210.00, 1, 1),
(6856, 1, 479, 4, 1655.00, 1, 1),
(6857, 1, 479, 5, 262351.00, 1, 1),
(6858, 1, 479, 6, 3.00, 1, 1),
(6859, 1, 479, 12, 0.00, 0, 1),
(6860, 1, 479, 13, 0.00, 0, 1),
(6861, 1, 479, 14, 0.00, 0, 1),
(6862, 1, 479, 15, 0.00, 0, 1),
(6863, 1, 479, 16, 0.00, 0, 1),
(6864, 1, 479, 17, 0.00, 0, 1),
(6865, 1, 479, 18, 0.00, 0, 1),
(6866, 1, 479, 19, 0.00, 0, 1),
(6867, 1, 480, 3, 588.00, 1, 1),
(6868, 1, 480, 4, 0.00, 0, 1),
(6869, 1, 480, 5, 220000.00, 1, 1),
(6870, 1, 480, 6, 0.00, 0, 1),
(6871, 1, 480, 12, 0.00, 0, 1),
(6872, 1, 480, 13, 0.00, 0, 1),
(6873, 1, 480, 14, 0.00, 0, 1),
(6874, 1, 480, 15, 0.00, 0, 1),
(6875, 1, 480, 16, 0.00, 0, 1),
(6876, 1, 480, 17, 0.00, 0, 1),
(6877, 1, 480, 18, 0.00, 0, 1),
(6878, 1, 480, 19, 0.00, 0, 1),
(6879, 1, 481, 3, 144.00, 1, 1),
(6880, 1, 481, 4, 0.00, 0, 1),
(6881, 1, 481, 5, 220000.00, 1, 1),
(6882, 1, 481, 6, 0.00, 0, 1),
(6883, 1, 481, 12, 0.00, 0, 1),
(6884, 1, 481, 13, 0.00, 0, 1),
(6885, 1, 481, 14, 0.00, 0, 1),
(6886, 1, 481, 15, 0.00, 0, 1),
(6887, 1, 481, 16, 0.00, 0, 1),
(6888, 1, 481, 17, 0.00, 0, 1),
(6889, 1, 481, 18, 0.00, 0, 1),
(6890, 1, 481, 19, 0.00, 0, 1),
(6891, 1, 482, 3, 323.50, 1, 1),
(6892, 1, 482, 4, 0.00, 0, 1),
(6893, 1, 482, 5, 220000.00, 1, 1),
(6894, 1, 482, 6, 0.00, 0, 1),
(6895, 1, 482, 12, 0.00, 0, 1),
(6896, 1, 482, 13, 0.00, 0, 1),
(6897, 1, 482, 14, 0.00, 0, 1),
(6898, 1, 482, 15, 0.00, 0, 1),
(6899, 1, 482, 16, 0.00, 0, 1),
(6900, 1, 482, 17, 0.00, 0, 1),
(6901, 1, 482, 18, 0.00, 0, 1),
(6902, 1, 482, 19, 0.00, 0, 1),
(6903, 1, 483, 3, 1102.00, 1, 1),
(6904, 1, 483, 4, 2222.00, 1, 1),
(6905, 1, 483, 5, 222000.00, 1, 1),
(6906, 1, 483, 6, 33.00, 1, 1),
(6907, 1, 483, 12, 33.00, 1, 1),
(6908, 1, 484, 3, 677.00, 1, 1),
(6909, 1, 484, 4, 333.00, 1, 1),
(6910, 1, 484, 5, 220000.00, 1, 1),
(6911, 1, 484, 6, 20.00, 1, 1),
(6912, 1, 484, 12, 20.00, 1, 1),
(6913, 1, 485, 3, 510.40, 1, 1),
(6914, 1, 485, 4, 600.00, 1, 1),
(6915, 1, 485, 5, 220000.00, 1, 1),
(6916, 1, 485, 6, 20.00, 1, 1),
(6917, 1, 485, 12, 15.00, 1, 1),
(6918, 1, 486, 3, 264.00, 1, 1),
(6919, 1, 486, 4, 322.00, 1, 1),
(6920, 1, 486, 5, 202545.00, 1, 1),
(6921, 1, 486, 6, 15.00, 1, 1),
(6922, 1, 486, 12, 10.00, 1, 1),
(6923, 1, 487, 3, 0.00, 0, 1),
(6924, 1, 487, 4, 0.00, 0, 1),
(6925, 1, 487, 5, 280000.00, 1, 1),
(6926, 1, 487, 6, 0.00, 0, 1),
(6927, 1, 487, 12, 0.00, 0, 1),
(6928, 1, 488, 3, 0.00, 0, 1),
(6929, 1, 488, 4, 0.00, 0, 1),
(6930, 1, 488, 5, 230000.00, 1, 1),
(6931, 1, 488, 6, 0.00, 0, 1),
(6932, 1, 488, 12, 0.00, 0, 1),
(6933, 1, 489, 3, 0.00, 0, 1),
(6934, 1, 489, 4, 0.00, 0, 1),
(6935, 1, 489, 5, 180000.00, 1, 1),
(6936, 1, 489, 6, 0.00, 0, 1),
(6937, 1, 489, 12, 0.00, 0, 1),
(6938, 1, 490, 3, 0.00, 0, 1),
(6939, 1, 490, 4, 0.00, 0, 1),
(6940, 1, 490, 5, 0.00, 0, 1),
(6941, 1, 490, 6, 0.00, 0, 1),
(6942, 1, 490, 12, 0.00, 0, 1),
(6943, 1, 491, 3, 4186.30, 1, 1),
(6944, 1, 491, 4, 12845.00, 1, 1),
(6945, 1, 491, 5, 100277.00, 1, 1),
(6946, 1, 491, 6, 80.00, 1, 1),
(6947, 1, 491, 12, 1223.00, 1, 1),
(6948, 1, 492, 3, 8266.41, 1, 1),
(6949, 1, 492, 4, 17345.80, 1, 1),
(6950, 1, 492, 5, 81255.00, 1, 1),
(6951, 1, 492, 6, 94.20, 1, 1),
(6952, 1, 492, 12, 112.00, 1, 1),
(6953, 1, 493, 3, 1549.25, 1, 1),
(6954, 1, 493, 4, 12422.50, 1, 1),
(6955, 1, 493, 5, 89912.00, 1, 1),
(6956, 1, 493, 6, 114.00, 1, 1),
(6957, 1, 493, 12, 1212.00, 1, 1),
(6958, 1, 494, 3, 888.00, 1, 1),
(6959, 1, 494, 4, 7466.00, 1, 1),
(6960, 1, 494, 5, 120224.00, 1, 1),
(6961, 1, 494, 6, 160.00, 1, 1),
(6962, 1, 494, 12, 288.00, 1, 1),
(6963, 1, 495, 3, 321.00, 1, 1),
(6964, 1, 495, 4, 2100.00, 1, 1),
(6965, 1, 495, 5, 210000.00, 1, 1),
(6966, 1, 495, 6, 25.00, 1, 1),
(6967, 1, 495, 12, 212.00, 1, 1),
(6968, 1, 496, 3, 303.00, 1, 1),
(6969, 1, 496, 4, 480.00, 1, 1),
(6970, 1, 496, 5, 245000.00, 1, 1),
(6971, 1, 496, 6, 12.00, 1, 1),
(6972, 1, 496, 12, 88.00, 1, 1),
(6973, 1, 497, 3, 188.00, 1, 1),
(6974, 1, 497, 4, 2500.00, 1, 1),
(6975, 1, 497, 5, 265120.00, 1, 1),
(6976, 1, 497, 6, 28.00, 1, 1),
(6977, 1, 497, 12, 56.00, 1, 1),
(6978, 1, 498, 3, 112.00, 1, 1),
(6979, 1, 498, 4, 312.00, 1, 1),
(6980, 1, 498, 5, 242150.00, 1, 1),
(6981, 1, 498, 6, 8.00, 1, 1),
(6982, 1, 498, 12, 12.00, 1, 1),
(6983, 1, 499, 3, 68.00, 1, 1),
(6984, 1, 499, 4, 289.00, 1, 1),
(6985, 1, 499, 5, 289585.00, 1, 1),
(6986, 1, 499, 6, 13.00, 1, 1),
(6987, 1, 499, 12, 18.00, 1, 1),
(6988, 10, 500, 3, 8266.41, 1, 1),
(6989, 10, 500, 4, 17345.80, 0, 1),
(6990, 10, 500, 5, 81255.00, 0, 1),
(6991, 10, 500, 6, 94.20, 0, 1),
(6992, 10, 500, 12, 112.00, 0, 1),
(6993, 1, 501, 3, 273.00, 1, 1),
(6994, 1, 501, 4, 400.00, 1, 1),
(6995, 1, 501, 5, 245612.00, 1, 1),
(6996, 1, 501, 6, 72.00, 1, 1),
(6997, 1, 501, 12, 58.00, 1, 1),
(6998, 10, 502, 3, 888.00, 1, 1),
(6999, 10, 502, 4, 7466.00, 0, 1),
(7000, 10, 502, 5, 120224.00, 0, 1),
(7001, 10, 502, 6, 160.00, 0, 1),
(7002, 10, 502, 12, 288.00, 0, 1),
(7003, 10, 502, 13, 0.00, 0, 1),
(7004, 10, 502, 14, 0.00, 0, 1),
(7005, 10, 502, 15, 0.00, 0, 1),
(7006, 10, 502, 16, 0.00, 0, 1),
(7007, 10, 502, 17, 0.00, 0, 1),
(7008, 10, 502, 18, 0.00, 0, 1),
(7009, 1, 502, 19, 0.00, 0, 1),
(7010, 1, 503, 3, 0.00, 0, 1),
(7011, 1, 503, 4, 0.00, 0, 1),
(7012, 1, 503, 5, 880000.00, 1, 1),
(7013, 1, 503, 6, 0.00, 0, 1),
(7014, 1, 503, 12, 0.00, 0, 1),
(7015, 1, 503, 13, 0.00, 0, 1),
(7016, 1, 503, 14, 0.00, 0, 1),
(7017, 1, 503, 15, 0.00, 0, 1),
(7018, 1, 503, 16, 0.00, 0, 1),
(7019, 1, 503, 17, 0.00, 0, 1),
(7020, 1, 503, 18, 0.00, 0, 1),
(7021, 1, 503, 19, 0.00, 0, 1),
(7022, 1, 504, 3, 10.00, 1, 1),
(7023, 1, 504, 4, 30.00, 1, 1),
(7024, 1, 504, 5, 280000.00, 1, 1),
(7025, 1, 504, 6, 0.00, 0, 1),
(7026, 1, 504, 12, 0.00, 0, 1),
(7027, 1, 504, 13, 0.00, 0, 1),
(7028, 1, 504, 14, 0.00, 0, 1),
(7029, 1, 504, 15, 0.00, 0, 1),
(7030, 1, 504, 16, 0.00, 0, 1),
(7031, 1, 504, 17, 0.00, 0, 1),
(7032, 1, 504, 18, 0.00, 0, 1),
(7033, 1, 504, 19, 0.00, 0, 1),
(7034, 1, 505, 3, 0.00, 0, 1),
(7035, 1, 505, 4, 0.00, 0, 1),
(7036, 1, 505, 5, 0.00, 0, 1),
(7037, 1, 505, 6, 0.00, 0, 1),
(7038, 1, 505, 12, 0.00, 0, 1),
(7039, 1, 505, 13, 0.00, 0, 1),
(7040, 1, 505, 14, 0.00, 0, 1),
(7041, 1, 505, 15, 0.00, 0, 1),
(7042, 1, 505, 16, 0.00, 0, 1),
(7043, 1, 505, 17, 0.00, 0, 1),
(7044, 1, 505, 18, 0.00, 0, 1),
(7045, 1, 505, 19, 0.00, 0, 1),
(7046, 1, 506, 3, 0.00, 0, 1),
(7047, 1, 506, 4, 0.00, 0, 1),
(7048, 1, 506, 5, 0.00, 0, 1),
(7049, 1, 506, 6, 0.00, 0, 1),
(7050, 1, 506, 12, 0.00, 0, 1),
(7051, 1, 506, 13, 0.00, 0, 1),
(7052, 1, 506, 14, 0.00, 0, 1),
(7053, 1, 506, 15, 0.00, 0, 1),
(7054, 1, 506, 16, 0.00, 0, 1),
(7055, 1, 506, 17, 0.00, 0, 1),
(7056, 1, 506, 18, 0.00, 0, 1),
(7057, 1, 506, 19, 0.00, 0, 1),
(7058, 7, 432, 54, 44.00, 1, 1),
(7059, 7, 432, 55, 44.00, 1, 1),
(7060, 7, 432, 56, 444444.00, 1, 1),
(7061, 7, 432, 57, 44.00, 1, 1),
(7062, 7, 432, 58, 44.00, 1, 1),
(7063, 7, 432, 59, 100000.00, 1, 1),
(7064, 7, 432, 60, 100000.00, 1, 1),
(7065, 7, 432, 61, 100000.00, 1, 1),
(7066, 7, 432, 62, 100000.00, 1, 1),
(7067, 7, 432, 63, 100000.00, 1, 1),
(7068, 7, 432, 65, 100000.00, 1, 1),
(7069, 7, 429, 65, 0.00, 0, 1),
(7070, 7, 428, 65, 0.00, 0, 1),
(7071, 7, 433, 54, 4133.00, 1, 1),
(7072, 7, 433, 55, 12331.00, 1, 1),
(7073, 7, 433, 56, 41232.00, 1, 1),
(7074, 7, 433, 57, 88.00, 1, 1),
(7075, 7, 433, 58, 25.00, 1, 1),
(7076, 7, 433, 59, 0.00, 0, 1),
(7077, 7, 433, 60, 0.00, 0, 1),
(7078, 7, 433, 61, 0.00, 0, 1),
(7079, 7, 433, 62, 0.00, 0, 1),
(7080, 7, 433, 63, 0.00, 0, 1),
(7081, 7, 433, 65, 0.00, 0, 1),
(7082, 7, 434, 54, 0.00, 0, 1),
(7083, 7, 434, 55, 0.00, 0, 1),
(7084, 7, 434, 56, 0.00, 0, 1),
(7085, 7, 434, 57, 0.00, 0, 1),
(7086, 7, 434, 58, 0.00, 0, 1),
(7087, 7, 434, 59, 0.00, 0, 1),
(7088, 7, 434, 60, 0.00, 0, 1),
(7089, 7, 434, 61, 0.00, 0, 1),
(7090, 7, 434, 62, 0.00, 0, 1),
(7091, 7, 434, 63, 0.00, 0, 1),
(7092, 7, 434, 65, 0.00, 0, 1),
(7093, 7, 436, 54, 0.00, 0, 1),
(7094, 7, 436, 55, 0.00, 0, 1),
(7095, 7, 436, 56, 0.00, 0, 1),
(7096, 7, 436, 57, 0.00, 0, 1),
(7097, 7, 436, 58, 0.00, 0, 1),
(7098, 7, 436, 59, 0.00, 0, 1),
(7099, 7, 436, 60, 0.00, 0, 1),
(7100, 7, 436, 61, 0.00, 0, 1),
(7101, 7, 436, 62, 0.00, 0, 1),
(7102, 7, 436, 63, 0.00, 0, 1),
(7103, 7, 436, 65, 0.00, 0, 1),
(7104, 7, 437, 54, 0.00, 0, 1),
(7105, 7, 437, 55, 0.00, 0, 1),
(7106, 7, 437, 56, 0.00, 0, 1),
(7107, 7, 437, 57, 0.00, 0, 1),
(7108, 7, 437, 58, 0.00, 0, 1),
(7109, 7, 437, 59, 0.00, 0, 1),
(7110, 7, 437, 60, 0.00, 0, 1),
(7111, 7, 437, 61, 0.00, 0, 1),
(7112, 7, 437, 62, 0.00, 0, 1),
(7113, 7, 437, 63, 0.00, 0, 1),
(7114, 7, 437, 65, 0.00, 0, 1),
(7115, 7, 438, 54, 8691.55, 1, 1),
(7116, 7, 438, 55, 18546.15, 1, 1),
(7117, 7, 438, 56, 231688.00, 1, 1),
(7118, 7, 438, 57, 221.00, 1, 1),
(7119, 7, 438, 58, 51.00, 1, 1),
(7120, 7, 439, 54, 0.00, 0, 1),
(7121, 7, 439, 55, 0.00, 0, 1),
(7122, 7, 439, 56, 0.00, 0, 1),
(7123, 7, 439, 57, 0.00, 0, 1),
(7124, 7, 439, 58, 0.00, 0, 1),
(7125, 10, 440, 66, 32.51, 1, 1),
(7126, 10, 440, 68, 320000.00, 1, 1),
(7127, 10, 440, 69, 5.00, 0, 1),
(7128, 10, 440, 67, 400.00, 1, 1),
(7129, 10, 440, 7, 0.00, 0, 1),
(7130, 10, 440, 8, 0.00, 0, 1),
(7131, 10, 440, 9, 0.00, 0, 1),
(7132, 10, 440, 10, 0.00, 0, 1),
(7133, 10, 440, 11, 0.00, 0, 1),
(7134, 10, 440, 70, 0.00, 0, 1),
(7135, 10, 440, 71, 0.00, 0, 1),
(7136, 10, 440, 72, 0.00, 0, 1),
(7137, 10, 440, 73, 0.00, 0, 1),
(7138, 10, 441, 66, 60.00, 1, 1),
(7139, 10, 441, 68, 251600.00, 1, 1),
(7140, 10, 441, 69, 10.00, 1, 1),
(7141, 10, 441, 67, 18000.00, 1, 1),
(7142, 10, 441, 7, 0.00, 0, 1),
(7143, 10, 441, 8, 0.00, 0, 1),
(7144, 10, 441, 9, 0.00, 0, 1),
(7145, 10, 441, 10, 0.00, 0, 1),
(7146, 10, 441, 11, 0.00, 0, 1),
(7147, 10, 441, 70, 100.00, 1, 1),
(7148, 10, 441, 71, 0.00, 0, 1),
(7149, 10, 441, 72, 0.00, 0, 1),
(7150, 10, 441, 73, 0.00, 0, 1),
(7151, 10, 442, 66, 300.00, 1, 1),
(7152, 10, 442, 68, 600000.00, 0, 1),
(7153, 10, 442, 69, 1.00, 0, 1),
(7154, 10, 442, 67, 1500.00, 0, 1),
(7155, 10, 442, 7, 0.00, 0, 1),
(7156, 10, 442, 8, 0.00, 0, 1),
(7157, 10, 442, 9, 0.00, 0, 1),
(7158, 10, 442, 10, 0.00, 0, 1),
(7159, 10, 442, 11, 0.00, 0, 1),
(7160, 10, 442, 70, 0.00, 0, 1),
(7161, 10, 442, 71, 0.00, 0, 1),
(7162, 10, 442, 72, 0.00, 0, 1),
(7163, 10, 442, 73, 0.00, 0, 1),
(7164, 10, 443, 66, 0.00, 1, 1),
(7165, 10, 443, 68, 0.00, 0, 1),
(7166, 10, 443, 69, 0.00, 0, 1),
(7167, 10, 443, 67, 0.00, 1, 1),
(7168, 10, 443, 7, 0.00, 0, 1),
(7169, 10, 443, 8, 0.00, 0, 1),
(7170, 10, 443, 9, 0.00, 0, 1),
(7171, 10, 443, 10, 0.00, 0, 1),
(7172, 10, 443, 11, 0.00, 0, 1),
(7173, 10, 443, 70, 0.00, 0, 1),
(7174, 10, 443, 71, 0.00, 0, 1),
(7175, 10, 443, 72, 0.00, 1, 1),
(7176, 10, 443, 73, 0.00, 1, 1),
(7177, 10, 444, 66, 0.00, 0, 1),
(7178, 10, 444, 68, 0.00, 0, 1),
(7179, 10, 444, 69, 0.00, 0, 1),
(7180, 10, 444, 67, 0.00, 0, 1),
(7181, 10, 444, 7, 0.00, 0, 1),
(7182, 10, 444, 8, 0.00, 0, 1),
(7183, 10, 444, 9, 0.00, 0, 1),
(7184, 10, 444, 10, 0.00, 0, 1),
(7185, 10, 444, 11, 0.00, 0, 1),
(7186, 10, 444, 70, 0.00, 0, 1),
(7187, 10, 444, 71, 0.00, 0, 1),
(7188, 10, 444, 72, 0.00, 0, 1),
(7189, 10, 444, 73, 0.00, 0, 1),
(7190, 10, 445, 66, 40.00, 1, 1),
(7191, 10, 445, 68, 270000.00, 1, 1),
(7192, 10, 445, 69, 0.00, 0, 1),
(7193, 10, 445, 67, 950.00, 1, 1),
(7194, 10, 445, 7, 0.00, 0, 1),
(7195, 10, 445, 8, 0.00, 0, 1),
(7196, 10, 445, 9, 0.00, 0, 1),
(7197, 10, 445, 10, 0.00, 0, 1),
(7198, 10, 445, 11, 0.00, 0, 1),
(7199, 10, 445, 70, 0.00, 0, 1),
(7200, 10, 445, 71, 0.00, 0, 1),
(7201, 10, 445, 72, 0.00, 0, 1),
(7202, 10, 445, 73, 0.00, 0, 1),
(7203, 10, 446, 66, 60.00, 1, 1),
(7204, 10, 446, 68, 244787.00, 1, 1),
(7205, 10, 446, 69, 5.00, 1, 1),
(7206, 10, 446, 67, 300.00, 1, 1),
(7207, 10, 446, 7, 0.00, 0, 1),
(7208, 10, 446, 8, 0.00, 0, 1),
(7209, 10, 446, 9, 0.00, 0, 1),
(7210, 10, 446, 10, 0.00, 0, 1),
(7211, 10, 446, 11, 0.00, 0, 1),
(7212, 10, 446, 70, 5.00, 1, 1),
(7213, 10, 446, 71, 0.00, 0, 1),
(7214, 10, 446, 72, 0.00, 0, 1),
(7215, 10, 446, 73, 0.00, 0, 1),
(7216, 10, 447, 66, 0.00, 0, 1),
(7217, 10, 447, 67, 200000.00, 1, 1),
(7218, 10, 447, 68, 200000.00, 1, 1),
(7219, 10, 447, 69, 0.00, 0, 1),
(7220, 10, 447, 7, 0.00, 0, 1),
(7221, 10, 447, 8, 10000.00, 1, 1),
(7222, 10, 447, 9, 0.00, 0, 1),
(7223, 10, 447, 10, 0.00, 0, 1),
(7224, 10, 447, 11, 0.00, 0, 1),
(7225, 10, 447, 70, 40000.00, 1, 1),
(7226, 10, 447, 71, 0.00, 0, 1),
(7227, 10, 447, 72, 0.00, 0, 1),
(7228, 10, 447, 73, 0.00, 0, 1),
(7229, 10, 448, 66, 0.00, 1, 1),
(7230, 10, 448, 67, 10000.00, 1, 1),
(7231, 10, 448, 68, 0.00, 0, 1),
(7232, 10, 448, 69, 20000.00, 1, 1),
(7233, 10, 448, 7, 0.00, 0, 1),
(7234, 10, 448, 8, 0.00, 0, 1),
(7235, 10, 448, 9, 0.00, 0, 1),
(7236, 10, 448, 10, 0.00, 0, 1),
(7237, 10, 448, 11, 0.00, 0, 1),
(7238, 10, 448, 70, 0.00, 0, 1),
(7239, 10, 448, 71, 0.00, 0, 1),
(7240, 10, 448, 72, 0.00, 0, 1),
(7241, 10, 448, 73, 0.00, 0, 1),
(7242, 10, 448, 66, 0.00, 1, 1),
(7243, 10, 448, 67, 350.00, 1, 1),
(7244, 10, 448, 68, 100.00, 1, 1),
(7245, 10, 448, 69, 450.00, 1, 1),
(7246, 10, 448, 7, 100.00, 1, 1),
(7247, 10, 448, 8, 0.00, 0, 1),
(7248, 10, 448, 9, 0.00, 0, 1),
(7249, 10, 448, 10, 0.00, 0, 1),
(7250, 10, 448, 11, 0.00, 0, 1),
(7251, 10, 448, 70, 0.00, 0, 1),
(7252, 10, 448, 71, 0.00, 0, 1),
(7253, 10, 448, 72, 0.00, 0, 1),
(7254, 10, 448, 73, 0.00, 0, 1),
(7255, 10, 449, 66, 0.00, 0, 1),
(7256, 10, 449, 67, 350000.00, 1, 1),
(7257, 10, 449, 68, 100000.00, 0, 1),
(7258, 10, 449, 69, 0.00, 0, 1),
(7259, 10, 449, 7, 100000.00, 0, 1),
(7260, 10, 449, 8, 0.00, 0, 1),
(7261, 10, 449, 9, 450000.00, 0, 1),
(7262, 10, 449, 10, 0.00, 0, 1),
(7263, 10, 449, 11, 0.00, 0, 1),
(7264, 10, 449, 70, 0.00, 0, 1),
(7265, 10, 449, 71, 0.00, 0, 1),
(7266, 10, 449, 72, 0.00, 0, 1),
(7267, 10, 449, 73, 0.00, 0, 1),
(7268, 10, 450, 66, 0.00, 0, 1),
(7269, 10, 450, 67, 0.00, 0, 1),
(7270, 10, 450, 68, 320000.00, 1, 1),
(7271, 10, 450, 69, 0.00, 0, 1),
(7272, 10, 450, 7, 680000.00, 0, 1),
(7273, 10, 450, 8, 0.00, 0, 1),
(7274, 10, 450, 9, 0.00, 0, 1),
(7275, 10, 450, 10, 0.00, 0, 1),
(7276, 10, 450, 11, 0.00, 0, 1),
(7277, 10, 450, 70, 0.00, 0, 1),
(7278, 10, 450, 71, 0.00, 0, 1),
(7279, 10, 450, 72, 0.00, 0, 1),
(7280, 10, 450, 73, 0.00, 0, 1),
(7281, 10, 451, 66, 450.00, 1, 1),
(7282, 10, 451, 67, 0.00, 0, 1),
(7283, 10, 451, 68, 250000.00, 1, 1),
(7284, 10, 451, 69, 0.00, 0, 1),
(7285, 10, 451, 7, 0.00, 0, 1),
(7286, 10, 451, 8, 0.00, 0, 1),
(7287, 10, 451, 9, 0.00, 0, 1),
(7288, 10, 451, 10, 0.00, 0, 1),
(7289, 10, 451, 11, 0.00, 0, 1),
(7290, 10, 451, 70, 0.00, 0, 1),
(7291, 10, 451, 71, 0.00, 0, 1),
(7292, 10, 451, 72, 0.00, 1, 1),
(7293, 10, 451, 73, 0.00, 0, 1),
(7294, 10, 452, 66, 0.00, 0, 1),
(7295, 10, 452, 67, 0.00, 0, 1),
(7296, 10, 452, 68, 800000.00, 1, 1),
(7297, 10, 452, 69, 0.00, 0, 1),
(7298, 10, 452, 7, 0.00, 0, 1),
(7299, 10, 452, 8, 0.00, 0, 1),
(7300, 10, 452, 9, 0.00, 0, 1),
(7301, 10, 452, 10, 0.00, 0, 1),
(7302, 10, 452, 11, 0.00, 0, 1),
(7303, 10, 452, 70, 0.00, 0, 1),
(7304, 10, 452, 71, 0.00, 0, 1),
(7305, 10, 452, 72, 0.00, 0, 1),
(7306, 10, 452, 73, 0.00, 0, 1),
(7307, 10, 453, 66, 0.00, 0, 1),
(7308, 10, 453, 67, 0.00, 0, 1),
(7309, 10, 453, 68, 0.00, 0, 1),
(7310, 10, 453, 69, 0.00, 0, 1),
(7311, 10, 453, 7, 100000.00, 1, 1),
(7312, 10, 453, 8, 0.00, 0, 1),
(7313, 10, 453, 9, 0.00, 0, 1),
(7314, 10, 453, 10, 0.00, 0, 1),
(7315, 10, 453, 11, 0.00, 0, 1),
(7316, 10, 453, 70, 0.00, 0, 1),
(7317, 10, 453, 71, 0.00, 0, 1),
(7318, 10, 453, 72, 0.00, 0, 1),
(7319, 10, 453, 73, 100000.00, 1, 1),
(7320, 10, 454, 66, 0.00, 0, 1),
(7321, 10, 454, 67, 0.00, 0, 1),
(7322, 10, 454, 68, 950000.00, 1, 1),
(7323, 10, 454, 69, 0.00, 0, 1),
(7324, 10, 454, 7, 0.00, 0, 1),
(7325, 10, 454, 8, 0.00, 0, 1),
(7326, 10, 454, 9, 0.00, 0, 1),
(7327, 10, 454, 10, 0.00, 0, 1),
(7328, 10, 454, 11, 0.00, 0, 1),
(7329, 10, 454, 70, 0.00, 0, 1),
(7330, 10, 454, 71, 0.00, 0, 1),
(7331, 10, 454, 72, 50000.00, 1, 1),
(7332, 10, 454, 73, 0.00, 0, 1),
(7333, 10, 455, 66, 0.00, 0, 1),
(7334, 10, 455, 67, 0.00, 0, 1),
(7335, 10, 455, 68, 0.00, 0, 1),
(7336, 10, 455, 69, 0.00, 0, 1),
(7337, 10, 455, 7, 0.00, 0, 1),
(7338, 10, 455, 8, 999999.00, 1, 1),
(7339, 10, 455, 9, 0.00, 0, 1),
(7340, 10, 455, 10, 0.00, 0, 1),
(7341, 10, 455, 11, 0.00, 0, 1),
(7342, 10, 455, 70, 0.00, 0, 1),
(7343, 10, 455, 71, 0.00, 0, 1),
(7344, 10, 455, 72, 0.00, 0, 1),
(7345, 10, 455, 73, 0.00, 0, 1),
(7346, 10, 456, 66, 0.00, 0, 1),
(7347, 10, 456, 67, 0.00, 0, 1),
(7348, 10, 456, 68, 0.00, 0, 1),
(7349, 10, 456, 69, 0.00, 0, 1),
(7350, 10, 456, 7, 1000000.00, 1, 1),
(7351, 10, 456, 8, 0.00, 0, 1),
(7352, 10, 456, 9, 0.00, 0, 1),
(7353, 10, 456, 10, 0.00, 0, 1),
(7354, 10, 456, 11, 0.00, 0, 1),
(7355, 10, 456, 70, 0.00, 0, 1),
(7356, 10, 456, 71, 0.00, 0, 1),
(7357, 10, 456, 72, 0.00, 0, 1),
(7358, 10, 456, 73, 0.00, 0, 1),
(7359, 10, 457, 66, 0.00, 0, 1),
(7360, 10, 457, 67, 0.00, 0, 1),
(7361, 10, 457, 68, 0.00, 0, 1),
(7362, 10, 457, 69, 0.00, 0, 1),
(7363, 10, 457, 7, 500000.00, 1, 1),
(7364, 10, 457, 8, 0.00, 0, 1),
(7365, 10, 457, 9, 0.00, 0, 1),
(7366, 10, 457, 10, 0.00, 0, 1),
(7367, 10, 457, 11, 0.00, 0, 1),
(7368, 10, 457, 70, 0.00, 1, 1),
(7369, 10, 457, 71, 0.00, 1, 1),
(7370, 10, 457, 72, 0.00, 1, 1),
(7371, 10, 457, 73, 0.00, 1, 1),
(7372, 10, 457, 74, 0.00, 0, 1),
(7373, 10, 457, 75, 0.00, 0, 1),
(7374, 10, 457, 76, 0.00, 0, 1),
(7375, 10, 457, 19, 0.00, 0, 1),
(7376, 10, 458, 66, 68.00, 1, 1),
(7377, 10, 458, 67, 886.60, 1, 1),
(7378, 10, 458, 68, 210020.00, 1, 1),
(7379, 10, 458, 69, 12.00, 0, 1),
(7380, 10, 458, 7, 749680.00, 1, 1),
(7381, 10, 458, 8, 0.00, 0, 1),
(7382, 10, 458, 9, 0.00, 0, 1),
(7383, 10, 458, 10, 0.00, 0, 1),
(7384, 10, 458, 11, 0.00, 0, 1),
(7385, 10, 458, 70, 6.00, 0, 1),
(7386, 10, 458, 71, 0.00, 0, 1),
(7387, 10, 458, 72, 0.00, 0, 1),
(7388, 10, 458, 73, 0.00, 0, 1),
(7389, 10, 459, 66, 1000000.00, 1, 1),
(7390, 10, 459, 67, 0.00, 0, 1),
(7391, 10, 459, 68, 0.00, 0, 1),
(7392, 10, 459, 69, 0.00, 0, 1),
(7393, 10, 459, 7, 0.00, 0, 1),
(7394, 10, 459, 8, 0.00, 0, 1),
(7395, 10, 459, 9, 0.00, 0, 1),
(7396, 10, 459, 10, 0.00, 0, 1),
(7397, 10, 459, 11, 0.00, 0, 1),
(7398, 10, 459, 70, 0.00, 0, 1),
(7399, 10, 459, 71, 0.00, 0, 1),
(7400, 10, 459, 72, 0.00, 0, 1),
(7401, 10, 459, 73, 0.00, 0, 1),
(7402, 10, 460, 66, 28.00, 1, 1),
(7403, 10, 460, 67, 120.00, 1, 1),
(7404, 10, 460, 68, 100000.00, 1, 1),
(7405, 10, 460, 69, 3.00, 1, 1),
(7406, 10, 460, 7, 768200.00, 0, 1),
(7407, 10, 460, 8, 0.00, 0, 1),
(7408, 10, 460, 9, 0.00, 0, 1),
(7409, 10, 460, 10, 0.00, 0, 1),
(7410, 10, 460, 11, 0.00, 0, 1),
(7411, 10, 460, 70, 3.00, 1, 1),
(7412, 10, 460, 71, 0.00, 0, 1),
(7413, 10, 460, 72, 0.00, 0, 1),
(7414, 10, 460, 73, 0.00, 0, 1),
(7415, 10, 461, 66, 0.00, 0, 1),
(7416, 10, 461, 67, 0.00, 0, 1),
(7417, 10, 461, 68, 0.00, 0, 1),
(7418, 10, 461, 69, 0.00, 0, 1),
(7419, 10, 461, 7, 0.00, 0, 1),
(7420, 10, 461, 8, 0.00, 0, 1),
(7421, 10, 461, 9, 999999.00, 1, 1),
(7422, 10, 461, 10, 0.00, 0, 1),
(7423, 10, 461, 11, 0.00, 0, 1),
(7424, 10, 461, 70, 0.00, 0, 1),
(7425, 10, 461, 71, 0.00, 0, 1),
(7426, 10, 461, 72, 0.00, 0, 1),
(7427, 10, 461, 73, 0.00, 0, 1),
(7428, 10, 462, 66, 0.00, 0, 1),
(7429, 10, 462, 67, 0.00, 0, 1),
(7430, 10, 462, 68, 0.00, 0, 1),
(7431, 10, 462, 69, 0.00, 0, 1),
(7432, 10, 462, 70, 0.00, 0, 1),
(7433, 10, 463, 66, 0.00, 1, 1),
(7434, 10, 463, 67, 0.00, 0, 1),
(7435, 10, 463, 68, 0.00, 0, 1),
(7436, 10, 463, 69, 0.00, 0, 1),
(7437, 10, 463, 70, 0.00, 0, 1),
(7438, 10, 464, 66, 0.00, 1, 1),
(7439, 10, 464, 67, 0.00, 0, 1),
(7440, 10, 464, 68, 0.00, 0, 1),
(7441, 10, 464, 69, 0.00, 0, 1),
(7442, 10, 464, 70, 0.00, 0, 1),
(7443, 10, 464, 71, 0.00, 0, 1),
(7444, 10, 464, 72, 0.00, 0, 1),
(7445, 10, 464, 73, 0.00, 0, 1),
(7446, 10, 464, 74, 0.00, 0, 1),
(7447, 10, 464, 75, 0.00, 0, 1),
(7448, 10, 464, 76, 0.00, 0, 1),
(7449, 10, 464, 19, 0.00, 0, 1),
(7450, 10, 465, 66, 0.00, 1, 1),
(7451, 10, 465, 67, 0.00, 0, 1),
(7452, 10, 465, 68, 0.00, 0, 1),
(7453, 10, 465, 69, 0.00, 0, 1),
(7454, 10, 465, 70, 0.00, 0, 1),
(7455, 10, 466, 66, 196.00, 1, 1),
(7456, 10, 466, 67, 1645.00, 1, 1),
(7457, 10, 466, 68, 220000.00, 1, 1),
(7458, 10, 466, 69, 14.00, 1, 1),
(7459, 10, 466, 70, 30.00, 1, 1),
(7460, 10, 467, 66, 0.00, 0, 1),
(7461, 10, 467, 67, 300.00, 0, 1),
(7462, 10, 467, 68, 240000.00, 1, 1),
(7463, 10, 467, 69, 0.00, 0, 1),
(7464, 10, 467, 70, 0.00, 0, 1),
(7465, 10, 468, 66, 0.00, 0, 1),
(7466, 10, 468, 67, 0.00, 0, 1),
(7467, 10, 468, 68, 265000.00, 1, 1),
(7468, 10, 468, 69, 0.00, 0, 1),
(7469, 10, 468, 70, 0.00, 0, 1),
(7470, 10, 469, 66, 60.00, 1, 1),
(7471, 10, 469, 67, 320.00, 1, 1),
(7472, 10, 469, 68, 184000.00, 1, 1),
(7473, 10, 469, 69, 0.00, 0, 1),
(7474, 10, 469, 70, 0.00, 0, 1),
(7475, 10, 470, 66, 0.00, 0, 1),
(7476, 10, 470, 67, 350.00, 1, 1),
(7477, 10, 470, 68, 240000.00, 1, 1),
(7478, 10, 470, 69, 0.00, 0, 1),
(7479, 10, 470, 70, 0.00, 0, 1),
(7480, 10, 471, 66, 67.00, 1, 1),
(7481, 10, 471, 67, 400.00, 1, 1),
(7482, 10, 471, 68, 170000.00, 1, 1),
(7483, 10, 471, 69, 20.00, 1, 1),
(7484, 10, 471, 70, 30.00, 1, 1),
(7485, 10, 472, 66, 0.00, 0, 1),
(7486, 10, 472, 67, 0.00, 0, 1),
(7487, 10, 472, 68, 1.00, 1, 1),
(7488, 10, 472, 69, 0.00, 0, 1),
(7489, 10, 472, 70, 0.00, 0, 1),
(7490, 10, 473, 66, 0.00, 0, 1),
(7491, 10, 473, 67, 600.00, 1, 1),
(7492, 10, 473, 68, 200000.00, 1, 1),
(7493, 10, 473, 69, 0.00, 0, 1),
(7494, 10, 473, 70, 0.00, 0, 1),
(7495, 10, 474, 66, 50.00, 1, 1),
(7496, 10, 474, 67, 200.00, 1, 1),
(7497, 10, 474, 68, 240000.00, 1, 1),
(7498, 10, 474, 69, 0.00, 0, 1),
(7499, 10, 474, 70, 0.00, 0, 1),
(7500, 10, 475, 66, 60.00, 1, 1),
(7501, 10, 475, 67, 200.00, 1, 1),
(7502, 10, 475, 68, 120000.00, 1, 1),
(7503, 10, 475, 69, 1.00, 0, 1),
(7504, 10, 475, 70, 1.00, 0, 1),
(7505, 10, 476, 66, 90.00, 1, 1),
(7506, 10, 476, 67, 666.00, 1, 1),
(7507, 10, 476, 68, 210000.00, 1, 1),
(7508, 10, 476, 69, 0.00, 0, 1),
(7509, 10, 476, 70, 0.00, 0, 1),
(7510, 10, 477, 66, 243.00, 1, 1),
(7511, 10, 477, 67, 1562.00, 1, 1),
(7512, 10, 477, 68, 220000.00, 1, 1),
(7513, 10, 477, 69, 15.00, 1, 1),
(7514, 10, 477, 70, 49.00, 1, 1),
(7515, 10, 478, 66, 97.10, 1, 1),
(7516, 10, 478, 67, 540.00, 1, 1),
(7517, 10, 478, 68, 212000.00, 1, 1),
(7518, 10, 478, 69, 0.00, 0, 1),
(7519, 10, 478, 70, 6.00, 1, 1),
(7520, 10, 479, 66, 88.00, 1, 1),
(7521, 10, 479, 67, 188.00, 1, 1),
(7522, 10, 479, 68, 250000.00, 1, 1),
(7523, 10, 479, 69, 0.00, 0, 1),
(7524, 10, 479, 70, 0.00, 0, 1),
(7525, 10, 480, 66, 222.00, 1, 1),
(7526, 10, 480, 67, 2222.00, 1, 1),
(7527, 10, 480, 68, 222222.00, 1, 1),
(7528, 10, 480, 69, 22.00, 1, 1),
(7529, 10, 480, 70, 2.00, 1, 1),
(7530, 10, 481, 66, 365.00, 1, 1),
(7531, 10, 481, 67, 1800.00, 1, 1),
(7532, 10, 481, 68, 350000.00, 1, 1),
(7533, 10, 481, 69, 35.00, 1, 1),
(7534, 10, 481, 70, 12.00, 1, 1),
(7535, 10, 482, 66, 112.00, 1, 1),
(7536, 10, 482, 67, 212.00, 1, 1),
(7537, 10, 482, 68, 310000.00, 1, 1),
(7538, 10, 482, 69, 21.00, 1, 1),
(7539, 10, 482, 70, 9.00, 1, 1),
(7540, 10, 483, 66, 800.00, 1, 1),
(7541, 10, 483, 67, 500.00, 1, 1),
(7542, 10, 483, 68, 210000.00, 1, 1),
(7543, 10, 483, 69, 0.00, 0, 1),
(7544, 10, 483, 70, 0.00, 0, 1),
(7545, 10, 484, 66, 1200.00, 1, 1),
(7546, 10, 484, 67, 1200.00, 0, 1),
(7547, 10, 484, 68, 215000.00, 0, 1),
(7548, 10, 484, 69, 0.00, 0, 1),
(7549, 10, 484, 70, 0.00, 0, 1),
(7550, 10, 485, 66, 2000.00, 1, 1),
(7551, 10, 485, 67, 2000.00, 1, 1),
(7552, 10, 485, 68, 250000.00, 1, 1),
(7553, 10, 485, 69, 0.00, 0, 1),
(7554, 10, 485, 70, 0.00, 0, 1),
(7555, 10, 486, 66, 144.00, 1, 1),
(7556, 10, 486, 67, 312.00, 1, 1),
(7557, 10, 486, 68, 310000.00, 1, 1),
(7558, 10, 486, 69, 1.00, 1, 1),
(7559, 10, 486, 70, 0.00, 1, 1),
(7560, 10, 486, 71, 0.00, 0, 1),
(7561, 10, 486, 72, 0.00, 0, 1),
(7562, 10, 486, 73, 0.00, 0, 1),
(7563, 10, 486, 74, 0.00, 0, 1),
(7564, 10, 486, 75, 0.00, 0, 1),
(7565, 10, 486, 76, 0.00, 0, 1),
(7566, 10, 486, 19, 0.00, 0, 1),
(7567, 10, 487, 66, 210.00, 1, 1),
(7568, 10, 487, 67, 1655.00, 1, 1),
(7569, 10, 487, 68, 262351.00, 1, 1),
(7570, 10, 487, 69, 3.00, 1, 1),
(7571, 10, 487, 70, 0.00, 0, 1),
(7572, 10, 487, 71, 0.00, 0, 1),
(7573, 10, 487, 72, 0.00, 0, 1),
(7574, 10, 487, 73, 0.00, 0, 1),
(7575, 10, 487, 74, 0.00, 0, 1),
(7576, 10, 487, 75, 0.00, 0, 1),
(7577, 10, 487, 76, 0.00, 0, 1),
(7578, 10, 487, 19, 0.00, 0, 1),
(7579, 10, 488, 66, 588.00, 1, 1),
(7580, 10, 488, 67, 0.00, 0, 1),
(7581, 10, 488, 68, 220000.00, 1, 1),
(7582, 10, 488, 69, 0.00, 0, 1),
(7583, 10, 488, 70, 0.00, 0, 1),
(7584, 10, 488, 71, 0.00, 0, 1),
(7585, 10, 488, 72, 0.00, 0, 1),
(7586, 10, 488, 73, 0.00, 0, 1),
(7587, 10, 488, 74, 0.00, 0, 1),
(7588, 10, 488, 75, 0.00, 0, 1),
(7589, 10, 488, 76, 0.00, 0, 1),
(7590, 10, 488, 19, 0.00, 0, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(7591, 10, 489, 66, 144.00, 1, 1),
(7592, 10, 489, 67, 0.00, 0, 1),
(7593, 10, 489, 68, 220000.00, 1, 1),
(7594, 10, 489, 69, 0.00, 0, 1),
(7595, 10, 489, 70, 0.00, 0, 1),
(7596, 10, 489, 71, 0.00, 0, 1),
(7597, 10, 489, 72, 0.00, 0, 1),
(7598, 10, 489, 73, 0.00, 0, 1),
(7599, 10, 489, 74, 0.00, 0, 1),
(7600, 10, 489, 75, 0.00, 0, 1),
(7601, 10, 489, 76, 0.00, 0, 1),
(7602, 10, 489, 19, 0.00, 0, 1),
(7603, 10, 490, 66, 323.50, 1, 1),
(7604, 10, 490, 67, 0.00, 0, 1),
(7605, 10, 490, 68, 220000.00, 1, 1),
(7606, 10, 490, 69, 0.00, 0, 1),
(7607, 10, 490, 70, 0.00, 0, 1),
(7608, 10, 490, 71, 0.00, 0, 1),
(7609, 10, 490, 72, 0.00, 0, 1),
(7610, 10, 490, 73, 0.00, 0, 1),
(7611, 10, 490, 74, 0.00, 0, 1),
(7612, 10, 490, 75, 0.00, 0, 1),
(7613, 10, 490, 76, 0.00, 0, 1),
(7614, 10, 490, 19, 0.00, 0, 1),
(7615, 10, 491, 66, 1102.00, 1, 1),
(7616, 10, 491, 67, 2222.00, 1, 1),
(7617, 10, 491, 68, 222000.00, 1, 1),
(7618, 10, 491, 69, 33.00, 1, 1),
(7619, 10, 491, 70, 33.00, 1, 1),
(7620, 10, 492, 66, 677.00, 1, 1),
(7621, 10, 492, 67, 333.00, 1, 1),
(7622, 10, 492, 68, 220000.00, 1, 1),
(7623, 10, 492, 69, 20.00, 1, 1),
(7624, 10, 492, 70, 20.00, 1, 1),
(7625, 10, 493, 66, 510.40, 1, 1),
(7626, 10, 493, 67, 600.00, 1, 1),
(7627, 10, 493, 68, 220000.00, 1, 1),
(7628, 10, 493, 69, 20.00, 1, 1),
(7629, 10, 493, 70, 15.00, 1, 1),
(7630, 10, 494, 66, 264.00, 1, 1),
(7631, 10, 494, 67, 322.00, 1, 1),
(7632, 10, 494, 68, 202545.00, 1, 1),
(7633, 10, 494, 69, 15.00, 1, 1),
(7634, 10, 494, 70, 10.00, 1, 1),
(7635, 10, 495, 66, 0.00, 0, 1),
(7636, 10, 495, 67, 0.00, 0, 1),
(7637, 10, 495, 68, 280000.00, 1, 1),
(7638, 10, 495, 69, 0.00, 0, 1),
(7639, 10, 495, 70, 0.00, 0, 1),
(7640, 10, 496, 66, 0.00, 0, 1),
(7641, 10, 496, 67, 0.00, 0, 1),
(7642, 10, 496, 68, 230000.00, 1, 1),
(7643, 10, 496, 69, 0.00, 0, 1),
(7644, 10, 496, 70, 0.00, 0, 1),
(7645, 10, 497, 66, 0.00, 0, 1),
(7646, 10, 497, 67, 0.00, 0, 1),
(7647, 10, 497, 68, 180000.00, 1, 1),
(7648, 10, 497, 69, 0.00, 0, 1),
(7649, 10, 497, 70, 0.00, 0, 1),
(7650, 10, 498, 66, 0.00, 0, 1),
(7651, 10, 498, 67, 0.00, 0, 1),
(7652, 10, 498, 68, 0.00, 0, 1),
(7653, 10, 498, 69, 0.00, 0, 1),
(7654, 10, 498, 70, 0.00, 0, 1),
(7655, 10, 499, 66, 4186.30, 1, 1),
(7656, 10, 499, 67, 12845.00, 0, 1),
(7657, 10, 499, 68, 100277.00, 0, 1),
(7658, 10, 499, 69, 80.00, 0, 1),
(7659, 10, 499, 70, 1223.00, 0, 1),
(7660, 10, 500, 66, 8266.41, 1, 1),
(7661, 10, 500, 67, 17345.80, 0, 1),
(7662, 10, 500, 68, 81255.00, 0, 1),
(7663, 10, 500, 69, 94.20, 0, 1),
(7664, 10, 500, 70, 112.00, 0, 1),
(7665, 10, 501, 66, 1549.25, 1, 1),
(7666, 10, 501, 67, 12422.50, 0, 1),
(7667, 10, 501, 68, 89912.00, 0, 1),
(7668, 10, 501, 69, 114.00, 0, 1),
(7669, 10, 501, 70, 1212.00, 0, 1),
(7670, 10, 502, 66, 888.00, 1, 1),
(7671, 10, 502, 67, 7466.00, 0, 1),
(7672, 10, 502, 68, 120224.00, 0, 1),
(7673, 10, 502, 69, 160.00, 0, 1),
(7674, 10, 502, 70, 288.00, 0, 1),
(7675, 10, 503, 66, 321.00, 1, 1),
(7676, 10, 503, 67, 2100.00, 1, 1),
(7677, 10, 503, 68, 210000.00, 1, 1),
(7678, 10, 503, 69, 25.00, 1, 1),
(7679, 10, 503, 70, 212.00, 1, 1),
(7680, 10, 504, 66, 303.00, 1, 1),
(7681, 10, 504, 67, 480.00, 1, 1),
(7682, 10, 504, 68, 245000.00, 1, 1),
(7683, 10, 504, 69, 12.00, 1, 1),
(7684, 10, 504, 70, 88.00, 1, 1),
(7685, 10, 505, 66, 188.00, 1, 1),
(7686, 10, 505, 67, 2500.00, 1, 1),
(7687, 10, 505, 68, 265120.00, 1, 1),
(7688, 10, 505, 69, 28.00, 1, 1),
(7689, 10, 505, 70, 56.00, 1, 1),
(7690, 10, 506, 66, 112.00, 1, 1),
(7691, 10, 506, 67, 312.00, 1, 1),
(7692, 10, 506, 68, 242150.00, 1, 1),
(7693, 10, 506, 69, 8.00, 1, 1),
(7694, 10, 506, 70, 12.00, 1, 1),
(7695, 10, 507, 66, 68.00, 1, 1),
(7696, 10, 507, 67, 289.00, 1, 1),
(7697, 10, 507, 68, 289585.00, 1, 1),
(7698, 10, 507, 69, 13.00, 1, 1),
(7699, 10, 507, 70, 18.00, 1, 1),
(7700, 10, 508, 66, 291.00, 1, 1),
(7701, 10, 508, 67, 6499.00, 1, 1),
(7702, 10, 508, 68, 232024.00, 1, 1),
(7703, 10, 508, 69, 71.00, 1, 1),
(7704, 10, 508, 70, 81.00, 1, 1),
(7705, 10, 509, 66, 273.00, 1, 1),
(7706, 10, 509, 67, 400.00, 1, 1),
(7707, 10, 509, 68, 245612.00, 1, 1),
(7708, 10, 509, 69, 72.00, 1, 1),
(7709, 10, 509, 70, 58.00, 1, 1),
(7710, 10, 510, 66, 0.00, 0, 1),
(7711, 10, 510, 67, 0.00, 0, 1),
(7712, 10, 510, 68, 999999.00, 1, 1),
(7713, 10, 510, 69, 0.00, 0, 1),
(7714, 10, 510, 70, 0.00, 0, 1),
(7715, 10, 510, 71, 0.00, 0, 1),
(7716, 10, 510, 72, 0.00, 0, 1),
(7717, 10, 510, 73, 0.00, 0, 1),
(7718, 10, 510, 74, 0.00, 0, 1),
(7719, 10, 510, 75, 0.00, 0, 1),
(7720, 10, 510, 76, 0.00, 0, 1),
(7721, 10, 510, 19, 0.00, 0, 1),
(7722, 10, 511, 66, 0.00, 0, 1),
(7723, 10, 511, 67, 0.00, 0, 1),
(7724, 10, 511, 68, 880000.00, 1, 1),
(7725, 10, 511, 69, 0.00, 0, 1),
(7726, 10, 511, 70, 0.00, 0, 1),
(7727, 10, 511, 71, 0.00, 0, 1),
(7728, 10, 511, 72, 0.00, 0, 1),
(7729, 10, 511, 73, 0.00, 0, 1),
(7730, 10, 511, 74, 0.00, 0, 1),
(7731, 10, 511, 75, 0.00, 0, 1),
(7732, 10, 511, 76, 0.00, 0, 1),
(7733, 10, 511, 19, 0.00, 0, 1),
(7734, 10, 512, 66, 10.00, 1, 1),
(7735, 10, 512, 67, 30.00, 1, 1),
(7736, 10, 512, 68, 280000.00, 1, 1),
(7737, 10, 512, 69, 0.00, 0, 1),
(7738, 10, 512, 70, 0.00, 0, 1),
(7739, 10, 512, 71, 0.00, 0, 1),
(7740, 10, 512, 72, 0.00, 0, 1),
(7741, 10, 512, 73, 0.00, 0, 1),
(7742, 10, 512, 74, 0.00, 0, 1),
(7743, 10, 512, 75, 0.00, 0, 1),
(7744, 10, 512, 76, 0.00, 0, 1),
(7745, 10, 512, 19, 0.00, 0, 1),
(7746, 10, 513, 66, 0.00, 0, 1),
(7747, 10, 513, 67, 0.00, 0, 1),
(7748, 10, 513, 68, 0.00, 0, 1),
(7749, 10, 513, 69, 0.00, 0, 1),
(7750, 10, 513, 70, 0.00, 0, 1),
(7751, 10, 513, 71, 0.00, 0, 1),
(7752, 10, 513, 72, 0.00, 0, 1),
(7753, 10, 513, 73, 0.00, 0, 1),
(7754, 10, 513, 74, 0.00, 0, 1),
(7755, 10, 513, 75, 0.00, 0, 1),
(7756, 10, 513, 76, 0.00, 0, 1),
(7757, 10, 513, 19, 0.00, 0, 1),
(7758, 10, 514, 66, 0.00, 0, 1),
(7759, 10, 514, 67, 0.00, 0, 1),
(7760, 10, 514, 68, 0.00, 0, 1),
(7761, 10, 514, 69, 0.00, 0, 1),
(7762, 10, 514, 70, 0.00, 0, 1),
(7763, 10, 514, 71, 0.00, 0, 1),
(7764, 10, 514, 72, 0.00, 0, 1),
(7765, 10, 514, 73, 0.00, 0, 1),
(7766, 10, 514, 74, 0.00, 0, 1),
(7767, 10, 514, 75, 0.00, 0, 1),
(7768, 10, 514, 76, 0.00, 0, 1),
(7769, 10, 514, 19, 0.00, 0, 1),
(7770, 10, 515, 66, 6500.00, 1, 1),
(7771, 10, 515, 67, 0.00, 0, 1),
(7772, 10, 515, 68, 0.00, 0, 1),
(7773, 10, 515, 69, 0.00, 0, 1),
(7774, 10, 515, 70, 0.00, 0, 1),
(7775, 10, 515, 71, 0.00, 0, 1),
(7776, 10, 515, 72, 0.00, 0, 1),
(7777, 10, 515, 73, 0.00, 0, 1),
(7778, 10, 515, 74, 0.00, 0, 1),
(7779, 10, 515, 75, 0.00, 0, 1),
(7780, 10, 515, 76, 0.00, 0, 1),
(7781, 1, 117, 13, 6520.00, 1, 1),
(7782, 1, 117, 14, 38511.00, 1, 1),
(7783, 1, 117, 15, 32800.00, 1, 1),
(7784, 1, 117, 16, 0.00, 1, 1),
(7785, 1, 117, 17, 7400.00, 1, 1),
(7786, 1, 117, 18, 241.00, 1, 1),
(7787, 10, 516, 66, 0.00, 1, 1),
(7788, 10, 517, 66, 0.00, 0, 1),
(7789, 10, 518, 66, 0.00, 0, 1),
(7790, 10, 519, 66, 1000000.00, 1, 1),
(7791, 10, 520, 66, 1000.00, 1, 1),
(7792, 10, 521, 66, 111.00, 1, 1),
(7793, 1, 522, 3, 71.00, 1, 1),
(7794, 1, 522, 4, 627.00, 1, 1),
(7795, 1, 522, 5, 189241.00, 1, 1),
(7796, 1, 522, 6, 8.00, 1, 1),
(7797, 1, 522, 12, 18.00, 1, 1),
(7798, 1, 522, 13, 0.00, 1, 1),
(7799, 1, 522, 14, 122511.00, 1, 1),
(7800, 1, 522, 15, 42415.00, 1, 1),
(7801, 1, 522, 16, 0.00, 1, 1),
(7802, 1, 522, 17, 6100.00, 1, 1),
(7803, 1, 522, 18, 0.00, 1, 1),
(7804, 1, 523, 3, 69.00, 1, 1),
(7805, 1, 523, 4, 677.00, 1, 1),
(7806, 1, 523, 5, 194233.00, 1, 1),
(7807, 1, 523, 6, 3.00, 1, 1),
(7808, 1, 523, 12, 8.00, 1, 1),
(7809, 1, 523, 13, 0.00, 1, 1),
(7810, 1, 523, 14, 101343.00, 1, 1),
(7811, 1, 523, 15, 12255.00, 1, 1),
(7812, 1, 523, 16, 0.00, 1, 1),
(7813, 1, 523, 17, 6454.00, 1, 1),
(7814, 1, 523, 18, 0.00, 1, 1),
(7815, 1, 524, 3, 22.00, 1, 1),
(7816, 1, 524, 4, 181.00, 1, 1),
(7817, 1, 524, 5, 215366.00, 1, 1),
(7818, 1, 524, 6, 0.00, 1, 1),
(7819, 1, 524, 12, 0.00, 1, 1),
(7820, 1, 524, 13, 2688.00, 1, 1),
(7821, 1, 524, 14, 168585.00, 1, 1),
(7822, 1, 524, 15, 3577.00, 1, 1),
(7823, 1, 524, 16, 0.00, 1, 1),
(7824, 1, 524, 17, 12842.00, 1, 1),
(7825, 1, 524, 18, 0.00, 1, 1),
(7826, 1, 525, 3, 0.00, 1, 1),
(7827, 1, 525, 4, 194.00, 1, 1),
(7828, 1, 525, 5, 243518.00, 1, 1),
(7829, 1, 525, 6, 0.00, 1, 1),
(7830, 1, 525, 12, 0.00, 1, 1),
(7831, 1, 525, 13, 8175.00, 1, 1),
(7832, 1, 525, 14, 168552.00, 0, 1),
(7833, 1, 525, 15, 65885.00, 1, 1),
(7834, 1, 525, 16, 0.00, 1, 1),
(7835, 1, 525, 17, 93775.00, 1, 1),
(7836, 1, 525, 18, 0.00, 1, 1),
(7837, 1, 84, 13, 8120.00, 1, 1),
(7838, 1, 84, 14, 15212.00, 1, 1),
(7839, 1, 84, 15, 13122.00, 1, 1),
(7840, 1, 84, 16, 1.00, 1, 1),
(7841, 1, 84, 17, 411.00, 1, 1),
(7842, 1, 84, 18, 12.00, 1, 1),
(7843, 1, 85, 13, 12450.00, 1, 1),
(7844, 1, 85, 14, 8420.00, 1, 1),
(7845, 1, 85, 15, 641.00, 1, 1),
(7846, 1, 85, 16, 0.00, 1, 1),
(7847, 1, 85, 17, 155.00, 1, 1),
(7848, 1, 85, 18, 85.00, 1, 1),
(7849, 1, 86, 13, 15244.00, 1, 1),
(7850, 1, 86, 14, 16594.00, 1, 1),
(7851, 1, 86, 15, 1879.00, 1, 1),
(7852, 1, 86, 16, 0.00, 1, 1),
(7853, 1, 86, 17, 13341.00, 1, 1),
(7854, 1, 86, 18, 266.00, 1, 1),
(7855, 1, 111, 13, 323644.00, 1, 1),
(7856, 1, 111, 14, 51050.00, 1, 1),
(7857, 1, 111, 15, 35699.00, 1, 1),
(7858, 1, 111, 16, 0.00, 1, 1),
(7859, 1, 111, 17, 1363.00, 1, 1),
(7860, 1, 111, 18, 3100.00, 1, 1),
(7861, 1, 115, 13, 8123.00, 1, 1),
(7862, 1, 115, 14, 41299.00, 1, 1),
(7863, 1, 115, 15, 12656.00, 1, 1),
(7864, 1, 115, 16, 0.00, 1, 1),
(7865, 1, 115, 17, 36564.00, 1, 1),
(7866, 1, 115, 18, 1202.00, 1, 1),
(7867, 1, 114, 13, 12511.00, 1, 1),
(7868, 1, 114, 14, 6522.00, 1, 1),
(7869, 1, 114, 15, 4121.00, 1, 1),
(7870, 1, 114, 16, 11.00, 1, 1),
(7871, 1, 114, 17, 36051.00, 1, 1),
(7872, 1, 114, 18, 544.00, 1, 1),
(7873, 1, 113, 13, 2155.00, 1, 1),
(7874, 1, 113, 14, 15944.00, 1, 1),
(7875, 1, 113, 15, 10462.00, 1, 1),
(7876, 1, 113, 16, 13.00, 1, 1),
(7877, 1, 113, 17, 2248.00, 1, 1),
(7878, 1, 113, 18, 955.00, 1, 1),
(7879, 1, 112, 13, 6552.00, 1, 1),
(7880, 1, 112, 14, 13255.00, 1, 1),
(7881, 1, 112, 15, 12800.00, 1, 1),
(7882, 1, 112, 16, 16.00, 1, 1),
(7883, 1, 112, 17, 3559.00, 1, 1),
(7884, 1, 112, 18, 650.00, 1, 1),
(7885, 7, 396, 60, 0.00, 0, 1),
(7886, 7, 396, 65, 0.00, 0, 1),
(7887, 7, 426, 60, 0.00, 0, 1),
(7888, 7, 426, 65, 0.00, 0, 1),
(7889, 7, 425, 60, 0.00, 0, 1),
(7890, 7, 425, 65, 0.00, 0, 1),
(7891, 7, 420, 3, 241.00, 1, 1),
(7892, 7, 420, 4, 2100.00, 1, 1),
(7893, 7, 420, 5, 53400.00, 1, 1),
(7894, 7, 420, 6, 25.00, 1, 1),
(7895, 7, 420, 12, 212.00, 1, 1),
(7896, 7, 420, 13, 825644.00, 1, 1),
(7897, 7, 420, 14, 51050.00, 1, 1),
(7898, 7, 420, 15, 35699.00, 1, 1),
(7899, 7, 420, 16, 0.00, 1, 1),
(7900, 7, 420, 17, 1363.00, 1, 1),
(7901, 7, 420, 18, 3100.00, 1, 1),
(7902, 7, 526, 54, 71.00, 1, 1),
(7903, 7, 526, 55, 627.00, 1, 1),
(7904, 7, 526, 56, 189241.00, 1, 1),
(7905, 7, 526, 57, 8.00, 1, 1),
(7906, 7, 526, 58, 18.00, 1, 1),
(7907, 7, 526, 59, 0.00, 1, 1),
(7908, 7, 526, 60, 122511.00, 1, 1),
(7909, 7, 526, 61, 42415.00, 1, 1),
(7910, 7, 526, 62, 0.00, 0, 1),
(7911, 7, 526, 63, 6100.00, 1, 1),
(7912, 7, 526, 65, 0.00, 0, 1),
(7913, 7, 527, 54, 69.00, 1, 1),
(7914, 7, 527, 55, 677.00, 1, 1),
(7915, 7, 527, 56, 194233.00, 1, 1),
(7916, 7, 527, 57, 3.00, 1, 1),
(7917, 7, 527, 58, 8.00, 1, 1),
(7918, 7, 527, 59, 0.00, 0, 1),
(7919, 7, 527, 60, 101343.00, 1, 1),
(7920, 7, 527, 61, 12255.00, 1, 1),
(7921, 7, 527, 62, 0.00, 0, 1),
(7922, 7, 527, 63, 6454.00, 1, 1),
(7923, 7, 527, 65, 0.00, 0, 1),
(7924, 7, 528, 54, 22.00, 1, 1),
(7925, 7, 528, 55, 181.00, 1, 1),
(7926, 7, 528, 56, 215366.00, 1, 1),
(7927, 7, 528, 57, 0.00, 0, 1),
(7928, 7, 528, 58, 0.00, 0, 1),
(7929, 7, 528, 59, 2688.00, 1, 1),
(7930, 7, 528, 60, 168585.00, 1, 1),
(7931, 7, 528, 61, 3577.00, 1, 1),
(7932, 7, 528, 62, 0.00, 0, 1),
(7933, 7, 528, 63, 12842.00, 1, 1),
(7934, 7, 528, 65, 0.00, 0, 1),
(7935, 7, 529, 54, 0.00, 1, 1),
(7936, 7, 529, 55, 194.00, 1, 1),
(7937, 7, 529, 56, 243518.00, 1, 1),
(7938, 7, 529, 57, 0.00, 1, 1),
(7939, 7, 529, 58, 0.00, 1, 1),
(7940, 7, 529, 59, 8175.00, 1, 1),
(7941, 7, 529, 60, 168552.00, 1, 1),
(7942, 7, 529, 61, 65885.00, 0, 1),
(7943, 7, 529, 62, 0.00, 0, 1),
(7944, 7, 529, 63, 93775.00, 1, 1),
(7945, 7, 529, 65, 0.00, 0, 1),
(7946, 10, 530, 3, 171.00, 1, 1),
(7947, 10, 530, 4, 627.00, 1, 1),
(7948, 10, 530, 5, 189241.00, 1, 1),
(7949, 10, 530, 6, 8.00, 1, 1),
(7950, 10, 530, 12, 18.00, 1, 1),
(7951, 10, 530, 13, 0.00, 0, 1),
(7952, 10, 530, 14, 122511.00, 1, 1),
(7953, 10, 530, 15, 42415.00, 1, 1),
(7954, 10, 530, 16, 0.00, 0, 1),
(7955, 10, 530, 17, 6100.00, 0, 1),
(7956, 10, 530, 18, 0.00, 0, 1),
(7957, 10, 531, 3, 69.00, 1, 1),
(7958, 10, 531, 4, 677.00, 1, 1),
(7959, 10, 531, 5, 194233.00, 1, 1),
(7960, 10, 531, 6, 3.00, 0, 1),
(7961, 10, 531, 12, 8.00, 0, 1),
(7962, 10, 531, 13, 0.00, 0, 1),
(7963, 10, 531, 14, 101343.00, 0, 1),
(7964, 10, 531, 15, 12255.00, 0, 1),
(7965, 10, 531, 16, 0.00, 0, 1),
(7966, 10, 531, 17, 6454.00, 0, 1),
(7967, 10, 531, 18, 0.00, 0, 1),
(7968, 10, 532, 3, 22.00, 1, 1),
(7969, 10, 532, 4, 181.00, 1, 1),
(7970, 10, 532, 5, 215366.00, 1, 1),
(7971, 10, 532, 6, 0.00, 0, 1),
(7972, 10, 532, 12, 0.00, 0, 1),
(7973, 10, 532, 13, 2688.00, 0, 1),
(7974, 10, 532, 14, 168585.00, 0, 1),
(7975, 10, 532, 15, 3577.00, 0, 1),
(7976, 10, 532, 16, 0.00, 0, 1),
(7977, 10, 532, 17, 12842.00, 0, 1),
(7978, 10, 532, 18, 0.00, 0, 1),
(7979, 10, 533, 3, 0.00, 0, 1),
(7980, 10, 533, 4, 194.00, 1, 1),
(7981, 10, 533, 5, 243518.00, 1, 1),
(7982, 10, 533, 6, 0.00, 0, 1),
(7983, 10, 533, 12, 0.00, 0, 1),
(7984, 10, 533, 13, 8175.00, 1, 1),
(7985, 10, 533, 14, 168552.00, 0, 1),
(7986, 10, 533, 15, 65885.00, 0, 1),
(7987, 10, 533, 16, 0.00, 0, 1),
(7988, 10, 533, 17, 93775.00, 1, 1),
(7989, 10, 533, 18, 0.00, 0, 1),
(7990, 1, 534, 3, 18.00, 1, 1),
(7991, 1, 534, 4, 94.00, 1, 1),
(7992, 1, 534, 5, 122664.00, 1, 1),
(7993, 1, 534, 6, 3.00, 1, 1),
(7994, 1, 534, 12, 4.10, 1, 1),
(7995, 1, 534, 13, 12450.00, 1, 1),
(7996, 1, 534, 14, 18227.00, 1, 1),
(7997, 1, 534, 15, 14952.00, 1, 1),
(7998, 1, 534, 16, 0.00, 1, 1),
(7999, 1, 534, 17, 71210.00, 1, 1),
(8000, 1, 534, 18, 13.00, 1, 1),
(8001, 1, 535, 3, 25.33, 1, 1),
(8002, 1, 535, 4, 644.00, 1, 1),
(8003, 1, 535, 5, 175889.00, 1, 1),
(8004, 1, 535, 6, 3.00, 1, 1),
(8005, 1, 535, 12, 8.00, 1, 1),
(8006, 1, 535, 13, 24550.00, 1, 1),
(8007, 1, 535, 14, 41600.00, 1, 1),
(8008, 1, 535, 15, 36280.00, 1, 1),
(8009, 1, 535, 16, 0.00, 1, 1),
(8010, 1, 535, 17, 12865.00, 1, 1),
(8011, 1, 535, 18, 433.00, 1, 1),
(8012, 1, 536, 3, 11.00, 1, 1),
(8013, 1, 536, 4, 404.00, 1, 1),
(8014, 1, 536, 5, 188000.00, 1, 1),
(8015, 1, 536, 6, 3.00, 1, 1),
(8016, 1, 536, 12, 7.00, 1, 1),
(8017, 1, 536, 13, 21122.00, 0, 1),
(8018, 1, 536, 14, 34522.00, 0, 1),
(8019, 1, 536, 15, 27800.00, 1, 1),
(8020, 1, 536, 16, 0.00, 1, 1),
(8021, 1, 536, 17, 3895.00, 0, 1),
(8022, 1, 536, 18, 271.00, 1, 1),
(8023, 7, 537, 3, 8.00, 1, 1),
(8024, 7, 537, 4, 44.00, 1, 1),
(8025, 7, 537, 5, 124664.00, 1, 1),
(8026, 7, 537, 6, 0.00, 1, 1),
(8027, 7, 537, 12, 0.00, 1, 1),
(8028, 7, 537, 13, 12450.00, 1, 1),
(8029, 7, 537, 14, 18227.00, 1, 1),
(8030, 7, 537, 15, 14952.00, 1, 1),
(8031, 7, 537, 16, 0.00, 1, 1),
(8032, 7, 537, 17, 71210.00, 1, 1),
(8033, 7, 537, 18, 13.00, 1, 1),
(8034, 7, 538, 3, 12.00, 1, 1),
(8035, 7, 538, 4, 344.00, 1, 1),
(8036, 7, 538, 5, 175889.00, 1, 1),
(8037, 7, 538, 6, 3.00, 1, 1),
(8038, 7, 538, 12, 8.00, 1, 1),
(8039, 7, 538, 13, 24550.00, 1, 1),
(8040, 7, 538, 14, 41600.00, 1, 1),
(8041, 7, 538, 15, 36280.00, 1, 1),
(8042, 7, 538, 16, 0.00, 1, 1),
(8043, 7, 538, 17, 12865.00, 1, 1),
(8044, 7, 538, 18, 433.00, 1, 1),
(8045, 7, 539, 3, 11.00, 1, 1),
(8046, 7, 539, 4, 404.00, 1, 1),
(8047, 7, 539, 5, 188000.00, 1, 1),
(8048, 7, 539, 6, 3.00, 1, 1),
(8049, 7, 539, 12, 7.00, 1, 1),
(8050, 7, 539, 13, 21122.00, 1, 1),
(8051, 7, 539, 14, 34522.00, 0, 1),
(8052, 7, 539, 15, 27800.00, 1, 1),
(8053, 7, 539, 16, 0.00, 1, 1),
(8054, 7, 539, 17, 3895.00, 0, 1),
(8055, 7, 539, 18, 271.00, 1, 1),
(8056, 10, 540, 3, 8.00, 1, 1),
(8057, 10, 540, 4, 44.00, 1, 1),
(8058, 10, 540, 5, 124664.00, 1, 1),
(8059, 10, 540, 6, 0.00, 1, 1),
(8060, 10, 540, 12, 0.00, 1, 1),
(8061, 10, 540, 13, 12450.00, 1, 1),
(8062, 10, 540, 14, 18227.00, 1, 1),
(8063, 10, 540, 15, 14952.00, 1, 1),
(8064, 10, 540, 16, 0.00, 1, 1),
(8065, 10, 540, 17, 71210.00, 1, 1),
(8066, 10, 540, 18, 13.00, 1, 1),
(8067, 10, 541, 3, 12.00, 1, 1),
(8068, 10, 541, 4, 344.00, 1, 1),
(8069, 10, 541, 5, 175889.00, 1, 1),
(8070, 10, 541, 6, 3.00, 1, 1),
(8071, 10, 541, 12, 8.00, 1, 1),
(8072, 10, 541, 13, 24550.00, 1, 1),
(8073, 10, 541, 14, 41600.00, 0, 1),
(8074, 10, 541, 15, 36280.00, 0, 1),
(8075, 10, 541, 16, 0.00, 1, 1),
(8076, 10, 541, 17, 12865.00, 1, 1),
(8077, 10, 541, 18, 433.00, 1, 1),
(8078, 10, 542, 3, 11.00, 1, 1),
(8079, 10, 542, 4, 404.00, 1, 1),
(8080, 10, 542, 5, 188000.00, 1, 1),
(8081, 10, 542, 6, 3.00, 1, 1),
(8082, 10, 542, 12, 7.00, 1, 1),
(8083, 10, 542, 13, 21122.00, 0, 1),
(8084, 10, 542, 14, 34522.00, 0, 1),
(8085, 10, 542, 15, 27800.00, 1, 1),
(8086, 10, 542, 16, 0.00, 1, 1),
(8087, 10, 542, 17, 3895.00, 0, 1),
(8088, 10, 542, 18, 271.00, 1, 1),
(8089, 7, 414, 3, 0.00, 0, 1),
(8090, 7, 414, 4, 0.00, 0, 1),
(8091, 7, 414, 5, 130000.00, 1, 1),
(8092, 7, 414, 6, 0.00, 0, 1),
(8093, 7, 414, 12, 0.00, 0, 1),
(8094, 7, 414, 13, 0.00, 0, 1),
(8095, 7, 414, 14, 0.00, 0, 1),
(8096, 7, 414, 15, 0.00, 0, 1),
(8097, 7, 414, 16, 0.00, 0, 1),
(8098, 7, 414, 17, 0.00, 0, 1),
(8099, 7, 414, 18, 0.00, 0, 1),
(8100, 7, 413, 3, 0.00, 0, 1),
(8101, 7, 413, 4, 0.00, 0, 1),
(8102, 7, 413, 5, 230000.00, 1, 1),
(8103, 7, 413, 6, 0.00, 0, 1),
(8104, 7, 413, 12, 0.00, 0, 1),
(8105, 7, 413, 13, 0.00, 0, 1),
(8106, 7, 413, 14, 0.00, 0, 1),
(8107, 7, 413, 15, 0.00, 0, 1),
(8108, 7, 413, 16, 0.00, 0, 1),
(8109, 7, 413, 17, 0.00, 0, 1),
(8110, 7, 413, 18, 0.00, 0, 1),
(8111, 7, 412, 3, 0.00, 0, 1),
(8112, 7, 412, 4, 0.00, 0, 1),
(8113, 7, 412, 5, 280000.00, 1, 1),
(8114, 7, 412, 6, 0.00, 0, 1),
(8115, 7, 412, 12, 0.00, 0, 1),
(8116, 7, 412, 13, 0.00, 0, 1),
(8117, 7, 412, 14, 0.00, 0, 1),
(8118, 7, 412, 15, 0.00, 0, 1),
(8119, 7, 412, 16, 0.00, 0, 1),
(8120, 7, 412, 17, 0.00, 0, 1),
(8121, 7, 412, 18, 0.00, 0, 1),
(8122, 7, 407, 3, 323.50, 1, 1),
(8123, 7, 407, 4, 0.00, 0, 1),
(8124, 7, 407, 5, 220000.00, 1, 1),
(8125, 7, 407, 6, 0.00, 0, 1),
(8126, 7, 407, 12, 0.00, 0, 1),
(8127, 7, 407, 13, 0.00, 0, 1),
(8128, 7, 407, 14, 0.00, 0, 1),
(8129, 7, 407, 15, 0.00, 0, 1),
(8130, 7, 407, 16, 0.00, 0, 1),
(8131, 7, 407, 17, 0.00, 0, 1),
(8132, 7, 407, 18, 0.00, 0, 1),
(8133, 7, 406, 3, 144.00, 1, 1),
(8134, 7, 406, 4, 0.00, 0, 1),
(8135, 7, 406, 5, 220000.00, 1, 1),
(8136, 7, 406, 6, 0.00, 0, 1),
(8137, 7, 406, 12, 0.00, 0, 1),
(8138, 7, 406, 13, 0.00, 0, 1),
(8139, 7, 406, 14, 0.00, 0, 1),
(8140, 7, 406, 15, 0.00, 0, 1),
(8141, 7, 406, 16, 0.00, 0, 1),
(8142, 7, 406, 17, 0.00, 0, 1),
(8143, 7, 406, 18, 0.00, 0, 1),
(8144, 7, 405, 3, 588.00, 1, 1),
(8145, 7, 405, 4, 0.00, 0, 1),
(8146, 7, 405, 5, 220000.00, 1, 1),
(8147, 7, 405, 6, 0.00, 0, 1),
(8148, 7, 405, 12, 0.00, 0, 1),
(8149, 7, 405, 13, 0.00, 0, 1),
(8150, 7, 405, 14, 0.00, 0, 1),
(8151, 7, 405, 15, 0.00, 0, 1),
(8152, 7, 405, 16, 0.00, 0, 1),
(8153, 7, 405, 17, 0.00, 0, 1),
(8154, 7, 405, 18, 0.00, 0, 1),
(8155, 7, 426, 3, 273.00, 1, 1),
(8156, 7, 426, 4, 400.00, 1, 1),
(8157, 7, 426, 5, 245612.00, 1, 1),
(8158, 7, 426, 6, 72.00, 1, 1),
(8159, 7, 426, 12, 58.00, 1, 1),
(8160, 7, 426, 13, 6520.00, 1, 1),
(8161, 7, 426, 14, 38511.00, 1, 1),
(8162, 7, 426, 15, 32800.00, 1, 1),
(8163, 7, 426, 16, 0.00, 1, 1),
(8164, 7, 426, 17, 7400.00, 1, 1),
(8165, 7, 426, 18, 241.00, 1, 1),
(8166, 1, 116, 13, 27505.00, 1, 1),
(8167, 1, 116, 14, 41860.00, 1, 1),
(8168, 1, 116, 15, 31000.00, 1, 1),
(8169, 1, 116, 16, 0.00, 1, 1),
(8170, 1, 116, 17, 5980.00, 1, 1),
(8171, 1, 116, 18, 710.00, 1, 1),
(8172, 7, 395, 3, 57.10, 1, 1),
(8173, 7, 395, 4, 540.00, 1, 1),
(8174, 7, 395, 5, 212000.00, 1, 1),
(8175, 7, 395, 6, 3.00, 1, 1),
(8176, 7, 395, 12, 6.00, 1, 1),
(8177, 7, 395, 13, 12450.00, 1, 1),
(8178, 7, 395, 14, 8420.00, 1, 1),
(8179, 7, 395, 15, 641.00, 1, 1),
(8180, 7, 395, 16, 0.00, 1, 1),
(8181, 7, 395, 17, 155.00, 1, 1),
(8182, 7, 395, 18, 85.00, 1, 1),
(8183, 7, 394, 3, 243.00, 1, 1),
(8184, 7, 394, 4, 1562.00, 1, 1),
(8185, 7, 394, 5, 220000.00, 1, 1),
(8186, 7, 394, 6, 15.00, 1, 1),
(8187, 7, 394, 12, 49.00, 1, 1),
(8188, 7, 394, 13, 8120.00, 1, 1),
(8189, 7, 394, 14, 15212.00, 1, 1),
(8190, 7, 394, 15, 3122.00, 1, 1),
(8191, 7, 394, 16, 1.00, 1, 1),
(8192, 7, 394, 17, 411.00, 1, 1),
(8193, 7, 394, 18, 12.00, 1, 1),
(8194, 7, 396, 3, 21.00, 1, 1),
(8195, 7, 396, 4, 188.00, 1, 1),
(8196, 7, 396, 5, 250000.00, 1, 1),
(8197, 7, 396, 6, 2.00, 1, 1),
(8198, 7, 396, 12, 3.00, 1, 1),
(8199, 7, 396, 13, 15244.00, 1, 1),
(8200, 7, 396, 14, 16594.00, 1, 1),
(8201, 7, 396, 15, 1879.00, 1, 1),
(8202, 7, 396, 16, 0.00, 1, 1),
(8203, 7, 396, 17, 13341.00, 1, 1),
(8204, 7, 396, 18, 266.00, 1, 1),
(8205, 10, 543, 66, 3500.00, 1, 1),
(8206, 10, 543, 67, 1000.00, 1, 1),
(8207, 10, 543, 69, 0.00, 1, 1),
(8208, 10, 543, 70, 0.00, 1, 1),
(8209, 10, 500, 13, 0.00, 0, 1),
(8210, 10, 500, 14, 0.00, 0, 1),
(8211, 10, 500, 15, 0.00, 0, 1),
(8212, 10, 500, 16, 0.00, 0, 1),
(8213, 10, 500, 17, 0.00, 0, 1),
(8214, 10, 500, 18, 0.00, 0, 1),
(8215, 7, 419, 3, 888.00, 1, 1),
(8216, 7, 419, 4, 7466.00, 1, 1),
(8217, 7, 419, 5, 120224.00, 1, 1),
(8218, 7, 419, 6, 160.00, 1, 1),
(8219, 7, 419, 12, 288.00, 1, 1),
(8220, 7, 419, 13, 0.00, 0, 1),
(8221, 7, 419, 14, 0.00, 0, 1),
(8222, 7, 419, 15, 0.00, 0, 1),
(8223, 7, 419, 16, 0.00, 0, 1),
(8224, 7, 419, 17, 0.00, 0, 1),
(8225, 7, 419, 18, 0.00, 0, 1),
(8226, 1, 101, 13, 1566.00, 1, 1),
(8227, 1, 101, 14, 78900.00, 1, 1),
(8228, 1, 101, 15, 59050.00, 1, 1),
(8229, 1, 101, 16, 0.00, 1, 1),
(8230, 1, 101, 17, 11959.00, 1, 1),
(8231, 1, 101, 18, 0.00, 1, 1),
(8232, 1, 100, 13, 1950.00, 1, 1),
(8233, 1, 100, 14, 89650.00, 1, 1),
(8234, 1, 100, 15, 37800.00, 1, 1),
(8235, 1, 100, 16, 2.00, 1, 1),
(8236, 1, 100, 17, 2350.00, 1, 1),
(8237, 1, 100, 18, 0.00, 1, 1),
(8238, 1, 99, 13, 7615.00, 1, 1),
(8239, 1, 99, 14, 102500.00, 1, 1),
(8240, 1, 99, 15, 86422.00, 1, 1),
(8241, 1, 99, 16, 2.00, 1, 1),
(8242, 1, 99, 17, 13445.00, 1, 1),
(8243, 1, 99, 18, 0.00, 1, 1),
(8244, 1, 98, 13, 499.00, 1, 1),
(8245, 1, 98, 14, 121300.00, 1, 1),
(8246, 1, 98, 15, 79560.00, 1, 1),
(8247, 1, 98, 16, 4.00, 1, 1),
(8248, 1, 98, 17, 3922.00, 1, 1),
(8249, 1, 98, 18, 0.00, 1, 1),
(8250, 7, 425, 3, 291.00, 1, 1),
(8251, 7, 425, 4, 6499.00, 1, 1),
(8252, 7, 425, 5, 232024.00, 1, 1),
(8253, 7, 425, 6, 71.00, 1, 1),
(8254, 7, 425, 12, 81.00, 1, 1),
(8255, 7, 425, 13, 27505.00, 1, 1),
(8256, 7, 425, 14, 41860.00, 1, 1),
(8257, 7, 425, 15, 31000.00, 1, 1),
(8258, 7, 425, 16, 0.00, 1, 1),
(8259, 7, 425, 17, 5980.00, 1, 1),
(8260, 7, 425, 18, 710.00, 1, 1),
(8261, 7, 411, 3, 264.00, 1, 1),
(8262, 7, 411, 4, 322.00, 1, 1),
(8263, 7, 411, 5, 202545.00, 1, 1),
(8264, 7, 411, 6, 15.00, 1, 1),
(8265, 7, 411, 12, 10.00, 1, 1),
(8266, 7, 411, 13, 1566.00, 1, 1),
(8267, 7, 411, 14, 78900.00, 1, 1),
(8268, 7, 411, 15, 59050.00, 1, 1),
(8269, 7, 411, 16, 0.00, 1, 1),
(8270, 7, 411, 17, 11959.00, 1, 1),
(8271, 7, 411, 18, 0.00, 1, 1),
(8272, 7, 410, 3, 510.40, 1, 1),
(8273, 7, 410, 4, 600.00, 1, 1),
(8274, 7, 410, 5, 220000.00, 1, 1),
(8275, 7, 410, 6, 20.00, 1, 1),
(8276, 7, 410, 12, 15.00, 1, 1),
(8277, 7, 410, 13, 1950.00, 1, 1),
(8278, 7, 410, 14, 89650.00, 1, 1),
(8279, 7, 410, 15, 37800.00, 1, 1),
(8280, 7, 410, 16, 2.00, 1, 1),
(8281, 7, 410, 17, 2350.00, 1, 1),
(8282, 7, 410, 18, 0.00, 1, 1),
(8283, 7, 409, 3, 677.00, 1, 1),
(8284, 7, 409, 4, 333.00, 1, 1),
(8285, 7, 409, 5, 220000.00, 1, 1),
(8286, 7, 409, 6, 20.00, 1, 1),
(8287, 7, 409, 12, 20.00, 1, 1),
(8288, 7, 409, 13, 7615.00, 1, 1),
(8289, 7, 409, 14, 102500.00, 1, 1),
(8290, 7, 409, 15, 86422.00, 1, 1),
(8291, 7, 409, 16, 2.00, 1, 1),
(8292, 7, 409, 17, 13445.00, 1, 1),
(8293, 7, 409, 18, 0.00, 1, 1),
(8294, 7, 408, 3, 1102.00, 1, 1),
(8295, 7, 408, 4, 2222.00, 1, 1),
(8296, 7, 408, 5, 222000.00, 1, 1),
(8297, 7, 408, 6, 33.00, 1, 1),
(8298, 7, 408, 12, 33.00, 1, 1),
(8299, 7, 408, 13, 499.00, 1, 1),
(8300, 7, 408, 14, 121300.00, 1, 1),
(8301, 7, 408, 15, 79560.00, 1, 1),
(8302, 7, 408, 16, 4.00, 1, 1),
(8303, 7, 408, 17, 3922.00, 1, 1),
(8304, 7, 408, 18, 0.00, 1, 1),
(8305, 7, 417, 3, 8266.41, 1, 1),
(8306, 7, 417, 4, 17345.80, 1, 1),
(8307, 7, 417, 5, 81255.00, 1, 1),
(8308, 7, 417, 6, 94.20, 1, 1),
(8309, 7, 417, 12, 112.00, 1, 1),
(8310, 7, 417, 13, 0.00, 0, 1),
(8311, 7, 417, 14, 0.00, 0, 1),
(8312, 7, 417, 15, 0.00, 0, 1),
(8313, 7, 417, 16, 0.00, 0, 1),
(8314, 7, 417, 17, 0.00, 0, 1),
(8315, 7, 417, 18, 0.00, 0, 1),
(8316, 7, 418, 3, 1549.25, 1, 1),
(8317, 7, 418, 4, 12422.50, 1, 1),
(8318, 7, 418, 5, 89912.00, 1, 1),
(8319, 7, 418, 6, 114.00, 1, 1),
(8320, 7, 418, 12, 1212.00, 1, 1),
(8321, 7, 418, 13, 0.00, 0, 1),
(8322, 7, 418, 14, 0.00, 0, 1),
(8323, 7, 418, 15, 0.00, 0, 1),
(8324, 7, 418, 16, 0.00, 0, 1),
(8325, 7, 418, 17, 0.00, 0, 1),
(8326, 7, 418, 18, 0.00, 0, 1),
(8327, 7, 416, 3, 4186.30, 1, 1),
(8328, 7, 416, 4, 12845.00, 1, 1),
(8329, 7, 416, 5, 100277.00, 1, 1),
(8330, 7, 416, 6, 80.00, 1, 1),
(8331, 7, 416, 12, 1223.00, 1, 1),
(8332, 7, 416, 13, 0.00, 0, 1),
(8333, 7, 416, 14, 0.00, 0, 1),
(8334, 7, 416, 15, 0.00, 0, 1),
(8335, 7, 416, 16, 0.00, 0, 1),
(8336, 7, 416, 17, 0.00, 0, 1),
(8337, 7, 416, 18, 0.00, 0, 1),
(8338, 1, 102, 13, 0.00, 0, 1),
(8339, 1, 102, 14, 0.00, 0, 1),
(8340, 1, 102, 15, 0.00, 0, 1),
(8341, 1, 102, 16, 0.00, 0, 1),
(8342, 1, 102, 17, 0.00, 0, 1),
(8343, 1, 102, 18, 0.00, 0, 1),
(8344, 1, 103, 13, 0.00, 0, 1),
(8345, 1, 103, 14, 0.00, 0, 1),
(8346, 1, 103, 15, 0.00, 0, 1),
(8347, 1, 103, 16, 0.00, 0, 1),
(8348, 1, 103, 17, 0.00, 0, 1),
(8349, 1, 103, 18, 0.00, 0, 1),
(8350, 1, 104, 13, 0.00, 0, 1),
(8351, 1, 104, 14, 0.00, 0, 1),
(8352, 1, 104, 15, 0.00, 0, 1),
(8353, 1, 104, 16, 0.00, 0, 1),
(8354, 1, 104, 17, 0.00, 0, 1),
(8355, 1, 104, 18, 0.00, 0, 1),
(8356, 7, 421, 3, 185.00, 1, 1),
(8357, 7, 421, 4, 480.00, 1, 1),
(8358, 7, 421, 5, 245000.00, 1, 1),
(8359, 7, 421, 6, 12.00, 1, 1),
(8360, 7, 421, 12, 88.00, 1, 1),
(8361, 7, 421, 13, 6552.00, 1, 1),
(8362, 7, 421, 14, 13255.00, 1, 1),
(8363, 7, 421, 15, 12800.00, 1, 1),
(8364, 7, 421, 16, 16.00, 1, 1),
(8365, 7, 421, 17, 3559.00, 1, 1),
(8366, 7, 421, 18, 650.00, 1, 1),
(8367, 7, 404, 3, 210.00, 1, 1),
(8368, 7, 404, 4, 1655.00, 1, 1),
(8369, 7, 404, 5, 262351.00, 1, 1),
(8370, 7, 404, 6, 3.00, 1, 1),
(8371, 7, 404, 12, 22.00, 1, 1),
(8372, 7, 404, 13, 540.00, 1, 1),
(8373, 7, 404, 14, 96000.00, 1, 1),
(8374, 7, 404, 15, 34450.00, 1, 1),
(8375, 7, 404, 16, 0.00, 1, 1),
(8376, 7, 404, 17, 30450.00, 1, 1),
(8377, 7, 404, 18, 0.00, 1, 1),
(8378, 7, 403, 3, 144.00, 1, 1),
(8379, 7, 403, 4, 312.00, 1, 1),
(8380, 7, 403, 5, 310000.00, 1, 1),
(8381, 7, 403, 6, 1.00, 1, 1),
(8382, 7, 403, 12, 18.00, 1, 1),
(8383, 7, 403, 13, 14560.00, 1, 1),
(8384, 7, 403, 14, 89500.00, 1, 1),
(8385, 7, 403, 15, 58460.00, 1, 1),
(8386, 7, 403, 16, 0.00, 1, 1),
(8387, 7, 403, 17, 21490.00, 1, 1),
(8388, 7, 403, 18, 400.00, 1, 1),
(8389, 11, 544, 77, 32.51, 1, 1),
(8390, 11, 544, 79, 320000.00, 1, 1),
(8391, 11, 544, 80, 5.00, 0, 1),
(8392, 11, 544, 78, 400.00, 1, 1),
(8393, 11, 544, 7, 0.00, 0, 1),
(8394, 11, 544, 8, 0.00, 0, 1),
(8395, 11, 544, 9, 0.00, 0, 1),
(8396, 11, 544, 10, 0.00, 0, 1),
(8397, 11, 544, 11, 0.00, 0, 1),
(8398, 11, 544, 81, 0.00, 0, 1),
(8399, 11, 544, 82, 0.00, 0, 1),
(8400, 11, 544, 83, 0.00, 0, 1),
(8401, 11, 544, 84, 0.00, 0, 1),
(8402, 11, 545, 77, 60.00, 1, 1),
(8403, 11, 545, 79, 251600.00, 1, 1),
(8404, 11, 545, 80, 10.00, 1, 1),
(8405, 11, 545, 78, 18000.00, 1, 1),
(8406, 11, 545, 7, 0.00, 0, 1),
(8407, 11, 545, 8, 0.00, 0, 1),
(8408, 11, 545, 9, 0.00, 0, 1),
(8409, 11, 545, 10, 0.00, 0, 1),
(8410, 11, 545, 11, 0.00, 0, 1),
(8411, 11, 545, 81, 100.00, 1, 1),
(8412, 11, 545, 82, 0.00, 0, 1),
(8413, 11, 545, 83, 0.00, 0, 1),
(8414, 11, 545, 84, 0.00, 0, 1),
(8415, 11, 546, 77, 300.00, 1, 1),
(8416, 11, 546, 79, 600000.00, 1, 1),
(8417, 11, 546, 80, 1.00, 0, 1),
(8418, 11, 546, 78, 1500.00, 0, 1),
(8419, 11, 546, 7, 0.00, 0, 1),
(8420, 11, 546, 8, 0.00, 0, 1),
(8421, 11, 546, 9, 0.00, 0, 1),
(8422, 11, 546, 10, 0.00, 0, 1),
(8423, 11, 546, 11, 0.00, 0, 1),
(8424, 11, 546, 81, 0.00, 0, 1),
(8425, 11, 546, 82, 0.00, 0, 1),
(8426, 11, 546, 83, 0.00, 0, 1),
(8427, 11, 546, 84, 0.00, 0, 1),
(8428, 11, 547, 77, 0.00, 1, 1),
(8429, 11, 547, 79, 0.00, 0, 1),
(8430, 11, 547, 80, 0.00, 0, 1),
(8431, 11, 547, 78, 0.00, 1, 1),
(8432, 11, 547, 7, 0.00, 0, 1),
(8433, 11, 547, 8, 0.00, 0, 1),
(8434, 11, 547, 9, 0.00, 0, 1),
(8435, 11, 547, 10, 0.00, 0, 1),
(8436, 11, 547, 11, 0.00, 0, 1),
(8437, 11, 547, 81, 0.00, 0, 1),
(8438, 11, 547, 82, 0.00, 0, 1),
(8439, 11, 547, 83, 0.00, 1, 1),
(8440, 11, 547, 84, 0.00, 1, 1),
(8441, 11, 548, 77, 0.00, 0, 1),
(8442, 11, 548, 79, 0.00, 0, 1),
(8443, 11, 548, 80, 0.00, 0, 1),
(8444, 11, 548, 78, 0.00, 0, 1),
(8445, 11, 548, 7, 0.00, 0, 1),
(8446, 11, 548, 8, 0.00, 0, 1),
(8447, 11, 548, 9, 0.00, 0, 1),
(8448, 11, 548, 10, 0.00, 0, 1),
(8449, 11, 548, 11, 0.00, 0, 1),
(8450, 11, 548, 81, 0.00, 0, 1),
(8451, 11, 548, 82, 0.00, 0, 1),
(8452, 11, 548, 83, 0.00, 0, 1),
(8453, 11, 548, 84, 0.00, 0, 1),
(8454, 11, 549, 77, 40.00, 1, 1),
(8455, 11, 549, 79, 270000.00, 1, 1),
(8456, 11, 549, 80, 0.00, 0, 1),
(8457, 11, 549, 78, 950.00, 1, 1),
(8458, 11, 549, 7, 0.00, 0, 1),
(8459, 11, 549, 8, 0.00, 0, 1),
(8460, 11, 549, 9, 0.00, 0, 1),
(8461, 11, 549, 10, 0.00, 0, 1),
(8462, 11, 549, 11, 0.00, 0, 1),
(8463, 11, 549, 81, 0.00, 0, 1),
(8464, 11, 549, 82, 0.00, 0, 1),
(8465, 11, 549, 83, 0.00, 0, 1),
(8466, 11, 549, 84, 0.00, 0, 1),
(8467, 11, 550, 77, 60.00, 1, 1),
(8468, 11, 550, 79, 244787.00, 1, 1),
(8469, 11, 550, 80, 5.00, 1, 1),
(8470, 11, 550, 78, 300.00, 1, 1),
(8471, 11, 550, 7, 0.00, 0, 1),
(8472, 11, 550, 8, 0.00, 0, 1),
(8473, 11, 550, 9, 0.00, 0, 1),
(8474, 11, 550, 10, 0.00, 0, 1),
(8475, 11, 550, 11, 0.00, 0, 1),
(8476, 11, 550, 81, 5.00, 1, 1),
(8477, 11, 550, 82, 0.00, 0, 1),
(8478, 11, 550, 83, 0.00, 0, 1),
(8479, 11, 550, 84, 0.00, 0, 1),
(8480, 11, 551, 77, 0.00, 0, 1),
(8481, 11, 551, 78, 200000.00, 1, 1),
(8482, 11, 551, 79, 200000.00, 1, 1),
(8483, 11, 551, 80, 0.00, 0, 1),
(8484, 11, 551, 7, 0.00, 0, 1),
(8485, 11, 551, 8, 10000.00, 1, 1),
(8486, 11, 551, 9, 0.00, 0, 1),
(8487, 11, 551, 10, 0.00, 0, 1),
(8488, 11, 551, 11, 0.00, 0, 1),
(8489, 11, 551, 81, 40000.00, 1, 1),
(8490, 11, 551, 82, 0.00, 0, 1),
(8491, 11, 551, 83, 0.00, 0, 1),
(8492, 11, 551, 84, 0.00, 0, 1),
(8493, 11, 552, 77, 0.00, 1, 1),
(8494, 11, 552, 78, 10000.00, 1, 1),
(8495, 11, 552, 79, 0.00, 0, 1),
(8496, 11, 552, 80, 20000.00, 1, 1),
(8497, 11, 552, 7, 0.00, 0, 1),
(8498, 11, 552, 8, 0.00, 0, 1),
(8499, 11, 552, 9, 0.00, 0, 1),
(8500, 11, 552, 10, 0.00, 0, 1),
(8501, 11, 552, 11, 0.00, 0, 1),
(8502, 11, 552, 81, 0.00, 0, 1),
(8503, 11, 552, 82, 0.00, 0, 1),
(8504, 11, 552, 83, 0.00, 0, 1),
(8505, 11, 552, 84, 0.00, 0, 1),
(8506, 11, 552, 77, 0.00, 1, 1),
(8507, 11, 552, 78, 350.00, 1, 1),
(8508, 11, 552, 79, 100.00, 1, 1),
(8509, 11, 552, 80, 450.00, 1, 1),
(8510, 11, 552, 7, 100.00, 1, 1),
(8511, 11, 552, 8, 0.00, 0, 1),
(8512, 11, 552, 9, 0.00, 0, 1),
(8513, 11, 552, 10, 0.00, 0, 1),
(8514, 11, 552, 11, 0.00, 0, 1),
(8515, 11, 552, 81, 0.00, 0, 1),
(8516, 11, 552, 82, 0.00, 0, 1),
(8517, 11, 552, 83, 0.00, 0, 1),
(8518, 11, 552, 84, 0.00, 0, 1),
(8519, 11, 553, 77, 0.00, 0, 1),
(8520, 11, 553, 78, 350000.00, 1, 1),
(8521, 11, 553, 79, 100000.00, 0, 1),
(8522, 11, 553, 80, 0.00, 0, 1),
(8523, 11, 553, 7, 100000.00, 0, 1),
(8524, 11, 553, 8, 0.00, 0, 1),
(8525, 11, 553, 9, 450000.00, 0, 1),
(8526, 11, 553, 10, 0.00, 0, 1),
(8527, 11, 553, 11, 0.00, 0, 1),
(8528, 11, 553, 81, 0.00, 0, 1),
(8529, 11, 553, 82, 0.00, 0, 1),
(8530, 11, 553, 83, 0.00, 0, 1),
(8531, 11, 553, 84, 0.00, 0, 1),
(8532, 11, 554, 77, 0.00, 0, 1),
(8533, 11, 554, 78, 0.00, 0, 1),
(8534, 11, 554, 79, 320000.00, 1, 1),
(8535, 11, 554, 80, 0.00, 0, 1),
(8536, 11, 554, 7, 680000.00, 0, 1),
(8537, 11, 554, 8, 0.00, 0, 1),
(8538, 11, 554, 9, 0.00, 0, 1),
(8539, 11, 554, 10, 0.00, 0, 1),
(8540, 11, 554, 11, 0.00, 0, 1),
(8541, 11, 554, 81, 0.00, 0, 1),
(8542, 11, 554, 82, 0.00, 0, 1),
(8543, 11, 554, 83, 0.00, 0, 1),
(8544, 11, 554, 84, 0.00, 0, 1),
(8545, 11, 555, 77, 450.00, 1, 1),
(8546, 11, 555, 78, 0.00, 0, 1),
(8547, 11, 555, 79, 250000.00, 1, 1),
(8548, 11, 555, 80, 0.00, 0, 1),
(8549, 11, 555, 7, 0.00, 0, 1),
(8550, 11, 555, 8, 0.00, 0, 1),
(8551, 11, 555, 9, 0.00, 0, 1),
(8552, 11, 555, 10, 0.00, 0, 1),
(8553, 11, 555, 11, 0.00, 0, 1),
(8554, 11, 555, 81, 0.00, 0, 1),
(8555, 11, 555, 82, 0.00, 0, 1),
(8556, 11, 555, 83, 0.00, 1, 1),
(8557, 11, 555, 84, 0.00, 0, 1),
(8558, 11, 556, 77, 0.00, 0, 1),
(8559, 11, 556, 78, 0.00, 0, 1),
(8560, 11, 556, 79, 800000.00, 1, 1),
(8561, 11, 556, 80, 0.00, 0, 1),
(8562, 11, 556, 7, 0.00, 0, 1),
(8563, 11, 556, 8, 0.00, 0, 1),
(8564, 11, 556, 9, 0.00, 0, 1),
(8565, 11, 556, 10, 0.00, 0, 1),
(8566, 11, 556, 11, 0.00, 0, 1),
(8567, 11, 556, 81, 0.00, 0, 1),
(8568, 11, 556, 82, 0.00, 0, 1),
(8569, 11, 556, 83, 0.00, 0, 1),
(8570, 11, 556, 84, 0.00, 0, 1),
(8571, 11, 557, 77, 0.00, 0, 1),
(8572, 11, 557, 78, 0.00, 0, 1),
(8573, 11, 557, 79, 0.00, 0, 1),
(8574, 11, 557, 80, 0.00, 0, 1),
(8575, 11, 557, 7, 100000.00, 1, 1),
(8576, 11, 557, 8, 0.00, 0, 1),
(8577, 11, 557, 9, 0.00, 0, 1),
(8578, 11, 557, 10, 0.00, 0, 1),
(8579, 11, 557, 11, 0.00, 0, 1),
(8580, 11, 557, 81, 0.00, 0, 1),
(8581, 11, 557, 82, 0.00, 0, 1),
(8582, 11, 557, 83, 0.00, 0, 1),
(8583, 11, 557, 84, 100000.00, 1, 1),
(8584, 11, 558, 77, 0.00, 0, 1),
(8585, 11, 558, 78, 0.00, 0, 1),
(8586, 11, 558, 79, 950000.00, 1, 1),
(8587, 11, 558, 80, 0.00, 0, 1),
(8588, 11, 558, 7, 0.00, 0, 1),
(8589, 11, 558, 8, 0.00, 0, 1),
(8590, 11, 558, 9, 0.00, 0, 1),
(8591, 11, 558, 10, 0.00, 0, 1),
(8592, 11, 558, 11, 0.00, 0, 1),
(8593, 11, 558, 81, 0.00, 0, 1),
(8594, 11, 558, 82, 0.00, 0, 1),
(8595, 11, 558, 83, 50000.00, 1, 1),
(8596, 11, 558, 84, 0.00, 0, 1),
(8597, 11, 559, 77, 0.00, 0, 1),
(8598, 11, 559, 78, 0.00, 0, 1),
(8599, 11, 559, 79, 0.00, 0, 1),
(8600, 11, 559, 80, 0.00, 0, 1),
(8601, 11, 559, 7, 0.00, 0, 1),
(8602, 11, 559, 8, 999999.00, 1, 1),
(8603, 11, 559, 9, 0.00, 0, 1),
(8604, 11, 559, 10, 0.00, 0, 1),
(8605, 11, 559, 11, 0.00, 0, 1),
(8606, 11, 559, 81, 0.00, 0, 1),
(8607, 11, 559, 82, 0.00, 0, 1),
(8608, 11, 559, 83, 0.00, 0, 1),
(8609, 11, 559, 84, 0.00, 0, 1),
(8610, 11, 560, 77, 0.00, 0, 1),
(8611, 11, 560, 78, 0.00, 0, 1),
(8612, 11, 560, 79, 0.00, 0, 1),
(8613, 11, 560, 80, 0.00, 0, 1),
(8614, 11, 560, 7, 1000000.00, 1, 1),
(8615, 11, 560, 8, 0.00, 0, 1),
(8616, 11, 560, 9, 0.00, 0, 1),
(8617, 11, 560, 10, 0.00, 0, 1),
(8618, 11, 560, 11, 0.00, 0, 1),
(8619, 11, 560, 81, 0.00, 0, 1),
(8620, 11, 560, 82, 0.00, 0, 1),
(8621, 11, 560, 83, 0.00, 0, 1),
(8622, 11, 560, 84, 0.00, 0, 1),
(8623, 11, 561, 77, 0.00, 0, 1),
(8624, 11, 561, 78, 0.00, 0, 1),
(8625, 11, 561, 79, 0.00, 0, 1),
(8626, 11, 561, 80, 0.00, 1, 1),
(8627, 11, 561, 7, 500000.00, 1, 1),
(8628, 11, 561, 8, 0.00, 0, 1),
(8629, 11, 561, 9, 0.00, 0, 1),
(8630, 11, 561, 10, 0.00, 0, 1),
(8631, 11, 561, 11, 0.00, 0, 1),
(8632, 11, 561, 81, 0.00, 1, 1),
(8633, 11, 561, 82, 0.00, 1, 1),
(8634, 11, 561, 83, 0.00, 1, 1),
(8635, 11, 561, 84, 0.00, 1, 1),
(8636, 11, 561, 85, 0.00, 0, 1),
(8637, 11, 561, 86, 0.00, 0, 1),
(8638, 11, 561, 87, 0.00, 0, 1),
(8639, 11, 561, 19, 0.00, 0, 1),
(8640, 11, 562, 77, 68.00, 1, 1),
(8641, 11, 562, 78, 886.60, 1, 1),
(8642, 11, 562, 79, 210020.00, 1, 1),
(8643, 11, 562, 80, 12.00, 0, 1),
(8644, 11, 562, 7, 749680.00, 1, 1),
(8645, 11, 562, 8, 0.00, 0, 1),
(8646, 11, 562, 9, 0.00, 0, 1),
(8647, 11, 562, 10, 0.00, 0, 1),
(8648, 11, 562, 11, 0.00, 0, 1),
(8649, 11, 562, 81, 6.00, 0, 1),
(8650, 11, 562, 82, 0.00, 0, 1),
(8651, 11, 562, 83, 0.00, 0, 1),
(8652, 11, 562, 84, 0.00, 0, 1),
(8653, 11, 563, 77, 1000000.00, 1, 1),
(8654, 11, 563, 78, 0.00, 0, 1),
(8655, 11, 563, 79, 0.00, 0, 1),
(8656, 11, 563, 80, 0.00, 0, 1),
(8657, 11, 563, 7, 0.00, 0, 1),
(8658, 11, 563, 8, 0.00, 0, 1),
(8659, 11, 563, 9, 0.00, 0, 1),
(8660, 11, 563, 10, 0.00, 0, 1),
(8661, 11, 563, 11, 0.00, 0, 1),
(8662, 11, 563, 81, 0.00, 0, 1),
(8663, 11, 563, 82, 0.00, 0, 1),
(8664, 11, 563, 83, 0.00, 0, 1),
(8665, 11, 563, 84, 0.00, 0, 1),
(8666, 11, 564, 77, 28.00, 1, 1),
(8667, 11, 564, 78, 120.00, 1, 1),
(8668, 11, 564, 79, 100000.00, 1, 1),
(8669, 11, 564, 80, 3.00, 1, 1),
(8670, 11, 564, 7, 768200.00, 0, 1),
(8671, 11, 564, 8, 0.00, 0, 1),
(8672, 11, 564, 9, 0.00, 0, 1),
(8673, 11, 564, 10, 0.00, 0, 1),
(8674, 11, 564, 11, 0.00, 0, 1),
(8675, 11, 564, 81, 3.00, 1, 1),
(8676, 11, 564, 82, 0.00, 0, 1),
(8677, 11, 564, 83, 0.00, 0, 1),
(8678, 11, 564, 84, 0.00, 0, 1),
(8679, 11, 565, 77, 0.00, 0, 1),
(8680, 11, 565, 78, 0.00, 0, 1),
(8681, 11, 565, 79, 0.00, 0, 1),
(8682, 11, 565, 80, 0.00, 0, 1),
(8683, 11, 565, 7, 0.00, 0, 1),
(8684, 11, 565, 8, 0.00, 0, 1),
(8685, 11, 565, 9, 999999.00, 1, 1),
(8686, 11, 565, 10, 0.00, 0, 1),
(8687, 11, 565, 11, 0.00, 0, 1),
(8688, 11, 565, 81, 0.00, 0, 1),
(8689, 11, 565, 82, 0.00, 0, 1),
(8690, 11, 565, 83, 0.00, 0, 1),
(8691, 11, 565, 84, 0.00, 0, 1),
(8692, 11, 566, 77, 0.00, 0, 1),
(8693, 11, 566, 78, 0.00, 0, 1),
(8694, 11, 566, 79, 0.00, 0, 1),
(8695, 11, 566, 80, 0.00, 0, 1),
(8696, 11, 566, 81, 0.00, 0, 1),
(8697, 11, 567, 77, 0.00, 1, 1),
(8698, 11, 567, 78, 0.00, 0, 1),
(8699, 11, 567, 79, 0.00, 0, 1),
(8700, 11, 567, 80, 0.00, 0, 1),
(8701, 11, 567, 81, 0.00, 0, 1),
(8702, 11, 568, 77, 0.00, 1, 1),
(8703, 11, 568, 78, 0.00, 0, 1),
(8704, 11, 568, 79, 0.00, 0, 1),
(8705, 11, 568, 80, 0.00, 0, 1),
(8706, 11, 568, 81, 0.00, 0, 1),
(8707, 11, 568, 82, 0.00, 0, 1),
(8708, 11, 568, 83, 0.00, 0, 1),
(8709, 11, 568, 84, 0.00, 0, 1),
(8710, 11, 568, 85, 0.00, 0, 1),
(8711, 11, 568, 86, 0.00, 0, 1),
(8712, 11, 568, 87, 0.00, 0, 1),
(8713, 11, 568, 19, 0.00, 0, 1),
(8714, 11, 569, 77, 0.00, 1, 1),
(8715, 11, 569, 78, 0.00, 0, 1),
(8716, 11, 569, 79, 0.00, 0, 1),
(8717, 11, 569, 80, 0.00, 0, 1),
(8718, 11, 569, 81, 0.00, 0, 1),
(8719, 11, 570, 77, 196.00, 1, 1),
(8720, 11, 570, 78, 1645.00, 1, 1),
(8721, 11, 570, 79, 220000.00, 1, 1),
(8722, 11, 570, 80, 14.00, 1, 1),
(8723, 11, 570, 81, 30.00, 1, 1),
(8724, 11, 571, 77, 0.00, 0, 1),
(8725, 11, 571, 78, 300.00, 0, 1),
(8726, 11, 571, 79, 240000.00, 1, 1),
(8727, 11, 571, 80, 0.00, 0, 1),
(8728, 11, 571, 81, 0.00, 0, 1),
(8729, 11, 572, 77, 0.00, 0, 1),
(8730, 11, 572, 78, 0.00, 0, 1),
(8731, 11, 572, 79, 265000.00, 1, 1),
(8732, 11, 572, 80, 0.00, 0, 1),
(8733, 11, 572, 81, 0.00, 0, 1),
(8734, 11, 573, 77, 60.00, 1, 1),
(8735, 11, 573, 78, 320.00, 1, 1),
(8736, 11, 573, 79, 184000.00, 1, 1),
(8737, 11, 573, 80, 0.00, 0, 1),
(8738, 11, 573, 81, 0.00, 0, 1),
(8739, 11, 574, 77, 0.00, 0, 1),
(8740, 11, 574, 78, 350.00, 1, 1),
(8741, 11, 574, 79, 240000.00, 1, 1),
(8742, 11, 574, 80, 0.00, 0, 1),
(8743, 11, 574, 81, 0.00, 0, 1),
(8744, 11, 575, 77, 67.00, 1, 1),
(8745, 11, 575, 78, 400.00, 1, 1),
(8746, 11, 575, 79, 170000.00, 1, 1),
(8747, 11, 575, 80, 20.00, 1, 1),
(8748, 11, 575, 81, 30.00, 1, 1),
(8749, 11, 576, 77, 0.00, 0, 1),
(8750, 11, 576, 78, 0.00, 0, 1),
(8751, 11, 576, 79, 1.00, 1, 1),
(8752, 11, 576, 80, 0.00, 0, 1),
(8753, 11, 576, 81, 0.00, 0, 1),
(8754, 11, 577, 77, 0.00, 0, 1),
(8755, 11, 577, 78, 600.00, 1, 1),
(8756, 11, 577, 79, 200000.00, 1, 1),
(8757, 11, 577, 80, 0.00, 0, 1),
(8758, 11, 577, 81, 0.00, 0, 1),
(8759, 11, 578, 77, 50.00, 1, 1),
(8760, 11, 578, 78, 200.00, 1, 1),
(8761, 11, 578, 79, 240000.00, 1, 1),
(8762, 11, 578, 80, 0.00, 0, 1),
(8763, 11, 578, 81, 0.00, 0, 1),
(8764, 11, 579, 77, 60.00, 1, 1),
(8765, 11, 579, 78, 200.00, 1, 1),
(8766, 11, 579, 79, 120000.00, 1, 1),
(8767, 11, 579, 80, 1.00, 0, 1),
(8768, 11, 579, 81, 1.00, 0, 1),
(8769, 11, 580, 77, 90.00, 1, 1),
(8770, 11, 580, 78, 666.00, 1, 1),
(8771, 11, 580, 79, 210000.00, 1, 1),
(8772, 11, 580, 80, 0.00, 0, 1),
(8773, 11, 580, 81, 0.00, 0, 1),
(8774, 11, 581, 77, 243.00, 1, 1),
(8775, 11, 581, 78, 1562.00, 1, 1),
(8776, 11, 581, 79, 220000.00, 1, 1),
(8777, 11, 581, 80, 15.00, 1, 1),
(8778, 11, 581, 81, 49.00, 1, 1),
(8779, 11, 581, 82, 8120.00, 1, 1),
(8780, 11, 581, 83, 15212.00, 1, 1),
(8781, 11, 581, 84, 3122.00, 1, 1),
(8782, 11, 581, 85, 1.00, 1, 1),
(8783, 11, 581, 86, 411.00, 1, 1),
(8784, 11, 581, 87, 12.00, 1, 1),
(8785, 11, 582, 77, 57.10, 1, 1),
(8786, 11, 582, 78, 540.00, 1, 1),
(8787, 11, 582, 79, 212000.00, 1, 1),
(8788, 11, 582, 80, 3.00, 1, 1),
(8789, 11, 582, 81, 6.00, 1, 1),
(8790, 11, 582, 82, 12450.00, 1, 1),
(8791, 11, 582, 83, 8420.00, 1, 1),
(8792, 11, 582, 84, 641.00, 1, 1),
(8793, 11, 582, 85, 0.00, 1, 1),
(8794, 11, 582, 86, 155.00, 1, 1),
(8795, 11, 582, 87, 85.00, 1, 1),
(8796, 11, 583, 77, 21.00, 1, 1),
(8797, 11, 583, 78, 188.00, 1, 1),
(8798, 11, 583, 79, 250000.00, 1, 1),
(8799, 11, 583, 80, 2.00, 1, 1),
(8800, 11, 583, 81, 3.00, 1, 1),
(8801, 11, 583, 82, 15244.00, 1, 1),
(8802, 11, 583, 83, 16594.00, 1, 1),
(8803, 11, 583, 84, 1879.00, 1, 1),
(8804, 11, 583, 85, 0.00, 1, 1),
(8805, 11, 583, 86, 13341.00, 1, 1),
(8806, 11, 583, 87, 266.00, 1, 1),
(8807, 11, 584, 77, 222.00, 1, 1),
(8808, 11, 584, 78, 2222.00, 1, 1),
(8809, 11, 584, 79, 222222.00, 1, 1),
(8810, 11, 584, 80, 22.00, 1, 1),
(8811, 11, 584, 81, 2.00, 1, 1),
(8812, 11, 585, 77, 365.00, 1, 1),
(8813, 11, 585, 78, 1800.00, 1, 1),
(8814, 11, 585, 79, 350000.00, 1, 1),
(8815, 11, 585, 80, 35.00, 1, 1),
(8816, 11, 585, 81, 12.00, 1, 1),
(8817, 11, 586, 77, 112.00, 1, 1),
(8818, 11, 586, 78, 212.00, 1, 1),
(8819, 11, 586, 79, 310000.00, 1, 1),
(8820, 11, 586, 80, 21.00, 1, 1),
(8821, 11, 586, 81, 9.00, 1, 1),
(8822, 11, 587, 77, 800.00, 1, 1),
(8823, 11, 587, 78, 500.00, 1, 1),
(8824, 11, 587, 79, 210000.00, 1, 1),
(8825, 11, 587, 80, 0.00, 0, 1),
(8826, 11, 587, 81, 0.00, 0, 1),
(8827, 11, 588, 77, 1200.00, 1, 1),
(8828, 11, 588, 78, 1200.00, 1, 1),
(8829, 11, 588, 79, 215000.00, 1, 1),
(8830, 11, 588, 80, 0.00, 0, 1),
(8831, 11, 588, 81, 0.00, 0, 1),
(8832, 11, 589, 77, 2000.00, 1, 1),
(8833, 11, 589, 78, 2000.00, 1, 1),
(8834, 11, 589, 79, 250000.00, 1, 1),
(8835, 11, 589, 80, 0.00, 0, 1),
(8836, 11, 589, 81, 0.00, 0, 1),
(8837, 11, 590, 77, 144.00, 1, 1),
(8838, 11, 590, 78, 312.00, 1, 1),
(8839, 11, 590, 79, 310000.00, 1, 1),
(8840, 11, 590, 80, 1.00, 1, 1),
(8841, 11, 590, 81, 18.00, 1, 1),
(8842, 11, 590, 82, 14560.00, 1, 1),
(8843, 11, 590, 83, 89500.00, 1, 1),
(8844, 11, 590, 84, 58460.00, 1, 1),
(8845, 11, 590, 85, 0.00, 1, 1),
(8846, 11, 590, 86, 21490.00, 1, 1),
(8847, 11, 590, 87, 400.00, 1, 1),
(8848, 11, 590, 19, 0.00, 0, 1),
(8849, 11, 591, 77, 210.00, 1, 1),
(8850, 11, 591, 78, 1655.00, 1, 1),
(8851, 11, 591, 79, 262351.00, 1, 1),
(8852, 11, 591, 80, 3.00, 1, 1),
(8853, 11, 591, 81, 22.00, 1, 1),
(8854, 11, 591, 82, 540.00, 1, 1),
(8855, 11, 591, 83, 96000.00, 1, 1),
(8856, 11, 591, 84, 34450.00, 1, 1),
(8857, 11, 591, 85, 0.00, 1, 1),
(8858, 11, 591, 86, 30450.00, 1, 1),
(8859, 11, 591, 87, 0.00, 1, 1),
(8860, 11, 591, 19, 0.00, 0, 1),
(8861, 11, 592, 77, 588.00, 1, 1),
(8862, 11, 592, 78, 0.00, 0, 1),
(8863, 11, 592, 79, 220000.00, 1, 1),
(8864, 11, 592, 80, 0.00, 0, 1),
(8865, 11, 592, 81, 0.00, 0, 1),
(8866, 11, 592, 82, 0.00, 0, 1),
(8867, 11, 592, 83, 0.00, 0, 1),
(8868, 11, 592, 84, 0.00, 0, 1),
(8869, 11, 592, 85, 0.00, 0, 1),
(8870, 11, 592, 86, 0.00, 0, 1),
(8871, 11, 592, 87, 0.00, 0, 1),
(8872, 11, 592, 19, 0.00, 0, 1),
(8873, 11, 593, 77, 144.00, 1, 1),
(8874, 11, 593, 78, 0.00, 0, 1),
(8875, 11, 593, 79, 220000.00, 1, 1),
(8876, 11, 593, 80, 0.00, 0, 1),
(8877, 11, 593, 81, 0.00, 0, 1),
(8878, 11, 593, 82, 0.00, 0, 1),
(8879, 11, 593, 83, 0.00, 0, 1),
(8880, 11, 593, 84, 0.00, 0, 1),
(8881, 11, 593, 85, 0.00, 0, 1),
(8882, 11, 593, 86, 0.00, 0, 1),
(8883, 11, 593, 87, 0.00, 0, 1),
(8884, 11, 593, 19, 0.00, 0, 1),
(8885, 11, 594, 77, 323.50, 1, 1),
(8886, 11, 594, 78, 0.00, 0, 1),
(8887, 11, 594, 79, 220000.00, 1, 1),
(8888, 11, 594, 80, 0.00, 0, 1),
(8889, 11, 594, 81, 0.00, 0, 1),
(8890, 11, 594, 82, 0.00, 0, 1),
(8891, 11, 594, 83, 0.00, 0, 1),
(8892, 11, 594, 84, 0.00, 0, 1),
(8893, 11, 594, 85, 0.00, 0, 1),
(8894, 11, 594, 86, 0.00, 0, 1),
(8895, 11, 594, 87, 0.00, 0, 1),
(8896, 11, 594, 19, 0.00, 0, 1),
(8897, 11, 595, 77, 1102.00, 1, 1),
(8898, 11, 595, 78, 2222.00, 1, 1),
(8899, 11, 595, 79, 222000.00, 1, 1),
(8900, 11, 595, 80, 33.00, 1, 1),
(8901, 11, 595, 81, 33.00, 1, 1),
(8902, 11, 595, 82, 499.00, 1, 1),
(8903, 11, 595, 83, 121300.00, 1, 1),
(8904, 11, 595, 84, 79560.00, 1, 1),
(8905, 11, 595, 85, 4.00, 1, 1),
(8906, 11, 595, 86, 3922.00, 1, 1),
(8907, 11, 595, 87, 0.00, 1, 1),
(8908, 11, 596, 77, 677.00, 1, 1),
(8909, 11, 596, 78, 333.00, 1, 1),
(8910, 11, 596, 79, 220000.00, 1, 1),
(8911, 11, 596, 80, 20.00, 1, 1),
(8912, 11, 596, 81, 20.00, 1, 1),
(8913, 11, 596, 82, 7615.00, 1, 1),
(8914, 11, 596, 83, 102500.00, 1, 1),
(8915, 11, 596, 84, 86422.00, 1, 1),
(8916, 11, 596, 85, 2.00, 1, 1),
(8917, 11, 596, 86, 13445.00, 1, 1),
(8918, 11, 596, 87, 0.00, 1, 1),
(8919, 11, 597, 77, 510.40, 1, 1),
(8920, 11, 597, 78, 600.00, 1, 1),
(8921, 11, 597, 79, 220000.00, 1, 1),
(8922, 11, 597, 80, 20.00, 1, 1),
(8923, 11, 597, 81, 15.00, 1, 1),
(8924, 11, 597, 82, 1950.00, 1, 1),
(8925, 11, 597, 83, 89650.00, 1, 1),
(8926, 11, 597, 84, 37800.00, 1, 1),
(8927, 11, 597, 85, 2.00, 1, 1),
(8928, 11, 597, 86, 2350.00, 1, 1),
(8929, 11, 597, 87, 0.00, 1, 1),
(8930, 11, 598, 77, 264.00, 1, 1),
(8931, 11, 598, 78, 322.00, 1, 1),
(8932, 11, 598, 79, 202545.00, 1, 1),
(8933, 11, 598, 80, 15.00, 1, 1),
(8934, 11, 598, 81, 10.00, 1, 1),
(8935, 11, 598, 82, 1566.00, 1, 1),
(8936, 11, 598, 83, 78900.00, 1, 1),
(8937, 11, 598, 84, 59050.00, 1, 1),
(8938, 11, 598, 85, 0.00, 1, 1),
(8939, 11, 598, 86, 11959.00, 1, 1),
(8940, 11, 598, 87, 0.00, 1, 1),
(8941, 11, 599, 77, 2.10, 1, 1),
(8942, 11, 599, 78, 70.00, 0, 1),
(8943, 11, 599, 79, 434590.00, 1, 1),
(8944, 11, 599, 80, 0.00, 0, 1),
(8945, 11, 599, 81, 0.00, 0, 1),
(8946, 11, 599, 82, 0.00, 0, 1),
(8947, 11, 599, 83, 0.00, 0, 1),
(8948, 11, 599, 84, 0.00, 0, 1),
(8949, 11, 599, 85, 0.00, 0, 1),
(8950, 11, 599, 86, 0.00, 0, 1),
(8951, 11, 599, 87, 0.00, 0, 1),
(8952, 11, 600, 77, 0.41, 0, 1),
(8953, 11, 600, 78, 30.00, 0, 1),
(8954, 11, 600, 79, 248300.00, 1, 1),
(8955, 11, 600, 80, 0.00, 0, 1),
(8956, 11, 600, 81, 0.00, 0, 1),
(8957, 11, 600, 82, 0.00, 0, 1),
(8958, 11, 600, 83, 0.00, 0, 1),
(8959, 11, 600, 84, 0.00, 0, 1),
(8960, 11, 600, 85, 0.00, 0, 1),
(8961, 11, 600, 86, 0.00, 0, 1),
(8962, 11, 600, 87, 0.00, 0, 1),
(8963, 11, 601, 77, 0.14, 0, 1),
(8964, 11, 601, 78, 30.00, 0, 1),
(8965, 11, 601, 79, 180000.00, 1, 1),
(8966, 11, 601, 80, 0.00, 0, 1),
(8967, 11, 601, 81, 0.00, 0, 1),
(8968, 11, 601, 82, 0.00, 0, 1),
(8969, 11, 601, 83, 0.00, 0, 1),
(8970, 11, 601, 84, 0.00, 0, 1),
(8971, 11, 601, 85, 0.00, 0, 1),
(8972, 11, 601, 86, 0.00, 0, 1),
(8973, 11, 601, 87, 0.00, 0, 1),
(8974, 11, 602, 77, 0.00, 0, 1),
(8975, 11, 602, 78, 0.00, 0, 1),
(8976, 11, 602, 79, 0.00, 0, 1),
(8977, 11, 602, 80, 0.00, 0, 1),
(8978, 11, 602, 81, 0.00, 0, 1),
(8979, 11, 603, 77, 4186.30, 1, 1),
(8980, 11, 603, 78, 12845.00, 1, 1),
(8981, 11, 603, 79, 100277.00, 1, 1),
(8982, 11, 603, 80, 80.00, 1, 1),
(8983, 11, 603, 81, 1223.00, 1, 1),
(8984, 11, 604, 77, 8266.41, 1, 1),
(8985, 11, 604, 78, 17345.80, 1, 1),
(8986, 11, 604, 79, 81255.00, 1, 1),
(8987, 11, 604, 80, 94.20, 1, 1),
(8988, 11, 604, 81, 112.00, 1, 1),
(8989, 11, 605, 77, 1549.25, 1, 1),
(8990, 11, 605, 78, 12422.50, 1, 1),
(8991, 11, 605, 79, 89912.00, 1, 1),
(8992, 11, 605, 80, 114.00, 1, 1),
(8993, 11, 605, 81, 1212.00, 1, 1),
(8994, 11, 606, 77, 888.00, 1, 1),
(8995, 11, 606, 78, 7466.00, 1, 1),
(8996, 11, 606, 79, 120224.00, 0, 1),
(8997, 11, 606, 80, 160.00, 1, 1),
(8998, 11, 606, 81, 288.00, 1, 1),
(8999, 11, 607, 77, 241.00, 1, 1),
(9000, 11, 607, 78, 2100.00, 1, 1),
(9001, 11, 607, 79, 53400.00, 1, 1),
(9002, 11, 607, 80, 25.00, 0, 1),
(9003, 11, 607, 81, 212.00, 1, 1),
(9004, 11, 607, 82, 825644.00, 1, 1),
(9005, 11, 607, 83, 51050.00, 1, 1),
(9006, 11, 607, 84, 35699.00, 1, 1),
(9007, 11, 607, 85, 0.00, 1, 1),
(9008, 11, 607, 86, 1363.00, 1, 1),
(9009, 11, 607, 87, 3100.00, 1, 1),
(9010, 11, 608, 77, 185.00, 1, 1),
(9011, 11, 608, 78, 480.00, 1, 1),
(9012, 11, 608, 79, 245000.00, 1, 1),
(9013, 11, 608, 80, 12.00, 1, 1),
(9014, 11, 608, 81, 88.00, 1, 1),
(9015, 11, 608, 82, 6552.00, 1, 1),
(9016, 11, 608, 83, 13255.00, 1, 1),
(9017, 11, 608, 84, 12800.00, 1, 1),
(9018, 11, 608, 85, 16.00, 1, 1),
(9019, 11, 608, 86, 3559.00, 1, 1),
(9020, 11, 608, 87, 650.00, 1, 1),
(9021, 11, 609, 77, 148.00, 1, 1),
(9022, 11, 609, 78, 2500.00, 1, 1),
(9023, 11, 609, 79, 265120.00, 1, 1),
(9024, 11, 609, 80, 28.00, 1, 1),
(9025, 11, 609, 81, 56.00, 1, 1),
(9026, 11, 609, 82, 2155.00, 1, 1),
(9027, 11, 609, 83, 15944.00, 1, 1),
(9028, 11, 609, 84, 10462.00, 1, 1),
(9029, 11, 609, 85, 13.00, 1, 1),
(9030, 11, 609, 86, 2248.00, 1, 1),
(9031, 11, 609, 87, 955.00, 1, 1),
(9032, 11, 610, 77, 52.00, 1, 1),
(9033, 11, 610, 78, 312.00, 1, 1),
(9034, 11, 610, 79, 242150.00, 1, 1),
(9035, 11, 610, 80, 8.00, 1, 1),
(9036, 11, 610, 81, 12.00, 1, 1),
(9037, 11, 610, 82, 12511.00, 1, 1),
(9038, 11, 610, 83, 6522.00, 1, 1),
(9039, 11, 610, 84, 4121.00, 1, 1),
(9040, 11, 610, 85, 11.00, 1, 1),
(9041, 11, 610, 86, 36051.00, 1, 1),
(9042, 11, 610, 87, 544.00, 1, 1),
(9043, 11, 611, 77, 18.00, 1, 1),
(9044, 11, 611, 78, 189.00, 1, 1),
(9045, 11, 611, 79, 289585.00, 1, 1),
(9046, 11, 611, 80, 13.00, 1, 1),
(9047, 11, 611, 81, 18.00, 1, 1),
(9048, 11, 611, 82, 8123.00, 1, 1),
(9049, 11, 611, 83, 41299.00, 1, 1),
(9050, 11, 611, 84, 12656.00, 1, 1),
(9051, 11, 611, 85, 0.00, 1, 1),
(9052, 11, 611, 86, 36564.00, 1, 1),
(9053, 11, 611, 87, 1202.00, 1, 1),
(9054, 11, 612, 77, 291.00, 1, 1),
(9055, 11, 612, 78, 6499.00, 1, 1),
(9056, 11, 612, 79, 232024.00, 1, 1),
(9057, 11, 612, 80, 71.00, 1, 1),
(9058, 11, 612, 81, 81.00, 1, 1),
(9059, 11, 612, 82, 27505.00, 1, 1),
(9060, 11, 612, 83, 41860.00, 1, 1),
(9061, 11, 612, 84, 31000.00, 1, 1),
(9062, 11, 612, 85, 0.00, 1, 1),
(9063, 11, 612, 86, 5980.00, 1, 1),
(9064, 11, 612, 87, 710.00, 1, 1),
(9065, 11, 613, 77, 273.00, 1, 1),
(9066, 11, 613, 78, 400.00, 1, 1),
(9067, 11, 613, 79, 245612.00, 1, 1),
(9068, 11, 613, 80, 72.00, 1, 1),
(9069, 11, 613, 81, 58.00, 1, 1),
(9070, 11, 613, 82, 6520.00, 1, 1),
(9071, 11, 613, 83, 38511.00, 1, 1),
(9072, 11, 613, 84, 32800.00, 1, 1),
(9073, 11, 613, 85, 0.00, 1, 1),
(9074, 11, 613, 86, 7400.00, 1, 1),
(9075, 11, 613, 87, 241.00, 1, 1),
(9076, 11, 614, 77, 0.00, 0, 1),
(9077, 11, 614, 78, 0.00, 0, 1),
(9078, 11, 614, 79, 999999.00, 1, 1),
(9079, 11, 614, 80, 0.00, 0, 1),
(9080, 11, 614, 81, 0.00, 0, 1),
(9081, 11, 614, 82, 0.00, 0, 1),
(9082, 11, 614, 83, 0.00, 0, 1),
(9083, 11, 614, 84, 0.00, 0, 1),
(9084, 11, 614, 85, 0.00, 0, 1),
(9085, 11, 614, 86, 0.00, 0, 1),
(9086, 11, 614, 87, 0.00, 0, 1),
(9087, 11, 614, 19, 0.00, 0, 1),
(9088, 11, 615, 77, 0.00, 0, 1),
(9089, 11, 615, 78, 0.00, 0, 1),
(9090, 11, 615, 79, 880000.00, 1, 1),
(9091, 11, 615, 80, 0.00, 0, 1),
(9092, 11, 615, 81, 0.00, 0, 1),
(9093, 11, 615, 82, 0.00, 0, 1),
(9094, 11, 615, 83, 0.00, 0, 1),
(9095, 11, 615, 84, 0.00, 0, 1),
(9096, 11, 615, 85, 0.00, 0, 1),
(9097, 11, 615, 86, 0.00, 0, 1),
(9098, 11, 615, 87, 0.00, 0, 1),
(9099, 11, 615, 19, 0.00, 0, 1),
(9100, 11, 616, 77, 10.00, 1, 1),
(9101, 11, 616, 78, 30.00, 1, 1),
(9102, 11, 616, 79, 280000.00, 1, 1),
(9103, 11, 616, 80, 0.00, 1, 1),
(9104, 11, 616, 81, 0.00, 0, 1),
(9105, 11, 616, 82, 0.00, 0, 1),
(9106, 11, 616, 83, 0.00, 0, 1),
(9107, 11, 616, 84, 0.00, 0, 1),
(9108, 11, 616, 85, 0.00, 0, 1),
(9109, 11, 616, 86, 0.00, 0, 1),
(9110, 11, 616, 87, 0.00, 0, 1),
(9111, 11, 616, 19, 0.00, 0, 1),
(9112, 11, 617, 77, 0.00, 0, 1),
(9113, 11, 617, 78, 0.00, 0, 1),
(9114, 11, 617, 79, 0.00, 0, 1),
(9115, 11, 617, 80, 0.00, 0, 1),
(9116, 11, 617, 81, 0.00, 0, 1),
(9117, 11, 617, 82, 0.00, 0, 1),
(9118, 11, 617, 83, 0.00, 0, 1),
(9119, 11, 617, 84, 0.00, 0, 1),
(9120, 11, 617, 85, 0.00, 0, 1),
(9121, 11, 617, 86, 0.00, 0, 1),
(9122, 11, 617, 87, 0.00, 0, 1),
(9123, 11, 617, 19, 0.00, 0, 1),
(9124, 11, 618, 77, 0.00, 0, 1),
(9125, 11, 618, 78, 0.00, 0, 1),
(9126, 11, 618, 79, 0.00, 0, 1),
(9127, 11, 618, 80, 0.00, 0, 1),
(9128, 11, 618, 81, 0.00, 0, 1),
(9129, 11, 618, 82, 0.00, 0, 1),
(9130, 11, 618, 83, 0.00, 0, 1),
(9131, 11, 618, 84, 0.00, 0, 1),
(9132, 11, 618, 85, 0.00, 0, 1),
(9133, 11, 618, 86, 0.00, 0, 1),
(9134, 11, 618, 87, 0.00, 0, 1),
(9135, 11, 618, 19, 0.00, 0, 1),
(9136, 11, 619, 77, 71.00, 1, 1),
(9137, 11, 619, 78, 627.00, 1, 1),
(9138, 11, 619, 79, 189241.00, 1, 1),
(9139, 11, 619, 80, 8.00, 1, 1),
(9140, 11, 619, 81, 18.00, 1, 1),
(9141, 11, 619, 82, 0.00, 0, 1),
(9142, 11, 619, 83, 122511.00, 1, 1),
(9143, 11, 619, 84, 42415.00, 1, 1),
(9144, 11, 619, 85, 0.00, 0, 1),
(9145, 11, 619, 86, 6100.00, 0, 1),
(9146, 11, 619, 87, 0.00, 0, 1),
(9147, 11, 620, 77, 69.00, 1, 1),
(9148, 11, 620, 78, 677.00, 1, 1),
(9149, 11, 620, 79, 194233.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(9150, 11, 620, 80, 3.00, 1, 1),
(9151, 11, 620, 81, 8.00, 1, 1),
(9152, 11, 620, 82, 0.00, 0, 1),
(9153, 11, 620, 83, 101343.00, 0, 1),
(9154, 11, 620, 84, 12255.00, 0, 1),
(9155, 11, 620, 85, 0.00, 0, 1),
(9156, 11, 620, 86, 6454.00, 0, 1),
(9157, 11, 620, 87, 0.00, 0, 1),
(9158, 11, 621, 77, 22.00, 1, 1),
(9159, 11, 621, 78, 181.00, 1, 1),
(9160, 11, 621, 79, 215366.00, 1, 1),
(9161, 11, 621, 80, 0.00, 0, 1),
(9162, 11, 621, 81, 0.00, 0, 1),
(9163, 11, 621, 82, 2688.00, 0, 1),
(9164, 11, 621, 83, 168585.00, 0, 1),
(9165, 11, 621, 84, 3577.00, 0, 1),
(9166, 11, 621, 85, 0.00, 0, 1),
(9167, 11, 621, 86, 12842.00, 0, 1),
(9168, 11, 621, 87, 0.00, 0, 1),
(9169, 11, 622, 77, 0.00, 1, 1),
(9170, 11, 622, 78, 194.00, 1, 1),
(9171, 11, 622, 79, 243518.00, 1, 1),
(9172, 11, 622, 80, 0.00, 1, 1),
(9173, 11, 622, 81, 0.00, 1, 1),
(9174, 11, 622, 82, 8175.00, 1, 1),
(9175, 11, 622, 83, 168552.00, 0, 1),
(9176, 11, 622, 84, 65885.00, 0, 1),
(9177, 11, 622, 85, 0.00, 0, 1),
(9178, 11, 622, 86, 93775.00, 0, 1),
(9179, 11, 622, 87, 0.00, 0, 1),
(9180, 11, 623, 77, 18.00, 1, 1),
(9181, 11, 623, 78, 94.00, 1, 1),
(9182, 11, 623, 79, 122664.00, 1, 1),
(9183, 11, 623, 80, 3.00, 1, 1),
(9184, 11, 623, 81, 4.10, 1, 1),
(9185, 11, 623, 82, 12450.00, 1, 1),
(9186, 11, 623, 83, 18227.00, 1, 1),
(9187, 11, 623, 84, 14952.00, 1, 1),
(9188, 11, 623, 85, 0.00, 1, 1),
(9189, 11, 623, 86, 71210.00, 1, 1),
(9190, 11, 623, 87, 13.00, 1, 1),
(9191, 11, 624, 77, 25.33, 1, 1),
(9192, 11, 624, 78, 644.00, 1, 1),
(9193, 11, 624, 79, 175889.00, 1, 1),
(9194, 11, 624, 80, 3.00, 1, 1),
(9195, 11, 624, 81, 8.00, 1, 1),
(9196, 11, 624, 82, 24550.00, 1, 1),
(9197, 11, 624, 83, 41600.00, 1, 1),
(9198, 11, 624, 84, 36280.00, 1, 1),
(9199, 11, 624, 85, 0.00, 1, 1),
(9200, 11, 624, 86, 12865.00, 1, 1),
(9201, 11, 624, 87, 433.00, 1, 1),
(9202, 11, 625, 77, 11.00, 1, 1),
(9203, 11, 625, 78, 404.00, 1, 1),
(9204, 11, 625, 79, 188000.00, 1, 1),
(9205, 11, 625, 80, 3.00, 1, 1),
(9206, 11, 625, 81, 7.00, 1, 1),
(9207, 11, 625, 82, 21122.00, 1, 1),
(9208, 11, 625, 83, 34522.00, 1, 1),
(9209, 11, 625, 84, 27800.00, 1, 1),
(9210, 11, 625, 85, 0.00, 1, 1),
(9211, 11, 625, 86, 3895.00, 1, 1),
(9212, 11, 625, 87, 271.00, 1, 1),
(9213, 11, 625, 3, 11.00, 1, 1),
(9214, 11, 625, 4, 404.00, 1, 1),
(9215, 11, 625, 5, 188000.00, 1, 1),
(9216, 11, 625, 6, 3.00, 1, 1),
(9217, 11, 625, 12, 7.00, 1, 1),
(9218, 11, 625, 13, 21122.00, 1, 1),
(9219, 11, 625, 14, 34522.00, 0, 1),
(9220, 11, 625, 15, 27800.00, 0, 1),
(9221, 11, 625, 16, 0.00, 0, 1),
(9222, 11, 625, 17, 3895.00, 1, 1),
(9223, 11, 625, 18, 271.00, 0, 1),
(9224, 11, 624, 3, 12.00, 1, 1),
(9225, 11, 624, 4, 344.00, 1, 1),
(9226, 11, 624, 5, 175889.00, 1, 1),
(9227, 11, 624, 6, 3.00, 1, 1),
(9228, 11, 624, 12, 8.00, 1, 1),
(9229, 11, 624, 13, 24550.00, 1, 1),
(9230, 11, 624, 14, 41600.00, 0, 1),
(9231, 11, 624, 15, 36280.00, 0, 1),
(9232, 11, 624, 16, 0.00, 1, 1),
(9233, 11, 624, 17, 12865.00, 1, 1),
(9234, 11, 624, 18, 433.00, 1, 1),
(9235, 11, 623, 3, 8.00, 1, 1),
(9236, 11, 623, 4, 44.00, 1, 1),
(9237, 11, 623, 5, 124664.00, 1, 1),
(9238, 11, 623, 6, 0.00, 0, 1),
(9239, 11, 623, 12, 0.00, 0, 1),
(9240, 11, 623, 13, 12450.00, 1, 1),
(9241, 11, 623, 14, 18227.00, 0, 1),
(9242, 11, 623, 15, 14952.00, 0, 1),
(9243, 11, 623, 16, 0.00, 0, 1),
(9244, 11, 623, 17, 71210.00, 1, 1),
(9245, 11, 623, 18, 13.00, 1, 1),
(9246, 7, 539, 54, 11.00, 1, 1),
(9247, 7, 539, 55, 404.00, 1, 1),
(9248, 7, 539, 56, 188000.00, 1, 1),
(9249, 7, 539, 57, 3.00, 1, 1),
(9250, 7, 539, 58, 7.00, 1, 1),
(9251, 7, 539, 59, 21122.00, 1, 1),
(9252, 7, 538, 54, 12.00, 1, 1),
(9253, 7, 538, 55, 644.00, 1, 1),
(9254, 7, 538, 56, 38889.00, 1, 1),
(9255, 7, 538, 57, 3.00, 1, 1),
(9256, 7, 538, 58, 8.00, 1, 1),
(9257, 7, 538, 59, 24550.00, 1, 1),
(9258, 7, 421, 59, 6552.00, 1, 1),
(9259, 7, 537, 54, 8.00, 1, 1),
(9260, 7, 537, 55, 94.00, 1, 1),
(9261, 7, 537, 56, 49664.00, 1, 1),
(9262, 7, 537, 57, 3.00, 1, 1),
(9263, 7, 537, 58, 4.10, 1, 1),
(9264, 7, 537, 59, 12450.00, 1, 1),
(9265, 11, 604, 949, 8266.41, 1, 1),
(9266, 11, 604, 950, 17345.80, 1, 1),
(9267, 11, 604, 951, 81255.00, 1, 1),
(9268, 11, 604, 952, 94.20, 1, 1),
(9269, 11, 604, 953, 112.00, 1, 1),
(9270, 11, 625, 8012, 11.00, 1, 1),
(9271, 11, 625, 8014, 188000.00, 1, 1),
(9272, 11, 625, 8015, 3.00, 1, 1),
(9273, 11, 625, 8016, 7.00, 1, 1),
(9274, 11, 624, 8001, 12.00, 1, 1),
(9275, 11, 624, 8003, 175889.00, 1, 1),
(9276, 11, 624, 8004, 3.00, 1, 1),
(9278, 11, 625, 8013, 404.00, 1, 1),
(9325, 11, 603, 8979, 4186.30, 1, 1),
(9326, 11, 603, 8980, 12845.00, 0, 1),
(9327, 11, 603, 8981, 100277.00, 1, 1),
(9328, 11, 603, 8982, 80.00, 1, 1),
(9329, 11, 603, 8983, 1223.00, 1, 1),
(9330, 12, 626, 88, 32.51, 1, 1),
(9331, 12, 626, 90, 320000.00, 1, 1),
(9332, 12, 626, 91, 5.00, 0, 1),
(9333, 12, 626, 89, 400.00, 1, 1),
(9334, 12, 626, 7, 0.00, 0, 1),
(9335, 12, 626, 8, 0.00, 0, 1),
(9336, 12, 626, 9, 0.00, 0, 1),
(9337, 12, 626, 10, 0.00, 0, 1),
(9338, 12, 626, 11, 0.00, 0, 1),
(9339, 12, 626, 92, 0.00, 0, 1),
(9340, 12, 626, 93, 0.00, 0, 1),
(9341, 12, 626, 94, 0.00, 0, 1),
(9342, 12, 626, 95, 0.00, 0, 1),
(9343, 12, 627, 88, 60.00, 1, 1),
(9344, 12, 627, 90, 251600.00, 1, 1),
(9345, 12, 627, 91, 10.00, 1, 1),
(9346, 12, 627, 89, 18000.00, 1, 1),
(9347, 12, 627, 7, 0.00, 0, 1),
(9348, 12, 627, 8, 0.00, 0, 1),
(9349, 12, 627, 9, 0.00, 0, 1),
(9350, 12, 627, 10, 0.00, 0, 1),
(9351, 12, 627, 11, 0.00, 0, 1),
(9352, 12, 627, 92, 100.00, 1, 1),
(9353, 12, 627, 93, 0.00, 0, 1),
(9354, 12, 627, 94, 0.00, 0, 1),
(9355, 12, 627, 95, 0.00, 0, 1),
(9356, 12, 628, 88, 300.00, 1, 1),
(9357, 12, 628, 90, 600000.00, 1, 1),
(9358, 12, 628, 91, 1.00, 0, 1),
(9359, 12, 628, 89, 1500.00, 0, 1),
(9360, 12, 628, 7, 0.00, 0, 1),
(9361, 12, 628, 8, 0.00, 0, 1),
(9362, 12, 628, 9, 0.00, 0, 1),
(9363, 12, 628, 10, 0.00, 0, 1),
(9364, 12, 628, 11, 0.00, 0, 1),
(9365, 12, 628, 92, 0.00, 0, 1),
(9366, 12, 628, 93, 0.00, 0, 1),
(9367, 12, 628, 94, 0.00, 0, 1),
(9368, 12, 628, 95, 0.00, 0, 1),
(9369, 12, 629, 88, 0.00, 1, 1),
(9370, 12, 629, 90, 0.00, 0, 1),
(9371, 12, 629, 91, 0.00, 0, 1),
(9372, 12, 629, 89, 0.00, 1, 1),
(9373, 12, 629, 7, 0.00, 0, 1),
(9374, 12, 629, 8, 0.00, 0, 1),
(9375, 12, 629, 9, 0.00, 0, 1),
(9376, 12, 629, 10, 0.00, 0, 1),
(9377, 12, 629, 11, 0.00, 0, 1),
(9378, 12, 629, 92, 0.00, 0, 1),
(9379, 12, 629, 93, 0.00, 0, 1),
(9380, 12, 629, 94, 0.00, 1, 1),
(9381, 12, 629, 95, 0.00, 1, 1),
(9382, 12, 630, 88, 0.00, 0, 1),
(9383, 12, 630, 90, 0.00, 0, 1),
(9384, 12, 630, 91, 0.00, 0, 1),
(9385, 12, 630, 89, 0.00, 0, 1),
(9386, 12, 630, 7, 0.00, 0, 1),
(9387, 12, 630, 8, 0.00, 0, 1),
(9388, 12, 630, 9, 0.00, 0, 1),
(9389, 12, 630, 10, 0.00, 0, 1),
(9390, 12, 630, 11, 0.00, 0, 1),
(9391, 12, 630, 92, 0.00, 0, 1),
(9392, 12, 630, 93, 0.00, 0, 1),
(9393, 12, 630, 94, 0.00, 0, 1),
(9394, 12, 630, 95, 0.00, 0, 1),
(9395, 12, 631, 88, 40.00, 1, 1),
(9396, 12, 631, 90, 270000.00, 1, 1),
(9397, 12, 631, 91, 0.00, 0, 1),
(9398, 12, 631, 89, 950.00, 1, 1),
(9399, 12, 631, 7, 0.00, 0, 1),
(9400, 12, 631, 8, 0.00, 0, 1),
(9401, 12, 631, 9, 0.00, 0, 1),
(9402, 12, 631, 10, 0.00, 0, 1),
(9403, 12, 631, 11, 0.00, 0, 1),
(9404, 12, 631, 92, 0.00, 0, 1),
(9405, 12, 631, 93, 0.00, 0, 1),
(9406, 12, 631, 94, 0.00, 0, 1),
(9407, 12, 631, 95, 0.00, 0, 1),
(9408, 12, 632, 88, 60.00, 1, 1),
(9409, 12, 632, 90, 244787.00, 1, 1),
(9410, 12, 632, 91, 5.00, 1, 1),
(9411, 12, 632, 89, 300.00, 1, 1),
(9412, 12, 632, 7, 0.00, 0, 1),
(9413, 12, 632, 8, 0.00, 0, 1),
(9414, 12, 632, 9, 0.00, 0, 1),
(9415, 12, 632, 10, 0.00, 0, 1),
(9416, 12, 632, 11, 0.00, 0, 1),
(9417, 12, 632, 92, 5.00, 1, 1),
(9418, 12, 632, 93, 0.00, 0, 1),
(9419, 12, 632, 94, 0.00, 0, 1),
(9420, 12, 632, 95, 0.00, 0, 1),
(9421, 12, 633, 88, 0.00, 0, 1),
(9422, 12, 633, 89, 200000.00, 1, 1),
(9423, 12, 633, 90, 200000.00, 1, 1),
(9424, 12, 633, 91, 0.00, 0, 1),
(9425, 12, 633, 7, 0.00, 0, 1),
(9426, 12, 633, 8, 10000.00, 1, 1),
(9427, 12, 633, 9, 0.00, 0, 1),
(9428, 12, 633, 10, 0.00, 0, 1),
(9429, 12, 633, 11, 0.00, 0, 1),
(9430, 12, 633, 92, 40000.00, 1, 1),
(9431, 12, 633, 93, 0.00, 0, 1),
(9432, 12, 633, 94, 0.00, 0, 1),
(9433, 12, 633, 95, 0.00, 0, 1),
(9434, 12, 634, 88, 0.00, 1, 1),
(9435, 12, 634, 89, 10000.00, 1, 1),
(9436, 12, 634, 90, 0.00, 0, 1),
(9437, 12, 634, 91, 20000.00, 1, 1),
(9438, 12, 634, 7, 0.00, 0, 1),
(9439, 12, 634, 8, 0.00, 0, 1),
(9440, 12, 634, 9, 0.00, 0, 1),
(9441, 12, 634, 10, 0.00, 0, 1),
(9442, 12, 634, 11, 0.00, 0, 1),
(9443, 12, 634, 92, 0.00, 0, 1),
(9444, 12, 634, 93, 0.00, 0, 1),
(9445, 12, 634, 94, 0.00, 0, 1),
(9446, 12, 634, 95, 0.00, 0, 1),
(9447, 12, 634, 88, 0.00, 1, 1),
(9448, 12, 634, 89, 350.00, 1, 1),
(9449, 12, 634, 90, 100.00, 1, 1),
(9450, 12, 634, 91, 450.00, 1, 1),
(9451, 12, 634, 7, 100.00, 1, 1),
(9452, 12, 634, 8, 0.00, 0, 1),
(9453, 12, 634, 9, 0.00, 0, 1),
(9454, 12, 634, 10, 0.00, 0, 1),
(9455, 12, 634, 11, 0.00, 0, 1),
(9456, 12, 634, 92, 0.00, 0, 1),
(9457, 12, 634, 93, 0.00, 0, 1),
(9458, 12, 634, 94, 0.00, 0, 1),
(9459, 12, 634, 95, 0.00, 0, 1),
(9460, 12, 635, 88, 0.00, 0, 1),
(9461, 12, 635, 89, 350000.00, 1, 1),
(9462, 12, 635, 90, 100000.00, 0, 1),
(9463, 12, 635, 91, 0.00, 0, 1),
(9464, 12, 635, 7, 100000.00, 0, 1),
(9465, 12, 635, 8, 0.00, 0, 1),
(9466, 12, 635, 9, 450000.00, 0, 1),
(9467, 12, 635, 10, 0.00, 0, 1),
(9468, 12, 635, 11, 0.00, 0, 1),
(9469, 12, 635, 92, 0.00, 0, 1),
(9470, 12, 635, 93, 0.00, 0, 1),
(9471, 12, 635, 94, 0.00, 0, 1),
(9472, 12, 635, 95, 0.00, 0, 1),
(9473, 12, 636, 88, 0.00, 0, 1),
(9474, 12, 636, 89, 0.00, 0, 1),
(9475, 12, 636, 90, 320000.00, 1, 1),
(9476, 12, 636, 91, 0.00, 0, 1),
(9477, 12, 636, 7, 680000.00, 0, 1),
(9478, 12, 636, 8, 0.00, 0, 1),
(9479, 12, 636, 9, 0.00, 0, 1),
(9480, 12, 636, 10, 0.00, 0, 1),
(9481, 12, 636, 11, 0.00, 0, 1),
(9482, 12, 636, 92, 0.00, 0, 1),
(9483, 12, 636, 93, 0.00, 0, 1),
(9484, 12, 636, 94, 0.00, 0, 1),
(9485, 12, 636, 95, 0.00, 0, 1),
(9486, 12, 637, 88, 450.00, 1, 1),
(9487, 12, 637, 89, 0.00, 0, 1),
(9488, 12, 637, 90, 250000.00, 1, 1),
(9489, 12, 637, 91, 0.00, 0, 1),
(9490, 12, 637, 7, 0.00, 0, 1),
(9491, 12, 637, 8, 0.00, 0, 1),
(9492, 12, 637, 9, 0.00, 0, 1),
(9493, 12, 637, 10, 0.00, 0, 1),
(9494, 12, 637, 11, 0.00, 0, 1),
(9495, 12, 637, 92, 0.00, 0, 1),
(9496, 12, 637, 93, 0.00, 0, 1),
(9497, 12, 637, 94, 0.00, 1, 1),
(9498, 12, 637, 95, 0.00, 0, 1),
(9499, 12, 638, 88, 0.00, 0, 1),
(9500, 12, 638, 89, 0.00, 0, 1),
(9501, 12, 638, 90, 800000.00, 1, 1),
(9502, 12, 638, 91, 0.00, 0, 1),
(9503, 12, 638, 7, 0.00, 0, 1),
(9504, 12, 638, 8, 0.00, 0, 1),
(9505, 12, 638, 9, 0.00, 0, 1),
(9506, 12, 638, 10, 0.00, 0, 1),
(9507, 12, 638, 11, 0.00, 0, 1),
(9508, 12, 638, 92, 0.00, 0, 1),
(9509, 12, 638, 93, 0.00, 0, 1),
(9510, 12, 638, 94, 0.00, 0, 1),
(9511, 12, 638, 95, 0.00, 0, 1),
(9512, 12, 639, 88, 0.00, 0, 1),
(9513, 12, 639, 89, 0.00, 0, 1),
(9514, 12, 639, 90, 0.00, 0, 1),
(9515, 12, 639, 91, 0.00, 0, 1),
(9516, 12, 639, 7, 100000.00, 1, 1),
(9517, 12, 639, 8, 0.00, 0, 1),
(9518, 12, 639, 9, 0.00, 0, 1),
(9519, 12, 639, 10, 0.00, 0, 1),
(9520, 12, 639, 11, 0.00, 0, 1),
(9521, 12, 639, 92, 0.00, 0, 1),
(9522, 12, 639, 93, 0.00, 0, 1),
(9523, 12, 639, 94, 0.00, 0, 1),
(9524, 12, 639, 95, 100000.00, 1, 1),
(9525, 12, 640, 88, 0.00, 0, 1),
(9526, 12, 640, 89, 0.00, 0, 1),
(9527, 12, 640, 90, 950000.00, 1, 1),
(9528, 12, 640, 91, 0.00, 0, 1),
(9529, 12, 640, 7, 0.00, 0, 1),
(9530, 12, 640, 8, 0.00, 0, 1),
(9531, 12, 640, 9, 0.00, 0, 1),
(9532, 12, 640, 10, 0.00, 0, 1),
(9533, 12, 640, 11, 0.00, 0, 1),
(9534, 12, 640, 92, 0.00, 0, 1),
(9535, 12, 640, 93, 0.00, 0, 1),
(9536, 12, 640, 94, 50000.00, 1, 1),
(9537, 12, 640, 95, 0.00, 0, 1),
(9538, 12, 641, 88, 0.00, 0, 1),
(9539, 12, 641, 89, 0.00, 0, 1),
(9540, 12, 641, 90, 0.00, 0, 1),
(9541, 12, 641, 91, 0.00, 0, 1),
(9542, 12, 641, 7, 0.00, 0, 1),
(9543, 12, 641, 8, 999999.00, 1, 1),
(9544, 12, 641, 9, 0.00, 0, 1),
(9545, 12, 641, 10, 0.00, 0, 1),
(9546, 12, 641, 11, 0.00, 0, 1),
(9547, 12, 641, 92, 0.00, 0, 1),
(9548, 12, 641, 93, 0.00, 0, 1),
(9549, 12, 641, 94, 0.00, 0, 1),
(9550, 12, 641, 95, 0.00, 0, 1),
(9551, 12, 642, 88, 0.00, 0, 1),
(9552, 12, 642, 89, 0.00, 0, 1),
(9553, 12, 642, 90, 0.00, 0, 1),
(9554, 12, 642, 91, 0.00, 0, 1),
(9555, 12, 642, 7, 1000000.00, 1, 1),
(9556, 12, 642, 8, 0.00, 0, 1),
(9557, 12, 642, 9, 0.00, 0, 1),
(9558, 12, 642, 10, 0.00, 0, 1),
(9559, 12, 642, 11, 0.00, 0, 1),
(9560, 12, 642, 92, 0.00, 0, 1),
(9561, 12, 642, 93, 0.00, 0, 1),
(9562, 12, 642, 94, 0.00, 0, 1),
(9563, 12, 642, 95, 0.00, 0, 1),
(9564, 12, 643, 88, 0.00, 0, 1),
(9565, 12, 643, 89, 0.00, 0, 1),
(9566, 12, 643, 90, 0.00, 0, 1),
(9567, 12, 643, 91, 0.00, 0, 1),
(9568, 12, 643, 7, 500000.00, 1, 1),
(9569, 12, 643, 8, 0.00, 0, 1),
(9570, 12, 643, 9, 0.00, 0, 1),
(9571, 12, 643, 10, 0.00, 0, 1),
(9572, 12, 643, 11, 0.00, 0, 1),
(9573, 12, 643, 92, 0.00, 1, 1),
(9574, 12, 643, 93, 0.00, 1, 1),
(9575, 12, 643, 94, 0.00, 1, 1),
(9576, 12, 643, 95, 0.00, 1, 1),
(9577, 12, 643, 96, 0.00, 0, 1),
(9578, 12, 643, 97, 0.00, 0, 1),
(9579, 12, 643, 98, 0.00, 0, 1),
(9580, 12, 643, 19, 0.00, 0, 1),
(9581, 12, 644, 88, 68.00, 1, 1),
(9582, 12, 644, 89, 886.60, 1, 1),
(9583, 12, 644, 90, 210020.00, 1, 1),
(9584, 12, 644, 91, 12.00, 0, 1),
(9585, 12, 644, 7, 749680.00, 1, 1),
(9586, 12, 644, 8, 0.00, 0, 1),
(9587, 12, 644, 9, 0.00, 0, 1),
(9588, 12, 644, 10, 0.00, 0, 1),
(9589, 12, 644, 11, 0.00, 0, 1),
(9590, 12, 644, 92, 6.00, 0, 1),
(9591, 12, 644, 93, 0.00, 0, 1),
(9592, 12, 644, 94, 0.00, 0, 1),
(9593, 12, 644, 95, 0.00, 0, 1),
(9594, 12, 645, 88, 1000000.00, 1, 1),
(9595, 12, 645, 89, 0.00, 0, 1),
(9596, 12, 645, 90, 0.00, 0, 1),
(9597, 12, 645, 91, 0.00, 0, 1),
(9598, 12, 645, 7, 0.00, 0, 1),
(9599, 12, 645, 8, 0.00, 0, 1),
(9600, 12, 645, 9, 0.00, 0, 1),
(9601, 12, 645, 10, 0.00, 0, 1),
(9602, 12, 645, 11, 0.00, 0, 1),
(9603, 12, 645, 92, 0.00, 0, 1),
(9604, 12, 645, 93, 0.00, 0, 1),
(9605, 12, 645, 94, 0.00, 0, 1),
(9606, 12, 645, 95, 0.00, 0, 1),
(9607, 12, 646, 88, 28.00, 1, 1),
(9608, 12, 646, 89, 120.00, 1, 1),
(9609, 12, 646, 90, 100000.00, 1, 1),
(9610, 12, 646, 91, 3.00, 1, 1),
(9611, 12, 646, 7, 768200.00, 0, 1),
(9612, 12, 646, 8, 0.00, 0, 1),
(9613, 12, 646, 9, 0.00, 0, 1),
(9614, 12, 646, 10, 0.00, 0, 1),
(9615, 12, 646, 11, 0.00, 0, 1),
(9616, 12, 646, 92, 3.00, 1, 1),
(9617, 12, 646, 93, 0.00, 0, 1),
(9618, 12, 646, 94, 0.00, 0, 1),
(9619, 12, 646, 95, 0.00, 0, 1),
(9620, 12, 647, 88, 0.00, 0, 1),
(9621, 12, 647, 89, 0.00, 0, 1),
(9622, 12, 647, 90, 0.00, 0, 1),
(9623, 12, 647, 91, 0.00, 0, 1),
(9624, 12, 647, 7, 0.00, 0, 1),
(9625, 12, 647, 8, 0.00, 0, 1),
(9626, 12, 647, 9, 999999.00, 1, 1),
(9627, 12, 647, 10, 0.00, 0, 1),
(9628, 12, 647, 11, 0.00, 0, 1),
(9629, 12, 647, 92, 0.00, 0, 1),
(9630, 12, 647, 93, 0.00, 0, 1),
(9631, 12, 647, 94, 0.00, 0, 1),
(9632, 12, 647, 95, 0.00, 0, 1),
(9633, 12, 648, 88, 0.00, 0, 1),
(9634, 12, 648, 89, 0.00, 0, 1),
(9635, 12, 648, 90, 0.00, 0, 1),
(9636, 12, 648, 91, 0.00, 0, 1),
(9637, 12, 648, 92, 0.00, 0, 1),
(9638, 12, 649, 88, 0.00, 1, 1),
(9639, 12, 649, 89, 0.00, 0, 1),
(9640, 12, 649, 90, 0.00, 0, 1),
(9641, 12, 649, 91, 0.00, 0, 1),
(9642, 12, 649, 92, 0.00, 0, 1),
(9643, 12, 650, 88, 0.00, 1, 1),
(9644, 12, 650, 89, 0.00, 0, 1),
(9645, 12, 650, 90, 0.00, 0, 1),
(9646, 12, 650, 91, 0.00, 0, 1),
(9647, 12, 650, 92, 0.00, 0, 1),
(9648, 12, 650, 93, 0.00, 0, 1),
(9649, 12, 650, 94, 0.00, 0, 1),
(9650, 12, 650, 95, 0.00, 0, 1),
(9651, 12, 650, 96, 0.00, 0, 1),
(9652, 12, 650, 97, 0.00, 0, 1),
(9653, 12, 650, 98, 0.00, 0, 1),
(9654, 12, 650, 19, 0.00, 0, 1),
(9655, 12, 651, 88, 0.00, 1, 1),
(9656, 12, 651, 89, 0.00, 0, 1),
(9657, 12, 651, 90, 0.00, 0, 1),
(9658, 12, 651, 91, 0.00, 0, 1),
(9659, 12, 651, 92, 0.00, 0, 1),
(9660, 12, 652, 88, 196.00, 1, 1),
(9661, 12, 652, 89, 1645.00, 1, 1),
(9662, 12, 652, 90, 220000.00, 1, 1),
(9663, 12, 652, 91, 14.00, 1, 1),
(9664, 12, 652, 92, 30.00, 1, 1),
(9665, 12, 653, 88, 0.00, 0, 1),
(9666, 12, 653, 89, 300.00, 0, 1),
(9667, 12, 653, 90, 240000.00, 1, 1),
(9668, 12, 653, 91, 0.00, 0, 1),
(9669, 12, 653, 92, 0.00, 0, 1),
(9670, 12, 654, 88, 0.00, 0, 1),
(9671, 12, 654, 89, 0.00, 0, 1),
(9672, 12, 654, 90, 265000.00, 1, 1),
(9673, 12, 654, 91, 0.00, 0, 1),
(9674, 12, 654, 92, 0.00, 0, 1),
(9675, 12, 655, 88, 60.00, 1, 1),
(9676, 12, 655, 89, 320.00, 1, 1),
(9677, 12, 655, 90, 184000.00, 1, 1),
(9678, 12, 655, 91, 0.00, 0, 1),
(9679, 12, 655, 92, 0.00, 0, 1),
(9680, 12, 656, 88, 0.00, 0, 1),
(9681, 12, 656, 89, 350.00, 1, 1),
(9682, 12, 656, 90, 240000.00, 1, 1),
(9683, 12, 656, 91, 0.00, 0, 1),
(9684, 12, 656, 92, 0.00, 0, 1),
(9685, 12, 657, 88, 67.00, 1, 1),
(9686, 12, 657, 89, 400.00, 1, 1),
(9687, 12, 657, 90, 170000.00, 1, 1),
(9688, 12, 657, 91, 20.00, 1, 1),
(9689, 12, 657, 92, 30.00, 1, 1),
(9690, 12, 658, 88, 0.00, 0, 1),
(9691, 12, 658, 89, 0.00, 0, 1),
(9692, 12, 658, 90, 1.00, 1, 1),
(9693, 12, 658, 91, 0.00, 0, 1),
(9694, 12, 658, 92, 0.00, 0, 1),
(9695, 12, 659, 88, 0.00, 0, 1),
(9696, 12, 659, 89, 600.00, 1, 1),
(9697, 12, 659, 90, 200000.00, 1, 1),
(9698, 12, 659, 91, 0.00, 0, 1),
(9699, 12, 659, 92, 0.00, 0, 1),
(9700, 12, 660, 88, 50.00, 1, 1),
(9701, 12, 660, 89, 200.00, 1, 1),
(9702, 12, 660, 90, 240000.00, 1, 1),
(9703, 12, 660, 91, 0.00, 0, 1),
(9704, 12, 660, 92, 0.00, 0, 1),
(9705, 12, 661, 88, 60.00, 1, 1),
(9706, 12, 661, 89, 200.00, 1, 1),
(9707, 12, 661, 90, 120000.00, 1, 1),
(9708, 12, 661, 91, 1.00, 0, 1),
(9709, 12, 661, 92, 1.00, 0, 1),
(9710, 12, 662, 88, 90.00, 1, 1),
(9711, 12, 662, 89, 666.00, 1, 1),
(9712, 12, 662, 90, 210000.00, 1, 1),
(9713, 12, 662, 91, 0.00, 0, 1),
(9714, 12, 662, 92, 0.00, 0, 1),
(9715, 12, 663, 88, 243.00, 1, 1),
(9716, 12, 663, 89, 1562.00, 1, 1),
(9717, 12, 663, 90, 220000.00, 1, 1),
(9718, 12, 663, 91, 15.00, 1, 1),
(9719, 12, 663, 92, 49.00, 1, 1),
(9720, 12, 663, 93, 8120.00, 1, 1),
(9721, 12, 663, 94, 15212.00, 1, 1),
(9722, 12, 663, 95, 3122.00, 1, 1),
(9723, 12, 663, 96, 1.00, 1, 1),
(9724, 12, 663, 97, 411.00, 1, 1),
(9725, 12, 663, 98, 12.00, 1, 1),
(9726, 12, 664, 88, 57.10, 1, 1),
(9727, 12, 664, 89, 540.00, 1, 1),
(9728, 12, 664, 90, 212000.00, 1, 1),
(9729, 12, 664, 91, 3.00, 1, 1),
(9730, 12, 664, 92, 6.00, 1, 1),
(9731, 12, 664, 93, 12450.00, 1, 1),
(9732, 12, 664, 94, 8420.00, 1, 1),
(9733, 12, 664, 95, 641.00, 1, 1),
(9734, 12, 664, 96, 0.00, 1, 1),
(9735, 12, 664, 97, 155.00, 1, 1),
(9736, 12, 664, 98, 85.00, 1, 1),
(9737, 12, 665, 88, 21.00, 1, 1),
(9738, 12, 665, 89, 188.00, 1, 1),
(9739, 12, 665, 90, 250000.00, 1, 1),
(9740, 12, 665, 91, 2.00, 1, 1),
(9741, 12, 665, 92, 3.00, 1, 1),
(9742, 12, 665, 93, 15244.00, 1, 1),
(9743, 12, 665, 94, 16594.00, 1, 1),
(9744, 12, 665, 95, 1879.00, 1, 1),
(9745, 12, 665, 96, 0.00, 1, 1),
(9746, 12, 665, 97, 13341.00, 1, 1),
(9747, 12, 665, 98, 266.00, 1, 1),
(9748, 12, 666, 88, 222.00, 1, 1),
(9749, 12, 666, 89, 2222.00, 1, 1),
(9750, 12, 666, 90, 222222.00, 1, 1),
(9751, 12, 666, 91, 22.00, 1, 1),
(9752, 12, 666, 92, 2.00, 1, 1),
(9753, 12, 667, 88, 365.00, 1, 1),
(9754, 12, 667, 89, 1800.00, 1, 1),
(9755, 12, 667, 90, 350000.00, 1, 1),
(9756, 12, 667, 91, 35.00, 1, 1),
(9757, 12, 667, 92, 12.00, 1, 1),
(9758, 12, 668, 88, 112.00, 1, 1),
(9759, 12, 668, 89, 212.00, 1, 1),
(9760, 12, 668, 90, 310000.00, 1, 1),
(9761, 12, 668, 91, 21.00, 1, 1),
(9762, 12, 668, 92, 9.00, 1, 1),
(9763, 12, 669, 88, 800.00, 1, 1),
(9764, 12, 669, 89, 500.00, 1, 1),
(9765, 12, 669, 90, 210000.00, 1, 1),
(9766, 12, 669, 91, 0.00, 0, 1),
(9767, 12, 669, 92, 0.00, 0, 1),
(9768, 12, 670, 88, 1200.00, 1, 1),
(9769, 12, 670, 89, 1200.00, 1, 1),
(9770, 12, 670, 90, 215000.00, 1, 1),
(9771, 12, 670, 91, 0.00, 0, 1),
(9772, 12, 670, 92, 0.00, 0, 1),
(9773, 12, 671, 88, 2000.00, 1, 1),
(9774, 12, 671, 89, 2000.00, 1, 1),
(9775, 12, 671, 90, 250000.00, 1, 1),
(9776, 12, 671, 91, 0.00, 0, 1),
(9777, 12, 671, 92, 0.00, 0, 1),
(9778, 12, 672, 88, 144.00, 1, 1),
(9779, 12, 672, 89, 312.00, 1, 1),
(9780, 12, 672, 90, 310000.00, 1, 1),
(9781, 12, 672, 91, 1.00, 1, 1),
(9782, 12, 672, 92, 18.00, 1, 1),
(9783, 12, 672, 93, 14560.00, 1, 1),
(9784, 12, 672, 94, 89500.00, 1, 1),
(9785, 12, 672, 95, 58460.00, 1, 1),
(9786, 12, 672, 96, 0.00, 1, 1),
(9787, 12, 672, 97, 21490.00, 1, 1),
(9788, 12, 672, 98, 400.00, 1, 1),
(9789, 12, 672, 19, 0.00, 0, 1),
(9790, 12, 673, 88, 210.00, 1, 1),
(9791, 12, 673, 89, 1655.00, 1, 1),
(9792, 12, 673, 90, 262351.00, 1, 1),
(9793, 12, 673, 91, 3.00, 1, 1),
(9794, 12, 673, 92, 22.00, 1, 1),
(9795, 12, 673, 93, 540.00, 1, 1),
(9796, 12, 673, 94, 96000.00, 1, 1),
(9797, 12, 673, 95, 34450.00, 1, 1),
(9798, 12, 673, 96, 0.00, 1, 1),
(9799, 12, 673, 97, 30450.00, 1, 1),
(9800, 12, 673, 98, 0.00, 1, 1),
(9801, 12, 673, 19, 0.00, 0, 1),
(9802, 12, 674, 88, 588.00, 1, 1),
(9803, 12, 674, 89, 0.00, 0, 1),
(9804, 12, 674, 90, 220000.00, 1, 1),
(9805, 12, 674, 91, 0.00, 0, 1),
(9806, 12, 674, 92, 0.00, 0, 1),
(9807, 12, 674, 93, 0.00, 0, 1),
(9808, 12, 674, 94, 0.00, 0, 1),
(9809, 12, 674, 95, 0.00, 0, 1),
(9810, 12, 674, 96, 0.00, 0, 1),
(9811, 12, 674, 97, 0.00, 0, 1),
(9812, 12, 674, 98, 0.00, 0, 1),
(9813, 12, 674, 19, 0.00, 0, 1),
(9814, 12, 675, 88, 144.00, 1, 1),
(9815, 12, 675, 89, 0.00, 0, 1),
(9816, 12, 675, 90, 220000.00, 1, 1),
(9817, 12, 675, 91, 0.00, 0, 1),
(9818, 12, 675, 92, 0.00, 0, 1),
(9819, 12, 675, 93, 0.00, 0, 1),
(9820, 12, 675, 94, 0.00, 0, 1),
(9821, 12, 675, 95, 0.00, 0, 1),
(9822, 12, 675, 96, 0.00, 0, 1),
(9823, 12, 675, 97, 0.00, 0, 1),
(9824, 12, 675, 98, 0.00, 0, 1),
(9825, 12, 675, 19, 0.00, 0, 1),
(9826, 12, 676, 88, 323.50, 1, 1),
(9827, 12, 676, 89, 0.00, 0, 1),
(9828, 12, 676, 90, 220000.00, 1, 1),
(9829, 12, 676, 91, 0.00, 0, 1),
(9830, 12, 676, 92, 0.00, 0, 1),
(9831, 12, 676, 93, 0.00, 0, 1),
(9832, 12, 676, 94, 0.00, 0, 1),
(9833, 12, 676, 95, 0.00, 0, 1),
(9834, 12, 676, 96, 0.00, 0, 1),
(9835, 12, 676, 97, 0.00, 0, 1),
(9836, 12, 676, 98, 0.00, 0, 1),
(9837, 12, 676, 19, 0.00, 0, 1),
(9838, 12, 677, 88, 1102.00, 1, 1),
(9839, 12, 677, 89, 2222.00, 1, 1),
(9840, 12, 677, 90, 222000.00, 1, 1),
(9841, 12, 677, 91, 33.00, 1, 1),
(9842, 12, 677, 92, 33.00, 1, 1),
(9843, 12, 677, 93, 499.00, 1, 1),
(9844, 12, 677, 94, 121300.00, 1, 1),
(9845, 12, 677, 95, 79560.00, 1, 1),
(9846, 12, 677, 96, 4.00, 1, 1),
(9847, 12, 677, 97, 3922.00, 1, 1),
(9848, 12, 677, 98, 0.00, 1, 1),
(9849, 12, 678, 88, 677.00, 1, 1),
(9850, 12, 678, 89, 333.00, 1, 1),
(9851, 12, 678, 90, 220000.00, 1, 1),
(9852, 12, 678, 91, 20.00, 1, 1),
(9853, 12, 678, 92, 20.00, 1, 1),
(9854, 12, 678, 93, 7615.00, 1, 1),
(9855, 12, 678, 94, 102500.00, 1, 1),
(9856, 12, 678, 95, 86422.00, 1, 1),
(9857, 12, 678, 96, 2.00, 1, 1),
(9858, 12, 678, 97, 13445.00, 1, 1),
(9859, 12, 678, 98, 0.00, 1, 1),
(9860, 12, 679, 88, 510.40, 1, 1),
(9861, 12, 679, 89, 600.00, 1, 1),
(9862, 12, 679, 90, 220000.00, 1, 1),
(9863, 12, 679, 91, 20.00, 1, 1),
(9864, 12, 679, 92, 15.00, 1, 1),
(9865, 12, 679, 93, 1950.00, 1, 1),
(9866, 12, 679, 94, 89650.00, 1, 1),
(9867, 12, 679, 95, 37800.00, 1, 1),
(9868, 12, 679, 96, 2.00, 1, 1),
(9869, 12, 679, 97, 2350.00, 1, 1),
(9870, 12, 679, 98, 0.00, 1, 1),
(9871, 12, 680, 88, 264.00, 1, 1),
(9872, 12, 680, 89, 322.00, 1, 1),
(9873, 12, 680, 90, 202545.00, 1, 1),
(9874, 12, 680, 91, 15.00, 1, 1),
(9875, 12, 680, 92, 10.00, 1, 1),
(9876, 12, 680, 93, 1566.00, 1, 1),
(9877, 12, 680, 94, 78900.00, 1, 1),
(9878, 12, 680, 95, 59050.00, 1, 1),
(9879, 12, 680, 96, 0.00, 1, 1),
(9880, 12, 680, 97, 11959.00, 1, 1),
(9881, 12, 680, 98, 0.00, 1, 1),
(9882, 12, 681, 88, 0.00, 0, 1),
(9883, 12, 681, 89, 0.00, 0, 1),
(9884, 12, 681, 90, 280000.00, 1, 1),
(9885, 12, 681, 91, 0.00, 0, 1),
(9886, 12, 681, 92, 0.00, 0, 1),
(9887, 12, 681, 93, 0.00, 0, 1),
(9888, 12, 681, 94, 0.00, 0, 1),
(9889, 12, 681, 95, 0.00, 0, 1),
(9890, 12, 681, 96, 0.00, 0, 1),
(9891, 12, 681, 97, 0.00, 0, 1),
(9892, 12, 681, 98, 0.00, 0, 1),
(9893, 12, 682, 88, 0.00, 0, 1),
(9894, 12, 682, 89, 0.00, 0, 1),
(9895, 12, 682, 90, 230000.00, 1, 1),
(9896, 12, 682, 91, 0.00, 0, 1),
(9897, 12, 682, 92, 0.00, 0, 1),
(9898, 12, 682, 93, 0.00, 0, 1),
(9899, 12, 682, 94, 0.00, 0, 1),
(9900, 12, 682, 95, 0.00, 0, 1),
(9901, 12, 682, 96, 0.00, 0, 1),
(9902, 12, 682, 97, 0.00, 0, 1),
(9903, 12, 682, 98, 0.00, 0, 1),
(9904, 12, 683, 88, 0.00, 0, 1),
(9905, 12, 683, 89, 0.00, 0, 1),
(9906, 12, 683, 90, 130000.00, 1, 1),
(9907, 12, 683, 91, 0.00, 0, 1),
(9908, 12, 683, 92, 0.00, 0, 1),
(9909, 12, 683, 93, 0.00, 0, 1),
(9910, 12, 683, 94, 0.00, 0, 1),
(9911, 12, 683, 95, 0.00, 0, 1),
(9912, 12, 683, 96, 0.00, 0, 1),
(9913, 12, 683, 97, 0.00, 0, 1),
(9914, 12, 683, 98, 0.00, 0, 1),
(9915, 12, 684, 88, 0.00, 0, 1),
(9916, 12, 684, 89, 0.00, 0, 1),
(9917, 12, 684, 90, 0.00, 0, 1),
(9918, 12, 684, 91, 0.00, 0, 1),
(9919, 12, 684, 92, 0.00, 0, 1),
(9920, 12, 685, 88, 4186.30, 1, 1),
(9921, 12, 685, 89, 12845.00, 1, 1),
(9922, 12, 685, 90, 100277.00, 1, 1),
(9923, 12, 685, 91, 80.00, 1, 1),
(9924, 12, 685, 92, 1223.00, 1, 1),
(9925, 12, 686, 88, 8266.41, 1, 1),
(9926, 12, 686, 89, 17345.80, 1, 1),
(9927, 12, 686, 90, 81255.00, 1, 1),
(9928, 12, 686, 91, 94.20, 1, 1),
(9929, 12, 686, 92, 112.00, 1, 1),
(9930, 12, 687, 88, 1549.25, 1, 1),
(9931, 12, 687, 89, 12422.50, 1, 1),
(9932, 12, 687, 90, 89912.00, 1, 1),
(9933, 12, 687, 91, 114.00, 1, 1),
(9934, 12, 687, 92, 1212.00, 1, 1),
(9935, 12, 688, 88, 888.00, 1, 1),
(9936, 12, 688, 89, 7466.00, 1, 1),
(9937, 12, 688, 90, 120224.00, 1, 1),
(9938, 12, 688, 91, 160.00, 1, 1),
(9939, 12, 688, 92, 288.00, 1, 1),
(9940, 12, 689, 88, 241.00, 1, 1),
(9941, 12, 689, 89, 2100.00, 1, 1),
(9942, 12, 689, 90, 53400.00, 1, 1),
(9943, 12, 689, 91, 25.00, 1, 1),
(9944, 12, 689, 92, 212.00, 1, 1),
(9945, 12, 689, 93, 323644.00, 1, 1),
(9946, 12, 689, 94, 51050.00, 1, 1),
(9947, 12, 689, 95, 35699.00, 1, 1),
(9948, 12, 689, 96, 0.00, 1, 1),
(9949, 12, 689, 97, 1363.00, 1, 1),
(9950, 12, 689, 98, 3100.00, 1, 1),
(9951, 12, 690, 88, 185.00, 1, 1),
(9952, 12, 690, 89, 480.00, 1, 1),
(9953, 12, 690, 90, 245000.00, 1, 1),
(9954, 12, 690, 91, 12.00, 1, 1),
(9955, 12, 690, 92, 88.00, 1, 1),
(9956, 12, 690, 93, 6552.00, 1, 1),
(9957, 12, 690, 94, 13255.00, 1, 1),
(9958, 12, 690, 95, 12800.00, 1, 1),
(9959, 12, 690, 96, 16.00, 1, 1),
(9960, 12, 690, 97, 3559.00, 1, 1),
(9961, 12, 690, 98, 650.00, 1, 1),
(9962, 12, 691, 88, 148.00, 1, 1),
(9963, 12, 691, 89, 2500.00, 1, 1),
(9964, 12, 691, 90, 265120.00, 1, 1),
(9965, 12, 691, 91, 28.00, 1, 1),
(9966, 12, 691, 92, 56.00, 1, 1),
(9967, 12, 691, 93, 2155.00, 1, 1),
(9968, 12, 691, 94, 15944.00, 1, 1),
(9969, 12, 691, 95, 10462.00, 1, 1),
(9970, 12, 691, 96, 13.00, 1, 1),
(9971, 12, 691, 97, 2248.00, 1, 1),
(9972, 12, 691, 98, 955.00, 1, 1),
(9973, 12, 692, 88, 52.00, 1, 1),
(9974, 12, 692, 89, 312.00, 1, 1),
(9975, 12, 692, 90, 242150.00, 1, 1),
(9976, 12, 692, 91, 8.00, 1, 1),
(9977, 12, 692, 92, 12.00, 1, 1),
(9978, 12, 692, 93, 12511.00, 1, 1),
(9979, 12, 692, 94, 6522.00, 1, 1),
(9980, 12, 692, 95, 4121.00, 1, 1),
(9981, 12, 692, 96, 11.00, 1, 1),
(9982, 12, 692, 97, 36051.00, 1, 1),
(9983, 12, 692, 98, 544.00, 1, 1),
(9984, 12, 693, 88, 18.00, 1, 1),
(9985, 12, 693, 89, 189.00, 1, 1),
(9986, 12, 693, 90, 289585.00, 1, 1),
(9987, 12, 693, 91, 13.00, 1, 1),
(9988, 12, 693, 92, 18.00, 1, 1),
(9989, 12, 693, 93, 8123.00, 1, 1),
(9990, 12, 693, 94, 41299.00, 1, 1),
(9991, 12, 693, 95, 12656.00, 1, 1),
(9992, 12, 693, 96, 0.00, 1, 1),
(9993, 12, 693, 97, 36564.00, 1, 1),
(9994, 12, 693, 98, 1202.00, 1, 1),
(9995, 12, 694, 88, 291.00, 1, 1),
(9996, 12, 694, 89, 6499.00, 1, 1),
(9997, 12, 694, 90, 232024.00, 1, 1),
(9998, 12, 694, 91, 71.00, 1, 1),
(9999, 12, 694, 92, 81.00, 1, 1),
(10000, 12, 694, 93, 27505.00, 1, 1),
(10001, 12, 694, 94, 41860.00, 1, 1),
(10002, 12, 694, 95, 31000.00, 1, 1),
(10003, 12, 694, 96, 0.00, 1, 1),
(10004, 12, 694, 97, 5980.00, 1, 1),
(10005, 12, 694, 98, 710.00, 1, 1),
(10006, 12, 695, 88, 273.00, 1, 1),
(10007, 12, 695, 89, 400.00, 1, 1),
(10008, 12, 695, 90, 245612.00, 1, 1),
(10009, 12, 695, 91, 72.00, 1, 1),
(10010, 12, 695, 92, 58.00, 1, 1),
(10011, 12, 695, 93, 6520.00, 1, 1),
(10012, 12, 695, 94, 38511.00, 1, 1),
(10013, 12, 695, 95, 32800.00, 1, 1),
(10014, 12, 695, 96, 0.00, 1, 1),
(10015, 12, 695, 97, 7400.00, 1, 1),
(10016, 12, 695, 98, 241.00, 1, 1),
(10017, 12, 696, 88, 0.00, 0, 1),
(10018, 12, 696, 89, 0.00, 0, 1),
(10019, 12, 696, 90, 999999.00, 1, 1),
(10020, 12, 696, 91, 0.00, 0, 1),
(10021, 12, 696, 92, 0.00, 0, 1),
(10022, 12, 696, 93, 0.00, 0, 1),
(10023, 12, 696, 94, 0.00, 0, 1),
(10024, 12, 696, 95, 0.00, 0, 1),
(10025, 12, 696, 96, 0.00, 0, 1),
(10026, 12, 696, 97, 0.00, 0, 1),
(10027, 12, 696, 98, 0.00, 0, 1),
(10028, 12, 696, 19, 0.00, 0, 1),
(10029, 12, 697, 88, 0.00, 0, 1),
(10030, 12, 697, 89, 0.00, 0, 1),
(10031, 12, 697, 90, 880000.00, 1, 1),
(10032, 12, 697, 91, 0.00, 0, 1),
(10033, 12, 697, 92, 0.00, 0, 1),
(10034, 12, 697, 93, 0.00, 0, 1),
(10035, 12, 697, 94, 0.00, 0, 1),
(10036, 12, 697, 95, 0.00, 0, 1),
(10037, 12, 697, 96, 0.00, 0, 1),
(10038, 12, 697, 97, 0.00, 0, 1),
(10039, 12, 697, 98, 0.00, 0, 1),
(10040, 12, 697, 19, 0.00, 0, 1),
(10041, 12, 698, 88, 10.00, 1, 1),
(10042, 12, 698, 89, 30.00, 1, 1),
(10043, 12, 698, 90, 280000.00, 1, 1),
(10044, 12, 698, 91, 0.00, 0, 1),
(10045, 12, 698, 92, 0.00, 0, 1),
(10046, 12, 698, 93, 0.00, 0, 1),
(10047, 12, 698, 94, 0.00, 0, 1),
(10048, 12, 698, 95, 0.00, 0, 1),
(10049, 12, 698, 96, 0.00, 0, 1),
(10050, 12, 698, 97, 0.00, 0, 1),
(10051, 12, 698, 98, 0.00, 0, 1),
(10052, 12, 698, 19, 0.00, 0, 1),
(10053, 12, 699, 88, 0.00, 0, 1),
(10054, 12, 699, 89, 0.00, 0, 1),
(10055, 12, 699, 90, 0.00, 0, 1),
(10056, 12, 699, 91, 0.00, 0, 1),
(10057, 12, 699, 92, 0.00, 0, 1),
(10058, 12, 699, 93, 0.00, 0, 1),
(10059, 12, 699, 94, 0.00, 0, 1),
(10060, 12, 699, 95, 0.00, 0, 1),
(10061, 12, 699, 96, 0.00, 0, 1),
(10062, 12, 699, 97, 0.00, 0, 1),
(10063, 12, 699, 98, 0.00, 0, 1),
(10064, 12, 699, 19, 0.00, 0, 1),
(10065, 12, 700, 88, 0.00, 0, 1),
(10066, 12, 700, 89, 0.00, 0, 1),
(10067, 12, 700, 90, 0.00, 0, 1),
(10068, 12, 700, 91, 0.00, 0, 1),
(10069, 12, 700, 92, 0.00, 0, 1),
(10070, 12, 700, 93, 0.00, 0, 1),
(10071, 12, 700, 94, 0.00, 0, 1),
(10072, 12, 700, 95, 0.00, 0, 1),
(10073, 12, 700, 96, 0.00, 0, 1),
(10074, 12, 700, 97, 0.00, 0, 1),
(10075, 12, 700, 98, 0.00, 0, 1),
(10076, 12, 700, 19, 0.00, 0, 1),
(10077, 12, 701, 88, 71.00, 1, 1),
(10078, 12, 701, 89, 627.00, 1, 1),
(10079, 12, 701, 90, 189241.00, 1, 1),
(10080, 12, 701, 91, 8.00, 1, 1),
(10081, 12, 701, 92, 18.00, 1, 1),
(10082, 12, 701, 93, 0.00, 1, 1),
(10083, 12, 701, 94, 122511.00, 1, 1),
(10084, 12, 701, 95, 42415.00, 1, 1),
(10085, 12, 701, 96, 0.00, 1, 1),
(10086, 12, 701, 97, 6100.00, 1, 1),
(10087, 12, 701, 98, 0.00, 1, 1),
(10088, 12, 702, 88, 69.00, 1, 1),
(10089, 12, 702, 89, 677.00, 1, 1),
(10090, 12, 702, 90, 194233.00, 1, 1),
(10091, 12, 702, 91, 3.00, 1, 1),
(10092, 12, 702, 92, 8.00, 1, 1),
(10093, 12, 702, 93, 0.00, 1, 1),
(10094, 12, 702, 94, 101343.00, 1, 1),
(10095, 12, 702, 95, 12255.00, 1, 1),
(10096, 12, 702, 96, 0.00, 1, 1),
(10097, 12, 702, 97, 6454.00, 1, 1),
(10098, 12, 702, 98, 0.00, 1, 1),
(10099, 12, 703, 88, 22.00, 1, 1),
(10100, 12, 703, 89, 181.00, 1, 1),
(10101, 12, 703, 90, 215366.00, 1, 1),
(10102, 12, 703, 91, 0.00, 1, 1),
(10103, 12, 703, 92, 0.00, 1, 1),
(10104, 12, 703, 93, 2688.00, 1, 1),
(10105, 12, 703, 94, 168585.00, 1, 1),
(10106, 12, 703, 95, 3577.00, 1, 1),
(10107, 12, 703, 96, 0.00, 1, 1),
(10108, 12, 703, 97, 12842.00, 1, 1),
(10109, 12, 703, 98, 0.00, 1, 1),
(10110, 12, 704, 88, 0.00, 1, 1),
(10111, 12, 704, 89, 194.00, 1, 1),
(10112, 12, 704, 90, 243518.00, 1, 1),
(10113, 12, 704, 91, 0.00, 1, 1),
(10114, 12, 704, 92, 0.00, 1, 1),
(10115, 12, 704, 93, 8175.00, 1, 1),
(10116, 12, 704, 94, 168552.00, 0, 1),
(10117, 12, 704, 95, 65885.00, 1, 1),
(10118, 12, 704, 96, 0.00, 1, 1),
(10119, 12, 704, 97, 93775.00, 1, 1),
(10120, 12, 704, 98, 0.00, 1, 1),
(10121, 12, 705, 88, 8.00, 1, 1),
(10122, 12, 705, 89, 94.00, 1, 1),
(10123, 12, 705, 90, 49664.00, 1, 1),
(10124, 12, 705, 91, 3.00, 1, 1),
(10125, 12, 705, 92, 4.10, 1, 1),
(10126, 12, 705, 93, 12450.00, 1, 1),
(10127, 12, 705, 94, 18227.00, 1, 1),
(10128, 12, 705, 95, 14952.00, 1, 1),
(10129, 12, 705, 96, 0.00, 1, 1),
(10130, 12, 705, 97, 71210.00, 1, 1),
(10131, 12, 705, 98, 13.00, 1, 1),
(10132, 12, 706, 88, 12.00, 1, 1),
(10133, 12, 706, 89, 644.00, 1, 1),
(10134, 12, 706, 90, 38889.00, 1, 1),
(10135, 12, 706, 91, 3.00, 1, 1),
(10136, 12, 706, 92, 8.00, 1, 1),
(10137, 12, 706, 93, 24550.00, 1, 1),
(10138, 12, 706, 94, 41600.00, 1, 1),
(10139, 12, 706, 95, 36280.00, 1, 1),
(10140, 12, 706, 96, 0.00, 1, 1),
(10141, 12, 706, 97, 12865.00, 1, 1),
(10142, 12, 706, 98, 433.00, 1, 1),
(10143, 12, 707, 88, 11.00, 1, 1),
(10144, 12, 707, 89, 404.00, 1, 1),
(10145, 12, 707, 90, 188000.00, 1, 1),
(10146, 12, 707, 91, 3.00, 1, 1),
(10147, 12, 707, 92, 7.00, 1, 1),
(10148, 12, 707, 93, 21122.00, 0, 1),
(10149, 12, 707, 94, 34522.00, 0, 1),
(10150, 12, 707, 95, 27800.00, 1, 1),
(10151, 12, 707, 96, 0.00, 1, 1),
(10152, 12, 707, 97, 3895.00, 0, 1),
(10153, 12, 707, 98, 271.00, 1, 1),
(10154, 10, 708, 66, 7440.00, 1, 1),
(10155, 10, 708, 67, 0.00, 0, 1),
(10156, 10, 708, 68, 0.00, 0, 1),
(10157, 10, 708, 69, 0.00, 0, 1),
(10158, 10, 708, 70, 0.00, 0, 1),
(10159, 10, 708, 71, 0.00, 0, 1),
(10160, 10, 708, 72, 0.00, 0, 1),
(10161, 10, 708, 73, 0.00, 0, 1),
(10162, 10, 708, 74, 0.00, 0, 1),
(10163, 10, 708, 75, 0.00, 0, 1),
(10164, 10, 708, 76, 0.00, 0, 1),
(10165, 10, 709, 66, 1000.00, 1, 1),
(10166, 10, 709, 67, 0.00, 0, 1),
(10167, 10, 709, 68, 0.00, 0, 1),
(10168, 10, 709, 69, 0.00, 0, 1),
(10169, 10, 709, 70, 0.00, 0, 1),
(10170, 10, 709, 71, 0.00, 0, 1),
(10171, 10, 709, 72, 0.00, 0, 1),
(10172, 10, 709, 73, 0.00, 0, 1),
(10173, 10, 709, 74, 0.00, 0, 1),
(10174, 10, 709, 75, 0.00, 0, 1),
(10175, 10, 709, 76, 0.00, 0, 1),
(10176, 7, 710, 54, 0.00, 0, 1),
(10177, 7, 710, 55, 0.00, 0, 1),
(10178, 7, 710, 56, 0.00, 0, 1),
(10179, 7, 710, 57, 0.00, 0, 1),
(10180, 7, 710, 58, 0.00, 0, 1),
(10181, 7, 710, 59, 0.00, 0, 1),
(10182, 7, 710, 60, 0.00, 0, 1),
(10183, 7, 710, 61, 0.00, 0, 1),
(10184, 7, 710, 62, 0.00, 0, 1),
(10185, 7, 710, 63, 0.00, 0, 1),
(10186, 7, 710, 65, 0.00, 0, 1),
(10187, 7, 711, 54, 0.00, 0, 1),
(10188, 7, 711, 55, 0.00, 0, 1),
(10189, 7, 711, 56, 0.00, 0, 1),
(10190, 7, 711, 57, 0.00, 0, 1),
(10191, 7, 711, 58, 0.00, 0, 1),
(10192, 7, 711, 59, 0.00, 0, 1),
(10193, 7, 711, 60, 0.00, 0, 1),
(10194, 7, 711, 61, 0.00, 0, 1),
(10195, 7, 711, 62, 0.00, 0, 1),
(10196, 7, 711, 63, 0.00, 0, 1),
(10197, 7, 711, 65, 0.00, 0, 1),
(10198, 7, 712, 54, 0.00, 0, 1),
(10199, 7, 712, 55, 0.00, 0, 1),
(10200, 7, 712, 56, 0.00, 0, 1),
(10201, 7, 712, 57, 0.00, 0, 1),
(10202, 7, 712, 58, 0.00, 0, 1),
(10203, 7, 712, 59, 0.00, 0, 1),
(10204, 7, 712, 60, 0.00, 0, 1),
(10205, 7, 712, 61, 0.00, 0, 1),
(10206, 7, 712, 62, 0.00, 0, 1),
(10207, 7, 712, 63, 0.00, 0, 1),
(10208, 7, 712, 65, 0.00, 0, 1),
(10209, 7, 713, 54, 0.00, 1, 1),
(10210, 7, 713, 55, 0.00, 1, 1),
(10211, 7, 713, 56, 3000.00, 1, 1),
(10212, 7, 713, 57, 0.00, 1, 1),
(10213, 7, 713, 59, 5000000.00, 1, 1),
(10214, 7, 713, 60, 10000.00, 1, 1),
(10215, 7, 713, 61, 5000.00, 1, 1),
(10216, 7, 713, 62, 0.00, 1, 1),
(10217, 7, 713, 63, 430000.00, 1, 1),
(10218, 7, 713, 65, 4000.00, 1, 1),
(10219, 7, 714, 54, 0.00, 1, 1),
(10220, 7, 714, 55, 0.00, 1, 1),
(10221, 7, 714, 56, 3000.00, 1, 1),
(10222, 7, 714, 57, 0.00, 1, 1),
(10223, 7, 714, 59, 5000000.00, 1, 1),
(10224, 7, 714, 60, 10000.00, 1, 1),
(10225, 7, 714, 61, 5000.00, 1, 1),
(10226, 7, 714, 62, 0.00, 1, 1),
(10227, 7, 714, 63, 430000.00, 1, 1),
(10228, 7, 714, 65, 4000.00, 1, 1),
(10229, 10, 715, 66, 1200.00, 1, 1),
(10230, 10, 715, 67, 28000.00, 1, 1),
(10231, 10, 715, 68, 72782.00, 1, 1),
(10232, 10, 715, 69, 0.00, 0, 1),
(10233, 10, 715, 70, 0.00, 0, 1),
(10234, 10, 715, 71, 0.00, 0, 1),
(10235, 10, 715, 72, 0.00, 0, 1),
(10236, 10, 715, 73, 0.00, 0, 1),
(10237, 10, 715, 74, 0.00, 0, 1),
(10238, 10, 715, 75, 0.00, 0, 1),
(10239, 10, 715, 76, 0.00, 0, 1),
(10240, 10, 713, 66, 0.00, 0, 1),
(10241, 10, 713, 67, 0.00, 0, 1),
(10242, 10, 713, 68, 0.00, 0, 1),
(10243, 10, 713, 69, 0.00, 0, 1),
(10244, 10, 713, 70, 0.00, 0, 1),
(10245, 10, 713, 71, 0.00, 0, 1),
(10246, 10, 713, 72, 0.00, 0, 1),
(10247, 10, 713, 73, 0.00, 0, 1),
(10248, 10, 713, 74, 0.00, 0, 1),
(10249, 10, 713, 75, 0.00, 0, 1),
(10250, 10, 713, 76, 0.00, 0, 1),
(10251, 1, 714, 3, 672.00, 1, 1),
(10252, 1, 714, 4, 112.00, 1, 1),
(10253, 1, 714, 5, 350000.00, 1, 1),
(10254, 1, 714, 6, 0.00, 1, 1),
(10255, 1, 714, 12, 0.00, 1, 1),
(10256, 1, 714, 13, 0.00, 1, 1),
(10257, 1, 714, 14, 0.00, 1, 1),
(10258, 1, 714, 15, 0.00, 1, 1),
(10259, 1, 714, 16, 0.00, 1, 1),
(10260, 1, 714, 17, 0.00, 1, 1),
(10261, 1, 714, 18, 0.00, 1, 1),
(10262, 2, 715, 54, 0.00, 1, 1),
(10263, 2, 715, 55, 0.00, 1, 1),
(10264, 2, 715, 56, 3000.00, 1, 1),
(10265, 2, 715, 57, 0.00, 1, 1),
(10266, 2, 715, 59, 5000000.00, 1, 1),
(10267, 2, 715, 60, 10000.00, 1, 1),
(10268, 2, 715, 61, 5000.00, 1, 1),
(10269, 2, 715, 62, 0.00, 1, 1),
(10270, 2, 715, 63, 430000.00, 1, 1),
(10271, 2, 715, 65, 4000.00, 1, 1),
(10272, 2, 715, 3, 492.00, 1, 1),
(10273, 2, 715, 4, 112.00, 1, 1),
(10274, 2, 715, 5, 350000.00, 1, 1),
(10275, 2, 715, 6, 0.00, 1, 1),
(10276, 2, 715, 12, 0.00, 1, 1),
(10277, 2, 715, 13, 0.00, 1, 1),
(10278, 2, 715, 14, 0.00, 1, 1),
(10279, 2, 715, 15, 0.00, 1, 1),
(10280, 2, 715, 16, 0.00, 1, 1),
(10281, 2, 715, 17, 0.00, 1, 1),
(10282, 2, 715, 18, 0.00, 1, 1),
(10283, 3, 716, 54, 0.00, 1, 1),
(10284, 3, 716, 55, 0.00, 1, 1),
(10285, 3, 716, 56, 3000.00, 1, 1),
(10286, 3, 716, 57, 0.00, 1, 1),
(10287, 3, 716, 59, 5000000.00, 1, 1),
(10288, 3, 716, 60, 10000.00, 1, 1),
(10289, 3, 716, 61, 5000.00, 1, 1),
(10290, 3, 716, 62, 0.00, 1, 1),
(10291, 3, 716, 63, 430000.00, 1, 1),
(10292, 3, 716, 65, 4000.00, 1, 1),
(10293, 3, 716, 3, 492.00, 1, 1),
(10294, 3, 716, 4, 112.00, 1, 1),
(10295, 3, 716, 5, 350000.00, 1, 1),
(10296, 3, 716, 6, 0.00, 1, 1),
(10297, 3, 716, 12, 0.00, 1, 1),
(10298, 3, 716, 13, 0.00, 1, 1),
(10299, 3, 716, 14, 0.00, 1, 1),
(10300, 3, 716, 15, 0.00, 1, 1),
(10301, 3, 716, 16, 0.00, 1, 1),
(10302, 3, 716, 17, 0.00, 1, 1),
(10303, 3, 716, 18, 0.00, 1, 1),
(10304, 4, 717, 54, 0.00, 1, 1),
(10305, 4, 717, 55, 0.00, 1, 1),
(10306, 4, 717, 56, 3000.00, 1, 1),
(10307, 4, 717, 57, 0.00, 1, 1),
(10308, 4, 717, 59, 5000000.00, 1, 1),
(10309, 4, 717, 60, 10000.00, 1, 1),
(10310, 4, 717, 61, 5000.00, 1, 1),
(10311, 4, 717, 62, 0.00, 1, 1),
(10312, 4, 717, 63, 430000.00, 1, 1),
(10313, 4, 717, 65, 4000.00, 1, 1),
(10314, 4, 717, 20, 492.00, 1, 1),
(10315, 4, 717, 21, 112.00, 1, 1),
(10316, 4, 717, 22, 350000.00, 1, 1),
(10317, 4, 717, 23, 0.00, 1, 1),
(10318, 4, 717, 24, 0.00, 1, 1),
(10319, 4, 717, 25, 0.00, 1, 1),
(10320, 4, 717, 26, 0.00, 1, 1),
(10321, 4, 717, 27, 0.00, 1, 1),
(10322, 4, 717, 28, 0.00, 1, 1),
(10323, 4, 717, 29, 0.00, 1, 1),
(10324, 4, 717, 30, 0.00, 1, 1),
(10325, 5, 718, 54, 0.00, 1, 1),
(10326, 5, 718, 55, 0.00, 1, 1),
(10327, 5, 718, 56, 3000.00, 1, 1),
(10328, 5, 718, 57, 0.00, 1, 1),
(10329, 5, 718, 59, 5000000.00, 1, 1),
(10330, 5, 718, 60, 10000.00, 1, 1),
(10331, 5, 718, 61, 5000.00, 1, 1),
(10332, 5, 718, 62, 0.00, 1, 1),
(10333, 5, 718, 63, 430000.00, 1, 1),
(10334, 5, 718, 65, 4000.00, 1, 1),
(10335, 5, 718, 32, 492.00, 1, 1),
(10336, 5, 718, 33, 112.00, 1, 1),
(10337, 5, 718, 34, 350000.00, 1, 1),
(10338, 5, 718, 35, 0.00, 1, 1),
(10339, 5, 718, 36, 0.00, 1, 1),
(10340, 5, 718, 37, 0.00, 1, 1),
(10341, 5, 718, 38, 0.00, 1, 1),
(10342, 5, 718, 39, 0.00, 1, 1),
(10343, 5, 718, 40, 0.00, 1, 1),
(10344, 5, 718, 41, 0.00, 1, 1),
(10345, 5, 718, 42, 0.00, 1, 1),
(10346, 6, 719, 54, 0.00, 1, 1),
(10347, 6, 719, 55, 0.00, 1, 1),
(10348, 6, 719, 56, 3000.00, 1, 1),
(10349, 6, 719, 57, 0.00, 1, 1),
(10350, 6, 719, 59, 5000000.00, 1, 1),
(10351, 6, 719, 60, 10000.00, 1, 1),
(10352, 6, 719, 61, 5000.00, 1, 1),
(10353, 6, 719, 62, 0.00, 1, 1),
(10354, 6, 719, 63, 430000.00, 1, 1),
(10355, 6, 719, 65, 4000.00, 1, 1),
(10356, 6, 719, 43, 492.00, 1, 1),
(10357, 6, 719, 44, 112.00, 1, 1),
(10358, 6, 719, 45, 350000.00, 1, 1),
(10359, 6, 719, 46, 0.00, 1, 1),
(10360, 6, 719, 47, 0.00, 1, 1),
(10361, 6, 719, 48, 0.00, 1, 1),
(10362, 6, 719, 49, 0.00, 1, 1),
(10363, 6, 719, 50, 0.00, 1, 1),
(10364, 6, 719, 51, 0.00, 1, 1),
(10365, 6, 719, 52, 0.00, 1, 1),
(10366, 6, 719, 53, 0.00, 1, 1),
(10367, 7, 720, 54, 872.00, 1, 1),
(10368, 7, 720, 55, 112.00, 1, 1),
(10369, 7, 720, 56, 350000.00, 1, 1),
(10370, 7, 720, 57, 0.00, 1, 1),
(10371, 7, 720, 59, 0.00, 1, 1),
(10372, 7, 720, 60, 0.00, 1, 1),
(10373, 7, 720, 61, 0.00, 1, 1),
(10374, 7, 720, 62, 0.00, 1, 1),
(10375, 7, 720, 63, 0.00, 1, 1),
(10376, 7, 720, 65, 0.00, 1, 1),
(10377, 7, 720, 54, 492.00, 1, 1),
(10378, 7, 720, 55, 112.00, 1, 1),
(10379, 7, 720, 56, 350000.00, 1, 1),
(10380, 7, 720, 57, 0.00, 1, 1),
(10381, 7, 720, 58, 0.00, 1, 1),
(10382, 7, 720, 59, 0.00, 1, 1),
(10383, 7, 720, 60, 0.00, 1, 1),
(10384, 7, 720, 61, 0.00, 1, 1),
(10385, 7, 720, 62, 0.00, 1, 1),
(10386, 7, 720, 63, 0.00, 1, 1),
(10387, 7, 720, 65, 0.00, 1, 1),
(10388, 8, 721, 54, 0.00, 1, 1),
(10389, 8, 721, 55, 0.00, 1, 1),
(10390, 8, 721, 56, 3000.00, 1, 1),
(10391, 8, 721, 57, 0.00, 1, 1),
(10392, 8, 721, 59, 5000000.00, 1, 1),
(10393, 8, 721, 60, 10000.00, 1, 1),
(10394, 8, 721, 61, 5000.00, 1, 1),
(10395, 8, 721, 62, 0.00, 1, 1),
(10396, 8, 721, 63, 430000.00, 1, 1),
(10397, 8, 721, 65, 4000.00, 1, 1),
(10398, 8, 721, 3, 492.00, 1, 1),
(10399, 8, 721, 4, 112.00, 1, 1),
(10400, 8, 721, 5, 350000.00, 1, 1),
(10401, 8, 721, 6, 0.00, 1, 1),
(10402, 8, 721, 12, 0.00, 1, 1),
(10403, 8, 721, 13, 0.00, 1, 1),
(10404, 8, 721, 14, 0.00, 1, 1),
(10405, 8, 721, 15, 0.00, 1, 1),
(10406, 8, 721, 16, 0.00, 1, 1),
(10407, 8, 721, 17, 0.00, 1, 1),
(10408, 8, 721, 18, 0.00, 1, 1),
(10409, 9, 722, 54, 0.00, 1, 1),
(10410, 9, 722, 55, 0.00, 1, 1),
(10411, 9, 722, 56, 3000.00, 1, 1),
(10412, 9, 722, 57, 0.00, 1, 1),
(10413, 9, 722, 59, 5000000.00, 1, 1),
(10414, 9, 722, 60, 10000.00, 1, 1),
(10415, 9, 722, 61, 5000.00, 1, 1),
(10416, 9, 722, 62, 0.00, 1, 1),
(10417, 9, 722, 63, 430000.00, 1, 1),
(10418, 9, 722, 65, 4000.00, 1, 1),
(10419, 9, 722, 3, 492.00, 1, 1),
(10420, 9, 722, 4, 112.00, 1, 1),
(10421, 9, 722, 5, 350000.00, 1, 1),
(10422, 9, 722, 6, 0.00, 1, 1),
(10423, 9, 722, 12, 0.00, 1, 1),
(10424, 9, 722, 13, 0.00, 1, 1),
(10425, 9, 722, 14, 0.00, 1, 1),
(10426, 9, 722, 15, 0.00, 1, 1),
(10427, 9, 722, 16, 0.00, 1, 1),
(10428, 9, 722, 17, 0.00, 1, 1),
(10429, 9, 722, 18, 0.00, 1, 1),
(10430, 10, 723, 54, 0.00, 1, 1),
(10431, 10, 723, 55, 0.00, 1, 1),
(10432, 10, 723, 56, 3000.00, 1, 1),
(10433, 10, 723, 57, 0.00, 1, 1),
(10434, 10, 723, 59, 5000000.00, 1, 1),
(10435, 10, 723, 60, 10000.00, 1, 1),
(10436, 10, 723, 61, 5000.00, 1, 1),
(10437, 10, 723, 62, 0.00, 1, 1),
(10438, 10, 723, 63, 430000.00, 1, 1),
(10439, 10, 723, 65, 4000.00, 1, 1),
(10440, 10, 723, 66, 492.00, 1, 1),
(10441, 10, 723, 67, 112.00, 1, 1),
(10442, 10, 723, 68, 350000.00, 1, 1),
(10443, 10, 723, 69, 0.00, 1, 1),
(10444, 10, 723, 70, 0.00, 1, 1),
(10445, 10, 723, 71, 0.00, 1, 1),
(10446, 10, 723, 72, 0.00, 1, 1),
(10447, 10, 723, 73, 0.00, 1, 1),
(10448, 10, 723, 74, 0.00, 1, 1),
(10449, 10, 723, 75, 0.00, 1, 1),
(10450, 10, 723, 76, 0.00, 1, 1),
(10451, 11, 724, 54, 0.00, 1, 1),
(10452, 11, 724, 55, 0.00, 1, 1),
(10453, 11, 724, 56, 3000.00, 1, 1),
(10454, 11, 724, 57, 0.00, 1, 1),
(10455, 11, 724, 59, 5000000.00, 1, 1),
(10456, 11, 724, 60, 10000.00, 1, 1),
(10457, 11, 724, 61, 5000.00, 1, 1),
(10458, 11, 724, 62, 0.00, 1, 1),
(10459, 11, 724, 63, 430000.00, 1, 1),
(10460, 11, 724, 65, 4000.00, 1, 1),
(10461, 11, 724, 77, 1322.00, 1, 1),
(10462, 11, 724, 78, 112.00, 1, 1),
(10463, 11, 724, 79, 350000.00, 1, 1),
(10464, 11, 724, 80, 0.00, 1, 1),
(10465, 11, 724, 81, 0.00, 1, 1),
(10466, 11, 724, 82, 0.00, 1, 1),
(10467, 11, 724, 83, 0.00, 1, 1),
(10468, 11, 724, 84, 0.00, 1, 1),
(10469, 11, 724, 85, 0.00, 1, 1),
(10470, 11, 724, 86, 0.00, 1, 1),
(10471, 11, 724, 87, 0.00, 1, 1),
(10472, 12, 725, 54, 0.00, 1, 1),
(10473, 12, 725, 55, 0.00, 1, 1),
(10474, 12, 725, 56, 3000.00, 1, 1),
(10475, 12, 725, 57, 0.00, 1, 1),
(10476, 12, 725, 59, 5000000.00, 1, 1),
(10477, 12, 725, 60, 10000.00, 1, 1),
(10478, 12, 725, 61, 5000.00, 1, 1),
(10479, 12, 725, 62, 0.00, 1, 1),
(10480, 12, 725, 63, 430000.00, 1, 1),
(10481, 12, 725, 65, 4000.00, 1, 1),
(10482, 12, 725, 88, 492.00, 1, 1),
(10483, 12, 725, 89, 112.00, 1, 1),
(10484, 12, 725, 90, 350000.00, 1, 1),
(10485, 12, 725, 91, 0.00, 1, 1),
(10486, 12, 725, 92, 0.00, 1, 1),
(10487, 12, 725, 93, 0.00, 1, 1),
(10488, 12, 725, 94, 0.00, 1, 1),
(10489, 12, 725, 95, 0.00, 1, 1),
(10490, 12, 725, 96, 0.00, 1, 1),
(10491, 12, 725, 97, 0.00, 1, 1),
(10492, 12, 725, 98, 0.00, 1, 1),
(10493, 1, 726, 3, 8.00, 1, 1),
(10494, 1, 726, 4, 86.00, 1, 1),
(10495, 1, 726, 5, 158223.00, 1, 1),
(10496, 1, 726, 6, 1.00, 1, 1),
(10497, 1, 726, 12, 1.00, 1, 1),
(10498, 1, 726, 13, 86211.00, 1, 1),
(10499, 1, 726, 14, 17118.00, 1, 1),
(10500, 1, 726, 15, 15827.00, 1, 1),
(10501, 1, 726, 16, 0.00, 1, 1),
(10502, 1, 726, 17, 91628.00, 1, 1),
(10503, 1, 726, 18, 2.00, 1, 1),
(10504, 2, 727, 3, 8.00, 1, 1),
(10505, 2, 727, 4, 86.00, 1, 1),
(10506, 2, 727, 5, 158223.00, 1, 1),
(10507, 2, 727, 6, 1.00, 1, 1),
(10508, 2, 727, 12, 1.00, 1, 1),
(10509, 2, 727, 13, 86211.00, 1, 1),
(10510, 2, 727, 14, 17118.00, 1, 1),
(10511, 2, 727, 15, 15827.00, 1, 1),
(10512, 2, 727, 16, 0.00, 1, 1),
(10513, 2, 727, 17, 91628.00, 1, 1),
(10514, 2, 727, 18, 2.00, 1, 1),
(10515, 3, 728, 3, 8.00, 1, 1),
(10516, 3, 728, 4, 86.00, 1, 1),
(10517, 3, 728, 5, 158223.00, 1, 1),
(10518, 3, 728, 6, 1.00, 1, 1),
(10519, 3, 728, 12, 1.00, 1, 1),
(10520, 3, 728, 13, 86211.00, 1, 1),
(10521, 3, 728, 14, 17118.00, 1, 1),
(10522, 3, 728, 15, 15827.00, 1, 1),
(10523, 3, 728, 16, 0.00, 1, 1),
(10524, 3, 728, 17, 91628.00, 1, 1),
(10525, 3, 728, 18, 2.00, 1, 1),
(10526, 4, 729, 20, 8.00, 1, 1),
(10527, 4, 729, 21, 86.00, 1, 1),
(10528, 4, 729, 22, 158223.00, 1, 1),
(10529, 4, 729, 23, 1.00, 1, 1),
(10530, 4, 729, 24, 1.00, 1, 1),
(10531, 4, 729, 25, 86211.00, 1, 1),
(10532, 4, 729, 26, 17118.00, 1, 1),
(10533, 4, 729, 27, 15827.00, 1, 1),
(10534, 4, 729, 28, 0.00, 1, 1),
(10535, 4, 729, 29, 91628.00, 1, 1),
(10536, 4, 729, 30, 2.00, 1, 1),
(10537, 5, 730, 32, 8.00, 1, 1),
(10538, 5, 730, 33, 86.00, 1, 1),
(10539, 5, 730, 34, 158223.00, 1, 1),
(10540, 5, 730, 35, 1.00, 1, 1),
(10541, 5, 730, 36, 1.00, 1, 1),
(10542, 5, 730, 37, 86211.00, 1, 1),
(10543, 5, 730, 38, 17118.00, 1, 1),
(10544, 5, 730, 39, 15827.00, 1, 1),
(10545, 5, 730, 40, 0.00, 1, 1),
(10546, 5, 730, 41, 91628.00, 1, 1),
(10547, 5, 730, 42, 2.00, 1, 1),
(10548, 6, 731, 43, 8.00, 1, 1),
(10549, 6, 731, 44, 86.00, 1, 1),
(10550, 6, 731, 45, 158223.00, 1, 1),
(10551, 6, 731, 46, 1.00, 1, 1),
(10552, 6, 731, 47, 1.00, 1, 1),
(10553, 6, 731, 48, 86211.00, 1, 1),
(10554, 6, 731, 49, 17118.00, 1, 1),
(10555, 6, 731, 50, 15827.00, 1, 1),
(10556, 6, 731, 51, 0.00, 1, 1),
(10557, 6, 731, 52, 91628.00, 1, 1),
(10558, 6, 731, 53, 2.00, 1, 1),
(10559, 7, 732, 54, 8.00, 1, 1),
(10560, 7, 732, 55, 86.00, 1, 1),
(10561, 7, 732, 56, 158223.00, 1, 1),
(10562, 7, 732, 57, 1.00, 1, 1),
(10563, 7, 732, 58, 1.00, 1, 1),
(10564, 7, 732, 59, 86211.00, 1, 1),
(10565, 7, 732, 60, 17118.00, 1, 1),
(10566, 7, 732, 61, 15827.00, 1, 1),
(10567, 7, 732, 62, 0.00, 1, 1),
(10568, 7, 732, 63, 91628.00, 1, 1),
(10569, 7, 732, 65, 2.00, 1, 1),
(10570, 8, 733, 3, 8.00, 1, 1),
(10571, 8, 733, 4, 86.00, 1, 1),
(10572, 8, 733, 5, 158223.00, 1, 1),
(10573, 8, 733, 6, 1.00, 1, 1),
(10574, 8, 733, 12, 1.00, 1, 1),
(10575, 8, 733, 13, 86211.00, 1, 1),
(10576, 8, 733, 14, 17118.00, 1, 1),
(10577, 8, 733, 15, 15827.00, 1, 1),
(10578, 8, 733, 16, 0.00, 1, 1),
(10579, 8, 733, 17, 91628.00, 1, 1),
(10580, 8, 733, 18, 2.00, 1, 1),
(10581, 9, 734, 3, 8.00, 1, 1),
(10582, 9, 734, 4, 86.00, 1, 1),
(10583, 9, 734, 5, 158223.00, 1, 1),
(10584, 9, 734, 6, 1.00, 1, 1),
(10585, 9, 734, 12, 1.00, 1, 1),
(10586, 9, 734, 13, 86211.00, 1, 1),
(10587, 9, 734, 14, 17118.00, 1, 1),
(10588, 9, 734, 15, 15827.00, 1, 1),
(10589, 9, 734, 16, 0.00, 1, 1),
(10590, 9, 734, 17, 91628.00, 1, 1),
(10591, 9, 734, 18, 2.00, 1, 1),
(10592, 10, 735, 66, 8.00, 1, 1),
(10593, 10, 735, 67, 86.00, 1, 1),
(10594, 10, 735, 68, 158223.00, 1, 1),
(10595, 10, 735, 69, 1.00, 1, 1),
(10596, 10, 735, 70, 1.00, 1, 1),
(10597, 10, 735, 71, 86211.00, 1, 1),
(10598, 10, 735, 72, 17118.00, 1, 1),
(10599, 10, 735, 73, 15827.00, 1, 1),
(10600, 10, 735, 74, 0.00, 1, 1),
(10601, 10, 735, 75, 91628.00, 1, 1),
(10602, 10, 735, 76, 2.00, 1, 1),
(10603, 11, 736, 77, 8.00, 1, 1),
(10604, 11, 736, 78, 86.00, 1, 1),
(10605, 11, 736, 79, 158223.00, 1, 1),
(10606, 11, 736, 80, 1.00, 1, 1),
(10607, 11, 736, 81, 1.00, 1, 1),
(10608, 11, 736, 82, 86211.00, 1, 1),
(10609, 11, 736, 83, 17118.00, 1, 1),
(10610, 11, 736, 84, 15827.00, 1, 1),
(10611, 11, 736, 85, 0.00, 1, 1),
(10612, 11, 736, 86, 91628.00, 1, 1),
(10613, 11, 736, 87, 2.00, 1, 1),
(10614, 12, 737, 88, 8.00, 1, 1),
(10615, 12, 737, 89, 86.00, 1, 1),
(10616, 12, 737, 90, 158223.00, 1, 1),
(10617, 12, 737, 91, 1.00, 1, 1),
(10618, 12, 737, 92, 1.00, 1, 1),
(10619, 12, 737, 93, 86211.00, 1, 1),
(10620, 12, 737, 94, 17118.00, 1, 1),
(10621, 12, 737, 95, 15827.00, 1, 1),
(10622, 12, 737, 96, 0.00, 1, 1),
(10623, 12, 737, 97, 91628.00, 1, 1),
(10624, 12, 737, 98, 2.00, 1, 1),
(10625, 1, 738, 3, 133.00, 1, 1),
(10626, 1, 738, 4, 2311.00, 1, 1),
(10627, 1, 738, 5, 317172.00, 1, 1),
(10628, 1, 738, 6, 6.00, 1, 1),
(10629, 1, 738, 12, 19.00, 1, 1),
(10630, 1, 738, 13, 3188.00, 1, 1),
(10631, 1, 738, 14, 112738.00, 1, 1),
(10632, 1, 738, 15, 1772.00, 1, 1),
(10633, 1, 738, 16, 0.00, 1, 1),
(10634, 1, 738, 17, 411.00, 1, 1),
(10635, 1, 738, 18, 6.00, 1, 1),
(10636, 2, 739, 3, 93.00, 1, 1),
(10637, 2, 739, 4, 2311.00, 1, 1),
(10638, 2, 739, 5, 317172.00, 1, 1),
(10639, 2, 739, 6, 6.00, 1, 1),
(10640, 2, 739, 12, 19.00, 1, 1),
(10641, 2, 739, 13, 3188.00, 1, 1),
(10642, 2, 739, 14, 112738.00, 1, 1),
(10643, 2, 739, 15, 1772.00, 1, 1),
(10644, 2, 739, 16, 0.00, 1, 1),
(10645, 2, 739, 17, 411.00, 1, 1),
(10646, 2, 739, 18, 6.00, 1, 1),
(10647, 3, 740, 3, 93.00, 1, 1),
(10648, 3, 740, 4, 2311.00, 1, 1),
(10649, 3, 740, 5, 317172.00, 1, 1),
(10650, 3, 740, 6, 6.00, 1, 1),
(10651, 3, 740, 12, 19.00, 1, 1),
(10652, 3, 740, 13, 3188.00, 1, 1),
(10653, 3, 740, 14, 112738.00, 1, 1),
(10654, 3, 740, 15, 1772.00, 1, 1),
(10655, 3, 740, 16, 0.00, 1, 1),
(10656, 3, 740, 17, 411.00, 1, 1),
(10657, 3, 740, 18, 6.00, 1, 1),
(10658, 4, 741, 20, 93.00, 1, 1),
(10659, 4, 741, 21, 2311.00, 1, 1),
(10660, 4, 741, 22, 317172.00, 1, 1),
(10661, 4, 741, 23, 6.00, 1, 1),
(10662, 4, 741, 24, 19.00, 1, 1),
(10663, 4, 741, 25, 3188.00, 1, 1),
(10664, 4, 741, 26, 112738.00, 1, 1),
(10665, 4, 741, 27, 1772.00, 1, 1),
(10666, 4, 741, 28, 0.00, 1, 1),
(10667, 4, 741, 29, 411.00, 1, 1),
(10668, 4, 741, 30, 6.00, 1, 1),
(10669, 5, 742, 32, 93.00, 1, 1),
(10670, 5, 742, 33, 2311.00, 1, 1),
(10671, 5, 742, 34, 317172.00, 1, 1),
(10672, 5, 742, 35, 6.00, 1, 1),
(10673, 5, 742, 36, 19.00, 1, 1),
(10674, 5, 742, 37, 3188.00, 1, 1),
(10675, 5, 742, 38, 112738.00, 1, 1),
(10676, 5, 742, 39, 1772.00, 1, 1),
(10677, 5, 742, 40, 0.00, 1, 1),
(10678, 5, 742, 41, 411.00, 1, 1),
(10679, 5, 742, 42, 6.00, 1, 1),
(10680, 6, 743, 43, 93.00, 1, 1),
(10681, 6, 743, 44, 2311.00, 1, 1),
(10682, 6, 743, 45, 317172.00, 1, 1),
(10683, 6, 743, 46, 6.00, 1, 1),
(10684, 6, 743, 47, 19.00, 1, 1),
(10685, 6, 743, 48, 3188.00, 1, 1),
(10686, 6, 743, 49, 112738.00, 1, 1),
(10687, 6, 743, 50, 1772.00, 1, 1),
(10688, 6, 743, 51, 0.00, 1, 1),
(10689, 6, 743, 52, 411.00, 1, 1),
(10690, 6, 743, 53, 6.00, 1, 1),
(10691, 7, 744, 54, 133.00, 1, 1),
(10692, 7, 744, 55, 2311.00, 1, 1),
(10693, 7, 744, 56, 317172.00, 1, 1),
(10694, 7, 744, 57, 6.00, 1, 1),
(10695, 7, 744, 58, 19.00, 1, 1),
(10696, 7, 744, 59, 3188.00, 1, 1),
(10697, 7, 744, 60, 112738.00, 1, 1),
(10698, 7, 744, 61, 1772.00, 1, 1),
(10699, 7, 744, 62, 0.00, 1, 1),
(10700, 7, 744, 63, 411.00, 1, 1),
(10701, 7, 744, 65, 6.00, 1, 1),
(10702, 8, 745, 3, 93.00, 1, 1),
(10703, 8, 745, 4, 2311.00, 1, 1),
(10704, 8, 745, 5, 317172.00, 1, 1),
(10705, 8, 745, 6, 6.00, 1, 1),
(10706, 8, 745, 12, 19.00, 1, 1),
(10707, 8, 745, 13, 3188.00, 1, 1),
(10708, 8, 745, 14, 112738.00, 1, 1),
(10709, 8, 745, 15, 1772.00, 1, 1),
(10710, 8, 745, 16, 0.00, 1, 1),
(10711, 8, 745, 17, 411.00, 1, 1),
(10712, 8, 745, 18, 6.00, 1, 1),
(10713, 9, 746, 3, 93.00, 1, 1),
(10714, 9, 746, 4, 2311.00, 1, 1),
(10715, 9, 746, 5, 317172.00, 1, 1),
(10716, 9, 746, 6, 6.00, 1, 1),
(10717, 9, 746, 12, 19.00, 1, 1),
(10718, 9, 746, 13, 3188.00, 1, 1),
(10719, 9, 746, 14, 112738.00, 1, 1),
(10720, 9, 746, 15, 1772.00, 1, 1),
(10721, 9, 746, 16, 0.00, 1, 1),
(10722, 9, 746, 17, 411.00, 1, 1),
(10723, 9, 746, 18, 6.00, 1, 1),
(10724, 10, 747, 66, 93.00, 1, 1),
(10725, 10, 747, 67, 2311.00, 1, 1),
(10726, 10, 747, 68, 317172.00, 1, 1),
(10727, 10, 747, 69, 6.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(10728, 10, 747, 70, 19.00, 1, 1),
(10729, 10, 747, 71, 3188.00, 1, 1),
(10730, 10, 747, 72, 112738.00, 1, 1),
(10731, 10, 747, 73, 1772.00, 1, 1),
(10732, 10, 747, 74, 0.00, 1, 1),
(10733, 10, 747, 75, 411.00, 1, 1),
(10734, 10, 747, 76, 6.00, 1, 1),
(10735, 11, 748, 77, 133.00, 1, 1),
(10736, 11, 748, 78, 2311.00, 1, 1),
(10737, 11, 748, 79, 317172.00, 1, 1),
(10738, 11, 748, 80, 6.00, 1, 1),
(10739, 11, 748, 81, 19.00, 1, 1),
(10740, 11, 748, 82, 3188.00, 1, 1),
(10741, 11, 748, 83, 112738.00, 1, 1),
(10742, 11, 748, 84, 1772.00, 1, 1),
(10743, 11, 748, 85, 0.00, 1, 1),
(10744, 11, 748, 86, 411.00, 1, 1),
(10745, 11, 748, 87, 6.00, 1, 1),
(10746, 12, 749, 88, 93.00, 1, 1),
(10747, 12, 749, 89, 2311.00, 1, 1),
(10748, 12, 749, 90, 317172.00, 1, 1),
(10749, 12, 749, 91, 6.00, 1, 1),
(10750, 12, 749, 92, 19.00, 1, 1),
(10751, 12, 749, 93, 3188.00, 1, 1),
(10752, 12, 749, 94, 112738.00, 1, 1),
(10753, 12, 749, 95, 1772.00, 1, 1),
(10754, 12, 749, 96, 0.00, 1, 1),
(10755, 12, 749, 97, 411.00, 1, 1),
(10756, 12, 749, 98, 6.00, 1, 1),
(10757, 14, 750, 99, 32.51, 1, 1),
(10758, 14, 750, 101, 320000.00, 1, 1),
(10759, 14, 750, 102, 5.00, 0, 1),
(10760, 14, 750, 100, 400.00, 1, 1),
(10761, 14, 750, 7, 0.00, 0, 1),
(10762, 14, 750, 8, 0.00, 0, 1),
(10763, 14, 750, 9, 0.00, 0, 1),
(10764, 14, 750, 10, 0.00, 0, 1),
(10765, 14, 750, 11, 0.00, 0, 1),
(10766, 14, 750, 103, 0.00, 0, 1),
(10767, 14, 750, 104, 0.00, 0, 1),
(10768, 14, 750, 105, 0.00, 0, 1),
(10769, 14, 750, 106, 0.00, 0, 1),
(10770, 14, 751, 99, 60.00, 1, 1),
(10771, 14, 751, 101, 251600.00, 1, 1),
(10772, 14, 751, 102, 10.00, 1, 1),
(10773, 14, 751, 100, 18000.00, 1, 1),
(10774, 14, 751, 7, 0.00, 0, 1),
(10775, 14, 751, 8, 0.00, 0, 1),
(10776, 14, 751, 9, 0.00, 0, 1),
(10777, 14, 751, 10, 0.00, 0, 1),
(10778, 14, 751, 11, 0.00, 0, 1),
(10779, 14, 751, 103, 100.00, 1, 1),
(10780, 14, 751, 104, 0.00, 0, 1),
(10781, 14, 751, 105, 0.00, 0, 1),
(10782, 14, 751, 106, 0.00, 0, 1),
(10783, 14, 752, 99, 300.00, 1, 1),
(10784, 14, 752, 101, 600000.00, 1, 1),
(10785, 14, 752, 102, 1.00, 0, 1),
(10786, 14, 752, 100, 1500.00, 0, 1),
(10787, 14, 752, 7, 0.00, 0, 1),
(10788, 14, 752, 8, 0.00, 0, 1),
(10789, 14, 752, 9, 0.00, 0, 1),
(10790, 14, 752, 10, 0.00, 0, 1),
(10791, 14, 752, 11, 0.00, 0, 1),
(10792, 14, 752, 103, 0.00, 0, 1),
(10793, 14, 752, 104, 0.00, 0, 1),
(10794, 14, 752, 105, 0.00, 0, 1),
(10795, 14, 752, 106, 0.00, 0, 1),
(10796, 14, 753, 99, 0.00, 1, 1),
(10797, 14, 753, 101, 0.00, 0, 1),
(10798, 14, 753, 102, 0.00, 0, 1),
(10799, 14, 753, 100, 0.00, 1, 1),
(10800, 14, 753, 7, 0.00, 0, 1),
(10801, 14, 753, 8, 0.00, 0, 1),
(10802, 14, 753, 9, 0.00, 0, 1),
(10803, 14, 753, 10, 0.00, 0, 1),
(10804, 14, 753, 11, 0.00, 0, 1),
(10805, 14, 753, 103, 0.00, 0, 1),
(10806, 14, 753, 104, 0.00, 0, 1),
(10807, 14, 753, 105, 0.00, 1, 1),
(10808, 14, 753, 106, 0.00, 1, 1),
(10809, 14, 754, 99, 0.00, 0, 1),
(10810, 14, 754, 101, 0.00, 0, 1),
(10811, 14, 754, 102, 0.00, 0, 1),
(10812, 14, 754, 100, 0.00, 0, 1),
(10813, 14, 754, 7, 0.00, 0, 1),
(10814, 14, 754, 8, 0.00, 0, 1),
(10815, 14, 754, 9, 0.00, 0, 1),
(10816, 14, 754, 10, 0.00, 0, 1),
(10817, 14, 754, 11, 0.00, 0, 1),
(10818, 14, 754, 103, 0.00, 0, 1),
(10819, 14, 754, 104, 0.00, 0, 1),
(10820, 14, 754, 105, 0.00, 0, 1),
(10821, 14, 754, 106, 0.00, 0, 1),
(10822, 14, 755, 99, 40.00, 1, 1),
(10823, 14, 755, 101, 270000.00, 1, 1),
(10824, 14, 755, 102, 0.00, 0, 1),
(10825, 14, 755, 100, 950.00, 1, 1),
(10826, 14, 755, 7, 0.00, 0, 1),
(10827, 14, 755, 8, 0.00, 0, 1),
(10828, 14, 755, 9, 0.00, 0, 1),
(10829, 14, 755, 10, 0.00, 0, 1),
(10830, 14, 755, 11, 0.00, 0, 1),
(10831, 14, 755, 103, 0.00, 0, 1),
(10832, 14, 755, 104, 0.00, 0, 1),
(10833, 14, 755, 105, 0.00, 0, 1),
(10834, 14, 755, 106, 0.00, 0, 1),
(10835, 14, 756, 99, 60.00, 1, 1),
(10836, 14, 756, 101, 244787.00, 1, 1),
(10837, 14, 756, 102, 5.00, 1, 1),
(10838, 14, 756, 100, 300.00, 1, 1),
(10839, 14, 756, 7, 0.00, 0, 1),
(10840, 14, 756, 8, 0.00, 0, 1),
(10841, 14, 756, 9, 0.00, 0, 1),
(10842, 14, 756, 10, 0.00, 0, 1),
(10843, 14, 756, 11, 0.00, 0, 1),
(10844, 14, 756, 103, 5.00, 1, 1),
(10845, 14, 756, 104, 0.00, 0, 1),
(10846, 14, 756, 105, 0.00, 0, 1),
(10847, 14, 756, 106, 0.00, 0, 1),
(10848, 14, 757, 99, 0.00, 0, 1),
(10849, 14, 757, 100, 200000.00, 1, 1),
(10850, 14, 757, 101, 200000.00, 1, 1),
(10851, 14, 757, 102, 0.00, 0, 1),
(10852, 14, 757, 7, 0.00, 0, 1),
(10853, 14, 757, 8, 10000.00, 1, 1),
(10854, 14, 757, 9, 0.00, 0, 1),
(10855, 14, 757, 10, 0.00, 0, 1),
(10856, 14, 757, 11, 0.00, 0, 1),
(10857, 14, 757, 103, 40000.00, 1, 1),
(10858, 14, 757, 104, 0.00, 0, 1),
(10859, 14, 757, 105, 0.00, 0, 1),
(10860, 14, 757, 106, 0.00, 0, 1),
(10861, 14, 758, 99, 0.00, 1, 1),
(10862, 14, 758, 100, 10000.00, 1, 1),
(10863, 14, 758, 101, 0.00, 0, 1),
(10864, 14, 758, 102, 20000.00, 1, 1),
(10865, 14, 758, 7, 0.00, 0, 1),
(10866, 14, 758, 8, 0.00, 0, 1),
(10867, 14, 758, 9, 0.00, 0, 1),
(10868, 14, 758, 10, 0.00, 0, 1),
(10869, 14, 758, 11, 0.00, 0, 1),
(10870, 14, 758, 103, 0.00, 0, 1),
(10871, 14, 758, 104, 0.00, 0, 1),
(10872, 14, 758, 105, 0.00, 0, 1),
(10873, 14, 758, 106, 0.00, 0, 1),
(10874, 14, 758, 99, 0.00, 1, 1),
(10875, 14, 758, 100, 350.00, 1, 1),
(10876, 14, 758, 101, 100.00, 1, 1),
(10877, 14, 758, 102, 450.00, 1, 1),
(10878, 14, 758, 7, 100.00, 1, 1),
(10879, 14, 758, 8, 0.00, 0, 1),
(10880, 14, 758, 9, 0.00, 0, 1),
(10881, 14, 758, 10, 0.00, 0, 1),
(10882, 14, 758, 11, 0.00, 0, 1),
(10883, 14, 758, 103, 0.00, 0, 1),
(10884, 14, 758, 104, 0.00, 0, 1),
(10885, 14, 758, 105, 0.00, 0, 1),
(10886, 14, 758, 106, 0.00, 0, 1),
(10887, 14, 759, 99, 0.00, 0, 1),
(10888, 14, 759, 100, 350000.00, 1, 1),
(10889, 14, 759, 101, 100000.00, 0, 1),
(10890, 14, 759, 102, 0.00, 0, 1),
(10891, 14, 759, 7, 100000.00, 0, 1),
(10892, 14, 759, 8, 0.00, 0, 1),
(10893, 14, 759, 9, 450000.00, 0, 1),
(10894, 14, 759, 10, 0.00, 0, 1),
(10895, 14, 759, 11, 0.00, 0, 1),
(10896, 14, 759, 103, 0.00, 0, 1),
(10897, 14, 759, 104, 0.00, 0, 1),
(10898, 14, 759, 105, 0.00, 0, 1),
(10899, 14, 759, 106, 0.00, 0, 1),
(10900, 14, 760, 99, 0.00, 0, 1),
(10901, 14, 760, 100, 0.00, 0, 1),
(10902, 14, 760, 101, 320000.00, 1, 1),
(10903, 14, 760, 102, 0.00, 0, 1),
(10904, 14, 760, 7, 680000.00, 0, 1),
(10905, 14, 760, 8, 0.00, 0, 1),
(10906, 14, 760, 9, 0.00, 0, 1),
(10907, 14, 760, 10, 0.00, 0, 1),
(10908, 14, 760, 11, 0.00, 0, 1),
(10909, 14, 760, 103, 0.00, 0, 1),
(10910, 14, 760, 104, 0.00, 0, 1),
(10911, 14, 760, 105, 0.00, 0, 1),
(10912, 14, 760, 106, 0.00, 0, 1),
(10913, 14, 761, 99, 450.00, 1, 1),
(10914, 14, 761, 100, 0.00, 0, 1),
(10915, 14, 761, 101, 250000.00, 1, 1),
(10916, 14, 761, 102, 0.00, 0, 1),
(10917, 14, 761, 7, 0.00, 0, 1),
(10918, 14, 761, 8, 0.00, 0, 1),
(10919, 14, 761, 9, 0.00, 0, 1),
(10920, 14, 761, 10, 0.00, 0, 1),
(10921, 14, 761, 11, 0.00, 0, 1),
(10922, 14, 761, 103, 0.00, 0, 1),
(10923, 14, 761, 104, 0.00, 0, 1),
(10924, 14, 761, 105, 0.00, 1, 1),
(10925, 14, 761, 106, 0.00, 0, 1),
(10926, 14, 762, 99, 0.00, 0, 1),
(10927, 14, 762, 100, 0.00, 0, 1),
(10928, 14, 762, 101, 800000.00, 1, 1),
(10929, 14, 762, 102, 0.00, 0, 1),
(10930, 14, 762, 7, 0.00, 0, 1),
(10931, 14, 762, 8, 0.00, 0, 1),
(10932, 14, 762, 9, 0.00, 0, 1),
(10933, 14, 762, 10, 0.00, 0, 1),
(10934, 14, 762, 11, 0.00, 0, 1),
(10935, 14, 762, 103, 0.00, 0, 1),
(10936, 14, 762, 104, 0.00, 0, 1),
(10937, 14, 762, 105, 0.00, 0, 1),
(10938, 14, 762, 106, 0.00, 0, 1),
(10939, 14, 763, 99, 0.00, 0, 1),
(10940, 14, 763, 100, 0.00, 0, 1),
(10941, 14, 763, 101, 0.00, 0, 1),
(10942, 14, 763, 102, 0.00, 0, 1),
(10943, 14, 763, 7, 100000.00, 1, 1),
(10944, 14, 763, 8, 0.00, 0, 1),
(10945, 14, 763, 9, 0.00, 0, 1),
(10946, 14, 763, 10, 0.00, 0, 1),
(10947, 14, 763, 11, 0.00, 0, 1),
(10948, 14, 763, 103, 0.00, 0, 1),
(10949, 14, 763, 104, 0.00, 0, 1),
(10950, 14, 763, 105, 0.00, 0, 1),
(10951, 14, 763, 106, 100000.00, 1, 1),
(10952, 14, 764, 99, 0.00, 0, 1),
(10953, 14, 764, 100, 0.00, 0, 1),
(10954, 14, 764, 101, 950000.00, 1, 1),
(10955, 14, 764, 102, 0.00, 0, 1),
(10956, 14, 764, 7, 0.00, 0, 1),
(10957, 14, 764, 8, 0.00, 0, 1),
(10958, 14, 764, 9, 0.00, 0, 1),
(10959, 14, 764, 10, 0.00, 0, 1),
(10960, 14, 764, 11, 0.00, 0, 1),
(10961, 14, 764, 103, 0.00, 0, 1),
(10962, 14, 764, 104, 0.00, 0, 1),
(10963, 14, 764, 105, 50000.00, 1, 1),
(10964, 14, 764, 106, 0.00, 0, 1),
(10965, 14, 765, 99, 0.00, 0, 1),
(10966, 14, 765, 100, 0.00, 0, 1),
(10967, 14, 765, 101, 0.00, 0, 1),
(10968, 14, 765, 102, 0.00, 0, 1),
(10969, 14, 765, 7, 0.00, 0, 1),
(10970, 14, 765, 8, 999999.00, 1, 1),
(10971, 14, 765, 9, 0.00, 0, 1),
(10972, 14, 765, 10, 0.00, 0, 1),
(10973, 14, 765, 11, 0.00, 0, 1),
(10974, 14, 765, 103, 0.00, 0, 1),
(10975, 14, 765, 104, 0.00, 0, 1),
(10976, 14, 765, 105, 0.00, 0, 1),
(10977, 14, 765, 106, 0.00, 0, 1),
(10978, 14, 766, 99, 0.00, 0, 1),
(10979, 14, 766, 100, 0.00, 0, 1),
(10980, 14, 766, 101, 0.00, 0, 1),
(10981, 14, 766, 102, 0.00, 0, 1),
(10982, 14, 766, 7, 1000000.00, 1, 1),
(10983, 14, 766, 8, 0.00, 0, 1),
(10984, 14, 766, 9, 0.00, 0, 1),
(10985, 14, 766, 10, 0.00, 0, 1),
(10986, 14, 766, 11, 0.00, 0, 1),
(10987, 14, 766, 103, 0.00, 0, 1),
(10988, 14, 766, 104, 0.00, 0, 1),
(10989, 14, 766, 105, 0.00, 0, 1),
(10990, 14, 766, 106, 0.00, 0, 1),
(10991, 14, 767, 99, 0.00, 0, 1),
(10992, 14, 767, 100, 0.00, 0, 1),
(10993, 14, 767, 101, 0.00, 0, 1),
(10994, 14, 767, 102, 0.00, 0, 1),
(10995, 14, 767, 7, 500000.00, 1, 1),
(10996, 14, 767, 8, 0.00, 0, 1),
(10997, 14, 767, 9, 0.00, 0, 1),
(10998, 14, 767, 10, 0.00, 0, 1),
(10999, 14, 767, 11, 0.00, 0, 1),
(11000, 14, 767, 103, 0.00, 1, 1),
(11001, 14, 767, 104, 0.00, 1, 1),
(11002, 14, 767, 105, 0.00, 1, 1),
(11003, 14, 767, 106, 0.00, 1, 1),
(11004, 14, 767, 107, 0.00, 0, 1),
(11005, 14, 767, 108, 0.00, 0, 1),
(11006, 14, 767, 109, 0.00, 0, 1),
(11007, 14, 767, 19, 0.00, 0, 1),
(11008, 14, 768, 99, 68.00, 1, 1),
(11009, 14, 768, 100, 886.60, 1, 1),
(11010, 14, 768, 101, 210020.00, 1, 1),
(11011, 14, 768, 102, 12.00, 0, 1),
(11012, 14, 768, 7, 749680.00, 1, 1),
(11013, 14, 768, 8, 0.00, 0, 1),
(11014, 14, 768, 9, 0.00, 0, 1),
(11015, 14, 768, 10, 0.00, 0, 1),
(11016, 14, 768, 11, 0.00, 0, 1),
(11017, 14, 768, 103, 6.00, 0, 1),
(11018, 14, 768, 104, 0.00, 0, 1),
(11019, 14, 768, 105, 0.00, 0, 1),
(11020, 14, 768, 106, 0.00, 0, 1),
(11021, 14, 769, 99, 1000000.00, 1, 1),
(11022, 14, 769, 100, 0.00, 0, 1),
(11023, 14, 769, 101, 0.00, 0, 1),
(11024, 14, 769, 102, 0.00, 0, 1),
(11025, 14, 769, 7, 0.00, 0, 1),
(11026, 14, 769, 8, 0.00, 0, 1),
(11027, 14, 769, 9, 0.00, 0, 1),
(11028, 14, 769, 10, 0.00, 0, 1),
(11029, 14, 769, 11, 0.00, 0, 1),
(11030, 14, 769, 103, 0.00, 0, 1),
(11031, 14, 769, 104, 0.00, 0, 1),
(11032, 14, 769, 105, 0.00, 0, 1),
(11033, 14, 769, 106, 0.00, 0, 1),
(11034, 14, 770, 99, 28.00, 1, 1),
(11035, 14, 770, 100, 120.00, 1, 1),
(11036, 14, 770, 101, 100000.00, 1, 1),
(11037, 14, 770, 102, 3.00, 1, 1),
(11038, 14, 770, 7, 768200.00, 0, 1),
(11039, 14, 770, 8, 0.00, 0, 1),
(11040, 14, 770, 9, 0.00, 0, 1),
(11041, 14, 770, 10, 0.00, 0, 1),
(11042, 14, 770, 11, 0.00, 0, 1),
(11043, 14, 770, 103, 3.00, 1, 1),
(11044, 14, 770, 104, 0.00, 0, 1),
(11045, 14, 770, 105, 0.00, 0, 1),
(11046, 14, 770, 106, 0.00, 0, 1),
(11047, 14, 771, 99, 0.00, 0, 1),
(11048, 14, 771, 100, 0.00, 0, 1),
(11049, 14, 771, 101, 0.00, 0, 1),
(11050, 14, 771, 102, 0.00, 0, 1),
(11051, 14, 771, 7, 0.00, 0, 1),
(11052, 14, 771, 8, 0.00, 0, 1),
(11053, 14, 771, 9, 999999.00, 1, 1),
(11054, 14, 771, 10, 0.00, 0, 1),
(11055, 14, 771, 11, 0.00, 0, 1),
(11056, 14, 771, 103, 0.00, 0, 1),
(11057, 14, 771, 104, 0.00, 0, 1),
(11058, 14, 771, 105, 0.00, 0, 1),
(11059, 14, 771, 106, 0.00, 0, 1),
(11060, 14, 772, 99, 0.00, 0, 1),
(11061, 14, 772, 100, 0.00, 0, 1),
(11062, 14, 772, 101, 0.00, 0, 1),
(11063, 14, 772, 102, 0.00, 0, 1),
(11064, 14, 772, 103, 0.00, 0, 1),
(11065, 14, 773, 99, 0.00, 1, 1),
(11066, 14, 773, 100, 0.00, 0, 1),
(11067, 14, 773, 101, 0.00, 0, 1),
(11068, 14, 773, 102, 0.00, 0, 1),
(11069, 14, 773, 103, 0.00, 0, 1),
(11070, 14, 774, 99, 0.00, 1, 1),
(11071, 14, 774, 100, 0.00, 0, 1),
(11072, 14, 774, 101, 0.00, 0, 1),
(11073, 14, 774, 102, 0.00, 0, 1),
(11074, 14, 774, 103, 0.00, 0, 1),
(11075, 14, 774, 104, 0.00, 0, 1),
(11076, 14, 774, 105, 0.00, 0, 1),
(11077, 14, 774, 106, 0.00, 0, 1),
(11078, 14, 774, 107, 0.00, 0, 1),
(11079, 14, 774, 108, 0.00, 0, 1),
(11080, 14, 774, 109, 0.00, 0, 1),
(11081, 14, 774, 19, 0.00, 0, 1),
(11082, 14, 775, 99, 0.00, 0, 1),
(11083, 14, 775, 100, 0.00, 0, 1),
(11084, 14, 775, 101, 540000.00, 1, 1),
(11085, 14, 775, 102, 0.00, 0, 1),
(11086, 14, 775, 103, 0.00, 0, 1),
(11087, 14, 776, 99, 196.00, 1, 1),
(11088, 14, 776, 100, 1645.00, 1, 1),
(11089, 14, 776, 101, 220000.00, 1, 1),
(11090, 14, 776, 102, 14.00, 1, 1),
(11091, 14, 776, 103, 30.00, 1, 1),
(11092, 14, 777, 99, 0.00, 0, 1),
(11093, 14, 777, 100, 300.00, 0, 1),
(11094, 14, 777, 101, 240000.00, 1, 1),
(11095, 14, 777, 102, 0.00, 0, 1),
(11096, 14, 777, 103, 0.00, 0, 1),
(11097, 14, 778, 99, 0.00, 0, 1),
(11098, 14, 778, 100, 0.00, 0, 1),
(11099, 14, 778, 101, 265000.00, 1, 1),
(11100, 14, 778, 102, 0.00, 0, 1),
(11101, 14, 778, 103, 0.00, 0, 1),
(11102, 14, 779, 99, 60.00, 1, 1),
(11103, 14, 779, 100, 320.00, 1, 1),
(11104, 14, 779, 101, 184000.00, 1, 1),
(11105, 14, 779, 102, 0.00, 0, 1),
(11106, 14, 779, 103, 0.00, 0, 1),
(11107, 14, 780, 99, 0.00, 0, 1),
(11108, 14, 780, 100, 350.00, 1, 1),
(11109, 14, 780, 101, 240000.00, 1, 1),
(11110, 14, 780, 102, 0.00, 0, 1),
(11111, 14, 780, 103, 0.00, 0, 1),
(11112, 14, 781, 99, 67.00, 1, 1),
(11113, 14, 781, 100, 400.00, 1, 1),
(11114, 14, 781, 101, 170000.00, 1, 1),
(11115, 14, 781, 102, 20.00, 1, 1),
(11116, 14, 781, 103, 30.00, 1, 1),
(11117, 14, 782, 99, 0.00, 0, 1),
(11118, 14, 782, 100, 0.00, 0, 1),
(11119, 14, 782, 101, 1.00, 1, 1),
(11120, 14, 782, 102, 0.00, 0, 1),
(11121, 14, 782, 103, 0.00, 0, 1),
(11122, 14, 783, 99, 0.00, 0, 1),
(11123, 14, 783, 100, 600.00, 1, 1),
(11124, 14, 783, 101, 200000.00, 1, 1),
(11125, 14, 783, 102, 0.00, 0, 1),
(11126, 14, 783, 103, 0.00, 0, 1),
(11127, 14, 784, 99, 50.00, 1, 1),
(11128, 14, 784, 100, 200.00, 1, 1),
(11129, 14, 784, 101, 240000.00, 1, 1),
(11130, 14, 784, 102, 0.00, 0, 1),
(11131, 14, 784, 103, 0.00, 0, 1),
(11132, 14, 785, 99, 60.00, 1, 1),
(11133, 14, 785, 100, 200.00, 1, 1),
(11134, 14, 785, 101, 120000.00, 1, 1),
(11135, 14, 785, 102, 1.00, 0, 1),
(11136, 14, 785, 103, 1.00, 0, 1),
(11137, 14, 786, 99, 90.00, 1, 1),
(11138, 14, 786, 100, 666.00, 1, 1),
(11139, 14, 786, 101, 210000.00, 1, 1),
(11140, 14, 786, 102, 0.00, 0, 1),
(11141, 14, 786, 103, 0.00, 0, 1),
(11142, 14, 787, 99, 123.00, 1, 1),
(11143, 14, 787, 100, 2562.00, 1, 1),
(11144, 14, 787, 101, 288040.00, 1, 1),
(11145, 14, 787, 102, 12.00, 1, 1),
(11146, 14, 787, 103, 9.00, 1, 1),
(11147, 14, 787, 104, 8120.00, 1, 1),
(11148, 14, 787, 105, 15212.00, 1, 1),
(11149, 14, 787, 106, 13122.00, 1, 1),
(11150, 14, 787, 107, 1.00, 1, 1),
(11151, 14, 787, 108, 411.00, 1, 1),
(11152, 14, 787, 109, 12.00, 1, 1),
(11153, 14, 788, 99, 57.10, 1, 1),
(11154, 14, 788, 100, 540.00, 1, 1),
(11155, 14, 788, 101, 212000.00, 1, 1),
(11156, 14, 788, 102, 3.00, 1, 1),
(11157, 14, 788, 103, 6.00, 1, 1),
(11158, 14, 788, 104, 12450.00, 1, 1),
(11159, 14, 788, 105, 8420.00, 1, 1),
(11160, 14, 788, 106, 641.00, 1, 1),
(11161, 14, 788, 107, 0.00, 1, 1),
(11162, 14, 788, 108, 155.00, 1, 1),
(11163, 14, 788, 109, 85.00, 1, 1),
(11164, 14, 789, 99, 21.00, 1, 1),
(11165, 14, 789, 100, 188.00, 1, 1),
(11166, 14, 789, 101, 231020.00, 1, 1),
(11167, 14, 789, 102, 2.00, 1, 1),
(11168, 14, 789, 103, 3.00, 1, 1),
(11169, 14, 789, 104, 15244.00, 1, 1),
(11170, 14, 789, 105, 16594.00, 1, 1),
(11171, 14, 789, 106, 1879.00, 1, 1),
(11172, 14, 789, 107, 0.00, 1, 1),
(11173, 14, 789, 108, 13341.00, 1, 1),
(11174, 14, 789, 109, 266.00, 1, 1),
(11175, 14, 790, 99, 222.00, 1, 1),
(11176, 14, 790, 100, 2222.00, 1, 1),
(11177, 14, 790, 101, 222222.00, 1, 1),
(11178, 14, 790, 102, 22.00, 1, 1),
(11179, 14, 790, 103, 2.00, 1, 1),
(11180, 14, 791, 99, 365.00, 1, 1),
(11181, 14, 791, 100, 1800.00, 1, 1),
(11182, 14, 791, 101, 350000.00, 1, 1),
(11183, 14, 791, 102, 35.00, 1, 1),
(11184, 14, 791, 103, 12.00, 1, 1),
(11185, 14, 792, 99, 112.00, 1, 1),
(11186, 14, 792, 100, 212.00, 1, 1),
(11187, 14, 792, 101, 310000.00, 1, 1),
(11188, 14, 792, 102, 21.00, 1, 1),
(11189, 14, 792, 103, 9.00, 1, 1),
(11190, 14, 793, 99, 800.00, 1, 1),
(11191, 14, 793, 100, 500.00, 1, 1),
(11192, 14, 793, 101, 210000.00, 1, 1),
(11193, 14, 793, 102, 0.00, 0, 1),
(11194, 14, 793, 103, 0.00, 0, 1),
(11195, 14, 794, 99, 1200.00, 1, 1),
(11196, 14, 794, 100, 1200.00, 1, 1),
(11197, 14, 794, 101, 215000.00, 1, 1),
(11198, 14, 794, 102, 0.00, 0, 1),
(11199, 14, 794, 103, 0.00, 0, 1),
(11200, 14, 795, 99, 2000.00, 1, 1),
(11201, 14, 795, 100, 2000.00, 1, 1),
(11202, 14, 795, 101, 250000.00, 1, 1),
(11203, 14, 795, 102, 0.00, 0, 1),
(11204, 14, 795, 103, 0.00, 0, 1),
(11205, 14, 796, 99, 144.00, 1, 1),
(11206, 14, 796, 100, 312.00, 1, 1),
(11207, 14, 796, 101, 310000.00, 1, 1),
(11208, 14, 796, 102, 1.00, 1, 1),
(11209, 14, 796, 103, 18.00, 1, 1),
(11210, 14, 796, 104, 14560.00, 1, 1),
(11211, 14, 796, 105, 89500.00, 1, 1),
(11212, 14, 796, 106, 58460.00, 1, 1),
(11213, 14, 796, 107, 0.00, 1, 1),
(11214, 14, 796, 108, 21490.00, 1, 1),
(11215, 14, 796, 109, 400.00, 1, 1),
(11216, 14, 796, 19, 0.00, 0, 1),
(11217, 14, 797, 99, 210.00, 1, 1),
(11218, 14, 797, 100, 1655.00, 1, 1),
(11219, 14, 797, 101, 262351.00, 1, 1),
(11220, 14, 797, 102, 3.00, 1, 1),
(11221, 14, 797, 103, 22.00, 1, 1),
(11222, 14, 797, 104, 540.00, 1, 1),
(11223, 14, 797, 105, 96000.00, 1, 1),
(11224, 14, 797, 106, 34450.00, 1, 1),
(11225, 14, 797, 107, 0.00, 1, 1),
(11226, 14, 797, 108, 30450.00, 1, 1),
(11227, 14, 797, 109, 0.00, 1, 1),
(11228, 14, 797, 19, 0.00, 0, 1),
(11229, 14, 798, 99, 397.65, 1, 1),
(11230, 14, 798, 100, 48.00, 1, 1),
(11231, 14, 798, 101, 260000.00, 1, 1),
(11232, 14, 798, 102, 0.00, 0, 1),
(11233, 14, 798, 103, 0.00, 0, 1),
(11234, 14, 798, 104, 0.00, 0, 1),
(11235, 14, 798, 105, 0.00, 0, 1),
(11236, 14, 798, 106, 0.00, 0, 1),
(11237, 14, 798, 107, 0.00, 0, 1),
(11238, 14, 798, 108, 0.00, 0, 1),
(11239, 14, 798, 109, 0.00, 0, 1),
(11240, 14, 798, 19, 0.00, 0, 1),
(11241, 14, 799, 99, 31.00, 1, 1),
(11242, 14, 799, 100, 41.00, 1, 1),
(11243, 14, 799, 101, 220000.00, 1, 1),
(11244, 14, 799, 102, 0.00, 0, 1),
(11245, 14, 799, 103, 0.00, 0, 1),
(11246, 14, 799, 104, 0.00, 0, 1),
(11247, 14, 799, 105, 0.00, 0, 1),
(11248, 14, 799, 106, 0.00, 0, 1),
(11249, 14, 799, 107, 0.00, 0, 1),
(11250, 14, 799, 108, 0.00, 0, 1),
(11251, 14, 799, 109, 0.00, 0, 1),
(11252, 14, 799, 19, 0.00, 0, 1),
(11253, 14, 800, 99, 180.50, 1, 1),
(11254, 14, 800, 100, 41.00, 1, 1),
(11255, 14, 800, 101, 220000.00, 1, 1),
(11256, 14, 800, 102, 0.00, 0, 1),
(11257, 14, 800, 103, 0.00, 0, 1),
(11258, 14, 800, 104, 0.00, 0, 1),
(11259, 14, 800, 105, 0.00, 0, 1),
(11260, 14, 800, 106, 0.00, 0, 1),
(11261, 14, 800, 107, 0.00, 0, 1),
(11262, 14, 800, 108, 0.00, 0, 1),
(11263, 14, 800, 109, 0.00, 0, 1),
(11264, 14, 800, 19, 0.00, 0, 1),
(11265, 14, 801, 99, 1102.00, 1, 1),
(11266, 14, 801, 100, 2222.00, 1, 1),
(11267, 14, 801, 101, 222000.00, 1, 1),
(11268, 14, 801, 102, 33.00, 1, 1),
(11269, 14, 801, 103, 33.00, 1, 1),
(11270, 14, 801, 104, 499.00, 1, 1),
(11271, 14, 801, 105, 121300.00, 1, 1),
(11272, 14, 801, 106, 79560.00, 1, 1),
(11273, 14, 801, 107, 4.00, 1, 1),
(11274, 14, 801, 108, 3922.00, 1, 1),
(11275, 14, 801, 109, 0.00, 1, 1),
(11276, 14, 802, 99, 677.00, 1, 1),
(11277, 14, 802, 100, 333.00, 1, 1),
(11278, 14, 802, 101, 220000.00, 1, 1),
(11279, 14, 802, 102, 20.00, 1, 1),
(11280, 14, 802, 103, 20.00, 1, 1),
(11281, 14, 802, 104, 7615.00, 1, 1),
(11282, 14, 802, 105, 102500.00, 1, 1),
(11283, 14, 802, 106, 86422.00, 1, 1),
(11284, 14, 802, 107, 2.00, 1, 1),
(11285, 14, 802, 108, 13445.00, 1, 1),
(11286, 14, 802, 109, 0.00, 1, 1),
(11287, 14, 803, 99, 510.40, 1, 1),
(11288, 14, 803, 100, 600.00, 1, 1),
(11289, 14, 803, 101, 220000.00, 1, 1),
(11290, 14, 803, 102, 20.00, 1, 1),
(11291, 14, 803, 103, 15.00, 1, 1),
(11292, 14, 803, 104, 1950.00, 1, 1),
(11293, 14, 803, 105, 89650.00, 1, 1),
(11294, 14, 803, 106, 37800.00, 1, 1),
(11295, 14, 803, 107, 2.00, 1, 1),
(11296, 14, 803, 108, 2350.00, 1, 1),
(11297, 14, 803, 109, 0.00, 1, 1),
(11298, 14, 804, 99, 264.00, 1, 1),
(11299, 14, 804, 100, 322.00, 1, 1),
(11300, 14, 804, 101, 202545.00, 1, 1),
(11301, 14, 804, 102, 15.00, 1, 1),
(11302, 14, 804, 103, 10.00, 1, 1),
(11303, 14, 804, 104, 1566.00, 1, 1),
(11304, 14, 804, 105, 78900.00, 1, 1),
(11305, 14, 804, 106, 59050.00, 1, 1),
(11306, 14, 804, 107, 0.00, 1, 1),
(11307, 14, 804, 108, 11959.00, 1, 1),
(11308, 14, 804, 109, 0.00, 1, 1),
(11309, 14, 805, 99, 0.00, 0, 1),
(11310, 14, 805, 100, 0.00, 0, 1),
(11311, 14, 805, 101, 364530.00, 1, 1),
(11312, 14, 805, 102, 0.00, 0, 1),
(11313, 14, 805, 103, 0.00, 0, 1),
(11314, 14, 805, 104, 0.00, 0, 1),
(11315, 14, 805, 105, 0.00, 0, 1),
(11316, 14, 805, 106, 0.00, 0, 1),
(11317, 14, 805, 107, 0.00, 0, 1),
(11318, 14, 805, 108, 0.00, 0, 1),
(11319, 14, 805, 109, 0.00, 0, 1),
(11320, 14, 806, 99, 0.00, 0, 1),
(11321, 14, 806, 100, 0.00, 0, 1),
(11322, 14, 806, 101, 194300.00, 1, 1),
(11323, 14, 806, 102, 0.00, 0, 1),
(11324, 14, 806, 103, 0.00, 0, 1),
(11325, 14, 806, 104, 0.00, 0, 1),
(11326, 14, 806, 105, 0.00, 0, 1),
(11327, 14, 806, 106, 0.00, 0, 1),
(11328, 14, 806, 107, 0.00, 0, 1),
(11329, 14, 806, 108, 0.00, 0, 1),
(11330, 14, 806, 109, 0.00, 0, 1),
(11331, 14, 807, 99, 0.00, 0, 1),
(11332, 14, 807, 100, 0.00, 0, 1),
(11333, 14, 807, 101, 72000.00, 1, 1),
(11334, 14, 807, 102, 0.00, 0, 1),
(11335, 14, 807, 103, 0.00, 0, 1),
(11336, 14, 807, 104, 0.00, 0, 1),
(11337, 14, 807, 105, 0.00, 0, 1),
(11338, 14, 807, 106, 0.00, 0, 1),
(11339, 14, 807, 107, 0.00, 0, 1),
(11340, 14, 807, 108, 0.00, 0, 1),
(11341, 14, 807, 109, 0.00, 0, 1),
(11342, 14, 808, 99, 0.00, 0, 1),
(11343, 14, 808, 100, 0.00, 0, 1),
(11344, 14, 808, 101, 0.00, 0, 1),
(11345, 14, 808, 102, 0.00, 0, 1),
(11346, 14, 808, 103, 0.00, 0, 1),
(11347, 14, 809, 99, 4186.30, 1, 1),
(11348, 14, 809, 100, 12845.00, 1, 1),
(11349, 14, 809, 101, 100277.00, 1, 1),
(11350, 14, 809, 102, 80.00, 1, 1),
(11351, 14, 809, 103, 1223.00, 1, 1),
(11352, 14, 810, 99, 8266.41, 1, 1),
(11353, 14, 810, 100, 17345.80, 1, 1),
(11354, 14, 810, 101, 81255.00, 1, 1),
(11355, 14, 810, 102, 94.20, 1, 1),
(11356, 14, 810, 103, 112.00, 1, 1),
(11357, 14, 811, 99, 1549.25, 1, 1),
(11358, 14, 811, 100, 12422.50, 1, 1),
(11359, 14, 811, 101, 89912.00, 1, 1),
(11360, 14, 811, 102, 114.00, 1, 1),
(11361, 14, 811, 103, 1212.00, 1, 1),
(11362, 14, 812, 99, 888.00, 1, 1),
(11363, 14, 812, 100, 7466.00, 1, 1),
(11364, 14, 812, 101, 120224.00, 1, 1),
(11365, 14, 812, 102, 160.00, 1, 1),
(11366, 14, 812, 103, 288.00, 1, 1),
(11367, 14, 813, 99, 141.00, 1, 1),
(11368, 14, 813, 100, 2100.00, 1, 1),
(11369, 14, 813, 101, 53400.00, 1, 1),
(11370, 14, 813, 102, 25.00, 1, 1),
(11371, 14, 813, 103, 42.00, 1, 1),
(11372, 14, 813, 104, 323644.00, 1, 1),
(11373, 14, 813, 105, 51050.00, 1, 1),
(11374, 14, 813, 106, 35699.00, 1, 1),
(11375, 14, 813, 107, 0.00, 1, 1),
(11376, 14, 813, 108, 1363.00, 1, 1),
(11377, 14, 813, 109, 3100.00, 1, 1),
(11378, 14, 814, 99, 85.00, 1, 1),
(11379, 14, 814, 100, 480.00, 1, 1),
(11380, 14, 814, 101, 245000.00, 1, 1),
(11381, 14, 814, 102, 12.00, 1, 1),
(11382, 14, 814, 103, 28.00, 1, 1),
(11383, 14, 814, 104, 6552.00, 1, 1),
(11384, 14, 814, 105, 13255.00, 1, 1),
(11385, 14, 814, 106, 12800.00, 1, 1),
(11386, 14, 814, 107, 16.00, 1, 1),
(11387, 14, 814, 108, 3559.00, 1, 1),
(11388, 14, 814, 109, 650.00, 1, 1),
(11389, 14, 815, 99, 48.00, 1, 1),
(11390, 14, 815, 100, 2500.00, 1, 1),
(11391, 14, 815, 101, 265120.00, 1, 1),
(11392, 14, 815, 102, 18.00, 1, 1),
(11393, 14, 815, 103, 16.00, 1, 1),
(11394, 14, 815, 104, 2155.00, 1, 1),
(11395, 14, 815, 105, 15944.00, 1, 1),
(11396, 14, 815, 106, 10462.00, 1, 1),
(11397, 14, 815, 107, 13.00, 1, 1),
(11398, 14, 815, 108, 2248.00, 1, 1),
(11399, 14, 815, 109, 955.00, 1, 1),
(11400, 14, 816, 99, 22.00, 1, 1),
(11401, 14, 816, 100, 312.00, 1, 1),
(11402, 14, 816, 101, 242150.00, 1, 1),
(11403, 14, 816, 102, 8.00, 1, 1),
(11404, 14, 816, 103, 9.00, 1, 1),
(11405, 14, 816, 104, 12511.00, 1, 1),
(11406, 14, 816, 105, 6522.00, 1, 1),
(11407, 14, 816, 106, 4121.00, 1, 1),
(11408, 14, 816, 107, 11.00, 1, 1),
(11409, 14, 816, 108, 36051.00, 1, 1),
(11410, 14, 816, 109, 544.00, 1, 1),
(11411, 14, 817, 99, 6.00, 1, 1),
(11412, 14, 817, 100, 189.00, 1, 1),
(11413, 14, 817, 101, 289585.00, 1, 1),
(11414, 14, 817, 102, 3.00, 1, 1),
(11415, 14, 817, 103, 3.00, 1, 1),
(11416, 14, 817, 104, 8123.00, 1, 1),
(11417, 14, 817, 105, 41299.00, 1, 1),
(11418, 14, 817, 106, 12656.00, 1, 1),
(11419, 14, 817, 107, 0.00, 1, 1),
(11420, 14, 817, 108, 36564.00, 1, 1),
(11421, 14, 817, 109, 1202.00, 1, 1),
(11422, 14, 818, 99, 291.00, 1, 1),
(11423, 14, 818, 100, 6499.00, 1, 1),
(11424, 14, 818, 101, 232024.00, 1, 1),
(11425, 14, 818, 102, 71.00, 1, 1),
(11426, 14, 818, 103, 81.00, 1, 1),
(11427, 14, 818, 104, 27505.00, 1, 1),
(11428, 14, 818, 105, 41860.00, 1, 1),
(11429, 14, 818, 106, 31000.00, 1, 1),
(11430, 14, 818, 107, 0.00, 1, 1),
(11431, 14, 818, 108, 5980.00, 1, 1),
(11432, 14, 818, 109, 710.00, 1, 1),
(11433, 14, 819, 99, 273.00, 1, 1),
(11434, 14, 819, 100, 400.00, 1, 1),
(11435, 14, 819, 101, 245612.00, 1, 1),
(11436, 14, 819, 102, 72.00, 1, 1),
(11437, 14, 819, 103, 58.00, 1, 1),
(11438, 14, 819, 104, 6520.00, 1, 1),
(11439, 14, 819, 105, 38511.00, 1, 1),
(11440, 14, 819, 106, 32800.00, 1, 1),
(11441, 14, 819, 107, 0.00, 1, 1),
(11442, 14, 819, 108, 7400.00, 1, 1),
(11443, 14, 819, 109, 241.00, 1, 1),
(11444, 14, 820, 99, 0.00, 0, 1),
(11445, 14, 820, 100, 0.00, 0, 1),
(11446, 14, 820, 101, 999999.00, 1, 1),
(11447, 14, 820, 102, 0.00, 0, 1),
(11448, 14, 820, 103, 0.00, 0, 1),
(11449, 14, 820, 104, 0.00, 0, 1),
(11450, 14, 820, 105, 0.00, 0, 1),
(11451, 14, 820, 106, 0.00, 0, 1),
(11452, 14, 820, 107, 0.00, 0, 1),
(11453, 14, 820, 108, 0.00, 0, 1),
(11454, 14, 820, 109, 0.00, 0, 1),
(11455, 14, 820, 19, 0.00, 0, 1),
(11456, 14, 821, 99, 0.00, 0, 1),
(11457, 14, 821, 100, 0.00, 0, 1),
(11458, 14, 821, 101, 880000.00, 1, 1),
(11459, 14, 821, 102, 0.00, 0, 1),
(11460, 14, 821, 103, 0.00, 0, 1),
(11461, 14, 821, 104, 0.00, 0, 1),
(11462, 14, 821, 105, 0.00, 0, 1),
(11463, 14, 821, 106, 0.00, 0, 1),
(11464, 14, 821, 107, 0.00, 0, 1),
(11465, 14, 821, 108, 0.00, 0, 1),
(11466, 14, 821, 109, 0.00, 0, 1),
(11467, 14, 821, 19, 0.00, 0, 1),
(11468, 14, 822, 99, 12.00, 1, 1),
(11469, 14, 822, 100, 30.00, 1, 1),
(11470, 14, 822, 101, 280000.00, 1, 1),
(11471, 14, 822, 102, 0.00, 0, 1),
(11472, 14, 822, 103, 0.00, 0, 1),
(11473, 14, 822, 104, 0.00, 0, 1),
(11474, 14, 822, 105, 0.00, 0, 1),
(11475, 14, 822, 106, 0.00, 0, 1),
(11476, 14, 822, 107, 0.00, 0, 1),
(11477, 14, 822, 108, 0.00, 0, 1),
(11478, 14, 822, 109, 0.00, 0, 1),
(11479, 14, 822, 19, 0.00, 0, 1),
(11480, 14, 823, 99, 0.00, 0, 1),
(11481, 14, 823, 100, 0.00, 0, 1),
(11482, 14, 823, 101, 0.00, 0, 1),
(11483, 14, 823, 102, 0.00, 0, 1),
(11484, 14, 823, 103, 0.00, 0, 1),
(11485, 14, 823, 104, 0.00, 0, 1),
(11486, 14, 823, 105, 0.00, 0, 1),
(11487, 14, 823, 106, 0.00, 0, 1),
(11488, 14, 823, 107, 0.00, 0, 1),
(11489, 14, 823, 108, 0.00, 0, 1),
(11490, 14, 823, 109, 0.00, 0, 1),
(11491, 14, 823, 19, 0.00, 0, 1),
(11492, 14, 824, 99, 0.00, 0, 1),
(11493, 14, 824, 100, 0.00, 0, 1),
(11494, 14, 824, 101, 0.00, 0, 1),
(11495, 14, 824, 102, 0.00, 0, 1),
(11496, 14, 824, 103, 0.00, 0, 1),
(11497, 14, 824, 104, 0.00, 0, 1),
(11498, 14, 824, 105, 0.00, 0, 1),
(11499, 14, 824, 106, 0.00, 0, 1),
(11500, 14, 824, 107, 0.00, 0, 1),
(11501, 14, 824, 108, 0.00, 0, 1),
(11502, 14, 824, 109, 0.00, 0, 1),
(11503, 14, 824, 19, 0.00, 0, 1),
(11504, 14, 825, 99, 71.00, 1, 1),
(11505, 14, 825, 100, 627.00, 1, 1),
(11506, 14, 825, 101, 189241.00, 1, 1),
(11507, 14, 825, 102, 8.00, 1, 1),
(11508, 14, 825, 103, 18.00, 1, 1),
(11509, 14, 825, 104, 0.00, 1, 1),
(11510, 14, 825, 105, 122511.00, 1, 1),
(11511, 14, 825, 106, 42415.00, 1, 1),
(11512, 14, 825, 107, 0.00, 1, 1),
(11513, 14, 825, 108, 6100.00, 1, 1),
(11514, 14, 825, 109, 0.00, 1, 1),
(11515, 14, 826, 99, 69.00, 1, 1),
(11516, 14, 826, 100, 677.00, 1, 1),
(11517, 14, 826, 101, 194233.00, 1, 1),
(11518, 14, 826, 102, 3.00, 1, 1),
(11519, 14, 826, 103, 8.00, 1, 1),
(11520, 14, 826, 104, 0.00, 1, 1),
(11521, 14, 826, 105, 101343.00, 1, 1),
(11522, 14, 826, 106, 12255.00, 1, 1),
(11523, 14, 826, 107, 0.00, 1, 1),
(11524, 14, 826, 108, 6454.00, 1, 1),
(11525, 14, 826, 109, 0.00, 1, 1),
(11526, 14, 827, 99, 22.00, 1, 1),
(11527, 14, 827, 100, 181.00, 1, 1),
(11528, 14, 827, 101, 215366.00, 1, 1),
(11529, 14, 827, 102, 0.00, 1, 1),
(11530, 14, 827, 103, 0.00, 1, 1),
(11531, 14, 827, 104, 2688.00, 1, 1),
(11532, 14, 827, 105, 168585.00, 1, 1),
(11533, 14, 827, 106, 3577.00, 1, 1),
(11534, 14, 827, 107, 0.00, 1, 1),
(11535, 14, 827, 108, 12842.00, 1, 1),
(11536, 14, 827, 109, 0.00, 1, 1),
(11537, 14, 828, 99, 0.00, 1, 1),
(11538, 14, 828, 100, 194.00, 1, 1),
(11539, 14, 828, 101, 243518.00, 1, 1),
(11540, 14, 828, 102, 0.00, 1, 1),
(11541, 14, 828, 103, 0.00, 1, 1),
(11542, 14, 828, 104, 8175.00, 1, 1),
(11543, 14, 828, 105, 168552.00, 0, 1),
(11544, 14, 828, 106, 65885.00, 1, 1),
(11545, 14, 828, 107, 0.00, 1, 1),
(11546, 14, 828, 108, 93775.00, 1, 1),
(11547, 14, 828, 109, 0.00, 1, 1),
(11548, 14, 829, 99, 18.00, 1, 1),
(11549, 14, 829, 100, 94.00, 1, 1),
(11550, 14, 829, 101, 122664.00, 1, 1),
(11551, 14, 829, 102, 3.00, 1, 1),
(11552, 14, 829, 103, 4.10, 1, 1),
(11553, 14, 829, 104, 12450.00, 1, 1),
(11554, 14, 829, 105, 18227.00, 1, 1),
(11555, 14, 829, 106, 14952.00, 1, 1),
(11556, 14, 829, 107, 0.00, 1, 1),
(11557, 14, 829, 108, 71210.00, 1, 1),
(11558, 14, 829, 109, 13.00, 1, 1),
(11559, 14, 830, 99, 25.33, 1, 1),
(11560, 14, 830, 100, 644.00, 1, 1),
(11561, 14, 830, 101, 175889.00, 1, 1),
(11562, 14, 830, 102, 3.00, 1, 1),
(11563, 14, 830, 103, 8.00, 1, 1),
(11564, 14, 830, 104, 24550.00, 1, 1),
(11565, 14, 830, 105, 41600.00, 1, 1),
(11566, 14, 830, 106, 36280.00, 1, 1),
(11567, 14, 830, 107, 0.00, 1, 1),
(11568, 14, 830, 108, 12865.00, 1, 1),
(11569, 14, 830, 109, 433.00, 1, 1),
(11570, 14, 831, 99, 11.00, 1, 1),
(11571, 14, 831, 100, 404.00, 1, 1),
(11572, 14, 831, 101, 188000.00, 1, 1),
(11573, 14, 831, 102, 3.00, 1, 1),
(11574, 14, 831, 103, 7.00, 1, 1),
(11575, 14, 831, 104, 21122.00, 0, 1),
(11576, 14, 831, 105, 34522.00, 0, 1),
(11577, 14, 831, 106, 27800.00, 1, 1),
(11578, 14, 831, 107, 0.00, 1, 1),
(11579, 14, 831, 108, 3895.00, 0, 1),
(11580, 14, 831, 109, 271.00, 1, 1),
(11581, 14, 832, 54, 0.00, 1, 1),
(11582, 14, 832, 55, 0.00, 1, 1),
(11583, 14, 832, 56, 3000.00, 1, 1),
(11584, 14, 832, 57, 0.00, 1, 1),
(11585, 14, 832, 59, 5000000.00, 1, 1),
(11586, 14, 832, 60, 10000.00, 1, 1),
(11587, 14, 832, 61, 5000.00, 1, 1),
(11588, 14, 832, 62, 0.00, 1, 1),
(11589, 14, 832, 63, 430000.00, 1, 1),
(11590, 14, 832, 65, 4000.00, 1, 1),
(11591, 14, 832, 99, 672.00, 1, 1),
(11592, 14, 832, 100, 112.00, 1, 1),
(11593, 14, 832, 101, 350000.00, 1, 1),
(11594, 14, 832, 102, 0.00, 1, 1),
(11595, 14, 832, 103, 0.00, 1, 1),
(11596, 14, 832, 104, 0.00, 1, 1),
(11597, 14, 832, 105, 0.00, 1, 1),
(11598, 14, 832, 106, 0.00, 1, 1),
(11599, 14, 832, 107, 0.00, 1, 1),
(11600, 14, 832, 108, 0.00, 1, 1),
(11601, 14, 832, 109, 0.00, 1, 1),
(11602, 14, 833, 99, 8.00, 1, 1),
(11603, 14, 833, 100, 86.00, 1, 1),
(11604, 14, 833, 101, 158223.00, 1, 1),
(11605, 14, 833, 102, 1.00, 1, 1),
(11606, 14, 833, 103, 1.00, 1, 1),
(11607, 14, 833, 104, 86211.00, 1, 1),
(11608, 14, 833, 105, 17118.00, 1, 1),
(11609, 14, 833, 106, 15827.00, 1, 1),
(11610, 14, 833, 107, 0.00, 1, 1),
(11611, 14, 833, 108, 91628.00, 1, 1),
(11612, 14, 833, 109, 2.00, 1, 1),
(11613, 14, 834, 99, 133.00, 1, 1),
(11614, 14, 834, 100, 2311.00, 1, 1),
(11615, 14, 834, 101, 317172.00, 1, 1),
(11616, 14, 834, 102, 6.00, 1, 1),
(11617, 14, 834, 103, 19.00, 1, 1),
(11618, 14, 834, 104, 3188.00, 1, 1),
(11619, 14, 834, 105, 112738.00, 1, 1),
(11620, 14, 834, 106, 1772.00, 1, 1),
(11621, 14, 834, 107, 0.00, 1, 1),
(11622, 14, 834, 108, 411.00, 1, 1),
(11623, 14, 834, 109, 6.00, 1, 1),
(11624, 14, 835, 99, 9.00, 1, 1),
(11625, 14, 835, 100, 120.00, 1, 1),
(11626, 14, 835, 101, 181450.00, 1, 1),
(11627, 14, 835, 102, 0.00, 0, 1),
(11628, 14, 835, 103, 0.00, 0, 1),
(11629, 14, 835, 104, 32000.00, 0, 1),
(11630, 14, 835, 105, 8300.00, 0, 1),
(11631, 14, 835, 106, 7600.00, 0, 1),
(11632, 14, 835, 107, 0.00, 0, 1),
(11633, 14, 835, 108, 0.00, 0, 1),
(11634, 14, 835, 109, 0.00, 0, 1),
(11635, 14, 836, 99, 3.00, 1, 1),
(11636, 14, 836, 100, 119.00, 1, 1),
(11637, 14, 836, 101, 223840.00, 1, 1),
(11638, 14, 836, 102, 0.00, 0, 1),
(11639, 14, 836, 103, 0.00, 0, 1),
(11640, 14, 836, 104, 26000.00, 1, 1),
(11641, 14, 836, 105, 8400.00, 0, 1),
(11642, 14, 836, 106, 620.00, 0, 1),
(11643, 14, 836, 107, 0.00, 0, 1),
(11644, 14, 836, 108, 0.00, 0, 1),
(11645, 14, 836, 109, 0.00, 0, 1),
(11646, 14, 837, 99, 0.02, 1, 1),
(11647, 14, 837, 100, 18.00, 1, 1),
(11648, 14, 837, 101, 200000.00, 1, 1),
(11649, 14, 837, 102, 3.00, 1, 1),
(11650, 14, 837, 103, 1.00, 1, 1),
(11651, 14, 837, 104, 180000.00, 1, 1),
(11652, 14, 837, 105, 13000.00, 1, 1),
(11653, 14, 837, 106, 18000.00, 1, 1),
(11654, 14, 837, 107, 0.00, 1, 1),
(11655, 14, 837, 108, 240000.00, 1, 1),
(11656, 14, 837, 109, 0.00, 1, 1),
(11657, 14, 837, 110, 400000.00, 1, 1),
(11658, 7, 838, 54, 50.00, 1, 1),
(11659, 7, 838, 55, 50.00, 1, 1),
(11660, 7, 838, 56, 0.00, 0, 1),
(11661, 7, 838, 57, 0.00, 0, 1),
(11662, 7, 838, 58, 0.00, 0, 1),
(11663, 7, 838, 59, 0.00, 0, 1),
(11664, 7, 838, 60, 0.00, 0, 1),
(11665, 7, 838, 61, 0.00, 0, 1),
(11666, 7, 838, 62, 0.00, 0, 1),
(11667, 7, 838, 63, 0.00, 0, 1),
(11668, 7, 838, 65, 0.00, 0, 1),
(11669, 7, 839, 54, 50.00, 1, 1),
(11670, 7, 839, 55, 50.00, 1, 1),
(11671, 7, 839, 56, 0.00, 0, 1),
(11672, 7, 839, 57, 0.00, 0, 1),
(11673, 7, 839, 58, 0.00, 0, 1),
(11674, 7, 839, 59, 0.00, 0, 1),
(11675, 7, 839, 60, 0.00, 0, 1),
(11676, 7, 839, 61, 0.00, 0, 1),
(11677, 7, 839, 62, 0.00, 0, 1),
(11678, 7, 839, 63, 0.00, 0, 1),
(11679, 7, 839, 65, 0.00, 0, 1),
(11680, 14, 840, 99, 0.00, 0, 1),
(11681, 14, 840, 100, 0.00, 0, 1),
(11682, 14, 840, 101, 311000.00, 1, 1),
(11683, 14, 840, 102, 0.00, 0, 1),
(11684, 14, 840, 103, 0.00, 0, 1),
(11685, 14, 840, 104, 0.00, 0, 1),
(11686, 14, 840, 105, 100000.00, 1, 1),
(11687, 14, 840, 106, 80000.00, 1, 1),
(11688, 14, 840, 107, 0.00, 0, 1),
(11689, 14, 840, 108, 0.00, 0, 1),
(11690, 14, 840, 109, 0.00, 0, 1),
(11691, 14, 840, 110, 111000.00, 1, 1),
(11692, 11, 841, 77, 3.00, 1, 1),
(11693, 11, 841, 78, 20.00, 1, 1),
(11694, 11, 841, 79, 130000.00, 1, 1),
(11695, 11, 841, 80, 1.00, 1, 1),
(11696, 11, 841, 81, 1.00, 1, 1),
(11697, 14, 842, 99, 3.00, 1, 1),
(11698, 14, 842, 100, 15.00, 1, 1),
(11699, 14, 842, 101, 220000.00, 1, 1),
(11700, 14, 842, 102, 1.00, 1, 1),
(11701, 14, 842, 103, 1.00, 1, 1),
(11702, 14, 842, 104, 400000.00, 1, 1),
(11703, 14, 842, 108, 500000.00, 1, 1),
(11704, 14, 842, 110, 100000.00, 1, 1),
(11705, 14, 843, 99, 3.00, 1, 1),
(11706, 14, 843, 100, 11.00, 1, 1),
(11707, 14, 843, 101, 120000.00, 1, 1),
(11708, 14, 843, 102, 0.00, 1, 1),
(11709, 14, 843, 103, 0.00, 1, 1),
(11710, 14, 843, 104, 100000.00, 1, 1),
(11711, 14, 843, 108, 400000.00, 1, 1),
(11712, 14, 843, 110, 400000.00, 1, 1),
(11713, 14, 844, 99, 0.00, 0, 1),
(11714, 14, 844, 100, 0.00, 0, 1),
(11715, 14, 844, 101, 0.00, 0, 1),
(11716, 14, 844, 102, 0.00, 0, 1),
(11717, 14, 844, 103, 0.00, 0, 1),
(11718, 14, 844, 104, 0.00, 0, 1),
(11719, 14, 844, 108, 0.00, 0, 1),
(11720, 14, 844, 110, 0.00, 0, 1),
(11721, 14, 845, 99, 0.00, 0, 1),
(11722, 14, 845, 100, 0.00, 0, 1),
(11723, 14, 845, 101, 0.00, 0, 1),
(11724, 14, 845, 102, 0.00, 0, 1),
(11725, 14, 845, 103, 0.00, 0, 1),
(11726, 14, 845, 104, 0.00, 0, 1),
(11727, 14, 845, 108, 0.00, 0, 1),
(11728, 14, 845, 110, 0.00, 0, 1),
(11729, 14, 846, 99, 0.00, 0, 1),
(11730, 14, 846, 100, 0.00, 0, 1),
(11731, 14, 846, 101, 0.00, 0, 1),
(11732, 14, 846, 102, 0.00, 0, 1),
(11733, 14, 846, 103, 0.00, 0, 1),
(11734, 14, 846, 104, 0.00, 0, 1),
(11735, 14, 846, 108, 0.00, 0, 1),
(11736, 14, 846, 110, 0.00, 0, 1),
(11737, 14, 847, 99, 0.00, 0, 1),
(11738, 14, 847, 100, 0.00, 0, 1),
(11739, 14, 847, 101, 0.00, 0, 1),
(11740, 14, 847, 102, 0.00, 0, 1),
(11741, 14, 847, 103, 0.00, 0, 1),
(11742, 14, 847, 104, 0.00, 0, 1),
(11743, 14, 847, 108, 0.00, 0, 1),
(11744, 14, 847, 110, 0.00, 0, 1),
(11745, 14, 848, 99, 0.00, 0, 1),
(11746, 14, 848, 100, 0.00, 0, 1),
(11747, 14, 848, 101, 0.00, 0, 1),
(11748, 14, 848, 102, 0.00, 0, 1),
(11749, 14, 848, 103, 0.00, 0, 1),
(11750, 14, 848, 104, 0.00, 0, 1),
(11751, 14, 848, 108, 0.00, 0, 1),
(11752, 14, 848, 110, 0.00, 0, 1),
(11753, 14, 849, 99, 0.00, 0, 1),
(11754, 14, 849, 100, 0.00, 0, 1),
(11755, 14, 849, 101, 0.00, 0, 1),
(11756, 14, 849, 102, 0.00, 0, 1),
(11757, 14, 849, 103, 0.00, 0, 1),
(11758, 14, 849, 104, 0.00, 0, 1),
(11759, 14, 849, 108, 0.00, 0, 1),
(11760, 14, 849, 110, 0.00, 0, 1),
(11761, 14, 850, 99, 7.00, 1, 1),
(11762, 14, 850, 100, 50.00, 1, 1),
(11763, 14, 850, 101, 60000.00, 1, 1),
(11764, 14, 850, 102, 2.00, 1, 1),
(11765, 14, 850, 103, 3.00, 1, 1),
(11766, 14, 850, 104, 60000.00, 1, 1),
(11767, 14, 850, 108, 30000.00, 1, 1),
(11768, 14, 850, 110, 800000.00, 1, 1),
(11769, 14, 851, 99, 0.00, 0, 1),
(11770, 14, 851, 100, 0.00, 0, 1),
(11771, 14, 851, 101, 0.00, 0, 1),
(11772, 14, 851, 102, 0.00, 0, 1),
(11773, 14, 851, 103, 0.00, 0, 1),
(11774, 14, 851, 104, 0.00, 0, 1),
(11775, 14, 851, 108, 0.00, 0, 1),
(11776, 14, 851, 110, 0.00, 0, 1),
(11777, 14, 852, 99, 0.00, 0, 1),
(11778, 14, 852, 100, 0.00, 0, 1),
(11779, 14, 852, 101, 0.00, 0, 1),
(11780, 14, 852, 102, 0.00, 0, 1),
(11781, 14, 852, 103, 0.00, 0, 1),
(11782, 14, 852, 104, 0.00, 0, 1),
(11783, 14, 852, 108, 0.00, 0, 1),
(11784, 14, 852, 110, 0.00, 0, 1),
(11785, 14, 853, 99, 1.00, 1, 1),
(11786, 14, 853, 100, 20.00, 1, 1),
(11787, 14, 853, 101, 120000.00, 1, 1),
(11788, 14, 853, 102, 1.00, 1, 1),
(11789, 14, 853, 103, 1.00, 1, 1),
(11790, 14, 853, 104, 130000.00, 1, 1),
(11791, 14, 853, 108, 400000.00, 1, 1),
(11792, 14, 853, 110, 400000.00, 1, 1),
(11793, 14, 854, 99, 0.00, 0, 1),
(11794, 14, 854, 100, 32.00, 1, 1),
(11795, 14, 854, 101, 120000.00, 1, 1),
(11796, 14, 854, 102, 0.00, 0, 1),
(11797, 14, 854, 103, 0.00, 0, 1),
(11798, 14, 854, 104, 400000.00, 1, 1),
(11799, 14, 854, 108, 400000.00, 1, 1),
(11800, 14, 854, 110, 80000.00, 1, 1),
(11801, 14, 855, 99, 0.00, 0, 1),
(11802, 14, 855, 100, 32.00, 1, 1),
(11803, 14, 855, 101, 120000.00, 1, 1),
(11804, 14, 855, 102, 0.00, 0, 1),
(11805, 14, 855, 103, 0.00, 0, 1),
(11806, 14, 855, 104, 0.00, 0, 1),
(11807, 14, 855, 108, 0.00, 0, 1),
(11808, 14, 855, 110, 0.00, 0, 1),
(11809, 14, 856, 99, 0.00, 0, 1),
(11810, 14, 856, 100, 0.00, 0, 1),
(11811, 14, 856, 101, 0.00, 0, 1),
(11812, 14, 856, 102, 0.00, 0, 1),
(11813, 14, 856, 103, 0.00, 0, 1),
(11814, 14, 856, 104, 0.00, 0, 1),
(11815, 14, 856, 108, 0.00, 0, 1),
(11816, 14, 856, 110, 0.00, 0, 1),
(11817, 14, 857, 99, 0.00, 0, 1),
(11818, 14, 857, 100, 0.00, 0, 1),
(11819, 14, 857, 101, 0.00, 0, 1),
(11820, 14, 857, 102, 0.00, 0, 1),
(11821, 14, 857, 103, 0.00, 0, 1),
(11822, 14, 857, 104, 0.00, 0, 1),
(11823, 14, 857, 108, 0.00, 0, 1),
(11824, 14, 857, 110, 0.00, 0, 1),
(11825, 14, 858, 99, 0.00, 0, 1),
(11826, 14, 858, 100, 0.00, 0, 1),
(11827, 14, 858, 101, 0.00, 0, 1),
(11828, 14, 858, 102, 0.00, 0, 1),
(11829, 14, 858, 103, 0.00, 0, 1),
(11830, 14, 858, 104, 0.00, 0, 1),
(11831, 14, 858, 108, 0.00, 0, 1),
(11832, 14, 858, 110, 0.00, 0, 1),
(11833, 14, 859, 99, 0.00, 1, 1),
(11834, 14, 859, 100, 0.00, 1, 1),
(11835, 14, 859, 101, 12000.00, 1, 1),
(11836, 14, 859, 102, 0.00, 1, 1),
(11837, 14, 859, 104, 200000.00, 1, 1),
(11838, 14, 859, 108, 500000.00, 1, 1),
(11839, 14, 859, 110, 288000.00, 1, 1),
(11840, 14, 860, 99, 0.00, 0, 1),
(11841, 14, 860, 100, 0.00, 0, 1),
(11842, 14, 860, 101, 0.00, 0, 1),
(11843, 14, 860, 102, 0.00, 0, 1),
(11844, 14, 860, 103, 0.00, 0, 1),
(11845, 14, 860, 104, 0.00, 0, 1),
(11846, 14, 860, 108, 0.00, 0, 1),
(11847, 14, 860, 110, 0.00, 0, 1),
(11848, 1, 861, 3, 0.40, 1, 1),
(11849, 1, 861, 4, 16.00, 1, 1),
(11850, 1, 861, 5, 114288.00, 1, 1),
(11851, 1, 861, 6, 0.04, 1, 1),
(11852, 1, 861, 12, 0.02, 1, 1),
(11853, 1, 861, 13, 231415.00, 1, 1),
(11854, 1, 861, 14, 16455.00, 1, 1),
(11855, 1, 861, 15, 12788.00, 1, 1),
(11856, 1, 861, 16, 0.00, 0, 1),
(11857, 1, 861, 17, 598650.00, 1, 1),
(11858, 1, 861, 18, 0.00, 0, 1),
(11859, 1, 862, 3, 2.31, 1, 1),
(11860, 1, 862, 4, 18.00, 1, 1),
(11861, 1, 862, 5, 161447.00, 1, 1),
(11862, 1, 862, 6, 0.54, 1, 1),
(11863, 1, 862, 12, 0.12, 1, 1),
(11864, 1, 862, 13, 214461.00, 1, 1),
(11865, 1, 862, 14, 18554.00, 1, 1),
(11866, 1, 862, 15, 16486.00, 1, 1),
(11867, 1, 862, 16, 1.00, 1, 1),
(11868, 1, 862, 17, 644215.00, 1, 1),
(11869, 1, 862, 18, 0.00, 1, 1),
(12145, 1, 863, 3, 0.40, 1, 1),
(12146, 1, 863, 4, 16.00, 1, 1),
(12147, 1, 863, 5, 114288.00, 1, 1),
(12148, 1, 863, 6, 0.04, 1, 1),
(12149, 1, 863, 12, 0.02, 1, 1),
(12150, 1, 863, 13, 31415.00, 1, 1),
(12151, 1, 863, 14, 16455.00, 1, 1),
(12152, 1, 863, 15, 12788.00, 1, 1),
(12153, 1, 863, 16, 0.00, 0, 1),
(12154, 1, 863, 17, 498650.00, 1, 1),
(12155, 1, 863, 18, 0.00, 0, 1),
(12156, 2, 864, 3, 0.40, 1, 1),
(12157, 2, 864, 4, 16.00, 1, 1),
(12158, 2, 864, 5, 114288.00, 1, 1),
(12159, 2, 864, 6, 0.04, 1, 1),
(12160, 2, 864, 12, 0.02, 1, 1),
(12161, 2, 864, 13, 231415.00, 1, 1),
(12162, 2, 864, 14, 16455.00, 1, 1),
(12163, 2, 864, 15, 12788.00, 1, 1),
(12164, 2, 864, 16, 0.00, 0, 1),
(12165, 2, 864, 17, 598650.00, 1, 1),
(12166, 2, 864, 18, 0.00, 0, 1),
(12167, 3, 865, 3, 0.40, 1, 1),
(12168, 3, 865, 4, 16.00, 1, 1),
(12169, 3, 865, 5, 114288.00, 1, 1),
(12170, 3, 865, 6, 0.04, 1, 1),
(12171, 3, 865, 12, 0.02, 1, 1),
(12172, 3, 865, 13, 231415.00, 1, 1),
(12173, 3, 865, 14, 16455.00, 1, 1),
(12174, 3, 865, 15, 12788.00, 1, 1),
(12175, 3, 865, 16, 0.00, 0, 1),
(12176, 3, 865, 17, 598650.00, 1, 1),
(12177, 3, 865, 18, 0.00, 0, 1),
(12178, 4, 866, 20, 0.40, 1, 1),
(12179, 4, 866, 21, 16.00, 1, 1),
(12180, 4, 866, 22, 114288.00, 1, 1),
(12181, 4, 866, 23, 0.04, 1, 1),
(12182, 4, 866, 24, 0.02, 1, 1),
(12183, 4, 866, 25, 231415.00, 1, 1),
(12184, 4, 866, 26, 16455.00, 1, 1),
(12185, 4, 866, 27, 12788.00, 1, 1),
(12186, 4, 866, 28, 0.00, 0, 1),
(12187, 4, 866, 29, 598650.00, 1, 1),
(12188, 4, 866, 30, 0.00, 0, 1),
(12189, 5, 867, 32, 0.40, 1, 1),
(12190, 5, 867, 33, 16.00, 1, 1),
(12191, 5, 867, 34, 114288.00, 1, 1),
(12192, 5, 867, 35, 0.04, 1, 1),
(12193, 5, 867, 36, 0.02, 1, 1),
(12194, 5, 867, 37, 231415.00, 1, 1),
(12195, 5, 867, 38, 16455.00, 1, 1),
(12196, 5, 867, 39, 12788.00, 1, 1),
(12197, 5, 867, 40, 0.00, 0, 1),
(12198, 5, 867, 41, 598650.00, 1, 1),
(12199, 5, 867, 42, 0.00, 0, 1),
(12200, 6, 868, 43, 0.40, 1, 1),
(12201, 6, 868, 44, 16.00, 1, 1),
(12202, 6, 868, 45, 114288.00, 1, 1),
(12203, 6, 868, 46, 0.04, 1, 1),
(12204, 6, 868, 47, 0.02, 1, 1),
(12205, 6, 868, 48, 231415.00, 1, 1),
(12206, 6, 868, 49, 16455.00, 1, 1),
(12207, 6, 868, 50, 12788.00, 1, 1),
(12208, 6, 868, 51, 0.00, 0, 1),
(12209, 6, 868, 52, 598650.00, 1, 1),
(12210, 6, 868, 53, 0.00, 0, 1),
(12211, 7, 869, 54, 0.40, 1, 1),
(12212, 7, 869, 55, 16.00, 1, 1),
(12213, 7, 869, 56, 114288.00, 1, 1),
(12214, 7, 869, 57, 0.04, 1, 1),
(12215, 7, 869, 58, 0.02, 1, 1),
(12216, 7, 869, 59, 231415.00, 1, 1),
(12217, 7, 869, 60, 16455.00, 1, 1),
(12218, 7, 869, 61, 12788.00, 1, 1),
(12219, 7, 869, 62, 0.00, 0, 1),
(12220, 7, 869, 63, 598650.00, 1, 1),
(12221, 7, 869, 65, 0.00, 0, 1),
(12222, 8, 870, 3, 0.40, 1, 1),
(12223, 8, 870, 4, 16.00, 1, 1),
(12224, 8, 870, 5, 114288.00, 1, 1),
(12225, 8, 870, 6, 0.04, 1, 1),
(12226, 8, 870, 12, 0.02, 1, 1),
(12227, 8, 870, 13, 231415.00, 1, 1),
(12228, 8, 870, 14, 16455.00, 1, 1),
(12229, 8, 870, 15, 12788.00, 1, 1),
(12230, 8, 870, 16, 0.00, 0, 1),
(12231, 8, 870, 17, 598650.00, 1, 1),
(12232, 8, 870, 18, 0.00, 0, 1),
(12233, 9, 871, 3, 0.40, 1, 1),
(12234, 9, 871, 4, 16.00, 1, 1),
(12235, 9, 871, 5, 114288.00, 1, 1),
(12236, 9, 871, 6, 0.04, 1, 1),
(12237, 9, 871, 12, 0.02, 1, 1),
(12238, 9, 871, 13, 231415.00, 1, 1),
(12239, 9, 871, 14, 16455.00, 1, 1),
(12240, 9, 871, 15, 12788.00, 1, 1),
(12241, 9, 871, 16, 0.00, 0, 1),
(12242, 9, 871, 17, 598650.00, 1, 1),
(12243, 9, 871, 18, 0.00, 0, 1),
(12244, 10, 872, 66, 0.40, 1, 1),
(12245, 10, 872, 67, 16.00, 1, 1),
(12246, 10, 872, 68, 114288.00, 1, 1),
(12247, 10, 872, 69, 0.04, 1, 1),
(12248, 10, 872, 70, 0.02, 1, 1),
(12249, 10, 872, 71, 231415.00, 1, 1),
(12250, 10, 872, 72, 16455.00, 1, 1),
(12251, 10, 872, 73, 12788.00, 1, 1),
(12252, 10, 872, 74, 0.00, 0, 1),
(12253, 10, 872, 75, 598650.00, 1, 1),
(12254, 10, 872, 76, 0.00, 0, 1),
(12255, 11, 873, 77, 0.40, 1, 1),
(12256, 11, 873, 78, 16.00, 1, 1),
(12257, 11, 873, 79, 114288.00, 1, 1),
(12258, 11, 873, 80, 0.04, 1, 1),
(12259, 11, 873, 81, 0.02, 1, 1),
(12260, 11, 873, 82, 231415.00, 1, 1),
(12261, 11, 873, 83, 16455.00, 1, 1),
(12262, 11, 873, 84, 12788.00, 1, 1),
(12263, 11, 873, 85, 0.00, 0, 1),
(12264, 11, 873, 86, 598650.00, 1, 1),
(12265, 11, 873, 87, 0.00, 0, 1),
(12266, 12, 874, 88, 0.40, 1, 1),
(12267, 12, 874, 89, 16.00, 1, 1),
(12268, 12, 874, 90, 114288.00, 1, 1),
(12269, 12, 874, 91, 0.04, 1, 1),
(12270, 12, 874, 92, 0.02, 1, 1),
(12271, 12, 874, 93, 231415.00, 1, 1),
(12272, 12, 874, 94, 16455.00, 1, 1),
(12273, 12, 874, 95, 12788.00, 1, 1),
(12274, 12, 874, 96, 0.00, 0, 1),
(12275, 12, 874, 97, 598650.00, 1, 1),
(12276, 12, 874, 98, 0.00, 0, 1),
(12277, 14, 875, 99, 0.40, 1, 1),
(12278, 14, 875, 100, 16.00, 1, 1),
(12279, 14, 875, 101, 114288.00, 1, 1),
(12280, 14, 875, 102, 0.04, 1, 1),
(12281, 14, 875, 103, 0.02, 1, 1),
(12282, 14, 875, 104, 31415.00, 1, 1),
(12283, 14, 875, 105, 16455.00, 1, 1),
(12284, 14, 875, 106, 12788.00, 1, 1),
(12285, 14, 875, 107, 0.00, 0, 1),
(12286, 14, 875, 108, 498650.00, 1, 1),
(12287, 14, 875, 109, 0.00, 0, 1),
(12288, 1, 876, 3, 2.31, 1, 1),
(12289, 1, 876, 4, 18.00, 1, 1),
(12290, 1, 876, 5, 61447.00, 1, 1),
(12291, 1, 876, 6, 0.54, 1, 1),
(12292, 1, 876, 12, 0.12, 1, 1),
(12293, 1, 876, 13, 214461.00, 1, 1),
(12294, 1, 876, 14, 18554.00, 1, 1),
(12295, 1, 876, 15, 16486.00, 1, 1),
(12296, 1, 876, 16, 1.00, 1, 1),
(12297, 1, 876, 17, 444215.00, 1, 1),
(12298, 1, 876, 18, 0.00, 1, 1),
(12299, 2, 877, 3, 2.31, 1, 1),
(12300, 2, 877, 4, 18.00, 1, 1),
(12301, 2, 877, 5, 161447.00, 1, 1),
(12302, 2, 877, 6, 0.54, 1, 1),
(12303, 2, 877, 12, 0.12, 1, 1),
(12304, 2, 877, 13, 214461.00, 1, 1),
(12305, 2, 877, 14, 18554.00, 1, 1),
(12306, 2, 877, 15, 16486.00, 1, 1),
(12307, 2, 877, 16, 1.00, 1, 1),
(12308, 2, 877, 17, 644215.00, 1, 1),
(12309, 2, 877, 18, 0.00, 1, 1),
(12310, 3, 878, 3, 2.31, 1, 1),
(12311, 3, 878, 4, 18.00, 1, 1),
(12312, 3, 878, 5, 161447.00, 1, 1),
(12313, 3, 878, 6, 0.54, 1, 1),
(12314, 3, 878, 12, 0.12, 1, 1),
(12315, 3, 878, 13, 214461.00, 1, 1),
(12316, 3, 878, 14, 18554.00, 1, 1),
(12317, 3, 878, 15, 16486.00, 1, 1),
(12318, 3, 878, 16, 1.00, 1, 1),
(12319, 3, 878, 17, 644215.00, 1, 1),
(12320, 3, 878, 18, 0.00, 1, 1),
(12321, 4, 879, 20, 2.31, 1, 1),
(12322, 4, 879, 21, 18.00, 1, 1),
(12323, 4, 879, 22, 161447.00, 1, 1),
(12324, 4, 879, 23, 0.54, 1, 1),
(12325, 4, 879, 24, 0.12, 1, 1),
(12326, 4, 879, 25, 214461.00, 1, 1),
(12327, 4, 879, 26, 18554.00, 1, 1),
(12328, 4, 879, 27, 16486.00, 1, 1),
(12329, 4, 879, 28, 1.00, 1, 1),
(12330, 4, 879, 29, 644215.00, 1, 1),
(12331, 4, 879, 30, 0.00, 1, 1),
(12332, 5, 880, 32, 2.31, 1, 1),
(12333, 5, 880, 33, 18.00, 1, 1),
(12334, 5, 880, 34, 161447.00, 1, 1),
(12335, 5, 880, 35, 0.54, 1, 1),
(12336, 5, 880, 36, 0.12, 1, 1),
(12337, 5, 880, 37, 214461.00, 1, 1),
(12338, 5, 880, 38, 18554.00, 1, 1),
(12339, 5, 880, 39, 16486.00, 1, 1),
(12340, 5, 880, 40, 1.00, 1, 1),
(12341, 5, 880, 41, 644215.00, 1, 1),
(12342, 5, 880, 42, 0.00, 1, 1),
(12343, 6, 881, 43, 2.31, 1, 1),
(12344, 6, 881, 44, 18.00, 1, 1),
(12345, 6, 881, 45, 161447.00, 1, 1),
(12346, 6, 881, 46, 0.54, 1, 1),
(12347, 6, 881, 47, 0.12, 1, 1),
(12348, 6, 881, 48, 214461.00, 1, 1),
(12349, 6, 881, 49, 18554.00, 1, 1),
(12350, 6, 881, 50, 16486.00, 1, 1),
(12351, 6, 881, 51, 1.00, 1, 1),
(12352, 6, 881, 52, 644215.00, 1, 1),
(12353, 6, 881, 53, 0.00, 1, 1),
(12354, 7, 882, 54, 2.31, 1, 1),
(12355, 7, 882, 55, 18.00, 1, 1),
(12356, 7, 882, 56, 161447.00, 1, 1),
(12357, 7, 882, 57, 0.54, 1, 1),
(12358, 7, 882, 58, 0.12, 1, 1),
(12359, 7, 882, 59, 214461.00, 1, 1),
(12360, 7, 882, 60, 18554.00, 1, 1),
(12361, 7, 882, 61, 16486.00, 1, 1),
(12362, 7, 882, 62, 1.00, 1, 1),
(12363, 7, 882, 63, 644215.00, 1, 1),
(12364, 7, 882, 65, 0.00, 1, 1),
(12365, 8, 883, 3, 2.31, 1, 1),
(12366, 8, 883, 4, 18.00, 1, 1),
(12367, 8, 883, 5, 161447.00, 1, 1),
(12368, 8, 883, 6, 0.54, 1, 1),
(12369, 8, 883, 12, 0.12, 1, 1),
(12370, 8, 883, 13, 214461.00, 1, 1),
(12371, 8, 883, 14, 18554.00, 1, 1),
(12372, 8, 883, 15, 16486.00, 1, 1),
(12373, 8, 883, 16, 1.00, 1, 1),
(12374, 8, 883, 17, 644215.00, 1, 1),
(12375, 8, 883, 18, 0.00, 1, 1),
(12376, 9, 884, 3, 2.31, 1, 1),
(12377, 9, 884, 4, 18.00, 1, 1),
(12378, 9, 884, 5, 161447.00, 1, 1),
(12379, 9, 884, 6, 0.54, 1, 1),
(12380, 9, 884, 12, 0.12, 1, 1),
(12381, 9, 884, 13, 214461.00, 1, 1),
(12382, 9, 884, 14, 18554.00, 1, 1),
(12383, 9, 884, 15, 16486.00, 1, 1),
(12384, 9, 884, 16, 1.00, 1, 1),
(12385, 9, 884, 17, 644215.00, 1, 1),
(12386, 9, 884, 18, 0.00, 1, 1),
(12387, 10, 885, 66, 2.31, 1, 1),
(12388, 10, 885, 67, 18.00, 1, 1),
(12389, 10, 885, 68, 161447.00, 1, 1),
(12390, 10, 885, 69, 0.54, 1, 1),
(12391, 10, 885, 70, 0.12, 1, 1),
(12392, 10, 885, 71, 214461.00, 1, 1),
(12393, 10, 885, 72, 18554.00, 1, 1),
(12394, 10, 885, 73, 16486.00, 1, 1),
(12395, 10, 885, 74, 1.00, 1, 1),
(12396, 10, 885, 75, 644215.00, 1, 1),
(12397, 10, 885, 76, 0.00, 1, 1),
(12398, 11, 886, 77, 2.31, 1, 1),
(12399, 11, 886, 78, 18.00, 1, 1),
(12400, 11, 886, 79, 161447.00, 1, 1),
(12401, 11, 886, 80, 0.54, 1, 1),
(12402, 11, 886, 81, 0.12, 1, 1),
(12403, 11, 886, 82, 214461.00, 1, 1),
(12404, 11, 886, 83, 18554.00, 1, 1),
(12405, 11, 886, 84, 16486.00, 1, 1),
(12406, 11, 886, 85, 1.00, 1, 1),
(12407, 11, 886, 86, 644215.00, 1, 1),
(12408, 11, 886, 87, 0.00, 1, 1),
(12409, 12, 887, 88, 2.31, 1, 1),
(12410, 12, 887, 89, 18.00, 1, 1),
(12411, 12, 887, 90, 161447.00, 1, 1),
(12412, 12, 887, 91, 0.54, 1, 1),
(12413, 12, 887, 92, 0.12, 1, 1),
(12414, 12, 887, 93, 214461.00, 1, 1),
(12415, 12, 887, 94, 18554.00, 1, 1),
(12416, 12, 887, 95, 16486.00, 1, 1),
(12417, 12, 887, 96, 1.00, 1, 1),
(12418, 12, 887, 97, 644215.00, 1, 1),
(12419, 12, 887, 98, 0.00, 1, 1),
(12420, 14, 888, 99, 2.31, 1, 1),
(12421, 14, 888, 100, 18.00, 1, 1),
(12422, 14, 888, 101, 61447.00, 1, 1),
(12423, 14, 888, 102, 0.54, 1, 1),
(12424, 14, 888, 103, 0.12, 1, 1),
(12425, 14, 888, 104, 214461.00, 1, 1),
(12426, 14, 888, 105, 18554.00, 1, 1),
(12427, 14, 888, 106, 16486.00, 1, 1),
(12428, 14, 888, 107, 1.00, 1, 1),
(12429, 14, 888, 108, 444215.00, 1, 1),
(12430, 14, 888, 109, 0.00, 1, 1),
(12431, 1, 876, 112, 320000.00, 1, 1),
(12432, 1, 863, 112, 300122.00, 1, 1),
(12433, 11, 889, 77, 0.00, 0, 1),
(12434, 11, 889, 78, 0.00, 0, 1),
(12435, 11, 889, 79, 12000.00, 1, 1),
(12436, 11, 889, 80, 0.00, 0, 1),
(12437, 11, 889, 81, 0.00, 0, 1),
(12438, 11, 889, 122, 780000.00, 1, 1),
(12439, 11, 890, 77, 0.00, 0, 1),
(12440, 11, 890, 78, 0.00, 0, 1),
(12441, 11, 890, 79, 0.00, 0, 1),
(12442, 11, 890, 80, 0.00, 0, 1),
(12443, 11, 890, 81, 0.00, 0, 1),
(12444, 11, 890, 122, 0.00, 0, 1),
(12445, 11, 891, 77, 0.00, 0, 1),
(12446, 11, 891, 78, 0.00, 0, 1),
(12447, 11, 891, 79, 0.00, 0, 1),
(12448, 11, 891, 80, 0.00, 0, 1),
(12449, 11, 891, 81, 0.00, 0, 1),
(12450, 11, 891, 82, 955500.00, 1, 1),
(12451, 11, 891, 86, 3550.00, 1, 1),
(12452, 11, 891, 122, 0.00, 0, 1),
(12453, 14, 888, 125, 32000.00, 1, 1),
(12454, 11, 886, 122, 32000.00, 1, 1),
(12455, 14, 875, 125, 300122.00, 1, 1),
(12456, 11, 873, 122, 300122.00, 1, 1),
(12457, 11, 892, 77, 7.00, 1, 1),
(12458, 11, 892, 78, 33.00, 1, 1),
(12459, 11, 892, 79, 11251.00, 1, 1),
(12460, 11, 892, 80, 0.00, 1, 1),
(12461, 11, 892, 81, 0.00, 1, 1),
(12462, 11, 892, 82, 13656.00, 1, 1),
(12463, 11, 892, 86, 8500.00, 1, 1),
(12464, 11, 892, 122, 940440.00, 1, 1),
(12465, 11, 893, 77, 11.00, 1, 1),
(12466, 11, 893, 78, 65.00, 1, 1),
(12467, 11, 893, 79, 8000.00, 1, 1),
(12468, 11, 893, 80, 3.00, 1, 1),
(12469, 11, 893, 81, 1.00, 1, 1),
(12470, 11, 893, 82, 714211.00, 1, 1),
(12471, 11, 893, 86, 210110.00, 1, 1),
(12472, 11, 893, 122, 12458.00, 1, 1),
(12473, 11, 894, 77, 0.00, 0, 1),
(12474, 11, 894, 78, 0.00, 0, 1),
(12475, 11, 894, 79, 0.00, 0, 1),
(12476, 11, 894, 80, 0.00, 0, 1),
(12477, 11, 894, 81, 0.00, 0, 1),
(12478, 11, 894, 82, 500000.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(12479, 11, 894, 86, 500000.00, 1, 1),
(12480, 11, 894, 122, 0.00, 0, 1),
(12481, 11, 895, 77, 2.00, 1, 1),
(12482, 11, 895, 78, 10.00, 1, 1),
(12483, 11, 895, 79, 450000.00, 1, 1),
(12484, 11, 895, 80, 4.00, 1, 1),
(12485, 11, 895, 81, 5.00, 1, 1),
(12486, 11, 895, 82, 200000.00, 1, 1),
(12487, 11, 895, 86, 100000.00, 1, 1),
(12488, 11, 895, 122, 0.00, 0, 1),
(12489, 11, 896, 77, 0.00, 0, 1),
(12490, 11, 896, 78, 0.00, 0, 1),
(12491, 11, 896, 79, 0.00, 0, 1),
(12492, 11, 896, 80, 0.00, 0, 1),
(12493, 11, 896, 81, 0.00, 0, 1),
(12494, 11, 896, 82, 0.00, 0, 1),
(12495, 11, 896, 86, 0.00, 0, 1),
(12496, 11, 896, 122, 0.00, 0, 1),
(12497, 11, 897, 77, 0.10, 1, 1),
(12498, 11, 897, 78, 5.00, 1, 1),
(12499, 11, 897, 79, 15011.00, 1, 1),
(12500, 11, 897, 80, 0.00, 0, 1),
(12501, 11, 897, 81, 0.00, 0, 1),
(12502, 11, 897, 82, 0.00, 0, 1),
(12503, 11, 897, 86, 133000.00, 1, 1),
(12504, 11, 897, 122, 718440.00, 1, 1),
(12505, 7, 898, 54, 0.00, 0, 1),
(12506, 7, 898, 55, 0.00, 0, 1),
(12507, 7, 898, 56, 0.00, 0, 1),
(12508, 7, 898, 57, 0.00, 0, 1),
(12509, 7, 898, 58, 0.00, 0, 1),
(12510, 7, 898, 59, 0.00, 0, 1),
(12511, 7, 898, 63, 0.00, 0, 1),
(12512, 7, 898, 118, 0.00, 0, 1),
(12513, 7, 899, 54, 0.00, 0, 1),
(12514, 7, 899, 55, 0.00, 0, 1),
(12515, 7, 899, 56, 0.00, 0, 1),
(12516, 7, 899, 57, 0.00, 0, 1),
(12517, 7, 899, 58, 0.00, 0, 1),
(12518, 7, 899, 59, 0.00, 0, 1),
(12519, 7, 899, 63, 0.00, 0, 1),
(12520, 7, 899, 118, 0.00, 0, 1),
(12521, 7, 900, 54, 0.00, 0, 1),
(12522, 7, 900, 55, 0.00, 0, 1),
(12523, 7, 900, 56, 0.00, 0, 1),
(12524, 7, 900, 57, 0.00, 0, 1),
(12525, 7, 900, 58, 0.00, 0, 1),
(12526, 7, 900, 59, 0.00, 0, 1),
(12527, 7, 900, 63, 100000.00, 0, 1),
(12528, 7, 900, 118, 0.00, 0, 1),
(12529, 7, 901, 54, 0.00, 0, 1),
(12530, 7, 901, 55, 0.00, 0, 1),
(12531, 7, 901, 56, 250000.00, 0, 1),
(12532, 7, 901, 57, 0.00, 0, 1),
(12533, 7, 901, 58, 0.00, 0, 1),
(12534, 7, 901, 59, 250000.00, 0, 1),
(12535, 7, 901, 63, 0.00, 0, 1),
(12536, 7, 901, 118, 500000.00, 0, 1),
(12537, 7, 902, 54, 0.00, 0, 1),
(12538, 7, 902, 55, 0.00, 0, 1),
(12539, 7, 902, 56, 0.00, 0, 1),
(12540, 7, 902, 57, 0.00, 0, 1),
(12541, 7, 902, 58, 0.00, 0, 1),
(12542, 7, 902, 59, 0.00, 0, 1),
(12543, 7, 902, 63, 0.00, 0, 1),
(12544, 7, 902, 118, 0.00, 0, 1),
(12545, 7, 903, 54, 0.00, 0, 1),
(12546, 7, 903, 55, 0.00, 0, 1),
(12547, 7, 903, 56, 0.00, 0, 1),
(12548, 7, 903, 57, 0.00, 0, 1),
(12549, 7, 903, 58, 0.00, 0, 1),
(12550, 7, 903, 59, 0.00, 0, 1),
(12551, 7, 903, 63, 0.00, 0, 1),
(12552, 7, 903, 118, 0.00, 0, 1),
(12553, 11, 904, 77, 0.00, 1, 1),
(12554, 11, 904, 78, 0.00, 1, 1),
(12555, 11, 904, 79, 5000.00, 1, 1),
(12556, 11, 904, 80, 0.00, 1, 1),
(12557, 11, 904, 81, 0.00, 1, 1),
(12558, 11, 904, 82, 0.00, 1, 1),
(12559, 11, 904, 86, 0.00, 0, 1),
(12560, 11, 904, 122, 0.00, 0, 1),
(12561, 15, 905, 126, 32.51, 1, 1),
(12562, 15, 905, 128, 320000.00, 1, 1),
(12563, 15, 905, 129, 5.00, 0, 1),
(12564, 15, 905, 127, 400.00, 1, 1),
(12565, 15, 905, 7, 0.00, 0, 1),
(12566, 15, 905, 8, 0.00, 0, 1),
(12567, 15, 905, 9, 0.00, 0, 1),
(12568, 15, 905, 10, 0.00, 0, 1),
(12569, 15, 905, 11, 0.00, 0, 1),
(12570, 15, 905, 130, 0.00, 0, 1),
(12571, 15, 905, 131, 0.00, 0, 1),
(12572, 15, 905, 132, 0.00, 0, 1),
(12573, 15, 905, 133, 0.00, 0, 1),
(12574, 15, 906, 126, 60.00, 1, 1),
(12575, 15, 906, 128, 251600.00, 1, 1),
(12576, 15, 906, 129, 10.00, 1, 1),
(12577, 15, 906, 127, 18000.00, 1, 1),
(12578, 15, 906, 7, 0.00, 0, 1),
(12579, 15, 906, 8, 0.00, 0, 1),
(12580, 15, 906, 9, 0.00, 0, 1),
(12581, 15, 906, 10, 0.00, 0, 1),
(12582, 15, 906, 11, 0.00, 0, 1),
(12583, 15, 906, 130, 100.00, 1, 1),
(12584, 15, 906, 131, 0.00, 0, 1),
(12585, 15, 906, 132, 0.00, 0, 1),
(12586, 15, 906, 133, 0.00, 0, 1),
(12587, 15, 907, 126, 300.00, 1, 1),
(12588, 15, 907, 128, 600000.00, 1, 1),
(12589, 15, 907, 129, 1.00, 0, 1),
(12590, 15, 907, 127, 1500.00, 0, 1),
(12591, 15, 907, 7, 0.00, 0, 1),
(12592, 15, 907, 8, 0.00, 0, 1),
(12593, 15, 907, 9, 0.00, 0, 1),
(12594, 15, 907, 10, 0.00, 0, 1),
(12595, 15, 907, 11, 0.00, 0, 1),
(12596, 15, 907, 130, 0.00, 0, 1),
(12597, 15, 907, 131, 0.00, 0, 1),
(12598, 15, 907, 132, 0.00, 0, 1),
(12599, 15, 907, 133, 0.00, 0, 1),
(12600, 15, 908, 126, 0.00, 1, 1),
(12601, 15, 908, 128, 0.00, 0, 1),
(12602, 15, 908, 129, 0.00, 0, 1),
(12603, 15, 908, 127, 0.00, 1, 1),
(12604, 15, 908, 7, 0.00, 0, 1),
(12605, 15, 908, 8, 0.00, 0, 1),
(12606, 15, 908, 9, 0.00, 0, 1),
(12607, 15, 908, 10, 0.00, 0, 1),
(12608, 15, 908, 11, 0.00, 0, 1),
(12609, 15, 908, 130, 0.00, 0, 1),
(12610, 15, 908, 131, 0.00, 0, 1),
(12611, 15, 908, 132, 0.00, 1, 1),
(12612, 15, 908, 133, 0.00, 1, 1),
(12613, 15, 909, 126, 0.00, 0, 1),
(12614, 15, 909, 128, 0.00, 0, 1),
(12615, 15, 909, 129, 0.00, 0, 1),
(12616, 15, 909, 127, 0.00, 0, 1),
(12617, 15, 909, 7, 0.00, 0, 1),
(12618, 15, 909, 8, 0.00, 0, 1),
(12619, 15, 909, 9, 0.00, 0, 1),
(12620, 15, 909, 10, 0.00, 0, 1),
(12621, 15, 909, 11, 0.00, 0, 1),
(12622, 15, 909, 130, 0.00, 0, 1),
(12623, 15, 909, 131, 0.00, 0, 1),
(12624, 15, 909, 132, 0.00, 0, 1),
(12625, 15, 909, 133, 0.00, 0, 1),
(12626, 15, 910, 126, 40.00, 1, 1),
(12627, 15, 910, 128, 270000.00, 1, 1),
(12628, 15, 910, 129, 0.00, 0, 1),
(12629, 15, 910, 127, 950.00, 1, 1),
(12630, 15, 910, 7, 0.00, 0, 1),
(12631, 15, 910, 8, 0.00, 0, 1),
(12632, 15, 910, 9, 0.00, 0, 1),
(12633, 15, 910, 10, 0.00, 0, 1),
(12634, 15, 910, 11, 0.00, 0, 1),
(12635, 15, 910, 130, 0.00, 0, 1),
(12636, 15, 910, 131, 0.00, 0, 1),
(12637, 15, 910, 132, 0.00, 0, 1),
(12638, 15, 910, 133, 0.00, 0, 1),
(12639, 15, 911, 126, 60.00, 1, 1),
(12640, 15, 911, 128, 244787.00, 1, 1),
(12641, 15, 911, 129, 5.00, 1, 1),
(12642, 15, 911, 127, 300.00, 1, 1),
(12643, 15, 911, 7, 0.00, 0, 1),
(12644, 15, 911, 8, 0.00, 0, 1),
(12645, 15, 911, 9, 0.00, 0, 1),
(12646, 15, 911, 10, 0.00, 0, 1),
(12647, 15, 911, 11, 0.00, 0, 1),
(12648, 15, 911, 130, 5.00, 1, 1),
(12649, 15, 911, 131, 0.00, 0, 1),
(12650, 15, 911, 132, 0.00, 0, 1),
(12651, 15, 911, 133, 0.00, 0, 1),
(12652, 15, 912, 126, 0.00, 0, 1),
(12653, 15, 912, 127, 200000.00, 1, 1),
(12654, 15, 912, 128, 200000.00, 1, 1),
(12655, 15, 912, 129, 0.00, 0, 1),
(12656, 15, 912, 7, 0.00, 0, 1),
(12657, 15, 912, 8, 10000.00, 1, 1),
(12658, 15, 912, 9, 0.00, 0, 1),
(12659, 15, 912, 10, 0.00, 0, 1),
(12660, 15, 912, 11, 0.00, 0, 1),
(12661, 15, 912, 130, 40000.00, 1, 1),
(12662, 15, 912, 131, 0.00, 0, 1),
(12663, 15, 912, 132, 0.00, 0, 1),
(12664, 15, 912, 133, 0.00, 0, 1),
(12665, 15, 913, 126, 0.00, 1, 1),
(12666, 15, 913, 127, 10000.00, 1, 1),
(12667, 15, 913, 128, 0.00, 0, 1),
(12668, 15, 913, 129, 20000.00, 1, 1),
(12669, 15, 913, 7, 0.00, 0, 1),
(12670, 15, 913, 8, 0.00, 0, 1),
(12671, 15, 913, 9, 0.00, 0, 1),
(12672, 15, 913, 10, 0.00, 0, 1),
(12673, 15, 913, 11, 0.00, 0, 1),
(12674, 15, 913, 130, 0.00, 0, 1),
(12675, 15, 913, 131, 0.00, 0, 1),
(12676, 15, 913, 132, 0.00, 0, 1),
(12677, 15, 913, 133, 0.00, 0, 1),
(12678, 15, 913, 126, 0.00, 1, 1),
(12679, 15, 913, 127, 350.00, 1, 1),
(12680, 15, 913, 128, 100.00, 1, 1),
(12681, 15, 913, 129, 450.00, 1, 1),
(12682, 15, 913, 7, 100.00, 1, 1),
(12683, 15, 913, 8, 0.00, 0, 1),
(12684, 15, 913, 9, 0.00, 0, 1),
(12685, 15, 913, 10, 0.00, 0, 1),
(12686, 15, 913, 11, 0.00, 0, 1),
(12687, 15, 913, 130, 0.00, 0, 1),
(12688, 15, 913, 131, 0.00, 0, 1),
(12689, 15, 913, 132, 0.00, 0, 1),
(12690, 15, 913, 133, 0.00, 0, 1),
(12691, 15, 914, 126, 0.00, 0, 1),
(12692, 15, 914, 127, 350000.00, 1, 1),
(12693, 15, 914, 128, 100000.00, 0, 1),
(12694, 15, 914, 129, 0.00, 0, 1),
(12695, 15, 914, 7, 100000.00, 0, 1),
(12696, 15, 914, 8, 0.00, 0, 1),
(12697, 15, 914, 9, 450000.00, 0, 1),
(12698, 15, 914, 10, 0.00, 0, 1),
(12699, 15, 914, 11, 0.00, 0, 1),
(12700, 15, 914, 130, 0.00, 0, 1),
(12701, 15, 914, 131, 0.00, 0, 1),
(12702, 15, 914, 132, 0.00, 0, 1),
(12703, 15, 914, 133, 0.00, 0, 1),
(12704, 15, 915, 126, 0.00, 0, 1),
(12705, 15, 915, 127, 0.00, 0, 1),
(12706, 15, 915, 128, 320000.00, 1, 1),
(12707, 15, 915, 129, 0.00, 0, 1),
(12708, 15, 915, 7, 680000.00, 0, 1),
(12709, 15, 915, 8, 0.00, 0, 1),
(12710, 15, 915, 9, 0.00, 0, 1),
(12711, 15, 915, 10, 0.00, 0, 1),
(12712, 15, 915, 11, 0.00, 0, 1),
(12713, 15, 915, 130, 0.00, 0, 1),
(12714, 15, 915, 131, 0.00, 0, 1),
(12715, 15, 915, 132, 0.00, 0, 1),
(12716, 15, 915, 133, 0.00, 0, 1),
(12717, 15, 916, 126, 450.00, 1, 1),
(12718, 15, 916, 127, 0.00, 0, 1),
(12719, 15, 916, 128, 250000.00, 1, 1),
(12720, 15, 916, 129, 0.00, 0, 1),
(12721, 15, 916, 7, 0.00, 0, 1),
(12722, 15, 916, 8, 0.00, 0, 1),
(12723, 15, 916, 9, 0.00, 0, 1),
(12724, 15, 916, 10, 0.00, 0, 1),
(12725, 15, 916, 11, 0.00, 0, 1),
(12726, 15, 916, 130, 0.00, 0, 1),
(12727, 15, 916, 131, 0.00, 0, 1),
(12728, 15, 916, 132, 0.00, 1, 1),
(12729, 15, 916, 133, 0.00, 0, 1),
(12730, 15, 917, 126, 0.00, 0, 1),
(12731, 15, 917, 127, 0.00, 0, 1),
(12732, 15, 917, 128, 800000.00, 1, 1),
(12733, 15, 917, 129, 0.00, 0, 1),
(12734, 15, 917, 7, 0.00, 0, 1),
(12735, 15, 917, 8, 0.00, 0, 1),
(12736, 15, 917, 9, 0.00, 0, 1),
(12737, 15, 917, 10, 0.00, 0, 1),
(12738, 15, 917, 11, 0.00, 0, 1),
(12739, 15, 917, 130, 0.00, 0, 1),
(12740, 15, 917, 131, 0.00, 0, 1),
(12741, 15, 917, 132, 0.00, 0, 1),
(12742, 15, 917, 133, 0.00, 0, 1),
(12743, 15, 918, 126, 0.00, 0, 1),
(12744, 15, 918, 127, 0.00, 0, 1),
(12745, 15, 918, 128, 0.00, 0, 1),
(12746, 15, 918, 129, 0.00, 0, 1),
(12747, 15, 918, 7, 100000.00, 1, 1),
(12748, 15, 918, 8, 0.00, 0, 1),
(12749, 15, 918, 9, 0.00, 0, 1),
(12750, 15, 918, 10, 0.00, 0, 1),
(12751, 15, 918, 11, 0.00, 0, 1),
(12752, 15, 918, 130, 0.00, 0, 1),
(12753, 15, 918, 131, 0.00, 0, 1),
(12754, 15, 918, 132, 0.00, 0, 1),
(12755, 15, 918, 133, 100000.00, 1, 1),
(12756, 15, 919, 126, 0.00, 0, 1),
(12757, 15, 919, 127, 0.00, 0, 1),
(12758, 15, 919, 128, 950000.00, 1, 1),
(12759, 15, 919, 129, 0.00, 0, 1),
(12760, 15, 919, 7, 0.00, 0, 1),
(12761, 15, 919, 8, 0.00, 0, 1),
(12762, 15, 919, 9, 0.00, 0, 1),
(12763, 15, 919, 10, 0.00, 0, 1),
(12764, 15, 919, 11, 0.00, 0, 1),
(12765, 15, 919, 130, 0.00, 0, 1),
(12766, 15, 919, 131, 0.00, 0, 1),
(12767, 15, 919, 132, 50000.00, 1, 1),
(12768, 15, 919, 133, 0.00, 0, 1),
(12769, 15, 920, 126, 0.00, 0, 1),
(12770, 15, 920, 127, 0.00, 0, 1),
(12771, 15, 920, 128, 0.00, 0, 1),
(12772, 15, 920, 129, 0.00, 0, 1),
(12773, 15, 920, 7, 0.00, 0, 1),
(12774, 15, 920, 8, 999999.00, 1, 1),
(12775, 15, 920, 9, 0.00, 0, 1),
(12776, 15, 920, 10, 0.00, 0, 1),
(12777, 15, 920, 11, 0.00, 0, 1),
(12778, 15, 920, 130, 0.00, 0, 1),
(12779, 15, 920, 131, 0.00, 0, 1),
(12780, 15, 920, 132, 0.00, 0, 1),
(12781, 15, 920, 133, 0.00, 0, 1),
(12782, 15, 921, 126, 0.00, 0, 1),
(12783, 15, 921, 127, 0.00, 0, 1),
(12784, 15, 921, 128, 0.00, 0, 1),
(12785, 15, 921, 129, 0.00, 0, 1),
(12786, 15, 921, 7, 1000000.00, 1, 1),
(12787, 15, 921, 8, 0.00, 0, 1),
(12788, 15, 921, 9, 0.00, 0, 1),
(12789, 15, 921, 10, 0.00, 0, 1),
(12790, 15, 921, 11, 0.00, 0, 1),
(12791, 15, 921, 130, 0.00, 0, 1),
(12792, 15, 921, 131, 0.00, 0, 1),
(12793, 15, 921, 132, 0.00, 0, 1),
(12794, 15, 921, 133, 0.00, 0, 1),
(12795, 15, 922, 126, 0.00, 0, 1),
(12796, 15, 922, 127, 0.00, 0, 1),
(12797, 15, 922, 128, 0.00, 0, 1),
(12798, 15, 922, 129, 0.00, 0, 1),
(12799, 15, 922, 7, 500000.00, 1, 1),
(12800, 15, 922, 8, 0.00, 0, 1),
(12801, 15, 922, 9, 0.00, 0, 1),
(12802, 15, 922, 10, 0.00, 0, 1),
(12803, 15, 922, 11, 0.00, 0, 1),
(12804, 15, 922, 130, 0.00, 1, 1),
(12805, 15, 922, 131, 0.00, 1, 1),
(12806, 15, 922, 132, 0.00, 1, 1),
(12807, 15, 922, 133, 0.00, 1, 1),
(12808, 15, 922, 134, 0.00, 0, 1),
(12809, 15, 922, 135, 0.00, 0, 1),
(12810, 15, 922, 136, 0.00, 0, 1),
(12811, 15, 922, 19, 0.00, 0, 1),
(12812, 15, 923, 126, 68.00, 1, 1),
(12813, 15, 923, 127, 886.60, 1, 1),
(12814, 15, 923, 128, 210020.00, 1, 1),
(12815, 15, 923, 129, 12.00, 0, 1),
(12816, 15, 923, 7, 749680.00, 1, 1),
(12817, 15, 923, 8, 0.00, 0, 1),
(12818, 15, 923, 9, 0.00, 0, 1),
(12819, 15, 923, 10, 0.00, 0, 1),
(12820, 15, 923, 11, 0.00, 0, 1),
(12821, 15, 923, 130, 6.00, 0, 1),
(12822, 15, 923, 131, 0.00, 0, 1),
(12823, 15, 923, 132, 0.00, 0, 1),
(12824, 15, 923, 133, 0.00, 0, 1),
(12825, 15, 924, 126, 1000000.00, 1, 1),
(12826, 15, 924, 127, 0.00, 0, 1),
(12827, 15, 924, 128, 0.00, 0, 1),
(12828, 15, 924, 129, 0.00, 0, 1),
(12829, 15, 924, 7, 0.00, 0, 1),
(12830, 15, 924, 8, 0.00, 0, 1),
(12831, 15, 924, 9, 0.00, 0, 1),
(12832, 15, 924, 10, 0.00, 0, 1),
(12833, 15, 924, 11, 0.00, 0, 1),
(12834, 15, 924, 130, 0.00, 0, 1),
(12835, 15, 924, 131, 0.00, 0, 1),
(12836, 15, 924, 132, 0.00, 0, 1),
(12837, 15, 924, 133, 0.00, 0, 1),
(12838, 15, 925, 126, 28.00, 1, 1),
(12839, 15, 925, 127, 120.00, 1, 1),
(12840, 15, 925, 128, 100000.00, 1, 1),
(12841, 15, 925, 129, 3.00, 1, 1),
(12842, 15, 925, 7, 768200.00, 0, 1),
(12843, 15, 925, 8, 0.00, 0, 1),
(12844, 15, 925, 9, 0.00, 0, 1),
(12845, 15, 925, 10, 0.00, 0, 1),
(12846, 15, 925, 11, 0.00, 0, 1),
(12847, 15, 925, 130, 3.00, 1, 1),
(12848, 15, 925, 131, 0.00, 0, 1),
(12849, 15, 925, 132, 0.00, 0, 1),
(12850, 15, 925, 133, 0.00, 0, 1),
(12851, 15, 926, 126, 0.00, 0, 1),
(12852, 15, 926, 127, 0.00, 0, 1),
(12853, 15, 926, 128, 0.00, 0, 1),
(12854, 15, 926, 129, 0.00, 0, 1),
(12855, 15, 926, 7, 0.00, 0, 1),
(12856, 15, 926, 8, 0.00, 0, 1),
(12857, 15, 926, 9, 999999.00, 1, 1),
(12858, 15, 926, 10, 0.00, 0, 1),
(12859, 15, 926, 11, 0.00, 0, 1),
(12860, 15, 926, 130, 0.00, 0, 1),
(12861, 15, 926, 131, 0.00, 0, 1),
(12862, 15, 926, 132, 0.00, 0, 1),
(12863, 15, 926, 133, 0.00, 0, 1),
(12864, 15, 927, 126, 0.00, 0, 1),
(12865, 15, 927, 127, 0.00, 0, 1),
(12866, 15, 927, 128, 0.00, 0, 1),
(12867, 15, 927, 129, 0.00, 0, 1),
(12868, 15, 927, 130, 0.00, 0, 1),
(12869, 15, 928, 126, 0.00, 1, 1),
(12870, 15, 928, 127, 0.00, 0, 1),
(12871, 15, 928, 128, 0.00, 0, 1),
(12872, 15, 928, 129, 0.00, 0, 1),
(12873, 15, 928, 130, 0.00, 0, 1),
(12874, 15, 929, 126, 0.00, 1, 1),
(12875, 15, 929, 127, 0.00, 0, 1),
(12876, 15, 929, 128, 0.00, 0, 1),
(12877, 15, 929, 129, 0.00, 0, 1),
(12878, 15, 929, 130, 0.00, 0, 1),
(12879, 15, 929, 131, 0.00, 0, 1),
(12880, 15, 929, 132, 0.00, 0, 1),
(12881, 15, 929, 133, 0.00, 0, 1),
(12882, 15, 929, 134, 0.00, 0, 1),
(12883, 15, 929, 135, 0.00, 0, 1),
(12884, 15, 929, 136, 0.00, 0, 1),
(12885, 15, 929, 19, 0.00, 0, 1),
(12886, 15, 930, 126, 0.00, 1, 1),
(12887, 15, 930, 127, 0.00, 0, 1),
(12888, 15, 930, 128, 0.00, 0, 1),
(12889, 15, 930, 129, 0.00, 0, 1),
(12890, 15, 930, 130, 0.00, 0, 1),
(12891, 15, 931, 126, 196.00, 1, 1),
(12892, 15, 931, 127, 1645.00, 1, 1),
(12893, 15, 931, 128, 220000.00, 1, 1),
(12894, 15, 931, 129, 14.00, 1, 1),
(12895, 15, 931, 130, 30.00, 1, 1),
(12896, 15, 932, 126, 0.00, 0, 1),
(12897, 15, 932, 127, 300.00, 0, 1),
(12898, 15, 932, 128, 240000.00, 1, 1),
(12899, 15, 932, 129, 0.00, 0, 1),
(12900, 15, 932, 130, 0.00, 0, 1),
(12901, 15, 933, 126, 0.00, 0, 1),
(12902, 15, 933, 127, 0.00, 0, 1),
(12903, 15, 933, 128, 265000.00, 1, 1),
(12904, 15, 933, 129, 0.00, 0, 1),
(12905, 15, 933, 130, 0.00, 0, 1),
(12906, 15, 934, 126, 60.00, 1, 1),
(12907, 15, 934, 127, 320.00, 1, 1),
(12908, 15, 934, 128, 184000.00, 1, 1),
(12909, 15, 934, 129, 0.00, 0, 1),
(12910, 15, 934, 130, 0.00, 0, 1),
(12911, 15, 935, 126, 0.00, 0, 1),
(12912, 15, 935, 127, 350.00, 1, 1),
(12913, 15, 935, 128, 240000.00, 1, 1),
(12914, 15, 935, 129, 0.00, 0, 1),
(12915, 15, 935, 130, 0.00, 0, 1),
(12916, 15, 936, 126, 67.00, 1, 1),
(12917, 15, 936, 127, 400.00, 1, 1),
(12918, 15, 936, 128, 170000.00, 1, 1),
(12919, 15, 936, 129, 20.00, 1, 1),
(12920, 15, 936, 130, 30.00, 1, 1),
(12921, 15, 937, 126, 0.00, 0, 1),
(12922, 15, 937, 127, 0.00, 0, 1),
(12923, 15, 937, 128, 1.00, 1, 1),
(12924, 15, 937, 129, 0.00, 0, 1),
(12925, 15, 937, 130, 0.00, 0, 1),
(12926, 15, 938, 126, 0.00, 0, 1),
(12927, 15, 938, 127, 600.00, 1, 1),
(12928, 15, 938, 128, 200000.00, 1, 1),
(12929, 15, 938, 129, 0.00, 0, 1),
(12930, 15, 938, 130, 0.00, 0, 1),
(12931, 15, 939, 126, 50.00, 1, 1),
(12932, 15, 939, 127, 200.00, 1, 1),
(12933, 15, 939, 128, 240000.00, 1, 1),
(12934, 15, 939, 129, 0.00, 0, 1),
(12935, 15, 939, 130, 0.00, 0, 1),
(12936, 15, 940, 126, 60.00, 1, 1),
(12937, 15, 940, 127, 200.00, 1, 1),
(12938, 15, 940, 128, 120000.00, 1, 1),
(12939, 15, 940, 129, 1.00, 0, 1),
(12940, 15, 940, 130, 1.00, 0, 1),
(12941, 15, 941, 126, 90.00, 1, 1),
(12942, 15, 941, 127, 666.00, 1, 1),
(12943, 15, 941, 128, 210000.00, 1, 1),
(12944, 15, 941, 129, 0.00, 0, 1),
(12945, 15, 941, 130, 0.00, 0, 1),
(12946, 15, 942, 126, 123.00, 1, 1),
(12947, 15, 942, 127, 2562.00, 1, 1),
(12948, 15, 942, 128, 288040.00, 1, 1),
(12949, 15, 942, 129, 12.00, 1, 1),
(12950, 15, 942, 130, 9.00, 1, 1),
(12951, 15, 942, 131, 8120.00, 1, 1),
(12952, 15, 942, 132, 15212.00, 1, 1),
(12953, 15, 942, 133, 13122.00, 1, 1),
(12954, 15, 942, 134, 1.00, 1, 1),
(12955, 15, 942, 135, 411.00, 1, 1),
(12956, 15, 942, 136, 12.00, 1, 1),
(12957, 15, 943, 126, 57.10, 1, 1),
(12958, 15, 943, 127, 540.00, 1, 1),
(12959, 15, 943, 128, 212000.00, 1, 1),
(12960, 15, 943, 129, 3.00, 1, 1),
(12961, 15, 943, 130, 6.00, 1, 1),
(12962, 15, 943, 131, 12450.00, 1, 1),
(12963, 15, 943, 132, 8420.00, 1, 1),
(12964, 15, 943, 133, 641.00, 1, 1),
(12965, 15, 943, 134, 0.00, 1, 1),
(12966, 15, 943, 135, 155.00, 1, 1),
(12967, 15, 943, 136, 85.00, 1, 1),
(12968, 15, 944, 126, 21.00, 1, 1),
(12969, 15, 944, 127, 188.00, 1, 1),
(12970, 15, 944, 128, 231020.00, 1, 1),
(12971, 15, 944, 129, 2.00, 1, 1),
(12972, 15, 944, 130, 3.00, 1, 1),
(12973, 15, 944, 131, 15244.00, 1, 1),
(12974, 15, 944, 132, 16594.00, 1, 1),
(12975, 15, 944, 133, 1879.00, 1, 1),
(12976, 15, 944, 134, 0.00, 1, 1),
(12977, 15, 944, 135, 13341.00, 1, 1),
(12978, 15, 944, 136, 266.00, 1, 1),
(12979, 15, 945, 126, 222.00, 1, 1),
(12980, 15, 945, 127, 2222.00, 1, 1),
(12981, 15, 945, 128, 222222.00, 1, 1),
(12982, 15, 945, 129, 22.00, 1, 1),
(12983, 15, 945, 130, 2.00, 1, 1),
(12984, 15, 946, 126, 365.00, 1, 1),
(12985, 15, 946, 127, 1800.00, 1, 1),
(12986, 15, 946, 128, 350000.00, 1, 1),
(12987, 15, 946, 129, 35.00, 1, 1),
(12988, 15, 946, 130, 12.00, 1, 1),
(12989, 15, 947, 126, 112.00, 1, 1),
(12990, 15, 947, 127, 212.00, 1, 1),
(12991, 15, 947, 128, 310000.00, 1, 1),
(12992, 15, 947, 129, 21.00, 1, 1),
(12993, 15, 947, 130, 9.00, 1, 1),
(12994, 15, 948, 126, 800.00, 1, 1),
(12995, 15, 948, 127, 500.00, 1, 1),
(12996, 15, 948, 128, 210000.00, 1, 1),
(12997, 15, 948, 129, 0.00, 0, 1),
(12998, 15, 948, 130, 0.00, 0, 1),
(12999, 15, 949, 126, 1200.00, 1, 1),
(13000, 15, 949, 127, 1200.00, 1, 1),
(13001, 15, 949, 128, 215000.00, 1, 1),
(13002, 15, 949, 129, 0.00, 0, 1),
(13003, 15, 949, 130, 0.00, 0, 1),
(13004, 15, 950, 126, 2000.00, 1, 1),
(13005, 15, 950, 127, 2000.00, 1, 1),
(13006, 15, 950, 128, 250000.00, 1, 1),
(13007, 15, 950, 129, 0.00, 0, 1),
(13008, 15, 950, 130, 0.00, 0, 1),
(13009, 15, 951, 126, 144.00, 1, 1),
(13010, 15, 951, 127, 312.00, 1, 1),
(13011, 15, 951, 128, 310000.00, 1, 1),
(13012, 15, 951, 129, 1.00, 1, 1),
(13013, 15, 951, 130, 18.00, 1, 1),
(13014, 15, 951, 131, 14560.00, 1, 1),
(13015, 15, 951, 132, 89500.00, 1, 1),
(13016, 15, 951, 133, 58460.00, 1, 1),
(13017, 15, 951, 134, 0.00, 1, 1),
(13018, 15, 951, 135, 21490.00, 1, 1),
(13019, 15, 951, 136, 400.00, 1, 1),
(13020, 15, 951, 19, 0.00, 0, 1),
(13021, 15, 952, 126, 210.00, 1, 1),
(13022, 15, 952, 127, 1655.00, 1, 1),
(13023, 15, 952, 128, 262351.00, 1, 1),
(13024, 15, 952, 129, 3.00, 1, 1),
(13025, 15, 952, 130, 22.00, 1, 1),
(13026, 15, 952, 131, 540.00, 1, 1),
(13027, 15, 952, 132, 96000.00, 1, 1),
(13028, 15, 952, 133, 34450.00, 1, 1),
(13029, 15, 952, 134, 0.00, 1, 1),
(13030, 15, 952, 135, 30450.00, 1, 1),
(13031, 15, 952, 136, 0.00, 1, 1),
(13032, 15, 952, 19, 0.00, 0, 1),
(13033, 15, 953, 126, 397.65, 1, 1),
(13034, 15, 953, 127, 48.00, 1, 1),
(13035, 15, 953, 128, 260000.00, 1, 1),
(13036, 15, 953, 129, 0.00, 0, 1),
(13037, 15, 953, 130, 0.00, 0, 1),
(13038, 15, 953, 131, 0.00, 0, 1),
(13039, 15, 953, 132, 0.00, 0, 1),
(13040, 15, 953, 133, 0.00, 0, 1),
(13041, 15, 953, 134, 0.00, 0, 1),
(13042, 15, 953, 135, 0.00, 0, 1),
(13043, 15, 953, 136, 0.00, 0, 1),
(13044, 15, 953, 19, 0.00, 0, 1),
(13045, 15, 954, 126, 31.00, 1, 1),
(13046, 15, 954, 127, 41.00, 1, 1),
(13047, 15, 954, 128, 220000.00, 1, 1),
(13048, 15, 954, 129, 0.00, 0, 1),
(13049, 15, 954, 130, 0.00, 0, 1),
(13050, 15, 954, 131, 0.00, 0, 1),
(13051, 15, 954, 132, 0.00, 0, 1),
(13052, 15, 954, 133, 0.00, 0, 1),
(13053, 15, 954, 134, 0.00, 0, 1),
(13054, 15, 954, 135, 0.00, 0, 1),
(13055, 15, 954, 136, 0.00, 0, 1),
(13056, 15, 954, 19, 0.00, 0, 1),
(13057, 15, 955, 126, 180.50, 1, 1),
(13058, 15, 955, 127, 41.00, 1, 1),
(13059, 15, 955, 128, 220000.00, 1, 1),
(13060, 15, 955, 129, 0.00, 0, 1),
(13061, 15, 955, 130, 0.00, 0, 1),
(13062, 15, 955, 131, 0.00, 0, 1),
(13063, 15, 955, 132, 0.00, 0, 1),
(13064, 15, 955, 133, 0.00, 0, 1),
(13065, 15, 955, 134, 0.00, 0, 1),
(13066, 15, 955, 135, 0.00, 0, 1),
(13067, 15, 955, 136, 0.00, 0, 1),
(13068, 15, 955, 19, 0.00, 0, 1),
(13069, 15, 956, 126, 1102.00, 1, 1),
(13070, 15, 956, 127, 2222.00, 1, 1),
(13071, 15, 956, 128, 222000.00, 1, 1),
(13072, 15, 956, 129, 33.00, 1, 1),
(13073, 15, 956, 130, 33.00, 1, 1),
(13074, 15, 956, 131, 499.00, 1, 1),
(13075, 15, 956, 132, 121300.00, 1, 1),
(13076, 15, 956, 133, 79560.00, 1, 1),
(13077, 15, 956, 134, 4.00, 1, 1),
(13078, 15, 956, 135, 3922.00, 1, 1),
(13079, 15, 956, 136, 0.00, 1, 1),
(13080, 15, 957, 126, 677.00, 1, 1),
(13081, 15, 957, 127, 333.00, 1, 1),
(13082, 15, 957, 128, 220000.00, 1, 1),
(13083, 15, 957, 129, 20.00, 1, 1),
(13084, 15, 957, 130, 20.00, 1, 1),
(13085, 15, 957, 131, 7615.00, 1, 1),
(13086, 15, 957, 132, 102500.00, 1, 1),
(13087, 15, 957, 133, 86422.00, 1, 1),
(13088, 15, 957, 134, 2.00, 1, 1),
(13089, 15, 957, 135, 13445.00, 1, 1),
(13090, 15, 957, 136, 0.00, 1, 1),
(13091, 15, 958, 126, 510.40, 1, 1),
(13092, 15, 958, 127, 600.00, 1, 1),
(13093, 15, 958, 128, 220000.00, 1, 1),
(13094, 15, 958, 129, 20.00, 1, 1),
(13095, 15, 958, 130, 15.00, 1, 1),
(13096, 15, 958, 131, 1950.00, 1, 1),
(13097, 15, 958, 132, 89650.00, 1, 1),
(13098, 15, 958, 133, 37800.00, 1, 1),
(13099, 15, 958, 134, 2.00, 1, 1),
(13100, 15, 958, 135, 2350.00, 1, 1),
(13101, 15, 958, 136, 0.00, 1, 1),
(13102, 15, 959, 126, 264.00, 1, 1),
(13103, 15, 959, 127, 322.00, 1, 1),
(13104, 15, 959, 128, 202545.00, 1, 1),
(13105, 15, 959, 129, 15.00, 1, 1),
(13106, 15, 959, 130, 10.00, 1, 1),
(13107, 15, 959, 131, 1566.00, 1, 1),
(13108, 15, 959, 132, 78900.00, 1, 1),
(13109, 15, 959, 133, 59050.00, 1, 1),
(13110, 15, 959, 134, 0.00, 1, 1),
(13111, 15, 959, 135, 11959.00, 1, 1),
(13112, 15, 959, 136, 0.00, 1, 1),
(13113, 15, 960, 126, 2.10, 0, 1),
(13114, 15, 960, 127, 70.00, 1, 1),
(13115, 15, 960, 128, 334590.00, 1, 1),
(13116, 15, 960, 129, 0.00, 0, 1),
(13117, 15, 960, 130, 0.00, 0, 1),
(13118, 15, 960, 131, 0.00, 0, 1),
(13119, 15, 960, 132, 0.00, 0, 1),
(13120, 15, 960, 133, 0.00, 0, 1),
(13121, 15, 960, 134, 0.00, 0, 1),
(13122, 15, 960, 135, 0.00, 0, 1),
(13123, 15, 960, 136, 0.00, 0, 1),
(13124, 15, 961, 126, 0.41, 0, 1),
(13125, 15, 961, 127, 30.00, 1, 1),
(13126, 15, 961, 128, 192300.00, 1, 1),
(13127, 15, 961, 129, 0.00, 0, 1),
(13128, 15, 961, 130, 0.00, 0, 1),
(13129, 15, 961, 131, 0.00, 0, 1),
(13130, 15, 961, 132, 0.00, 0, 1),
(13131, 15, 961, 133, 0.00, 0, 1),
(13132, 15, 961, 134, 0.00, 0, 1),
(13133, 15, 961, 135, 0.00, 0, 1),
(13134, 15, 961, 136, 0.00, 0, 1),
(13135, 15, 962, 126, 0.14, 0, 1),
(13136, 15, 962, 127, 30.00, 0, 1),
(13137, 15, 962, 128, 90000.00, 1, 1),
(13138, 15, 962, 129, 0.00, 0, 1),
(13139, 15, 962, 130, 0.00, 0, 1),
(13140, 15, 962, 131, 0.00, 0, 1),
(13141, 15, 962, 132, 0.00, 0, 1),
(13142, 15, 962, 133, 0.00, 0, 1),
(13143, 15, 962, 134, 0.00, 0, 1),
(13144, 15, 962, 135, 0.00, 0, 1),
(13145, 15, 962, 136, 0.00, 0, 1),
(13146, 15, 963, 126, 0.00, 0, 1),
(13147, 15, 963, 127, 0.00, 0, 1),
(13148, 15, 963, 128, 0.00, 0, 1),
(13149, 15, 963, 129, 0.00, 0, 1),
(13150, 15, 963, 130, 0.00, 0, 1),
(13151, 15, 964, 126, 4186.30, 1, 1),
(13152, 15, 964, 127, 12845.00, 1, 1),
(13153, 15, 964, 128, 100277.00, 1, 1),
(13154, 15, 964, 129, 80.00, 1, 1),
(13155, 15, 964, 130, 1223.00, 1, 1),
(13156, 15, 965, 126, 8266.41, 1, 1),
(13157, 15, 965, 127, 17345.80, 1, 1),
(13158, 15, 965, 128, 81255.00, 1, 1),
(13159, 15, 965, 129, 94.20, 1, 1),
(13160, 15, 965, 130, 112.00, 1, 1),
(13161, 15, 966, 126, 1549.25, 1, 1),
(13162, 15, 966, 127, 12422.50, 1, 1),
(13163, 15, 966, 128, 89912.00, 1, 1),
(13164, 15, 966, 129, 114.00, 1, 1),
(13165, 15, 966, 130, 1212.00, 1, 1),
(13166, 15, 967, 126, 888.00, 1, 1),
(13167, 15, 967, 127, 7466.00, 1, 1),
(13168, 15, 967, 128, 120224.00, 1, 1),
(13169, 15, 967, 129, 160.00, 1, 1),
(13170, 15, 967, 130, 288.00, 1, 1),
(13171, 15, 968, 126, 441.00, 1, 1),
(13172, 15, 968, 127, 2100.00, 1, 1),
(13173, 15, 968, 128, 53400.00, 1, 1),
(13174, 15, 968, 129, 25.00, 1, 1),
(13175, 15, 968, 130, 42.00, 1, 1),
(13176, 15, 968, 131, 323644.00, 1, 1),
(13177, 15, 968, 132, 51050.00, 1, 1),
(13178, 15, 968, 133, 35699.00, 1, 1),
(13179, 15, 968, 134, 0.00, 1, 1),
(13180, 15, 968, 135, 1363.00, 1, 1),
(13181, 15, 968, 136, 3100.00, 1, 1),
(13182, 15, 969, 126, 185.00, 1, 1),
(13183, 15, 969, 127, 480.00, 1, 1),
(13184, 15, 969, 128, 245000.00, 1, 1),
(13185, 15, 969, 129, 12.00, 1, 1),
(13186, 15, 969, 130, 28.00, 1, 1),
(13187, 15, 969, 131, 6552.00, 1, 1),
(13188, 15, 969, 132, 13255.00, 1, 1),
(13189, 15, 969, 133, 12800.00, 1, 1),
(13190, 15, 969, 134, 16.00, 1, 1),
(13191, 15, 969, 135, 3559.00, 1, 1),
(13192, 15, 969, 136, 650.00, 1, 1),
(13193, 15, 970, 126, 148.00, 1, 1),
(13194, 15, 970, 127, 2500.00, 1, 1),
(13195, 15, 970, 128, 265120.00, 1, 1),
(13196, 15, 970, 129, 18.00, 1, 1),
(13197, 15, 970, 130, 16.00, 1, 1),
(13198, 15, 970, 131, 2155.00, 1, 1),
(13199, 15, 970, 132, 15944.00, 1, 1),
(13200, 15, 970, 133, 10462.00, 1, 1),
(13201, 15, 970, 134, 13.00, 1, 1),
(13202, 15, 970, 135, 2248.00, 1, 1),
(13203, 15, 970, 136, 955.00, 1, 1),
(13204, 15, 971, 126, 122.00, 1, 1),
(13205, 15, 971, 127, 312.00, 1, 1),
(13206, 15, 971, 128, 242150.00, 1, 1),
(13207, 15, 971, 129, 8.00, 1, 1),
(13208, 15, 971, 130, 9.00, 1, 1),
(13209, 15, 971, 131, 12511.00, 1, 1),
(13210, 15, 971, 132, 6522.00, 1, 1),
(13211, 15, 971, 133, 4121.00, 1, 1),
(13212, 15, 971, 134, 11.00, 1, 1),
(13213, 15, 971, 135, 36051.00, 1, 1),
(13214, 15, 971, 136, 544.00, 1, 1),
(13215, 15, 972, 126, 6.00, 1, 1),
(13216, 15, 972, 127, 189.00, 1, 1),
(13217, 15, 972, 128, 289585.00, 1, 1),
(13218, 15, 972, 129, 3.00, 1, 1),
(13219, 15, 972, 130, 3.00, 1, 1),
(13220, 15, 972, 131, 8123.00, 1, 1),
(13221, 15, 972, 132, 41299.00, 1, 1),
(13222, 15, 972, 133, 12656.00, 1, 1),
(13223, 15, 972, 134, 0.00, 1, 1),
(13224, 15, 972, 135, 36564.00, 1, 1),
(13225, 15, 972, 136, 1202.00, 1, 1),
(13226, 15, 973, 126, 291.00, 1, 1),
(13227, 15, 973, 127, 6499.00, 1, 1),
(13228, 15, 973, 128, 232024.00, 1, 1),
(13229, 15, 973, 129, 71.00, 1, 1),
(13230, 15, 973, 130, 81.00, 1, 1),
(13231, 15, 973, 131, 27505.00, 1, 1),
(13232, 15, 973, 132, 41860.00, 1, 1),
(13233, 15, 973, 133, 31000.00, 1, 1),
(13234, 15, 973, 134, 0.00, 1, 1),
(13235, 15, 973, 135, 5980.00, 1, 1),
(13236, 15, 973, 136, 710.00, 1, 1),
(13237, 15, 974, 126, 273.00, 1, 1),
(13238, 15, 974, 127, 400.00, 1, 1),
(13239, 15, 974, 128, 245612.00, 1, 1),
(13240, 15, 974, 129, 72.00, 1, 1),
(13241, 15, 974, 130, 58.00, 1, 1),
(13242, 15, 974, 131, 6520.00, 1, 1),
(13243, 15, 974, 132, 38511.00, 0, 1),
(13244, 15, 974, 133, 32800.00, 0, 1),
(13245, 15, 974, 134, 0.00, 0, 1),
(13246, 15, 974, 135, 7400.00, 1, 1),
(13247, 15, 974, 136, 241.00, 0, 1),
(13248, 15, 975, 126, 0.00, 0, 1),
(13249, 15, 975, 127, 0.00, 0, 1),
(13250, 15, 975, 128, 999999.00, 1, 1),
(13251, 15, 975, 129, 0.00, 0, 1),
(13252, 15, 975, 130, 0.00, 0, 1),
(13253, 15, 975, 131, 0.00, 0, 1),
(13254, 15, 975, 132, 0.00, 0, 1),
(13255, 15, 975, 133, 0.00, 0, 1),
(13256, 15, 975, 134, 0.00, 0, 1),
(13257, 15, 975, 135, 0.00, 0, 1),
(13258, 15, 975, 136, 0.00, 0, 1),
(13259, 15, 975, 19, 0.00, 0, 1),
(13260, 15, 976, 126, 0.00, 0, 1),
(13261, 15, 976, 127, 0.00, 0, 1),
(13262, 15, 976, 128, 880000.00, 1, 1),
(13263, 15, 976, 129, 0.00, 0, 1),
(13264, 15, 976, 130, 0.00, 0, 1),
(13265, 15, 976, 131, 0.00, 0, 1),
(13266, 15, 976, 132, 0.00, 0, 1),
(13267, 15, 976, 133, 0.00, 0, 1),
(13268, 15, 976, 134, 0.00, 0, 1),
(13269, 15, 976, 135, 0.00, 0, 1),
(13270, 15, 976, 136, 0.00, 0, 1),
(13271, 15, 976, 19, 0.00, 0, 1),
(13272, 15, 977, 126, 10.00, 1, 1),
(13273, 15, 977, 127, 30.00, 1, 1),
(13274, 15, 977, 128, 280000.00, 1, 1),
(13275, 15, 977, 129, 0.00, 0, 1),
(13276, 15, 977, 130, 0.00, 0, 1),
(13277, 15, 977, 131, 0.00, 0, 1),
(13278, 15, 977, 132, 0.00, 0, 1),
(13279, 15, 977, 133, 0.00, 0, 1),
(13280, 15, 977, 134, 0.00, 0, 1),
(13281, 15, 977, 135, 0.00, 0, 1),
(13282, 15, 977, 136, 0.00, 0, 1),
(13283, 15, 977, 19, 0.00, 0, 1),
(13284, 15, 978, 126, 0.00, 0, 1),
(13285, 15, 978, 127, 0.00, 0, 1),
(13286, 15, 978, 128, 0.00, 0, 1),
(13287, 15, 978, 129, 0.00, 0, 1),
(13288, 15, 978, 130, 0.00, 0, 1),
(13289, 15, 978, 131, 0.00, 0, 1),
(13290, 15, 978, 132, 0.00, 0, 1),
(13291, 15, 978, 133, 0.00, 0, 1),
(13292, 15, 978, 134, 0.00, 0, 1),
(13293, 15, 978, 135, 0.00, 0, 1),
(13294, 15, 978, 136, 0.00, 0, 1),
(13295, 15, 978, 19, 0.00, 0, 1),
(13296, 15, 979, 126, 0.00, 0, 1),
(13297, 15, 979, 127, 0.00, 0, 1),
(13298, 15, 979, 128, 0.00, 0, 1),
(13299, 15, 979, 129, 0.00, 0, 1),
(13300, 15, 979, 130, 0.00, 0, 1),
(13301, 15, 979, 131, 0.00, 0, 1),
(13302, 15, 979, 132, 0.00, 0, 1),
(13303, 15, 979, 133, 0.00, 0, 1),
(13304, 15, 979, 134, 0.00, 0, 1),
(13305, 15, 979, 135, 0.00, 0, 1),
(13306, 15, 979, 136, 0.00, 0, 1),
(13307, 15, 979, 19, 0.00, 0, 1),
(13308, 15, 980, 126, 71.00, 1, 1),
(13309, 15, 980, 127, 627.00, 1, 1),
(13310, 15, 980, 128, 189241.00, 1, 1),
(13311, 15, 980, 129, 8.00, 1, 1),
(13312, 15, 980, 130, 18.00, 1, 1),
(13313, 15, 980, 131, 0.00, 1, 1),
(13314, 15, 980, 132, 122511.00, 1, 1),
(13315, 15, 980, 133, 42415.00, 1, 1),
(13316, 15, 980, 134, 0.00, 1, 1),
(13317, 15, 980, 135, 6100.00, 1, 1),
(13318, 15, 980, 136, 0.00, 1, 1),
(13319, 15, 981, 126, 69.00, 1, 1),
(13320, 15, 981, 127, 677.00, 1, 1),
(13321, 15, 981, 128, 194233.00, 1, 1),
(13322, 15, 981, 129, 3.00, 1, 1),
(13323, 15, 981, 130, 8.00, 1, 1),
(13324, 15, 981, 131, 0.00, 1, 1),
(13325, 15, 981, 132, 101343.00, 1, 1),
(13326, 15, 981, 133, 12255.00, 1, 1),
(13327, 15, 981, 134, 0.00, 1, 1),
(13328, 15, 981, 135, 6454.00, 1, 1),
(13329, 15, 981, 136, 0.00, 1, 1),
(13330, 15, 982, 126, 22.00, 1, 1),
(13331, 15, 982, 127, 181.00, 1, 1),
(13332, 15, 982, 128, 215366.00, 1, 1),
(13333, 15, 982, 129, 0.00, 1, 1),
(13334, 15, 982, 130, 0.00, 1, 1),
(13335, 15, 982, 131, 2688.00, 1, 1),
(13336, 15, 982, 132, 168585.00, 1, 1),
(13337, 15, 982, 133, 3577.00, 1, 1),
(13338, 15, 982, 134, 0.00, 1, 1),
(13339, 15, 982, 135, 12842.00, 1, 1),
(13340, 15, 982, 136, 0.00, 1, 1),
(13341, 15, 983, 126, 0.00, 1, 1),
(13342, 15, 983, 127, 194.00, 1, 1),
(13343, 15, 983, 128, 243518.00, 1, 1),
(13344, 15, 983, 129, 0.00, 1, 1),
(13345, 15, 983, 130, 0.00, 1, 1),
(13346, 15, 983, 131, 8175.00, 1, 1),
(13347, 15, 983, 132, 168552.00, 0, 1),
(13348, 15, 983, 133, 65885.00, 1, 1),
(13349, 15, 983, 134, 0.00, 1, 1),
(13350, 15, 983, 135, 93775.00, 1, 1),
(13351, 15, 983, 136, 0.00, 1, 1),
(13352, 15, 984, 126, 18.00, 1, 1),
(13353, 15, 984, 127, 94.00, 1, 1),
(13354, 15, 984, 128, 122664.00, 1, 1),
(13355, 15, 984, 129, 3.00, 1, 1),
(13356, 15, 984, 130, 4.10, 1, 1),
(13357, 15, 984, 131, 12450.00, 1, 1),
(13358, 15, 984, 132, 18227.00, 1, 1),
(13359, 15, 984, 133, 14952.00, 1, 1),
(13360, 15, 984, 134, 0.00, 1, 1),
(13361, 15, 984, 135, 71210.00, 1, 1),
(13362, 15, 984, 136, 13.00, 1, 1),
(13363, 15, 985, 126, 25.33, 1, 1),
(13364, 15, 985, 127, 644.00, 1, 1),
(13365, 15, 985, 128, 175889.00, 1, 1),
(13366, 15, 985, 129, 3.00, 1, 1),
(13367, 15, 985, 130, 8.00, 1, 1),
(13368, 15, 985, 131, 24550.00, 1, 1),
(13369, 15, 985, 132, 41600.00, 1, 1),
(13370, 15, 985, 133, 36280.00, 1, 1),
(13371, 15, 985, 134, 0.00, 1, 1),
(13372, 15, 985, 135, 12865.00, 1, 1),
(13373, 15, 985, 136, 433.00, 1, 1),
(13374, 15, 986, 126, 11.00, 1, 1),
(13375, 15, 986, 127, 404.00, 1, 1),
(13376, 15, 986, 128, 188000.00, 1, 1),
(13377, 15, 986, 129, 3.00, 1, 1),
(13378, 15, 986, 130, 7.00, 1, 1),
(13379, 15, 986, 131, 21122.00, 1, 1),
(13380, 15, 986, 132, 34522.00, 0, 1),
(13381, 15, 986, 133, 27800.00, 0, 1),
(13382, 15, 986, 134, 0.00, 1, 1),
(13383, 15, 986, 135, 3895.00, 1, 1),
(13384, 15, 986, 136, 271.00, 0, 1),
(13385, 15, 987, 54, 0.00, 1, 1),
(13386, 15, 987, 55, 0.00, 1, 1),
(13387, 15, 987, 56, 3000.00, 1, 1),
(13388, 15, 987, 57, 0.00, 1, 1),
(13389, 15, 987, 59, 5000000.00, 1, 1),
(13390, 15, 987, 60, 10000.00, 1, 1),
(13391, 15, 987, 61, 5000.00, 1, 1),
(13392, 15, 987, 62, 0.00, 1, 1),
(13393, 15, 987, 63, 430000.00, 1, 1),
(13394, 15, 987, 65, 4000.00, 1, 1),
(13395, 15, 987, 126, 672.00, 1, 1),
(13396, 15, 987, 127, 112.00, 1, 1),
(13397, 15, 987, 128, 350000.00, 1, 1),
(13398, 15, 987, 129, 0.00, 1, 1),
(13399, 15, 987, 130, 0.00, 1, 1),
(13400, 15, 987, 131, 0.00, 1, 1),
(13401, 15, 987, 132, 0.00, 1, 1),
(13402, 15, 987, 133, 0.00, 1, 1),
(13403, 15, 987, 134, 0.00, 1, 1),
(13404, 15, 987, 135, 0.00, 1, 1),
(13405, 15, 987, 136, 0.00, 1, 1),
(13406, 15, 988, 126, 8.00, 1, 1),
(13407, 15, 988, 127, 86.00, 1, 1),
(13408, 15, 988, 128, 158223.00, 1, 1),
(13409, 15, 988, 129, 1.00, 1, 1),
(13410, 15, 988, 130, 1.00, 1, 1),
(13411, 15, 988, 131, 86211.00, 1, 1),
(13412, 15, 988, 132, 17118.00, 1, 1),
(13413, 15, 988, 133, 15827.00, 1, 1),
(13414, 15, 988, 134, 0.00, 1, 1),
(13415, 15, 988, 135, 91628.00, 1, 1),
(13416, 15, 988, 136, 2.00, 1, 1),
(13417, 15, 989, 126, 133.00, 1, 1),
(13418, 15, 989, 127, 2311.00, 1, 1),
(13419, 15, 989, 128, 317172.00, 1, 1),
(13420, 15, 989, 129, 6.00, 1, 1),
(13421, 15, 989, 130, 19.00, 1, 1),
(13422, 15, 989, 131, 3188.00, 1, 1),
(13423, 15, 989, 132, 112738.00, 1, 1),
(13424, 15, 989, 133, 1772.00, 1, 1),
(13425, 15, 989, 134, 0.00, 1, 1),
(13426, 15, 989, 135, 411.00, 1, 1),
(13427, 15, 989, 136, 6.00, 1, 1),
(13428, 15, 990, 126, 0.40, 1, 1),
(13429, 15, 990, 127, 16.00, 1, 1),
(13430, 15, 990, 128, 114288.00, 1, 1),
(13431, 15, 990, 129, 0.04, 1, 1),
(13432, 15, 990, 130, 0.02, 1, 1),
(13433, 15, 990, 131, 31415.00, 1, 1),
(13434, 15, 990, 132, 16455.00, 1, 1),
(13435, 15, 990, 133, 12788.00, 1, 1),
(13436, 15, 990, 134, 0.00, 0, 1),
(13437, 15, 990, 135, 498650.00, 1, 1),
(13438, 15, 990, 136, 0.00, 0, 1),
(13439, 15, 990, 137, 300122.00, 1, 1),
(13440, 15, 991, 126, 2.31, 1, 1),
(13441, 15, 991, 127, 18.00, 1, 1),
(13442, 15, 991, 128, 61447.00, 1, 1),
(13443, 15, 991, 129, 0.54, 1, 1),
(13444, 15, 991, 130, 0.12, 1, 1),
(13445, 15, 991, 131, 214461.00, 1, 1),
(13446, 15, 991, 132, 18554.00, 1, 1),
(13447, 15, 991, 133, 16486.00, 1, 1),
(13448, 15, 991, 134, 1.00, 1, 1),
(13449, 15, 991, 135, 444215.00, 1, 1),
(13450, 15, 991, 136, 0.00, 1, 1),
(13451, 15, 991, 137, 320000.00, 0, 1),
(13452, 1, 102, 112, 0.00, 0, 1),
(13453, 1, 103, 112, 0.00, 0, 1),
(13454, 1, 104, 112, 0.00, 0, 1),
(13455, 15, 992, 126, 0.03, 1, 1),
(13456, 15, 992, 127, 5.10, 1, 1),
(13457, 15, 992, 128, 72544.00, 1, 1),
(13458, 15, 992, 129, 0.00, 0, 1),
(13459, 15, 992, 130, 0.00, 0, 1),
(13460, 15, 992, 131, 0.00, 0, 1),
(13461, 15, 992, 135, 12655.00, 1, 1),
(13462, 15, 992, 137, 732541.00, 1, 1),
(13463, 15, 993, 126, 0.03, 0, 1),
(13464, 15, 993, 127, 6.00, 0, 1),
(13465, 15, 993, 128, 72546.00, 0, 1),
(13466, 15, 993, 129, 0.00, 0, 1),
(13467, 15, 993, 130, 0.00, 0, 1),
(13468, 15, 993, 131, 0.00, 0, 1),
(13469, 15, 993, 135, 101254.00, 1, 1),
(13470, 15, 993, 137, 812240.00, 1, 1),
(13471, 15, 994, 126, 0.08, 1, 1),
(13472, 15, 994, 127, 7.10, 1, 1),
(13473, 15, 994, 128, 84881.00, 1, 1),
(13474, 15, 994, 129, 0.00, 0, 1),
(13475, 15, 994, 130, 0.00, 0, 1),
(13476, 15, 994, 131, 1551.00, 1, 1),
(13477, 15, 994, 135, 325511.00, 1, 1),
(13478, 15, 994, 137, 688544.00, 1, 1),
(13479, 11, 995, 77, 0.05, 1, 1),
(13480, 11, 995, 78, 0.50, 1, 1),
(13481, 11, 995, 79, 96000.00, 1, 1),
(13482, 11, 995, 80, 0.00, 0, 1),
(13483, 11, 995, 81, 0.00, 0, 1),
(13484, 11, 995, 82, 3300.00, 1, 1),
(13485, 11, 995, 86, 12220.00, 1, 1),
(13486, 11, 995, 122, 648552.00, 1, 1),
(13487, 11, 996, 77, 0.01, 1, 1),
(13488, 11, 996, 78, 0.10, 1, 1),
(13489, 11, 996, 79, 31360.00, 1, 1),
(13490, 11, 996, 80, 0.00, 0, 1),
(13491, 11, 996, 81, 0.00, 0, 1),
(13492, 11, 996, 82, 0.00, 0, 1),
(13493, 11, 996, 86, 210500.00, 1, 1),
(13494, 11, 996, 122, 695252.00, 1, 1),
(13495, 11, 999, 77, 0.00, 0, 1),
(13496, 11, 999, 78, 0.00, 0, 1),
(13497, 11, 999, 79, 0.00, 0, 1),
(13498, 11, 999, 80, 0.00, 0, 1),
(13499, 11, 999, 81, 0.00, 0, 1),
(13500, 11, 999, 82, 0.00, 0, 1),
(13501, 11, 999, 86, 0.00, 0, 1),
(13502, 11, 999, 122, 2000000.00, 1, 1),
(13503, 11, 1000, 77, 0.00, 0, 1),
(13504, 11, 1000, 78, 0.00, 0, 1),
(13505, 11, 1000, 79, 0.00, 0, 1),
(13506, 11, 1000, 80, 0.00, 0, 1),
(13507, 11, 1000, 81, 0.00, 0, 1),
(13508, 11, 1000, 82, 0.00, 0, 1),
(13509, 11, 1000, 86, 0.00, 0, 1),
(13510, 11, 1000, 122, 2500000.00, 1, 1),
(13511, 11, 1001, 77, 0.00, 0, 1),
(13512, 11, 1001, 78, 0.00, 0, 1),
(13513, 11, 1001, 79, 0.00, 0, 1),
(13514, 11, 1001, 80, 0.00, 0, 1),
(13515, 11, 1001, 81, 0.00, 0, 1),
(13516, 11, 1001, 82, 0.00, 0, 1),
(13517, 11, 1001, 86, 0.00, 0, 1),
(13518, 11, 1001, 122, 0.00, 0, 1),
(13519, 11, 1002, 77, 0.00, 0, 1),
(13520, 11, 1002, 78, 300.00, 1, 1),
(13521, 11, 1002, 79, 0.00, 0, 1),
(13522, 11, 1002, 80, 0.00, 0, 1),
(13523, 11, 1002, 81, 0.00, 0, 1),
(13524, 11, 1002, 82, 0.00, 0, 1),
(13525, 11, 1002, 86, 0.00, 0, 1),
(13526, 11, 1002, 122, 999700.00, 1, 1),
(13527, 11, 1003, 77, 88.00, 1, 1),
(13528, 11, 1003, 78, 253.00, 1, 1),
(13529, 11, 1003, 79, 198665.00, 1, 1),
(13530, 11, 1003, 80, 23.00, 1, 1),
(13531, 11, 1003, 81, 14.00, 1, 1),
(13532, 11, 1003, 82, 3225.00, 1, 1),
(13533, 11, 1003, 86, 1658.00, 1, 1),
(13534, 11, 1003, 122, 0.00, 0, 1),
(13535, 11, 1004, 77, 15.00, 1, 1),
(13536, 11, 1004, 78, 118.00, 1, 1),
(13537, 11, 1004, 79, 149554.00, 1, 1),
(13538, 11, 1004, 80, 3.00, 1, 1),
(13539, 11, 1004, 81, 1.50, 1, 1),
(13540, 11, 1004, 82, 0.00, 0, 1),
(13541, 11, 1004, 86, 110.00, 0, 1),
(13542, 11, 1004, 122, 0.00, 0, 1),
(13543, 11, 1005, 77, 0.00, 0, 1),
(13544, 11, 1005, 78, 0.00, 0, 1),
(13545, 11, 1005, 79, 0.00, 0, 1),
(13546, 11, 1005, 80, 0.00, 0, 1),
(13547, 11, 1005, 81, 0.00, 0, 1),
(13548, 11, 1005, 82, 0.00, 0, 1),
(13549, 11, 1005, 86, 0.00, 0, 1),
(13550, 11, 1005, 122, 1000000.00, 1, 1),
(13551, 11, 1006, 77, 0.00, 0, 1),
(13552, 11, 1006, 78, 0.00, 0, 1),
(13553, 11, 1006, 79, 0.00, 0, 1),
(13554, 11, 1006, 80, 0.00, 0, 1),
(13555, 11, 1006, 81, 0.00, 0, 1),
(13556, 11, 1006, 82, 0.00, 0, 1),
(13557, 11, 1006, 86, 0.00, 0, 1),
(13558, 11, 1006, 122, 1000000.00, 1, 1),
(13559, 15, 1007, 126, 0.00, 0, 1),
(13560, 15, 1007, 127, 0.00, 0, 1),
(13561, 15, 1007, 128, 0.00, 0, 1),
(13562, 15, 1007, 129, 0.00, 0, 1),
(13563, 15, 1007, 130, 0.00, 0, 1),
(13564, 15, 1007, 131, 0.00, 0, 1),
(13565, 15, 1007, 135, 0.00, 0, 1),
(13566, 15, 1007, 137, 1000000.00, 1, 1),
(13567, 15, 1008, 126, 0.00, 0, 1),
(13568, 15, 1008, 127, 0.00, 0, 1),
(13569, 15, 1008, 128, 0.00, 0, 1),
(13570, 15, 1008, 129, 0.00, 0, 1),
(13571, 15, 1008, 130, 0.00, 0, 1),
(13572, 15, 1008, 131, 0.00, 0, 1),
(13573, 15, 1008, 135, 0.00, 0, 1),
(13574, 15, 1008, 137, 1000000.00, 1, 1),
(13575, 15, 1009, 126, 0.00, 0, 1),
(13576, 15, 1009, 127, 1000.00, 1, 1),
(13577, 15, 1009, 128, 0.00, 0, 1),
(13578, 15, 1009, 129, 0.00, 0, 1),
(13579, 15, 1009, 130, 0.00, 0, 1),
(13580, 15, 1009, 131, 0.00, 0, 1),
(13581, 15, 1009, 135, 0.00, 0, 1),
(13582, 15, 1009, 137, 999999.00, 1, 1),
(13583, 15, 1010, 126, 0.00, 0, 1),
(13584, 15, 1010, 127, 0.00, 0, 1),
(13585, 15, 1010, 128, 0.00, 0, 1),
(13586, 15, 1010, 129, 0.00, 0, 1),
(13587, 15, 1010, 130, 0.00, 0, 1),
(13588, 15, 1010, 131, 0.00, 0, 1),
(13589, 15, 1010, 135, 0.00, 0, 1),
(13590, 15, 1010, 137, 0.00, 0, 1),
(13591, 15, 1011, 126, 136.00, 1, 1),
(13592, 15, 1011, 127, 1244.00, 1, 1),
(13593, 15, 1011, 128, 26225.00, 1, 1),
(13594, 15, 1011, 129, 3.00, 1, 1),
(13595, 15, 1011, 130, 3.20, 1, 1),
(13596, 15, 1011, 131, 13.00, 1, 1),
(13597, 15, 1011, 135, 1120.00, 1, 1),
(13598, 15, 1011, 137, 0.00, 0, 1),
(13599, 11, 1012, 77, 0.00, 0, 1),
(13600, 11, 1012, 78, 0.00, 0, 1),
(13601, 11, 1012, 79, 700000.00, 1, 1),
(13602, 11, 1012, 80, 0.00, 0, 1),
(13603, 11, 1012, 81, 0.00, 0, 1),
(13604, 11, 1012, 82, 0.00, 0, 1),
(13605, 11, 1012, 86, 0.00, 0, 1),
(13606, 11, 1012, 122, 0.00, 0, 1),
(13607, 15, 1013, 126, 0.00, 0, 1),
(13608, 15, 1013, 127, 0.00, 0, 1),
(13609, 15, 1013, 128, 0.00, 0, 1),
(13610, 15, 1013, 129, 0.00, 0, 1),
(13611, 15, 1013, 130, 0.00, 0, 1),
(13612, 15, 1013, 131, 0.00, 0, 1),
(13613, 15, 1013, 135, 0.00, 0, 1),
(13614, 15, 1013, 137, 0.00, 0, 1),
(13615, 15, 1014, 126, 0.00, 0, 1),
(13616, 15, 1014, 127, 0.00, 0, 1),
(13617, 15, 1014, 128, 240000.00, 1, 1),
(13618, 15, 1014, 129, 0.00, 0, 1),
(13619, 15, 1014, 130, 0.00, 0, 1),
(13620, 15, 1014, 131, 0.00, 0, 1),
(13621, 15, 1014, 135, 0.00, 0, 1),
(13622, 15, 1014, 137, 0.00, 0, 1),
(13623, 15, 1015, 126, 0.00, 0, 1),
(13624, 15, 1015, 127, 0.00, 0, 1),
(13625, 15, 1015, 128, 0.00, 0, 1),
(13626, 15, 1015, 129, 0.00, 0, 1),
(13627, 15, 1015, 130, 0.00, 0, 1),
(13628, 15, 1015, 131, 0.00, 0, 1),
(13629, 15, 1015, 135, 0.00, 0, 1),
(13630, 15, 1015, 137, 0.00, 0, 1),
(13631, 15, 1016, 126, 0.00, 0, 1),
(13632, 15, 1016, 127, 0.00, 0, 1),
(13633, 15, 1016, 128, 0.00, 0, 1),
(13634, 15, 1016, 129, 0.00, 0, 1),
(13635, 15, 1016, 130, 0.00, 0, 1),
(13636, 15, 1016, 131, 0.00, 0, 1),
(13637, 15, 1016, 135, 0.00, 0, 1),
(13638, 15, 1016, 137, 0.00, 0, 1),
(13639, 15, 1017, 126, 0.00, 0, 1),
(13640, 15, 1017, 127, 0.00, 0, 1),
(13641, 15, 1017, 128, 0.00, 0, 1),
(13642, 15, 1017, 129, 0.00, 0, 1),
(13643, 15, 1017, 130, 0.00, 0, 1),
(13644, 15, 1017, 131, 0.00, 0, 1),
(13645, 15, 1017, 135, 0.00, 0, 1),
(13646, 15, 1017, 137, 0.00, 0, 1),
(13647, 15, 1018, 126, 0.00, 0, 1),
(13648, 15, 1018, 127, 0.00, 0, 1),
(13649, 15, 1018, 128, 0.00, 0, 1),
(13650, 15, 1018, 129, 0.00, 0, 1),
(13651, 15, 1018, 130, 0.00, 0, 1),
(13652, 15, 1018, 131, 0.00, 0, 1),
(13653, 15, 1018, 135, 0.00, 0, 1),
(13654, 15, 1018, 137, 0.00, 0, 1),
(13655, 1, 111, 112, 0.00, 0, 1),
(13656, 1, 112, 112, 0.00, 0, 1),
(13657, 1, 113, 112, 0.00, 0, 1),
(13658, 1, 114, 112, 0.00, 0, 1),
(13659, 15, 1019, 126, 21.00, 1, 1),
(13660, 15, 1019, 127, 46.00, 1, 1),
(13661, 15, 1019, 128, 223211.00, 1, 1),
(13662, 15, 1019, 129, 0.00, 0, 1),
(13663, 15, 1019, 130, 0.00, 0, 1),
(13664, 15, 1019, 131, 0.00, 0, 1),
(13665, 15, 1019, 135, 0.00, 0, 1),
(13666, 15, 1019, 137, 0.00, 0, 1),
(13667, 15, 1020, 126, 0.00, 0, 1),
(13668, 15, 1020, 127, 0.00, 0, 1),
(13669, 15, 1020, 128, 598090.00, 1, 1),
(13670, 15, 1020, 129, 0.00, 0, 1),
(13671, 15, 1020, 130, 0.00, 0, 1),
(13672, 15, 1020, 131, 0.00, 0, 1),
(13673, 15, 1020, 135, 0.00, 0, 1),
(13674, 15, 1020, 137, 0.00, 0, 1),
(13675, 15, 1021, 126, 0.00, 0, 1),
(13676, 15, 1021, 127, 0.00, 0, 1),
(13677, 15, 1021, 128, 0.00, 0, 1),
(13678, 15, 1021, 129, 0.00, 0, 1),
(13679, 15, 1021, 130, 0.00, 0, 1),
(13680, 15, 1021, 131, 0.00, 0, 1),
(13681, 15, 1021, 135, 0.00, 0, 1),
(13682, 15, 1021, 137, 0.00, 0, 1),
(13683, 15, 1022, 126, 0.00, 0, 1),
(13684, 15, 1022, 127, 0.00, 0, 1),
(13685, 15, 1022, 128, 0.00, 0, 1),
(13686, 15, 1022, 129, 0.00, 0, 1),
(13687, 15, 1022, 130, 0.00, 0, 1),
(13688, 15, 1022, 131, 0.00, 0, 1),
(13689, 15, 1022, 135, 0.00, 0, 1),
(13690, 15, 1022, 137, 0.00, 0, 1),
(13691, 15, 1023, 126, 0.00, 0, 1),
(13692, 15, 1023, 127, 0.00, 0, 1),
(13693, 15, 1023, 128, 30.00, 1, 1),
(13694, 15, 1023, 129, 0.00, 0, 1),
(13695, 15, 1023, 130, 0.00, 0, 1),
(13696, 15, 1023, 131, 0.00, 0, 1),
(13697, 15, 1023, 135, 0.00, 0, 1),
(13698, 15, 1023, 137, 0.00, 0, 1),
(13699, 16, 1024, 138, 32.51, 1, 1),
(13700, 16, 1024, 140, 320000.00, 1, 1),
(13701, 16, 1024, 141, 5.00, 0, 1),
(13702, 16, 1024, 139, 400.00, 1, 1),
(13703, 16, 1024, 7, 0.00, 0, 1),
(13704, 16, 1024, 8, 0.00, 0, 1),
(13705, 16, 1024, 9, 0.00, 0, 1),
(13706, 16, 1024, 10, 0.00, 0, 1),
(13707, 16, 1024, 11, 0.00, 0, 1),
(13708, 16, 1024, 142, 0.00, 0, 1),
(13709, 16, 1024, 143, 0.00, 0, 1),
(13710, 16, 1024, 144, 0.00, 0, 1),
(13711, 16, 1024, 145, 0.00, 0, 1),
(13712, 16, 1025, 138, 60.00, 1, 1),
(13713, 16, 1025, 140, 251600.00, 1, 1),
(13714, 16, 1025, 141, 10.00, 1, 1),
(13715, 16, 1025, 139, 18000.00, 1, 1),
(13716, 16, 1025, 7, 0.00, 0, 1),
(13717, 16, 1025, 8, 0.00, 0, 1),
(13718, 16, 1025, 9, 0.00, 0, 1),
(13719, 16, 1025, 10, 0.00, 0, 1),
(13720, 16, 1025, 11, 0.00, 0, 1),
(13721, 16, 1025, 142, 100.00, 1, 1),
(13722, 16, 1025, 143, 0.00, 0, 1),
(13723, 16, 1025, 144, 0.00, 0, 1),
(13724, 16, 1025, 145, 0.00, 0, 1),
(13725, 16, 1026, 138, 300.00, 1, 1),
(13726, 16, 1026, 140, 600000.00, 1, 1),
(13727, 16, 1026, 141, 1.00, 0, 1),
(13728, 16, 1026, 139, 1500.00, 0, 1),
(13729, 16, 1026, 7, 0.00, 0, 1),
(13730, 16, 1026, 8, 0.00, 0, 1),
(13731, 16, 1026, 9, 0.00, 0, 1),
(13732, 16, 1026, 10, 0.00, 0, 1),
(13733, 16, 1026, 11, 0.00, 0, 1),
(13734, 16, 1026, 142, 0.00, 0, 1),
(13735, 16, 1026, 143, 0.00, 0, 1),
(13736, 16, 1026, 144, 0.00, 0, 1),
(13737, 16, 1026, 145, 0.00, 0, 1),
(13738, 16, 1027, 138, 0.00, 1, 1),
(13739, 16, 1027, 140, 0.00, 0, 1),
(13740, 16, 1027, 141, 0.00, 0, 1),
(13741, 16, 1027, 139, 0.00, 1, 1),
(13742, 16, 1027, 7, 0.00, 0, 1),
(13743, 16, 1027, 8, 0.00, 0, 1),
(13744, 16, 1027, 9, 0.00, 0, 1),
(13745, 16, 1027, 10, 0.00, 0, 1),
(13746, 16, 1027, 11, 0.00, 0, 1),
(13747, 16, 1027, 142, 0.00, 0, 1),
(13748, 16, 1027, 143, 0.00, 0, 1),
(13749, 16, 1027, 144, 0.00, 1, 1),
(13750, 16, 1027, 145, 0.00, 1, 1),
(13751, 16, 1028, 138, 0.00, 0, 1),
(13752, 16, 1028, 140, 0.00, 0, 1),
(13753, 16, 1028, 141, 0.00, 0, 1),
(13754, 16, 1028, 139, 0.00, 0, 1),
(13755, 16, 1028, 7, 0.00, 0, 1),
(13756, 16, 1028, 8, 0.00, 0, 1),
(13757, 16, 1028, 9, 0.00, 0, 1),
(13758, 16, 1028, 10, 0.00, 0, 1),
(13759, 16, 1028, 11, 0.00, 0, 1),
(13760, 16, 1028, 142, 0.00, 0, 1),
(13761, 16, 1028, 143, 0.00, 0, 1),
(13762, 16, 1028, 144, 0.00, 0, 1),
(13763, 16, 1028, 145, 0.00, 0, 1),
(13764, 16, 1029, 138, 40.00, 1, 1),
(13765, 16, 1029, 140, 270000.00, 1, 1),
(13766, 16, 1029, 141, 0.00, 0, 1),
(13767, 16, 1029, 139, 950.00, 1, 1),
(13768, 16, 1029, 7, 0.00, 0, 1),
(13769, 16, 1029, 8, 0.00, 0, 1),
(13770, 16, 1029, 9, 0.00, 0, 1),
(13771, 16, 1029, 10, 0.00, 0, 1),
(13772, 16, 1029, 11, 0.00, 0, 1),
(13773, 16, 1029, 142, 0.00, 0, 1),
(13774, 16, 1029, 143, 0.00, 0, 1),
(13775, 16, 1029, 144, 0.00, 0, 1),
(13776, 16, 1029, 145, 0.00, 0, 1),
(13777, 16, 1030, 138, 60.00, 1, 1),
(13778, 16, 1030, 140, 244787.00, 1, 1),
(13779, 16, 1030, 141, 5.00, 1, 1),
(13780, 16, 1030, 139, 300.00, 1, 1),
(13781, 16, 1030, 7, 0.00, 0, 1),
(13782, 16, 1030, 8, 0.00, 0, 1),
(13783, 16, 1030, 9, 0.00, 0, 1),
(13784, 16, 1030, 10, 0.00, 0, 1),
(13785, 16, 1030, 11, 0.00, 0, 1),
(13786, 16, 1030, 142, 5.00, 1, 1),
(13787, 16, 1030, 143, 0.00, 0, 1),
(13788, 16, 1030, 144, 0.00, 0, 1),
(13789, 16, 1030, 145, 0.00, 0, 1),
(13790, 16, 1031, 138, 0.00, 0, 1),
(13791, 16, 1031, 139, 200000.00, 1, 1),
(13792, 16, 1031, 140, 200000.00, 1, 1),
(13793, 16, 1031, 141, 0.00, 0, 1),
(13794, 16, 1031, 7, 0.00, 0, 1),
(13795, 16, 1031, 8, 10000.00, 1, 1),
(13796, 16, 1031, 9, 0.00, 0, 1),
(13797, 16, 1031, 10, 0.00, 0, 1),
(13798, 16, 1031, 11, 0.00, 0, 1),
(13799, 16, 1031, 142, 40000.00, 1, 1),
(13800, 16, 1031, 143, 0.00, 0, 1),
(13801, 16, 1031, 144, 0.00, 0, 1),
(13802, 16, 1031, 145, 0.00, 0, 1),
(13803, 16, 1032, 138, 0.00, 1, 1),
(13804, 16, 1032, 139, 10000.00, 1, 1),
(13805, 16, 1032, 140, 0.00, 0, 1),
(13806, 16, 1032, 141, 20000.00, 1, 1),
(13807, 16, 1032, 7, 0.00, 0, 1),
(13808, 16, 1032, 8, 0.00, 0, 1),
(13809, 16, 1032, 9, 0.00, 0, 1),
(13810, 16, 1032, 10, 0.00, 0, 1),
(13811, 16, 1032, 11, 0.00, 0, 1),
(13812, 16, 1032, 142, 0.00, 0, 1),
(13813, 16, 1032, 143, 0.00, 0, 1),
(13814, 16, 1032, 144, 0.00, 0, 1),
(13815, 16, 1032, 145, 0.00, 0, 1),
(13816, 16, 1032, 138, 0.00, 1, 1),
(13817, 16, 1032, 139, 350.00, 1, 1),
(13818, 16, 1032, 140, 100.00, 1, 1),
(13819, 16, 1032, 141, 450.00, 1, 1),
(13820, 16, 1032, 7, 100.00, 1, 1),
(13821, 16, 1032, 8, 0.00, 0, 1),
(13822, 16, 1032, 9, 0.00, 0, 1),
(13823, 16, 1032, 10, 0.00, 0, 1),
(13824, 16, 1032, 11, 0.00, 0, 1),
(13825, 16, 1032, 142, 0.00, 0, 1),
(13826, 16, 1032, 143, 0.00, 0, 1),
(13827, 16, 1032, 144, 0.00, 0, 1),
(13828, 16, 1032, 145, 0.00, 0, 1),
(13829, 16, 1033, 138, 0.00, 0, 1),
(13830, 16, 1033, 139, 350000.00, 1, 1),
(13831, 16, 1033, 140, 100000.00, 0, 1),
(13832, 16, 1033, 141, 0.00, 0, 1),
(13833, 16, 1033, 7, 100000.00, 0, 1),
(13834, 16, 1033, 8, 0.00, 0, 1),
(13835, 16, 1033, 9, 450000.00, 0, 1),
(13836, 16, 1033, 10, 0.00, 0, 1),
(13837, 16, 1033, 11, 0.00, 0, 1),
(13838, 16, 1033, 142, 0.00, 0, 1),
(13839, 16, 1033, 143, 0.00, 0, 1),
(13840, 16, 1033, 144, 0.00, 0, 1),
(13841, 16, 1033, 145, 0.00, 0, 1),
(13842, 16, 1034, 138, 0.00, 0, 1),
(13843, 16, 1034, 139, 0.00, 0, 1),
(13844, 16, 1034, 140, 320000.00, 1, 1),
(13845, 16, 1034, 141, 0.00, 0, 1),
(13846, 16, 1034, 7, 680000.00, 0, 1),
(13847, 16, 1034, 8, 0.00, 0, 1),
(13848, 16, 1034, 9, 0.00, 0, 1),
(13849, 16, 1034, 10, 0.00, 0, 1),
(13850, 16, 1034, 11, 0.00, 0, 1),
(13851, 16, 1034, 142, 0.00, 0, 1),
(13852, 16, 1034, 143, 0.00, 0, 1),
(13853, 16, 1034, 144, 0.00, 0, 1),
(13854, 16, 1034, 145, 0.00, 0, 1),
(13855, 16, 1035, 138, 450.00, 1, 1),
(13856, 16, 1035, 139, 0.00, 0, 1),
(13857, 16, 1035, 140, 250000.00, 1, 1),
(13858, 16, 1035, 141, 0.00, 0, 1),
(13859, 16, 1035, 7, 0.00, 0, 1),
(13860, 16, 1035, 8, 0.00, 0, 1),
(13861, 16, 1035, 9, 0.00, 0, 1),
(13862, 16, 1035, 10, 0.00, 0, 1),
(13863, 16, 1035, 11, 0.00, 0, 1),
(13864, 16, 1035, 142, 0.00, 0, 1),
(13865, 16, 1035, 143, 0.00, 0, 1),
(13866, 16, 1035, 144, 0.00, 1, 1),
(13867, 16, 1035, 145, 0.00, 0, 1),
(13868, 16, 1036, 138, 0.00, 0, 1),
(13869, 16, 1036, 139, 0.00, 0, 1),
(13870, 16, 1036, 140, 800000.00, 1, 1),
(13871, 16, 1036, 141, 0.00, 0, 1),
(13872, 16, 1036, 7, 0.00, 0, 1),
(13873, 16, 1036, 8, 0.00, 0, 1),
(13874, 16, 1036, 9, 0.00, 0, 1),
(13875, 16, 1036, 10, 0.00, 0, 1),
(13876, 16, 1036, 11, 0.00, 0, 1),
(13877, 16, 1036, 142, 0.00, 0, 1),
(13878, 16, 1036, 143, 0.00, 0, 1),
(13879, 16, 1036, 144, 0.00, 0, 1),
(13880, 16, 1036, 145, 0.00, 0, 1),
(13881, 16, 1037, 138, 0.00, 0, 1),
(13882, 16, 1037, 139, 0.00, 0, 1),
(13883, 16, 1037, 140, 0.00, 0, 1),
(13884, 16, 1037, 141, 0.00, 0, 1),
(13885, 16, 1037, 7, 100000.00, 1, 1),
(13886, 16, 1037, 8, 0.00, 0, 1),
(13887, 16, 1037, 9, 0.00, 0, 1),
(13888, 16, 1037, 10, 0.00, 0, 1),
(13889, 16, 1037, 11, 0.00, 0, 1),
(13890, 16, 1037, 142, 0.00, 0, 1),
(13891, 16, 1037, 143, 0.00, 0, 1),
(13892, 16, 1037, 144, 0.00, 0, 1),
(13893, 16, 1037, 145, 100000.00, 1, 1),
(13894, 16, 1038, 138, 0.00, 0, 1),
(13895, 16, 1038, 139, 0.00, 0, 1),
(13896, 16, 1038, 140, 950000.00, 1, 1),
(13897, 16, 1038, 141, 0.00, 0, 1),
(13898, 16, 1038, 7, 0.00, 0, 1),
(13899, 16, 1038, 8, 0.00, 0, 1),
(13900, 16, 1038, 9, 0.00, 0, 1),
(13901, 16, 1038, 10, 0.00, 0, 1),
(13902, 16, 1038, 11, 0.00, 0, 1),
(13903, 16, 1038, 142, 0.00, 0, 1),
(13904, 16, 1038, 143, 0.00, 0, 1),
(13905, 16, 1038, 144, 50000.00, 1, 1),
(13906, 16, 1038, 145, 0.00, 0, 1),
(13907, 16, 1039, 138, 0.00, 0, 1),
(13908, 16, 1039, 139, 0.00, 0, 1),
(13909, 16, 1039, 140, 0.00, 0, 1),
(13910, 16, 1039, 141, 0.00, 0, 1),
(13911, 16, 1039, 7, 0.00, 0, 1),
(13912, 16, 1039, 8, 999999.00, 1, 1),
(13913, 16, 1039, 9, 0.00, 0, 1),
(13914, 16, 1039, 10, 0.00, 0, 1),
(13915, 16, 1039, 11, 0.00, 0, 1),
(13916, 16, 1039, 142, 0.00, 0, 1),
(13917, 16, 1039, 143, 0.00, 0, 1),
(13918, 16, 1039, 144, 0.00, 0, 1),
(13919, 16, 1039, 145, 0.00, 0, 1),
(13920, 16, 1040, 138, 0.00, 0, 1),
(13921, 16, 1040, 139, 0.00, 0, 1),
(13922, 16, 1040, 140, 0.00, 0, 1),
(13923, 16, 1040, 141, 0.00, 0, 1),
(13924, 16, 1040, 7, 1000000.00, 1, 1),
(13925, 16, 1040, 8, 0.00, 0, 1),
(13926, 16, 1040, 9, 0.00, 0, 1),
(13927, 16, 1040, 10, 0.00, 0, 1),
(13928, 16, 1040, 11, 0.00, 0, 1),
(13929, 16, 1040, 142, 0.00, 0, 1),
(13930, 16, 1040, 143, 0.00, 0, 1),
(13931, 16, 1040, 144, 0.00, 0, 1),
(13932, 16, 1040, 145, 0.00, 0, 1),
(13933, 16, 1041, 138, 0.00, 0, 1),
(13934, 16, 1041, 139, 0.00, 0, 1),
(13935, 16, 1041, 140, 0.00, 0, 1),
(13936, 16, 1041, 141, 0.00, 0, 1),
(13937, 16, 1041, 7, 500000.00, 1, 1),
(13938, 16, 1041, 8, 0.00, 0, 1),
(13939, 16, 1041, 9, 0.00, 0, 1),
(13940, 16, 1041, 10, 0.00, 0, 1),
(13941, 16, 1041, 11, 0.00, 0, 1),
(13942, 16, 1041, 142, 0.00, 1, 1),
(13943, 16, 1041, 143, 0.00, 1, 1),
(13944, 16, 1041, 144, 0.00, 1, 1),
(13945, 16, 1041, 145, 0.00, 1, 1);
INSERT INTO `productdetail` (`id`, `userid`, `productid`, `itemid`, `weight`, `includeprice`, `status`) VALUES
(13946, 16, 1041, 146, 0.00, 0, 1),
(13947, 16, 1041, 147, 0.00, 0, 1),
(13948, 16, 1041, 148, 0.00, 0, 1),
(13949, 16, 1041, 19, 0.00, 0, 1),
(13950, 16, 1042, 138, 68.00, 1, 1),
(13951, 16, 1042, 139, 886.60, 1, 1),
(13952, 16, 1042, 140, 210020.00, 1, 1),
(13953, 16, 1042, 141, 12.00, 0, 1),
(13954, 16, 1042, 7, 749680.00, 1, 1),
(13955, 16, 1042, 8, 0.00, 0, 1),
(13956, 16, 1042, 9, 0.00, 0, 1),
(13957, 16, 1042, 10, 0.00, 0, 1),
(13958, 16, 1042, 11, 0.00, 0, 1),
(13959, 16, 1042, 142, 6.00, 0, 1),
(13960, 16, 1042, 143, 0.00, 0, 1),
(13961, 16, 1042, 144, 0.00, 0, 1),
(13962, 16, 1042, 145, 0.00, 0, 1),
(13963, 16, 1043, 138, 1000000.00, 1, 1),
(13964, 16, 1043, 139, 0.00, 0, 1),
(13965, 16, 1043, 140, 0.00, 0, 1),
(13966, 16, 1043, 141, 0.00, 0, 1),
(13967, 16, 1043, 7, 0.00, 0, 1),
(13968, 16, 1043, 8, 0.00, 0, 1),
(13969, 16, 1043, 9, 0.00, 0, 1),
(13970, 16, 1043, 10, 0.00, 0, 1),
(13971, 16, 1043, 11, 0.00, 0, 1),
(13972, 16, 1043, 142, 0.00, 0, 1),
(13973, 16, 1043, 143, 0.00, 0, 1),
(13974, 16, 1043, 144, 0.00, 0, 1),
(13975, 16, 1043, 145, 0.00, 0, 1),
(13976, 16, 1044, 138, 28.00, 1, 1),
(13977, 16, 1044, 139, 120.00, 1, 1),
(13978, 16, 1044, 140, 100000.00, 1, 1),
(13979, 16, 1044, 141, 3.00, 1, 1),
(13980, 16, 1044, 7, 768200.00, 0, 1),
(13981, 16, 1044, 8, 0.00, 0, 1),
(13982, 16, 1044, 9, 0.00, 0, 1),
(13983, 16, 1044, 10, 0.00, 0, 1),
(13984, 16, 1044, 11, 0.00, 0, 1),
(13985, 16, 1044, 142, 3.00, 1, 1),
(13986, 16, 1044, 143, 0.00, 0, 1),
(13987, 16, 1044, 144, 0.00, 0, 1),
(13988, 16, 1044, 145, 0.00, 0, 1),
(13989, 16, 1045, 138, 0.00, 0, 1),
(13990, 16, 1045, 139, 0.00, 0, 1),
(13991, 16, 1045, 140, 0.00, 0, 1),
(13992, 16, 1045, 141, 0.00, 0, 1),
(13993, 16, 1045, 7, 0.00, 0, 1),
(13994, 16, 1045, 8, 0.00, 0, 1),
(13995, 16, 1045, 9, 999999.00, 1, 1),
(13996, 16, 1045, 10, 0.00, 0, 1),
(13997, 16, 1045, 11, 0.00, 0, 1),
(13998, 16, 1045, 142, 0.00, 0, 1),
(13999, 16, 1045, 143, 0.00, 0, 1),
(14000, 16, 1045, 144, 0.00, 0, 1),
(14001, 16, 1045, 145, 0.00, 0, 1),
(14002, 16, 1046, 138, 0.00, 0, 1),
(14003, 16, 1046, 139, 0.00, 0, 1),
(14004, 16, 1046, 140, 0.00, 0, 1),
(14005, 16, 1046, 141, 0.00, 0, 1),
(14006, 16, 1046, 142, 0.00, 0, 1),
(14007, 16, 1047, 138, 0.00, 1, 1),
(14008, 16, 1047, 139, 0.00, 0, 1),
(14009, 16, 1047, 140, 0.00, 0, 1),
(14010, 16, 1047, 141, 0.00, 0, 1),
(14011, 16, 1047, 142, 0.00, 0, 1),
(14012, 16, 1048, 138, 0.00, 1, 1),
(14013, 16, 1048, 139, 0.00, 0, 1),
(14014, 16, 1048, 140, 0.00, 0, 1),
(14015, 16, 1048, 141, 0.00, 0, 1),
(14016, 16, 1048, 142, 0.00, 0, 1),
(14017, 16, 1048, 143, 0.00, 0, 1),
(14018, 16, 1048, 144, 0.00, 0, 1),
(14019, 16, 1048, 145, 0.00, 0, 1),
(14020, 16, 1048, 146, 0.00, 0, 1),
(14021, 16, 1048, 147, 0.00, 0, 1),
(14022, 16, 1048, 148, 0.00, 0, 1),
(14023, 16, 1048, 19, 0.00, 0, 1),
(14024, 16, 1049, 138, 0.00, 1, 1),
(14025, 16, 1049, 139, 0.00, 0, 1),
(14026, 16, 1049, 140, 0.00, 0, 1),
(14027, 16, 1049, 141, 0.00, 0, 1),
(14028, 16, 1049, 142, 0.00, 0, 1),
(14029, 16, 1050, 138, 196.00, 1, 1),
(14030, 16, 1050, 139, 1645.00, 1, 1),
(14031, 16, 1050, 140, 220000.00, 1, 1),
(14032, 16, 1050, 141, 14.00, 1, 1),
(14033, 16, 1050, 142, 30.00, 1, 1),
(14034, 16, 1051, 138, 0.00, 0, 1),
(14035, 16, 1051, 139, 300.00, 0, 1),
(14036, 16, 1051, 140, 240000.00, 1, 1),
(14037, 16, 1051, 141, 0.00, 0, 1),
(14038, 16, 1051, 142, 0.00, 0, 1),
(14039, 16, 1052, 138, 0.00, 0, 1),
(14040, 16, 1052, 139, 0.00, 0, 1),
(14041, 16, 1052, 140, 265000.00, 1, 1),
(14042, 16, 1052, 141, 0.00, 0, 1),
(14043, 16, 1052, 142, 0.00, 0, 1),
(14044, 16, 1053, 138, 60.00, 1, 1),
(14045, 16, 1053, 139, 320.00, 1, 1),
(14046, 16, 1053, 140, 184000.00, 1, 1),
(14047, 16, 1053, 141, 0.00, 0, 1),
(14048, 16, 1053, 142, 0.00, 0, 1),
(14049, 16, 1054, 138, 0.00, 0, 1),
(14050, 16, 1054, 139, 350.00, 1, 1),
(14051, 16, 1054, 140, 240000.00, 1, 1),
(14052, 16, 1054, 141, 0.00, 0, 1),
(14053, 16, 1054, 142, 0.00, 0, 1),
(14054, 16, 1055, 138, 67.00, 1, 1),
(14055, 16, 1055, 139, 400.00, 1, 1),
(14056, 16, 1055, 140, 170000.00, 1, 1),
(14057, 16, 1055, 141, 20.00, 1, 1),
(14058, 16, 1055, 142, 30.00, 1, 1),
(14059, 16, 1056, 138, 0.00, 0, 1),
(14060, 16, 1056, 139, 0.00, 0, 1),
(14061, 16, 1056, 140, 1.00, 1, 1),
(14062, 16, 1056, 141, 0.00, 0, 1),
(14063, 16, 1056, 142, 0.00, 0, 1),
(14064, 16, 1057, 138, 0.00, 0, 1),
(14065, 16, 1057, 139, 600.00, 1, 1),
(14066, 16, 1057, 140, 200000.00, 1, 1),
(14067, 16, 1057, 141, 0.00, 0, 1),
(14068, 16, 1057, 142, 0.00, 0, 1),
(14069, 16, 1058, 138, 50.00, 1, 1),
(14070, 16, 1058, 139, 200.00, 1, 1),
(14071, 16, 1058, 140, 240000.00, 1, 1),
(14072, 16, 1058, 141, 0.00, 0, 1),
(14073, 16, 1058, 142, 0.00, 0, 1),
(14074, 16, 1059, 138, 60.00, 1, 1),
(14075, 16, 1059, 139, 200.00, 1, 1),
(14076, 16, 1059, 140, 120000.00, 1, 1),
(14077, 16, 1059, 141, 1.00, 0, 1),
(14078, 16, 1059, 142, 1.00, 0, 1),
(14079, 16, 1060, 138, 90.00, 1, 1),
(14080, 16, 1060, 139, 666.00, 1, 1),
(14081, 16, 1060, 140, 210000.00, 1, 1),
(14082, 16, 1060, 141, 0.00, 0, 1),
(14083, 16, 1060, 142, 0.00, 0, 1),
(14084, 16, 1061, 138, 123.00, 1, 1),
(14085, 16, 1061, 139, 2562.00, 1, 1),
(14086, 16, 1061, 140, 288040.00, 1, 1),
(14087, 16, 1061, 141, 12.00, 1, 1),
(14088, 16, 1061, 142, 9.00, 1, 1),
(14089, 16, 1061, 143, 8120.00, 1, 1),
(14090, 16, 1061, 144, 15212.00, 1, 1),
(14091, 16, 1061, 145, 13122.00, 1, 1),
(14092, 16, 1061, 146, 1.00, 1, 1),
(14093, 16, 1061, 147, 411.00, 1, 1),
(14094, 16, 1061, 148, 12.00, 1, 1),
(14095, 16, 1062, 138, 57.10, 1, 1),
(14096, 16, 1062, 139, 540.00, 1, 1),
(14097, 16, 1062, 140, 212000.00, 1, 1),
(14098, 16, 1062, 141, 3.00, 1, 1),
(14099, 16, 1062, 142, 6.00, 1, 1),
(14100, 16, 1062, 143, 12450.00, 1, 1),
(14101, 16, 1062, 144, 8420.00, 1, 1),
(14102, 16, 1062, 145, 641.00, 1, 1),
(14103, 16, 1062, 146, 0.00, 1, 1),
(14104, 16, 1062, 147, 155.00, 1, 1),
(14105, 16, 1062, 148, 85.00, 1, 1),
(14106, 16, 1063, 138, 21.00, 1, 1),
(14107, 16, 1063, 139, 188.00, 1, 1),
(14108, 16, 1063, 140, 231020.00, 1, 1),
(14109, 16, 1063, 141, 2.00, 1, 1),
(14110, 16, 1063, 142, 3.00, 1, 1),
(14111, 16, 1063, 143, 15244.00, 1, 1),
(14112, 16, 1063, 144, 16594.00, 1, 1),
(14113, 16, 1063, 145, 1879.00, 1, 1),
(14114, 16, 1063, 146, 0.00, 1, 1),
(14115, 16, 1063, 147, 13341.00, 1, 1),
(14116, 16, 1063, 148, 266.00, 1, 1),
(14117, 16, 1064, 138, 222.00, 1, 1),
(14118, 16, 1064, 139, 2222.00, 1, 1),
(14119, 16, 1064, 140, 222222.00, 1, 1),
(14120, 16, 1064, 141, 22.00, 1, 1),
(14121, 16, 1064, 142, 2.00, 1, 1),
(14122, 16, 1065, 138, 365.00, 1, 1),
(14123, 16, 1065, 139, 1800.00, 1, 1),
(14124, 16, 1065, 140, 350000.00, 1, 1),
(14125, 16, 1065, 141, 35.00, 1, 1),
(14126, 16, 1065, 142, 12.00, 1, 1),
(14127, 16, 1066, 138, 112.00, 1, 1),
(14128, 16, 1066, 139, 212.00, 1, 1),
(14129, 16, 1066, 140, 310000.00, 1, 1),
(14130, 16, 1066, 141, 21.00, 1, 1),
(14131, 16, 1066, 142, 9.00, 1, 1),
(14132, 16, 1067, 138, 800.00, 1, 1),
(14133, 16, 1067, 139, 500.00, 1, 1),
(14134, 16, 1067, 140, 210000.00, 1, 1),
(14135, 16, 1067, 141, 0.00, 0, 1),
(14136, 16, 1067, 142, 0.00, 0, 1),
(14137, 16, 1068, 138, 1200.00, 1, 1),
(14138, 16, 1068, 139, 1200.00, 1, 1),
(14139, 16, 1068, 140, 215000.00, 1, 1),
(14140, 16, 1068, 141, 0.00, 0, 1),
(14141, 16, 1068, 142, 0.00, 0, 1),
(14142, 16, 1069, 138, 2000.00, 1, 1),
(14143, 16, 1069, 139, 2000.00, 1, 1),
(14144, 16, 1069, 140, 250000.00, 1, 1),
(14145, 16, 1069, 141, 0.00, 0, 1),
(14146, 16, 1069, 142, 0.00, 0, 1),
(14147, 16, 1070, 138, 144.00, 1, 1),
(14148, 16, 1070, 139, 312.00, 1, 1),
(14149, 16, 1070, 140, 310000.00, 1, 1),
(14150, 16, 1070, 141, 1.00, 1, 1),
(14151, 16, 1070, 142, 18.00, 1, 1),
(14152, 16, 1070, 143, 14560.00, 1, 1),
(14153, 16, 1070, 144, 89500.00, 1, 1),
(14154, 16, 1070, 145, 58460.00, 1, 1),
(14155, 16, 1070, 146, 0.00, 1, 1),
(14156, 16, 1070, 147, 21490.00, 1, 1),
(14157, 16, 1070, 148, 400.00, 1, 1),
(14158, 16, 1070, 19, 0.00, 0, 1),
(14159, 16, 1071, 138, 210.00, 1, 1),
(14160, 16, 1071, 139, 1655.00, 1, 1),
(14161, 16, 1071, 140, 262351.00, 1, 1),
(14162, 16, 1071, 141, 3.00, 1, 1),
(14163, 16, 1071, 142, 22.00, 1, 1),
(14164, 16, 1071, 143, 540.00, 1, 1),
(14165, 16, 1071, 144, 96000.00, 1, 1),
(14166, 16, 1071, 145, 34450.00, 1, 1),
(14167, 16, 1071, 146, 0.00, 1, 1),
(14168, 16, 1071, 147, 30450.00, 1, 1),
(14169, 16, 1071, 148, 0.00, 1, 1),
(14170, 16, 1071, 19, 0.00, 0, 1),
(14171, 16, 1072, 138, 397.65, 1, 1),
(14172, 16, 1072, 139, 48.00, 1, 1),
(14173, 16, 1072, 140, 260000.00, 1, 1),
(14174, 16, 1072, 141, 0.00, 0, 1),
(14175, 16, 1072, 142, 0.00, 0, 1),
(14176, 16, 1072, 143, 0.00, 0, 1),
(14177, 16, 1072, 144, 0.00, 0, 1),
(14178, 16, 1072, 145, 0.00, 0, 1),
(14179, 16, 1072, 146, 0.00, 0, 1),
(14180, 16, 1072, 147, 0.00, 0, 1),
(14181, 16, 1072, 148, 0.00, 0, 1),
(14182, 16, 1072, 19, 0.00, 0, 1),
(14183, 16, 1073, 138, 31.00, 1, 1),
(14184, 16, 1073, 139, 41.00, 1, 1),
(14185, 16, 1073, 140, 220000.00, 1, 1),
(14186, 16, 1073, 141, 0.00, 0, 1),
(14187, 16, 1073, 142, 0.00, 0, 1),
(14188, 16, 1073, 143, 0.00, 0, 1),
(14189, 16, 1073, 144, 0.00, 0, 1),
(14190, 16, 1073, 145, 0.00, 0, 1),
(14191, 16, 1073, 146, 0.00, 0, 1),
(14192, 16, 1073, 147, 0.00, 0, 1),
(14193, 16, 1073, 148, 0.00, 0, 1),
(14194, 16, 1073, 19, 0.00, 0, 1),
(14195, 16, 1074, 138, 180.50, 1, 1),
(14196, 16, 1074, 139, 41.00, 1, 1),
(14197, 16, 1074, 140, 220000.00, 1, 1),
(14198, 16, 1074, 141, 0.00, 0, 1),
(14199, 16, 1074, 142, 0.00, 0, 1),
(14200, 16, 1074, 143, 0.00, 0, 1),
(14201, 16, 1074, 144, 0.00, 0, 1),
(14202, 16, 1074, 145, 0.00, 0, 1),
(14203, 16, 1074, 146, 0.00, 0, 1),
(14204, 16, 1074, 147, 0.00, 0, 1),
(14205, 16, 1074, 148, 0.00, 0, 1),
(14206, 16, 1074, 19, 0.00, 0, 1),
(14207, 16, 1075, 138, 1102.00, 1, 1),
(14208, 16, 1075, 139, 2222.00, 1, 1),
(14209, 16, 1075, 140, 222000.00, 1, 1),
(14210, 16, 1075, 141, 33.00, 1, 1),
(14211, 16, 1075, 142, 33.00, 1, 1),
(14212, 16, 1075, 143, 499.00, 1, 1),
(14213, 16, 1075, 144, 121300.00, 1, 1),
(14214, 16, 1075, 145, 79560.00, 1, 1),
(14215, 16, 1075, 146, 4.00, 1, 1),
(14216, 16, 1075, 147, 3922.00, 1, 1),
(14217, 16, 1075, 148, 0.00, 1, 1),
(14218, 16, 1076, 138, 677.00, 1, 1),
(14219, 16, 1076, 139, 333.00, 1, 1),
(14220, 16, 1076, 140, 220000.00, 1, 1),
(14221, 16, 1076, 141, 20.00, 1, 1),
(14222, 16, 1076, 142, 20.00, 1, 1),
(14223, 16, 1076, 143, 7615.00, 1, 1),
(14224, 16, 1076, 144, 102500.00, 1, 1),
(14225, 16, 1076, 145, 86422.00, 1, 1),
(14226, 16, 1076, 146, 2.00, 1, 1),
(14227, 16, 1076, 147, 13445.00, 1, 1),
(14228, 16, 1076, 148, 0.00, 1, 1),
(14229, 16, 1077, 138, 510.40, 1, 1),
(14230, 16, 1077, 139, 600.00, 1, 1),
(14231, 16, 1077, 140, 220000.00, 1, 1),
(14232, 16, 1077, 141, 20.00, 1, 1),
(14233, 16, 1077, 142, 15.00, 1, 1),
(14234, 16, 1077, 143, 1950.00, 1, 1),
(14235, 16, 1077, 144, 89650.00, 1, 1),
(14236, 16, 1077, 145, 37800.00, 1, 1),
(14237, 16, 1077, 146, 2.00, 1, 1),
(14238, 16, 1077, 147, 2350.00, 1, 1),
(14239, 16, 1077, 148, 0.00, 1, 1),
(14240, 16, 1078, 138, 264.00, 1, 1),
(14241, 16, 1078, 139, 322.00, 1, 1),
(14242, 16, 1078, 140, 202545.00, 1, 1),
(14243, 16, 1078, 141, 15.00, 1, 1),
(14244, 16, 1078, 142, 10.00, 1, 1),
(14245, 16, 1078, 143, 1566.00, 1, 1),
(14246, 16, 1078, 144, 78900.00, 1, 1),
(14247, 16, 1078, 145, 59050.00, 1, 1),
(14248, 16, 1078, 146, 0.00, 1, 1),
(14249, 16, 1078, 147, 11959.00, 1, 1),
(14250, 16, 1078, 148, 0.00, 1, 1),
(14251, 16, 1079, 138, 2.10, 1, 1),
(14252, 16, 1079, 139, 70.00, 1, 1),
(14253, 16, 1079, 140, 334590.00, 1, 1),
(14254, 16, 1079, 141, 0.00, 0, 1),
(14255, 16, 1079, 142, 0.00, 0, 1),
(14256, 16, 1079, 143, 0.00, 0, 1),
(14257, 16, 1079, 144, 0.00, 0, 1),
(14258, 16, 1079, 145, 0.00, 0, 1),
(14259, 16, 1079, 146, 0.00, 0, 1),
(14260, 16, 1079, 147, 0.00, 0, 1),
(14261, 16, 1079, 148, 0.00, 0, 1),
(14262, 16, 1079, 149, 0.00, 0, 1),
(14263, 16, 1080, 138, 0.41, 1, 1),
(14264, 16, 1080, 139, 30.00, 1, 1),
(14265, 16, 1080, 140, 248300.00, 1, 1),
(14266, 16, 1080, 141, 0.00, 0, 1),
(14267, 16, 1080, 142, 0.00, 0, 1),
(14268, 16, 1080, 143, 0.00, 0, 1),
(14269, 16, 1080, 144, 0.00, 0, 1),
(14270, 16, 1080, 145, 0.00, 0, 1),
(14271, 16, 1080, 146, 0.00, 0, 1),
(14272, 16, 1080, 147, 0.00, 0, 1),
(14273, 16, 1080, 148, 0.00, 0, 1),
(14274, 16, 1080, 149, 0.00, 0, 1),
(14275, 16, 1081, 138, 0.14, 1, 1),
(14276, 16, 1081, 139, 30.00, 1, 1),
(14277, 16, 1081, 140, 180000.00, 1, 1),
(14278, 16, 1081, 141, 0.00, 0, 1),
(14279, 16, 1081, 142, 0.00, 0, 1),
(14280, 16, 1081, 143, 0.00, 0, 1),
(14281, 16, 1081, 144, 0.00, 0, 1),
(14282, 16, 1081, 145, 0.00, 0, 1),
(14283, 16, 1081, 146, 0.00, 0, 1),
(14284, 16, 1081, 147, 0.00, 0, 1),
(14285, 16, 1081, 148, 0.00, 0, 1),
(14286, 16, 1081, 149, 0.00, 0, 1),
(14287, 16, 1082, 138, 0.00, 0, 1),
(14288, 16, 1082, 139, 0.00, 0, 1),
(14289, 16, 1082, 140, 0.00, 0, 1),
(14290, 16, 1082, 141, 0.00, 0, 1),
(14291, 16, 1082, 142, 0.00, 0, 1),
(14292, 16, 1083, 138, 4186.30, 1, 1),
(14293, 16, 1083, 139, 12845.00, 1, 1),
(14294, 16, 1083, 140, 100277.00, 1, 1),
(14295, 16, 1083, 141, 80.00, 1, 1),
(14296, 16, 1083, 142, 1223.00, 1, 1),
(14297, 16, 1084, 138, 8266.41, 1, 1),
(14298, 16, 1084, 139, 17345.80, 1, 1),
(14299, 16, 1084, 140, 81255.00, 1, 1),
(14300, 16, 1084, 141, 94.20, 1, 1),
(14301, 16, 1084, 142, 112.00, 1, 1),
(14302, 16, 1085, 138, 1549.25, 1, 1),
(14303, 16, 1085, 139, 12422.50, 1, 1),
(14304, 16, 1085, 140, 89912.00, 1, 1),
(14305, 16, 1085, 141, 114.00, 1, 1),
(14306, 16, 1085, 142, 1212.00, 1, 1),
(14307, 16, 1086, 138, 888.00, 1, 1),
(14308, 16, 1086, 139, 7466.00, 1, 1),
(14309, 16, 1086, 140, 120224.00, 1, 1),
(14310, 16, 1086, 141, 160.00, 1, 1),
(14311, 16, 1086, 142, 288.00, 1, 1),
(14312, 16, 1087, 138, 441.00, 1, 1),
(14313, 16, 1087, 139, 2100.00, 1, 1),
(14314, 16, 1087, 140, 53400.00, 1, 1),
(14315, 16, 1087, 141, 25.00, 1, 1),
(14316, 16, 1087, 142, 42.00, 1, 1),
(14317, 16, 1087, 143, 323644.00, 1, 1),
(14318, 16, 1087, 144, 51050.00, 1, 1),
(14319, 16, 1087, 145, 35699.00, 1, 1),
(14320, 16, 1087, 146, 0.00, 1, 1),
(14321, 16, 1087, 147, 1363.00, 1, 1),
(14322, 16, 1087, 148, 3100.00, 1, 1),
(14323, 16, 1087, 149, 0.00, 0, 1),
(14324, 16, 1088, 138, 185.00, 1, 1),
(14325, 16, 1088, 139, 480.00, 1, 1),
(14326, 16, 1088, 140, 245000.00, 1, 1),
(14327, 16, 1088, 141, 12.00, 1, 1),
(14328, 16, 1088, 142, 28.00, 1, 1),
(14329, 16, 1088, 143, 6552.00, 1, 1),
(14330, 16, 1088, 144, 13255.00, 1, 1),
(14331, 16, 1088, 145, 12800.00, 1, 1),
(14332, 16, 1088, 146, 16.00, 1, 1),
(14333, 16, 1088, 147, 3559.00, 1, 1),
(14334, 16, 1088, 148, 650.00, 1, 1),
(14335, 16, 1088, 149, 0.00, 0, 1),
(14336, 16, 1089, 138, 148.00, 1, 1),
(14337, 16, 1089, 139, 2500.00, 1, 1),
(14338, 16, 1089, 140, 265120.00, 1, 1),
(14339, 16, 1089, 141, 18.00, 1, 1),
(14340, 16, 1089, 142, 16.00, 1, 1),
(14341, 16, 1089, 143, 2155.00, 1, 1),
(14342, 16, 1089, 144, 15944.00, 1, 1),
(14343, 16, 1089, 145, 10462.00, 1, 1),
(14344, 16, 1089, 146, 13.00, 1, 1),
(14345, 16, 1089, 147, 2248.00, 1, 1),
(14346, 16, 1089, 148, 955.00, 1, 1),
(14347, 16, 1089, 149, 0.00, 0, 1),
(14348, 16, 1090, 138, 122.00, 1, 1),
(14349, 16, 1090, 139, 312.00, 1, 1),
(14350, 16, 1090, 140, 242150.00, 1, 1),
(14351, 16, 1090, 141, 8.00, 1, 1),
(14352, 16, 1090, 142, 9.00, 1, 1),
(14353, 16, 1090, 143, 12511.00, 1, 1),
(14354, 16, 1090, 144, 6522.00, 1, 1),
(14355, 16, 1090, 145, 4121.00, 1, 1),
(14356, 16, 1090, 146, 11.00, 1, 1),
(14357, 16, 1090, 147, 36051.00, 1, 1),
(14358, 16, 1090, 148, 544.00, 1, 1),
(14359, 16, 1090, 149, 0.00, 0, 1),
(14360, 16, 1091, 138, 6.00, 1, 1),
(14361, 16, 1091, 139, 189.00, 1, 1),
(14362, 16, 1091, 140, 289585.00, 1, 1),
(14363, 16, 1091, 141, 3.00, 1, 1),
(14364, 16, 1091, 142, 3.00, 1, 1),
(14365, 16, 1091, 143, 8123.00, 1, 1),
(14366, 16, 1091, 144, 41299.00, 1, 1),
(14367, 16, 1091, 145, 12656.00, 1, 1),
(14368, 16, 1091, 146, 0.00, 1, 1),
(14369, 16, 1091, 147, 36564.00, 1, 1),
(14370, 16, 1091, 148, 1202.00, 1, 1),
(14371, 16, 1092, 138, 291.00, 1, 1),
(14372, 16, 1092, 139, 6499.00, 1, 1),
(14373, 16, 1092, 140, 232024.00, 1, 1),
(14374, 16, 1092, 141, 71.00, 1, 1),
(14375, 16, 1092, 142, 81.00, 1, 1),
(14376, 16, 1092, 143, 27505.00, 1, 1),
(14377, 16, 1092, 144, 41860.00, 1, 1),
(14378, 16, 1092, 145, 31000.00, 1, 1),
(14379, 16, 1092, 146, 0.00, 1, 1),
(14380, 16, 1092, 147, 5980.00, 1, 1),
(14381, 16, 1092, 148, 710.00, 1, 1),
(14382, 16, 1093, 138, 273.00, 1, 1),
(14383, 16, 1093, 139, 400.00, 1, 1),
(14384, 16, 1093, 140, 245612.00, 1, 1),
(14385, 16, 1093, 141, 72.00, 1, 1),
(14386, 16, 1093, 142, 58.00, 1, 1),
(14387, 16, 1093, 143, 6520.00, 1, 1),
(14388, 16, 1093, 144, 38511.00, 1, 1),
(14389, 16, 1093, 145, 32800.00, 1, 1),
(14390, 16, 1093, 146, 0.00, 1, 1),
(14391, 16, 1093, 147, 7400.00, 1, 1),
(14392, 16, 1093, 148, 241.00, 1, 1),
(14393, 16, 1094, 138, 0.00, 0, 1),
(14394, 16, 1094, 139, 0.00, 0, 1),
(14395, 16, 1094, 140, 999999.00, 1, 1),
(14396, 16, 1094, 141, 0.00, 0, 1),
(14397, 16, 1094, 142, 0.00, 0, 1),
(14398, 16, 1094, 143, 0.00, 0, 1),
(14399, 16, 1094, 144, 0.00, 0, 1),
(14400, 16, 1094, 145, 0.00, 0, 1),
(14401, 16, 1094, 146, 0.00, 0, 1),
(14402, 16, 1094, 147, 0.00, 0, 1),
(14403, 16, 1094, 148, 0.00, 0, 1),
(14404, 16, 1094, 19, 0.00, 0, 1),
(14405, 16, 1095, 138, 0.00, 0, 1),
(14406, 16, 1095, 139, 0.00, 0, 1),
(14407, 16, 1095, 140, 880000.00, 1, 1),
(14408, 16, 1095, 141, 0.00, 0, 1),
(14409, 16, 1095, 142, 0.00, 0, 1),
(14410, 16, 1095, 143, 0.00, 0, 1),
(14411, 16, 1095, 144, 0.00, 0, 1),
(14412, 16, 1095, 145, 0.00, 0, 1),
(14413, 16, 1095, 146, 0.00, 0, 1),
(14414, 16, 1095, 147, 0.00, 0, 1),
(14415, 16, 1095, 148, 0.00, 0, 1),
(14416, 16, 1095, 19, 0.00, 0, 1),
(14417, 16, 1096, 138, 10.00, 1, 1),
(14418, 16, 1096, 139, 30.00, 1, 1),
(14419, 16, 1096, 140, 280000.00, 1, 1),
(14420, 16, 1096, 141, 0.00, 0, 1),
(14421, 16, 1096, 142, 0.00, 0, 1),
(14422, 16, 1096, 143, 0.00, 0, 1),
(14423, 16, 1096, 144, 0.00, 0, 1),
(14424, 16, 1096, 145, 0.00, 0, 1),
(14425, 16, 1096, 146, 0.00, 0, 1),
(14426, 16, 1096, 147, 0.00, 0, 1),
(14427, 16, 1096, 148, 0.00, 0, 1),
(14428, 16, 1096, 19, 0.00, 0, 1),
(14429, 16, 1097, 138, 0.00, 0, 1),
(14430, 16, 1097, 139, 0.00, 0, 1),
(14431, 16, 1097, 140, 0.00, 0, 1),
(14432, 16, 1097, 141, 0.00, 0, 1),
(14433, 16, 1097, 142, 0.00, 0, 1),
(14434, 16, 1097, 143, 0.00, 0, 1),
(14435, 16, 1097, 144, 0.00, 0, 1),
(14436, 16, 1097, 145, 0.00, 0, 1),
(14437, 16, 1097, 146, 0.00, 0, 1),
(14438, 16, 1097, 147, 0.00, 0, 1),
(14439, 16, 1097, 148, 0.00, 0, 1),
(14440, 16, 1097, 19, 0.00, 0, 1),
(14441, 16, 1098, 138, 0.00, 0, 1),
(14442, 16, 1098, 139, 0.00, 0, 1),
(14443, 16, 1098, 140, 0.00, 0, 1),
(14444, 16, 1098, 141, 0.00, 0, 1),
(14445, 16, 1098, 142, 0.00, 0, 1),
(14446, 16, 1098, 143, 0.00, 0, 1),
(14447, 16, 1098, 144, 0.00, 0, 1),
(14448, 16, 1098, 145, 0.00, 0, 1),
(14449, 16, 1098, 146, 0.00, 0, 1),
(14450, 16, 1098, 147, 0.00, 0, 1),
(14451, 16, 1098, 148, 0.00, 0, 1),
(14452, 16, 1098, 19, 0.00, 0, 1),
(14453, 16, 1099, 138, 71.00, 1, 1),
(14454, 16, 1099, 139, 627.00, 1, 1),
(14455, 16, 1099, 140, 189241.00, 1, 1),
(14456, 16, 1099, 141, 8.00, 1, 1),
(14457, 16, 1099, 142, 18.00, 1, 1),
(14458, 16, 1099, 143, 0.00, 1, 1),
(14459, 16, 1099, 144, 122511.00, 1, 1),
(14460, 16, 1099, 145, 42415.00, 1, 1),
(14461, 16, 1099, 146, 0.00, 1, 1),
(14462, 16, 1099, 147, 6100.00, 1, 1),
(14463, 16, 1099, 148, 0.00, 1, 1),
(14464, 16, 1100, 138, 69.00, 1, 1),
(14465, 16, 1100, 139, 677.00, 1, 1),
(14466, 16, 1100, 140, 194233.00, 1, 1),
(14467, 16, 1100, 141, 3.00, 1, 1),
(14468, 16, 1100, 142, 8.00, 1, 1),
(14469, 16, 1100, 143, 0.00, 1, 1),
(14470, 16, 1100, 144, 101343.00, 1, 1),
(14471, 16, 1100, 145, 12255.00, 1, 1),
(14472, 16, 1100, 146, 0.00, 1, 1),
(14473, 16, 1100, 147, 6454.00, 1, 1),
(14474, 16, 1100, 148, 0.00, 1, 1),
(14475, 16, 1101, 138, 22.00, 1, 1),
(14476, 16, 1101, 139, 181.00, 1, 1),
(14477, 16, 1101, 140, 215366.00, 1, 1),
(14478, 16, 1101, 141, 0.00, 1, 1),
(14479, 16, 1101, 142, 0.00, 1, 1),
(14480, 16, 1101, 143, 2688.00, 1, 1),
(14481, 16, 1101, 144, 168585.00, 1, 1),
(14482, 16, 1101, 145, 3577.00, 1, 1),
(14483, 16, 1101, 146, 0.00, 1, 1),
(14484, 16, 1101, 147, 12842.00, 1, 1),
(14485, 16, 1101, 148, 0.00, 1, 1),
(14486, 16, 1102, 138, 0.00, 1, 1),
(14487, 16, 1102, 139, 194.00, 1, 1),
(14488, 16, 1102, 140, 243518.00, 1, 1),
(14489, 16, 1102, 141, 0.00, 1, 1),
(14490, 16, 1102, 142, 0.00, 1, 1),
(14491, 16, 1102, 143, 8175.00, 1, 1),
(14492, 16, 1102, 144, 168552.00, 0, 1),
(14493, 16, 1102, 145, 65885.00, 1, 1),
(14494, 16, 1102, 146, 0.00, 1, 1),
(14495, 16, 1102, 147, 93775.00, 1, 1),
(14496, 16, 1102, 148, 0.00, 1, 1),
(14497, 16, 1103, 138, 18.00, 1, 1),
(14498, 16, 1103, 139, 94.00, 1, 1),
(14499, 16, 1103, 140, 122664.00, 1, 1),
(14500, 16, 1103, 141, 3.00, 1, 1),
(14501, 16, 1103, 142, 4.10, 1, 1),
(14502, 16, 1103, 143, 12450.00, 1, 1),
(14503, 16, 1103, 144, 18227.00, 1, 1),
(14504, 16, 1103, 145, 14952.00, 1, 1),
(14505, 16, 1103, 146, 0.00, 1, 1),
(14506, 16, 1103, 147, 71210.00, 1, 1),
(14507, 16, 1103, 148, 13.00, 1, 1),
(14508, 16, 1104, 138, 25.33, 1, 1),
(14509, 16, 1104, 139, 644.00, 1, 1),
(14510, 16, 1104, 140, 175889.00, 1, 1),
(14511, 16, 1104, 141, 3.00, 1, 1),
(14512, 16, 1104, 142, 8.00, 1, 1),
(14513, 16, 1104, 143, 24550.00, 1, 1),
(14514, 16, 1104, 144, 41600.00, 1, 1),
(14515, 16, 1104, 145, 36280.00, 1, 1),
(14516, 16, 1104, 146, 0.00, 1, 1),
(14517, 16, 1104, 147, 12865.00, 1, 1),
(14518, 16, 1104, 148, 433.00, 1, 1),
(14519, 16, 1105, 138, 11.00, 1, 1),
(14520, 16, 1105, 139, 404.00, 1, 1),
(14521, 16, 1105, 140, 188000.00, 1, 1),
(14522, 16, 1105, 141, 3.00, 1, 1),
(14523, 16, 1105, 142, 7.00, 1, 1),
(14524, 16, 1105, 143, 21122.00, 0, 1),
(14525, 16, 1105, 144, 34522.00, 0, 1),
(14526, 16, 1105, 145, 27800.00, 1, 1),
(14527, 16, 1105, 146, 0.00, 1, 1),
(14528, 16, 1105, 147, 3895.00, 0, 1),
(14529, 16, 1105, 148, 271.00, 1, 1),
(14530, 16, 1106, 54, 0.00, 1, 1),
(14531, 16, 1106, 55, 0.00, 1, 1),
(14532, 16, 1106, 56, 3000.00, 1, 1),
(14533, 16, 1106, 57, 0.00, 1, 1),
(14534, 16, 1106, 59, 5000000.00, 1, 1),
(14535, 16, 1106, 60, 10000.00, 1, 1),
(14536, 16, 1106, 61, 5000.00, 1, 1),
(14537, 16, 1106, 62, 0.00, 1, 1),
(14538, 16, 1106, 63, 430000.00, 1, 1),
(14539, 16, 1106, 65, 4000.00, 1, 1),
(14540, 16, 1106, 138, 672.00, 1, 1),
(14541, 16, 1106, 139, 112.00, 1, 1),
(14542, 16, 1106, 140, 350000.00, 1, 1),
(14543, 16, 1106, 141, 0.00, 1, 1),
(14544, 16, 1106, 142, 0.00, 1, 1),
(14545, 16, 1106, 143, 0.00, 1, 1),
(14546, 16, 1106, 144, 0.00, 1, 1),
(14547, 16, 1106, 145, 0.00, 1, 1),
(14548, 16, 1106, 146, 0.00, 1, 1),
(14549, 16, 1106, 147, 0.00, 1, 1),
(14550, 16, 1106, 148, 0.00, 1, 1),
(14551, 16, 1107, 138, 8.00, 1, 1),
(14552, 16, 1107, 139, 86.00, 1, 1),
(14553, 16, 1107, 140, 158223.00, 1, 1),
(14554, 16, 1107, 141, 1.00, 1, 1),
(14555, 16, 1107, 142, 1.00, 1, 1),
(14556, 16, 1107, 143, 86211.00, 1, 1),
(14557, 16, 1107, 144, 17118.00, 1, 1),
(14558, 16, 1107, 145, 15827.00, 1, 1),
(14559, 16, 1107, 146, 0.00, 1, 1),
(14560, 16, 1107, 147, 91628.00, 1, 1),
(14561, 16, 1107, 148, 2.00, 1, 1),
(14562, 16, 1108, 138, 133.00, 1, 1),
(14563, 16, 1108, 139, 2311.00, 1, 1),
(14564, 16, 1108, 140, 317172.00, 1, 1),
(14565, 16, 1108, 141, 6.00, 1, 1),
(14566, 16, 1108, 142, 19.00, 1, 1),
(14567, 16, 1108, 143, 3188.00, 1, 1),
(14568, 16, 1108, 144, 112738.00, 1, 1),
(14569, 16, 1108, 145, 1772.00, 1, 1),
(14570, 16, 1108, 146, 0.00, 1, 1),
(14571, 16, 1108, 147, 411.00, 1, 1),
(14572, 16, 1108, 148, 6.00, 1, 1),
(14573, 16, 1109, 138, 0.40, 1, 1),
(14574, 16, 1109, 139, 16.00, 1, 1),
(14575, 16, 1109, 140, 114288.00, 1, 1),
(14576, 16, 1109, 141, 0.04, 1, 1),
(14577, 16, 1109, 142, 0.02, 1, 1),
(14578, 16, 1109, 143, 31415.00, 1, 1),
(14579, 16, 1109, 144, 16455.00, 1, 1),
(14580, 16, 1109, 145, 12788.00, 1, 1),
(14581, 16, 1109, 146, 0.00, 0, 1),
(14582, 16, 1109, 147, 498650.00, 1, 1),
(14583, 16, 1109, 148, 0.00, 0, 1),
(14584, 16, 1109, 149, 300122.00, 1, 1),
(14585, 16, 1110, 138, 2.31, 1, 1),
(14586, 16, 1110, 139, 18.00, 1, 1),
(14587, 16, 1110, 140, 61447.00, 1, 1),
(14588, 16, 1110, 141, 0.54, 1, 1),
(14589, 16, 1110, 142, 0.12, 1, 1),
(14590, 16, 1110, 143, 214461.00, 1, 1),
(14591, 16, 1110, 144, 18554.00, 1, 1),
(14592, 16, 1110, 145, 16486.00, 1, 1),
(14593, 16, 1110, 146, 1.00, 1, 1),
(14594, 16, 1110, 147, 444215.00, 1, 1),
(14595, 16, 1110, 148, 0.00, 1, 1),
(14596, 16, 1110, 149, 320000.00, 1, 1),
(14597, 11, 1111, 77, 0.00, 0, 1),
(14598, 11, 1111, 78, 0.00, 0, 1),
(14599, 11, 1111, 79, 0.00, 0, 1),
(14600, 11, 1111, 80, 0.00, 0, 1),
(14601, 11, 1111, 81, 0.00, 0, 1),
(14602, 11, 1111, 82, 0.00, 0, 1),
(14603, 11, 1111, 86, 0.00, 0, 1),
(14604, 11, 1111, 122, 0.00, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `productiondetail`
--

CREATE TABLE `productiondetail` (
  `id` int(11) NOT NULL,
  `productionid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `producttype` varchar(100) NOT NULL,
  `productid` int(11) NOT NULL,
  `productname` varchar(500) NOT NULL,
  `quantity` int(11) NOT NULL,
  `completed` int(11) NOT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productiondetail`
--

INSERT INTO `productiondetail` (`id`, `productionid`, `userid`, `producttype`, `productid`, `productname`, `quantity`, `completed`, `sysdate`, `status`) VALUES
(1, 1, 15, 'Inventory', 2160, 'FiberGlass Resin', 5000, 0, NULL, 1),
(2, 1, 15, 'Consumables', 46, 'Cement', 50, 0, NULL, 1),
(5, 3, 15, 'Inventory', 2160, 'FiberGlass Resin', 330, 0, NULL, 1),
(6, 3, 15, 'Consumables', 46, 'Cement', 180, 0, NULL, 1),
(7, 3, 15, 'Inventory', 2216, 'FIBER Bricks', 510, 1, '2021-10-01', 1),
(8, 4, 15, 'Inventory', 2166, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 100, 0, NULL, 1),
(9, 4, 15, 'Consumables', 46, 'Cement', 20, 0, NULL, 1),
(10, 5, 15, 'Consumables', 46, 'Cement', 200, 0, NULL, 1),
(11, 5, 15, 'Inventory', 2160, 'FiberGlass Resin', 600, 0, NULL, 1),
(12, 5, 15, 'Inventory', 2216, 'FIBER Bricks', 800, 1, '2021-10-03', 1),
(13, 6, 15, 'Inventory', 2160, 'FiberGlass Resin', 0, 0, NULL, 1),
(14, 6, 15, 'Consumables', 46, 'PORTLAND CEMENT', 0, 0, NULL, 1),
(15, 6, 15, 'Inventory', 2216, 'FIBER Bricks', 0, 1, '2022-04-22', 1);

-- --------------------------------------------------------

--
-- Table structure for table `productions`
--

CREATE TABLE `productions` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `completed` int(11) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productions`
--

INSERT INTO `productions` (`id`, `userid`, `sysdate`, `completed`, `status`) VALUES
(1, 15, '2021-09-30', NULL, 1),
(2, 15, '2021-10-01', NULL, 1),
(3, 15, '2021-10-01', 1, 1),
(4, 15, '2021-10-01', NULL, 1),
(5, 15, '2021-10-03', 1, 1),
(6, 15, '2022-04-22', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `productofferprice`
--

CREATE TABLE `productofferprice` (
  `id` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `orderid` int(11) NOT NULL,
  `offerprice` float(13,2) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `sysdate` date NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productofferprice`
--

INSERT INTO `productofferprice` (`id`, `productid`, `orderid`, `offerprice`, `userid`, `sysdate`) VALUES
(1, 276, 66, 10.99, 7, '2019-09-21'),
(2, 20, 66, 0.00, 7, '2019-09-21'),
(3, 275, 67, 3.30, 7, '2019-09-22'),
(4, 599, 81, 0.46, 11, '2019-10-07'),
(5, 499, 83, 45.36, 10, '2019-10-09'),
(6, 426, 86, 3.15, 7, '2019-10-13'),
(7, 362, 86, 1.01, 7, '2019-10-13'),
(8, 394, 86, 2.24, 7, '2019-10-13'),
(9, 395, 86, 1.36, 7, '2019-10-13'),
(10, 361, 86, 0.00, 7, '2019-10-13'),
(11, 501, 87, 0.00, 10, '2019-10-15'),
(12, 708, 90, 0.00, 10, '2019-10-16'),
(13, 709, 91, 0.00, 10, '2019-10-18'),
(14, 708, 95, 118.34, 10, '2019-10-21'),
(15, 515, 96, 0.00, 10, '2019-10-22'),
(16, 442, 97, 44.91, 10, '2019-10-23'),
(17, 484, 100, 15.49, 10, '2019-10-23'),
(18, 442, 99, 90.72, 10, '2019-10-23'),
(19, 445, 101, 2.27, 10, '2019-10-24'),
(20, 499, 105, 45.36, 10, '2019-10-24'),
(21, 420, 93, 8.41, 7, '2019-10-25'),
(22, 421, 93, 5.87, 7, '2019-10-25'),
(23, 422, 93, 2.32, 7, '2019-10-25'),
(24, 423, 93, 0.69, 7, '2019-10-25'),
(25, 424, 93, 0.74, 7, '2019-10-25'),
(26, 539, 93, 0.54, 7, '2019-10-25'),
(27, 537, 93, 0.27, 7, '2019-10-25'),
(28, 538, 93, 0.60, 7, '2019-10-25'),
(29, 362, 93, 1.10, 7, '2019-10-25'),
(30, 362, 89, 1.10, 7, '2019-10-25'),
(31, 396, 89, 1.10, 7, '2019-10-25'),
(32, 417, 89, 1.10, 7, '2019-10-25'),
(33, 487, 108, 9.07, 10, '2019-10-26'),
(34, 486, 108, 9.07, 10, '2019-10-26'),
(35, 442, 108, 9.07, 10, '2019-10-26'),
(36, 477, 114, 0.91, 10, '2019-10-27'),
(37, 445, 114, 0.91, 10, '2019-10-27'),
(38, 508, 118, 2.20, 10, '2019-10-28'),
(39, 709, 118, 2.20, 10, '2019-10-28'),
(40, 483, 119, 2.20, 10, '2019-10-28'),
(41, 484, 119, 2.20, 10, '2019-10-28'),
(42, 445, 125, 2.20, 10, '2019-10-28'),
(43, 477, 125, 2.20, 10, '2019-10-28'),
(44, 485, 127, 6.61, 10, '2019-10-28'),
(45, 483, 127, 6.61, 10, '2019-10-28'),
(46, 484, 127, 6.61, 10, '2019-10-28'),
(47, 484, 135, 2.20, 10, '2019-10-30'),
(48, 485, 137, 2.20, 10, '2019-10-31'),
(49, 515, 138, 88.18, 10, '2019-10-31'),
(50, 484, 139, 0.00, 10, '2019-10-31'),
(51, 515, 141, 110.23, 10, '2019-10-31'),
(52, 713, 144, 0.00, 10, '2019-11-01'),
(53, 515, 148, 330.69, 10, '2020-01-16'),
(54, 358, 152, 20.05, 7, '2020-01-23'),
(55, 418, 152, 195.34, 7, '2020-01-23'),
(56, 835, 158, 0.00, 14, '2020-01-26'),
(57, 515, 162, 110.23, 10, '2020-02-05'),
(58, 500, 163, 614.96, 10, '2020-02-05'),
(59, 502, 163, 53.86, 10, '2020-02-05'),
(60, 499, 163, 305.32, 10, '2020-02-05'),
(61, 501, 163, 99.80, 10, '2020-02-05'),
(62, 362, 165, 1.10, 7, '2020-02-09'),
(63, 787, 166, 1.00, 14, '2020-02-09'),
(64, 822, 171, 0.72, 14, '2020-02-13'),
(65, 788, 173, 2.56, 14, '2020-02-19'),
(66, 835, 176, 0.57, 14, '2020-02-20'),
(67, 835, 177, 0.79, 14, '2020-02-20'),
(68, 548, 174, 0.00, 11, '2020-02-21'),
(69, 600, 174, 0.55, 11, '2020-02-21'),
(70, 600, 179, 0.38, 11, '2020-02-21'),
(71, 599, 181, 0.55, 11, '2020-02-26'),
(72, 835, 182, 0.81, 14, '2020-02-26'),
(73, 822, 183, 0.80, 14, '2020-03-01'),
(74, 822, 184, 0.73, 14, '2020-03-02'),
(75, 788, 184, 2.98, 14, '2020-03-02'),
(76, 789, 184, 0.99, 14, '2020-03-02'),
(77, 815, 184, 2.48, 14, '2020-03-02'),
(78, 845, 184, 0.46, 14, '2020-03-02'),
(79, 779, 184, 2.04, 14, '2020-03-02'),
(80, 843, 184, 0.16, 14, '2020-03-02'),
(81, 847, 184, 0.20, 14, '2020-03-02'),
(82, 844, 184, 0.05, 14, '2020-03-02'),
(83, 846, 184, 1.09, 14, '2020-03-02'),
(84, 848, 184, 0.22, 14, '2020-03-02'),
(85, 849, 184, 0.16, 14, '2020-03-02'),
(86, 835, 185, 0.73, 14, '2020-03-03'),
(87, 600, 186, 0.55, 11, '2020-03-04'),
(88, 768, 184, 0.23, 14, '2020-03-05'),
(89, 851, 184, 0.00, 14, '2020-03-05'),
(90, 515, 188, 110.23, 10, '2020-03-10'),
(91, 600, 190, 0.55, 11, '2020-03-12'),
(92, 600, 191, 0.57, 11, '2020-03-13'),
(93, 600, 192, 0.45, 11, '2020-03-16'),
(94, 841, 193, 0.65, 11, '2020-03-25'),
(95, 548, 193, 0.00, 11, '2020-03-25'),
(96, 843, 194, 0.37, 14, '2020-03-25'),
(97, 843, 195, 136.24, 14, '2020-03-25'),
(98, 843, 197, 0.37, 14, '2020-03-30'),
(99, 843, 199, 0.85, 14, '2020-03-31'),
(100, 599, 196, 0.53, 11, '2020-04-02'),
(101, 599, 198, 0.57, 11, '2020-04-02'),
(102, 401, 200, 11.87, 7, '2020-04-07'),
(103, 599, 201, 0.53, 11, '2020-04-16'),
(104, 599, 202, 0.57, 11, '2020-04-24'),
(105, 600, 203, 0.24, 11, '2020-04-29'),
(106, 599, 204, 0.57, 11, '2020-05-18'),
(107, 599, 205, 0.57, 11, '2020-05-18'),
(108, 599, 206, 0.53, 11, '2020-05-21'),
(109, 600, 207, 0.57, 11, '2020-06-03'),
(110, 600, 208, 0.45, 11, '2020-06-03'),
(111, 600, 209, 0.57, 11, '2020-06-03'),
(112, 599, 210, 0.55, 11, '2020-06-03'),
(113, 599, 213, 0.44, 11, '2020-06-25'),
(114, 599, 214, 0.44, 11, '2020-06-26'),
(115, 600, 211, 0.31, 11, '2020-07-03'),
(116, 873, 212, 0.35, 11, '2020-07-03'),
(117, 599, 215, 0.53, 11, '2020-07-03'),
(118, 599, 216, 0.57, 11, '2020-08-04'),
(119, 599, 217, 0.52, 11, '2020-08-04'),
(120, 600, 218, 0.57, 11, '2020-10-27'),
(121, 600, 219, 0.57, 11, '2020-11-03'),
(122, 600, 220, 0.59, 11, '2020-11-03'),
(123, 599, 221, 0.59, 11, '2020-11-10'),
(124, 599, 225, 0.65, 11, '2020-11-19'),
(125, 583, 225, 0.92, 11, '2020-11-19'),
(126, 548, 225, 0.00, 11, '2020-11-19'),
(127, 599, 226, 0.64, 11, '2020-11-19'),
(128, 583, 226, 0.91, 11, '2020-11-19'),
(129, 548, 226, 0.00, 11, '2020-11-19'),
(130, 599, 227, 0.64, 11, '2020-11-19'),
(131, 583, 227, 0.91, 11, '2020-11-19'),
(132, 548, 227, 0.00, 11, '2020-11-19'),
(133, 599, 228, 0.65, 11, '2020-11-19'),
(134, 583, 228, 0.92, 11, '2020-11-19'),
(135, 548, 228, 0.00, 11, '2020-11-19'),
(136, 582, 229, 1.10, 11, '2020-11-19'),
(137, 599, 230, 0.87, 11, '2020-11-25'),
(138, 600, 230, 0.60, 11, '2020-11-25'),
(139, 601, 230, 0.35, 11, '2020-11-25'),
(140, 602, 230, -0.14, 11, '2020-11-25'),
(141, 599, 231, 0.85, 11, '2020-11-25'),
(142, 600, 231, 0.64, 11, '2020-11-25'),
(143, 601, 231, 0.38, 11, '2020-11-25'),
(144, 602, 231, -0.15, 11, '2020-11-25'),
(145, 599, 232, 0.60, 11, '2020-11-26'),
(146, 600, 233, 0.60, 11, '2020-11-26'),
(147, 599, 234, 0.60, 11, '2020-11-26'),
(148, 599, 235, 0.60, 11, '2020-11-26'),
(149, 599, 236, 0.60, 11, '2020-11-26'),
(150, 599, 237, 0.65, 11, '2020-11-27'),
(151, 622, 237, 0.92, 11, '2020-11-27'),
(152, 600, 222, 0.31, 11, '2020-12-02'),
(153, 599, 238, 0.66, 11, '2020-12-03'),
(154, 599, 239, 0.62, 11, '2020-12-03'),
(155, 599, 240, 0.67, 11, '2020-12-07'),
(156, 599, 241, 0.64, 11, '2020-12-07'),
(157, 599, 242, 0.65, 11, '2020-12-07'),
(158, 599, 243, 0.62, 11, '2020-12-07'),
(159, 599, 245, 0.64, 11, '2020-12-08'),
(160, 599, 246, 0.54, 11, '2020-12-09'),
(161, 599, 247, 0.65, 11, '2020-12-14'),
(162, 599, 248, 0.65, 11, '2020-12-14'),
(163, 599, 250, 0.63, 11, '2020-12-22'),
(164, 599, 251, 0.73, 11, '2021-01-08'),
(165, 599, 252, 0.68, 11, '2021-01-11'),
(166, 599, 254, 0.70, 11, '2021-01-18'),
(167, 599, 257, 0.70, 11, '2021-01-18'),
(168, 599, 253, 0.70, 11, '2021-01-19'),
(169, 599, 255, 0.73, 11, '2021-01-19'),
(170, 599, 256, 0.34, 11, '2021-01-19'),
(171, 599, 258, 0.73, 11, '2021-01-20'),
(172, 601, 260, 0.22, 11, '2021-01-26'),
(173, 599, 259, 0.73, 11, '2021-01-26'),
(174, 599, 261, 0.72, 11, '2021-01-28'),
(175, 599, 262, 0.72, 11, '2021-02-10'),
(176, 599, 263, 0.65, 11, '2021-02-10'),
(177, 599, 264, 0.72, 11, '2021-02-10'),
(178, 549, 258, 1.10, 11, '2021-02-15'),
(179, 549, 265, 1.10, 11, '2021-02-15'),
(180, 599, 265, 0.73, 11, '2021-02-15'),
(181, 599, 266, 0.82, 11, '2021-02-16'),
(182, 600, 267, 0.64, 11, '2021-02-25'),
(183, 599, 269, 0.00, 11, '2021-03-02'),
(184, 599, 270, 0.85, 11, '2021-03-02'),
(185, 599, 271, 0.82, 11, '2021-03-03'),
(186, 897, 272, 0.18, 11, '2021-03-08'),
(187, 593, 272, 1.90, 11, '2021-03-08'),
(188, 600, 272, 0.78, 11, '2021-03-08'),
(189, 599, 272, 0.84, 11, '2021-03-08'),
(190, 548, 272, 0.00, 11, '2021-03-08'),
(191, 599, 273, 1.14, 11, '2021-03-09'),
(192, 548, 273, 0.00, 11, '2021-03-09'),
(193, 548, 274, 0.00, 11, '2021-03-18'),
(194, 599, 274, 0.85, 11, '2021-03-18'),
(195, 429, 275, 0.00, 7, '2021-03-24'),
(196, 869, 275, 0.00, 7, '2021-03-24'),
(197, 882, 275, 0.00, 7, '2021-03-24'),
(198, 899, 275, 0.00, 7, '2021-03-24'),
(199, 898, 275, 0.00, 7, '2021-03-24'),
(200, 599, 276, 0.85, 11, '2021-03-29'),
(201, 554, 276, 0.90, 11, '2021-03-29'),
(202, 600, 276, 0.75, 11, '2021-03-29'),
(203, 599, 277, 0.85, 11, '2021-04-07'),
(204, 599, 278, 0.91, 11, '2021-04-09'),
(205, 599, 279, 0.91, 11, '2021-04-12'),
(206, 599, 280, 0.91, 11, '2021-04-12'),
(207, 599, 281, 0.90, 11, '2021-04-12'),
(208, 599, 284, 0.91, 11, '2021-04-20'),
(209, 622, 284, 1.20, 11, '2021-04-20'),
(210, 599, 290, 0.91, 11, '2021-04-26'),
(211, 599, 289, 0.91, 11, '2021-04-26'),
(212, 599, 288, 0.65, 11, '2021-04-26'),
(213, 599, 287, 0.91, 11, '2021-04-26'),
(214, 599, 286, 0.91, 11, '2021-04-26'),
(215, 599, 285, 0.91, 11, '2021-04-26'),
(216, 904, 292, 0.02, 11, '2021-04-28'),
(217, 622, 294, 1.26, 11, '2021-04-30'),
(218, 622, 296, 1.75, 11, '2021-05-06'),
(219, 622, 297, 1.75, 11, '2021-05-06'),
(220, 549, 298, 1.20, 11, '2021-05-06'),
(221, 599, 299, 0.95, 11, '2021-05-07'),
(222, 599, 300, 0.95, 11, '2021-05-07'),
(223, 599, 304, 0.96, 11, '2021-05-11'),
(224, 599, 305, 0.96, 11, '2021-05-11'),
(225, 599, 306, 0.96, 11, '2021-05-11'),
(226, 904, 307, 0.50, 11, '2021-05-11'),
(227, 904, 308, 0.05, 11, '2021-05-11'),
(228, 904, 309, 0.05, 11, '2021-05-12'),
(229, 599, 310, 0.95, 11, '2021-05-14'),
(230, 599, 301, 0.96, 11, '2021-05-14'),
(231, 599, 302, 0.96, 11, '2021-05-14'),
(232, 599, 311, 0.78, 11, '2021-05-25'),
(233, 599, 313, 0.77, 11, '2021-05-25'),
(234, 599, 314, 0.77, 11, '2021-05-25'),
(235, 599, 315, 0.77, 11, '2021-05-25'),
(236, 599, 318, 0.85, 11, '2021-05-28'),
(237, 599, 320, 0.76, 11, '2021-06-04'),
(238, 599, 321, 0.98, 11, '2021-06-07'),
(239, 599, 322, 0.98, 11, '2021-06-07'),
(240, 599, 316, 0.96, 11, '2021-06-08'),
(241, 599, 326, 0.98, 11, '2021-06-15'),
(242, 599, 327, 0.98, 11, '2021-06-15'),
(243, 599, 328, 0.98, 11, '2021-06-18'),
(244, 599, 330, 0.85, 11, '2021-06-29'),
(245, 599, 332, 1.00, 11, '2021-07-06'),
(246, 599, 333, 1.00, 11, '2021-07-06'),
(247, 600, 336, 0.90, 11, '2021-07-27'),
(248, 600, 337, 0.90, 11, '2021-07-27'),
(249, 599, 341, 1.03, 11, '2021-08-26'),
(250, 599, 342, 1.03, 11, '2021-08-26'),
(251, 961, 343, 0.55, 15, '2021-08-29'),
(252, 960, 344, 0.55, 15, '2021-08-31'),
(253, 600, 347, 0.92, 11, '2021-09-06'),
(254, 600, 348, 0.92, 11, '2021-09-06'),
(255, 600, 349, 0.92, 11, '2021-09-06'),
(256, 600, 350, 0.96, 11, '2021-09-13'),
(257, 960, 357, 0.54, 15, '2021-09-20'),
(258, 960, 358, 1.00, 15, '2021-09-23'),
(259, 910, 358, 1.00, 15, '2021-09-23'),
(260, 961, 358, 1.00, 15, '2021-09-23'),
(261, 962, 358, 1.00, 15, '2021-09-23'),
(262, 961, 359, 0.66, 15, '2021-09-25'),
(263, 960, 360, 0.65, 15, '2021-09-26'),
(264, 961, 360, 0.55, 15, '2021-09-26'),
(265, 962, 360, 0.40, 15, '2021-09-26'),
(266, 960, 361, 1.37, 15, '2021-09-26'),
(267, 962, 361, 0.15, 15, '2021-09-26'),
(268, 960, 362, 1.37, 15, '2021-09-26'),
(269, 962, 362, 0.15, 15, '2021-09-26'),
(270, 960, 363, 0.65, 15, '2021-09-27'),
(271, 961, 363, 0.55, 15, '2021-09-27'),
(272, 916, 363, 1.10, 15, '2021-09-27'),
(273, 960, 364, 1.00, 15, '2021-09-27'),
(274, 962, 364, 1.00, 15, '2021-09-27'),
(275, 963, 364, 1.00, 15, '2021-09-27'),
(276, 960, 365, 1.00, 15, '2021-09-27'),
(277, 961, 365, 1.00, 15, '2021-09-27'),
(278, 962, 365, 1.00, 15, '2021-09-27'),
(279, 599, 366, 0.80, 11, '2021-09-28'),
(280, 593, 366, 1.20, 11, '2021-09-28'),
(281, 960, 367, 0.50, 15, '2021-10-04'),
(282, 599, 368, 1.09, 11, '2021-10-15'),
(283, 599, 369, 1.09, 11, '2021-10-15'),
(284, 622, 370, 0.94, 11, '2021-10-21'),
(285, 622, 371, 0.94, 11, '2021-10-21'),
(286, 599, 371, 0.89, 11, '2021-10-21'),
(287, 599, 373, 0.95, 11, '2021-10-27'),
(288, 599, 374, 0.95, 11, '2021-10-27'),
(289, 599, 375, 0.95, 11, '2021-10-27'),
(290, 599, 376, 0.84, 11, '2021-10-28'),
(291, 599, 377, 0.95, 11, '2021-11-16'),
(292, 599, 378, 0.95, 11, '2021-11-16'),
(293, 599, 380, 1.17, 11, '2021-12-03'),
(294, 599, 381, 1.17, 11, '2021-12-03'),
(295, 600, 382, 0.85, 11, '2021-12-03'),
(296, 600, 383, 0.76, 11, '2022-01-13'),
(297, 993, 389, 0.33, 15, '2022-01-13'),
(298, 994, 389, 0.38, 15, '2022-01-13'),
(299, 992, 389, 0.35, 15, '2022-01-13'),
(300, 994, 392, 0.66, 15, '2022-01-20'),
(301, 973, 393, 0.00, 15, '2022-01-21'),
(302, 994, 394, 0.56, 15, '2022-01-26'),
(303, 993, 394, 0.33, 15, '2022-01-26'),
(304, 992, 394, 0.33, 15, '2022-01-26'),
(305, 909, 394, 0.00, 15, '2022-01-26'),
(306, 601, 396, 0.68, 11, '2022-02-03'),
(307, 897, 396, 0.28, 11, '2022-02-03'),
(308, 992, 397, 0.46, 15, '2022-02-03'),
(309, 993, 397, 0.33, 15, '2022-02-03'),
(310, 961, 397, 0.60, 15, '2022-02-03'),
(311, 993, 398, 0.33, 15, '2022-02-03'),
(312, 992, 398, 0.44, 15, '2022-02-03'),
(313, 994, 398, 0.66, 15, '2022-02-03'),
(314, 600, 400, 0.88, 11, '2022-02-14'),
(315, 996, 401, 0.30, 11, '2022-02-16'),
(316, 897, 401, 0.30, 11, '2022-02-16'),
(317, 600, 402, 0.76, 11, '2022-02-21'),
(318, 599, 402, 0.91, 11, '2022-02-21'),
(319, 1012, 403, 1.76, 11, '2022-02-22'),
(320, 599, 403, 0.98, 11, '2022-02-22'),
(321, 994, 406, 0.70, 15, '2022-03-08'),
(322, 992, 407, 0.44, 15, '2022-03-11'),
(323, 993, 408, 0.00, 15, '2022-03-16'),
(324, 1016, 408, 0.00, 15, '2022-03-16'),
(325, 1015, 408, 0.00, 15, '2022-03-16'),
(326, 1017, 408, 0.00, 15, '2022-03-16'),
(327, 1013, 408, 0.00, 15, '2022-03-16'),
(328, 932, 408, 0.00, 15, '2022-03-16'),
(329, 994, 408, 0.00, 15, '2022-03-16'),
(330, 918, 408, 0.00, 15, '2022-03-16'),
(331, 920, 408, 0.00, 15, '2022-03-16'),
(332, 961, 410, 0.60, 15, '2022-03-18'),
(333, 600, 413, 0.98, 11, '2022-03-29'),
(334, 994, 410, 0.70, 15, '2022-04-07'),
(335, 992, 410, 0.44, 15, '2022-04-07'),
(336, 994, 414, 0.57, 15, '2022-05-10'),
(337, 599, 415, 1.27, 11, '2022-05-12'),
(338, 599, 416, 1.27, 11, '2022-05-12'),
(339, 622, 417, 0.40, 11, '2022-05-13'),
(340, 600, 418, 1.19, 11, '2022-05-13'),
(341, 897, 419, 0.21, 11, '2022-05-13'),
(342, 995, 419, 0.61, 11, '2022-05-13'),
(343, 600, 419, 0.75, 11, '2022-05-13'),
(344, 971, 420, 1.30, 15, '2022-06-07'),
(345, 622, 421, 1.62, 11, '2022-06-14'),
(346, 599, 423, 1.45, 11, '2022-06-15'),
(347, 599, 424, 1.45, 11, '2022-06-15'),
(348, 549, 425, 0.00, 11, '2022-06-16'),
(349, 599, 426, 1.25, 11, '2022-06-21'),
(350, 599, 427, 1.25, 11, '2022-06-21'),
(351, 622, 427, 1.40, 11, '2022-06-21'),
(352, 599, 428, 1.25, 11, '2022-06-21'),
(353, 599, 429, 1.25, 11, '2022-06-21'),
(354, 622, 429, 1.40, 11, '2022-06-21'),
(355, 599, 430, 1.05, 11, '2022-06-27'),
(356, 622, 431, 1.40, 11, '2022-06-30'),
(357, 622, 433, 1.40, 11, '2022-06-30'),
(358, 599, 434, 1.25, 11, '2022-06-30'),
(359, 599, 435, 1.25, 11, '2022-07-01'),
(360, 600, 437, 0.86, 11, '2022-07-11'),
(361, 960, 436, 1.18, 15, '2022-07-12'),
(362, 1012, 438, 2.00, 11, '2022-07-26'),
(363, 961, 439, 1.00, 15, '2022-07-27'),
(364, 599, 440, 1.21, 11, '2022-08-04'),
(365, 599, 441, 1.21, 11, '2022-08-16'),
(366, 1012, 441, 1.77, 11, '2022-08-16'),
(367, 0, 441, 0.00, 11, '2022-08-16'),
(368, 599, 443, 1.15, 11, '2022-08-22'),
(369, 599, 444, 1.02, 11, '2022-09-12'),
(370, 1012, 440, 2.00, 11, '2022-09-28'),
(371, 599, 448, 1.15, 11, '2022-10-06'),
(372, 429, 449, 1.12, 7, '2022-10-10'),
(373, 357, 449, 2.64, 7, '2022-10-10'),
(374, 414, 449, 0.15, 7, '2022-10-10'),
(375, 368, 449, 1.75, 7, '2022-10-10'),
(376, 961, 450, 0.45, 15, '2022-10-25'),
(377, 909, 450, 0.01, 15, '2022-10-25'),
(378, 961, 451, 0.75, 15, '2022-11-02'),
(379, 909, 451, -1.00, 15, '2022-11-02'),
(380, 0, 451, 0.00, 15, '2022-11-02'),
(381, 1021, 452, 0.00, 15, '2022-11-03'),
(382, 1022, 453, 0.00, 15, '2022-11-07'),
(383, 1022, 454, 0.00, 15, '2022-11-07'),
(384, 909, 453, 0.00, 15, '2022-11-08'),
(385, 600, 457, 0.46, 11, '2023-01-05'),
(386, 897, 457, 0.24, 11, '2023-01-05'),
(387, 1012, 458, 1.70, 11, '2023-01-05'),
(388, 600, 459, 0.46, 11, '2023-01-05'),
(389, 0, 460, 0.81, 11, '2023-02-06'),
(390, 0, 461, 0.82, 11, '2023-02-06'),
(391, 1012, 465, 1.70, 11, '2023-07-11'),
(392, 841, 466, 0.88, 11, '2023-07-11'),
(393, 1012, 467, 1.70, 11, '2023-07-11'),
(394, 1012, 468, 1.64, 11, '2023-07-25'),
(395, 0, 470, 200.00, 16, '2023-11-06'),
(396, 1066, 471, 5.39, 16, '2023-11-06'),
(397, 1055, 473, 2.44, 16, '2023-11-06'),
(398, 1025, 473, 10.00, 16, '2023-11-06'),
(399, 1055, 474, 3.00, 16, '2023-11-08'),
(400, 0, 475, 10.00, 16, '2023-11-21');

-- --------------------------------------------------------

--
-- Table structure for table `productprices`
--

CREATE TABLE `productprices` (
  `id` int(11) NOT NULL,
  `productid` int(11) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `currency` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `productprocedures`
--

CREATE TABLE `productprocedures` (
  `id` int(11) NOT NULL,
  `processid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productprocedures`
--

INSERT INTO `productprocedures` (`id`, `processid`, `productid`, `status`) VALUES
(6, 3, 19, 1),
(7, 2, 17, 1),
(8, 2, 16, 1),
(9, 3, 15, 1),
(10, 3, 14, 1),
(11, 2, 13, 1),
(12, 2, 12, 1),
(13, 4, 11, 1),
(14, 4, 10, 1),
(15, 4, 9, 1),
(16, 4, 6, 1),
(17, 4, 5, 1),
(18, 4, 4, 1),
(19, 2, 3, 1),
(20, 4, 2, 1),
(21, 4, 1, 1),
(22, 5, 23, 1),
(23, 5, 22, 1),
(24, 5, 21, 1),
(25, 2, 8, 1),
(26, 2, 7, 1),
(31, 1, 25, 1),
(32, 2, 25, 1),
(33, 2, 24, 1),
(34, 1, 24, 1),
(35, 1, 18, 1),
(36, 2, 18, 1),
(37, 1, 28, 1),
(39, 3, 28, 1),
(40, 2, 28, 1),
(41, 3, 27, 1),
(42, 1, 27, 1),
(43, 2, 27, 1),
(44, 3, 26, 1),
(45, 1, 26, 1),
(46, 2, 26, 1);

-- --------------------------------------------------------

--
-- Table structure for table `productprocess`
--

CREATE TABLE `productprocess` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) DEFAULT NULL,
  `processingid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `productprocess`
--

INSERT INTO `productprocess` (`id`, `userid`, `productid`, `processingid`, `status`) VALUES
(8, 1, 34, 13, 1),
(13, 1, 33, 19, 1),
(16, 1, 16, 17, 1),
(20, 1, 13, 17, 1),
(22, 1, 28, 17, 1),
(23, 1, 27, 17, 1),
(24, 1, 24, 17, 1),
(25, 1, 17, 17, 1),
(26, 1, 15, 14, 1),
(27, 1, 26, 17, 1),
(28, 1, 25, 17, 1),
(29, 1, 18, 13, 1),
(30, 1, 14, 17, 1),
(31, 1, 12, 17, 1),
(32, 1, 11, 13, 1),
(33, 1, 10, 13, 1),
(34, 1, 9, 17, 1),
(35, 1, 8, 17, 1),
(36, 1, 7, 13, 1),
(37, 1, 6, 17, 1),
(38, 1, 5, 13, 1),
(39, 1, 4, 13, 1),
(40, 1, 3, 17, 1),
(41, 1, 2, 13, 1),
(42, 1, 1, 13, 1),
(43, 1, 41, 20, 1),
(44, 1, 42, 17, 1),
(45, 1, 44, 19, 1),
(46, 1, 48, 17, 1),
(47, 1, 47, 14, 1),
(48, 1, 46, 13, 1),
(49, 1, 50, 20, 1),
(50, 1, 52, 15, 1),
(51, 1, 20, 14, 1),
(52, 1, 22, 17, 1),
(53, 1, 60, 19, 1),
(54, 1, 71, 27, 1),
(55, 1, 70, 14, 1),
(56, 1, 69, 17, 1),
(57, 1, 68, 17, 1),
(58, 1, 67, 17, 1),
(59, 1, 66, 17, 1),
(60, 1, 65, 17, 1),
(61, 1, 64, 14, 1),
(62, 1, 63, 17, 1),
(63, 1, 62, 17, 1),
(64, 1, 61, 19, 1),
(65, 1, 82, 14, 1),
(66, 1, 76, 19, 1),
(67, 1, 79, 19, 1),
(68, 1, 80, 19, 1),
(69, 1, 77, 19, 1),
(70, 1, 78, 19, 1),
(71, 1, 81, 19, 1),
(72, 1, 86, 17, 1),
(73, 1, 93, 17, 1),
(74, 1, 101, 14, 1),
(75, 1, 84, 14, 1),
(77, 1, 109, 17, 1),
(78, 1, 108, 14, 1),
(79, 1, 107, 13, 1),
(80, 1, 106, 14, 1),
(81, 1, 105, 19, 1),
(82, 1, 104, 19, 1),
(83, 1, 89, 19, 1),
(84, 1, 96, 13, 1),
(85, 1, 119, 17, 1),
(86, 1, 54, 26, 1),
(87, 1, 121, 30, 1),
(88, 1, 40, 29, 1),
(89, 1, 124, 31, 1),
(90, 1, 126, 17, 1),
(91, 1, 125, 30, 1),
(92, 1, 91, 17, 1),
(93, 7, 394, 14, 1),
(94, 1, 396, 19, 1),
(96, 1, 428, 30, 1),
(97, 1, 85, 17, 1),
(98, 1, 395, 17, 1),
(99, 1, 374, 29, 1),
(100, 7, 357, 17, 1),
(101, 7, 358, 14, 1),
(102, 7, 359, 13, 1),
(103, 7, 361, 14, 1),
(104, 7, 362, 17, 1),
(105, 7, 363, 17, 1),
(106, 7, 367, 19, 1),
(107, 7, 368, 13, 1),
(109, 7, 375, 17, 1),
(110, 7, 377, 14, 1),
(111, 7, 379, 15, 1),
(112, 7, 381, 26, 1),
(113, 7, 384, 17, 1),
(114, 7, 385, 14, 1),
(115, 7, 386, 17, 1),
(116, 7, 387, 17, 1),
(117, 7, 388, 17, 1),
(118, 7, 389, 27, 1),
(119, 7, 390, 19, 1),
(120, 7, 391, 19, 1),
(121, 7, 392, 19, 1),
(122, 7, 393, 19, 1),
(124, 7, 395, 17, 1),
(125, 7, 396, 17, 1),
(126, 7, 399, 19, 1),
(127, 7, 401, 17, 1),
(128, 7, 407, 17, 1),
(129, 7, 411, 14, 1),
(130, 7, 414, 19, 1),
(131, 7, 415, 19, 1),
(132, 7, 416, 14, 1),
(133, 7, 417, 13, 1),
(134, 7, 418, 14, 1),
(135, 7, 419, 17, 1),
(136, 7, 427, 31, 1),
(138, 7, 429, 17, 1),
(139, 1, 100, 14, 1),
(140, 1, 410, 14, 1),
(141, 8, 432, 17, 1),
(142, 8, 433, 14, 1),
(143, 8, 434, 13, 1),
(144, 8, 436, 14, 1),
(145, 8, 437, 17, 1),
(146, 8, 438, 17, 1),
(147, 8, 442, 19, 1),
(149, 8, 449, 29, 1),
(150, 8, 450, 17, 1),
(151, 8, 452, 14, 1),
(152, 8, 454, 15, 1),
(153, 8, 456, 26, 1),
(154, 8, 459, 17, 1),
(156, 8, 461, 17, 1),
(157, 8, 462, 17, 1),
(158, 8, 463, 17, 1),
(160, 8, 465, 19, 1),
(161, 8, 466, 19, 1),
(162, 8, 467, 19, 1),
(163, 8, 468, 19, 1),
(164, 8, 469, 14, 1),
(165, 8, 470, 17, 1),
(166, 8, 471, 17, 1),
(167, 8, 474, 19, 1),
(168, 8, 476, 17, 1),
(169, 8, 478, 17, 1),
(170, 8, 481, 13, 1),
(171, 8, 485, 14, 1),
(172, 8, 486, 14, 1),
(173, 8, 489, 19, 1),
(174, 8, 490, 19, 1),
(175, 8, 491, 14, 1),
(176, 8, 492, 13, 1),
(177, 8, 493, 14, 1),
(178, 8, 494, 17, 1),
(179, 8, 502, 31, 1),
(180, 8, 503, 30, 1),
(181, 8, 504, 17, 1),
(182, 10, 440, 17, 1),
(183, 10, 441, 14, 1),
(184, 10, 442, 13, 1),
(185, 10, 444, 14, 1),
(186, 10, 445, 17, 1),
(187, 10, 446, 17, 1),
(188, 10, 450, 19, 1),
(189, 10, 451, 13, 1),
(191, 10, 458, 17, 1),
(193, 10, 462, 15, 1),
(195, 10, 467, 17, 1),
(196, 10, 468, 14, 1),
(197, 10, 469, 17, 1),
(198, 10, 470, 17, 1),
(199, 10, 471, 17, 1),
(201, 10, 473, 19, 1),
(202, 10, 474, 19, 1),
(203, 10, 475, 19, 1),
(204, 10, 476, 19, 1),
(205, 10, 477, 14, 1),
(206, 10, 478, 17, 1),
(207, 10, 479, 17, 1),
(208, 10, 482, 19, 1),
(209, 10, 484, 17, 1),
(210, 10, 486, 17, 1),
(211, 10, 489, 13, 1),
(212, 10, 493, 14, 1),
(213, 10, 494, 14, 1),
(214, 10, 497, 19, 1),
(215, 10, 498, 19, 1),
(217, 10, 500, 151, 1),
(219, 10, 502, 17, 1),
(220, 10, 510, 31, 1),
(221, 10, 511, 30, 1),
(222, 10, 512, 17, 1),
(227, 1, 515, 69, 1),
(229, 1, 472, 160, 1),
(230, 1, 460, 161, 1),
(231, 1, 516, 163, 1),
(232, 1, 443, 164, 1),
(233, 1, 464, 161, 1),
(234, 1, 516, 166, 1),
(236, 1, 517, 165, 1),
(237, 1, 518, 154, 1),
(238, 1, 519, 167, 1),
(239, 1, 499, 151, 1),
(240, 1, 501, 151, 1),
(241, 11, 544, 17, 1),
(242, 11, 545, 14, 1),
(243, 11, 546, 13, 1),
(244, 11, 548, 14, 1),
(245, 11, 549, 17, 1),
(246, 11, 550, 17, 1),
(247, 11, 554, 19, 1),
(248, 11, 555, 13, 1),
(249, 11, 561, 29, 1),
(250, 11, 562, 17, 1),
(251, 11, 564, 14, 1),
(253, 11, 568, 26, 1),
(254, 11, 571, 17, 1),
(255, 11, 572, 14, 1),
(256, 11, 573, 17, 1),
(257, 11, 574, 17, 1),
(258, 11, 575, 17, 1),
(259, 11, 576, 27, 1),
(260, 11, 577, 19, 1),
(261, 11, 578, 19, 1),
(262, 11, 579, 19, 1),
(263, 11, 580, 19, 1),
(264, 11, 581, 14, 1),
(265, 11, 582, 17, 1),
(266, 11, 583, 17, 1),
(267, 11, 586, 19, 1),
(268, 11, 588, 17, 1),
(269, 11, 590, 17, 1),
(270, 11, 593, 13, 1),
(271, 11, 597, 14, 1),
(272, 11, 598, 14, 1),
(273, 11, 601, 19, 1),
(274, 11, 602, 19, 1),
(275, 11, 603, 14, 1),
(276, 11, 604, 13, 1),
(277, 11, 605, 14, 1),
(278, 11, 606, 17, 1),
(279, 11, 614, 31, 1),
(280, 11, 615, 30, 1),
(281, 11, 616, 17, 1),
(282, 11, 625, 13, 1),
(283, 11, 600, 174, 1),
(284, 11, 599, 169, 1),
(285, 12, 626, 17, 1),
(286, 12, 627, 14, 1),
(287, 12, 628, 13, 1),
(288, 12, 630, 14, 1),
(289, 12, 631, 17, 1),
(290, 12, 632, 17, 1),
(291, 12, 636, 19, 1),
(292, 12, 637, 13, 1),
(293, 12, 643, 29, 1),
(294, 12, 644, 17, 1),
(295, 12, 646, 14, 1),
(296, 12, 648, 15, 1),
(297, 12, 650, 26, 1),
(298, 12, 653, 17, 1),
(299, 12, 654, 14, 1),
(300, 12, 655, 17, 1),
(301, 12, 656, 17, 1),
(302, 12, 657, 17, 1),
(303, 12, 658, 27, 1),
(304, 12, 659, 19, 1),
(305, 12, 660, 19, 1),
(306, 12, 661, 19, 1),
(307, 12, 662, 19, 1),
(308, 12, 663, 14, 1),
(309, 12, 664, 17, 1),
(310, 12, 665, 17, 1),
(311, 12, 668, 19, 1),
(312, 12, 670, 17, 1),
(313, 12, 672, 17, 1),
(314, 12, 675, 13, 1),
(315, 12, 679, 14, 1),
(316, 12, 680, 14, 1),
(317, 12, 683, 19, 1),
(318, 12, 684, 19, 1),
(319, 12, 685, 14, 1),
(320, 12, 686, 13, 1),
(321, 12, 687, 14, 1),
(322, 12, 688, 17, 1),
(323, 12, 696, 31, 1),
(324, 12, 697, 30, 1),
(325, 12, 698, 17, 1),
(326, 10, 709, 151, 1),
(327, 10, 708, 151, 1),
(328, 7, 412, 118, 1),
(329, 7, 426, 118, 1),
(330, 7, 539, 118, 1),
(331, 7, 712, 200, 1),
(332, 7, 713, 118, 1),
(333, 10, 483, 151, 1),
(334, 10, 543, 151, 1),
(335, 11, 748, 169, 1),
(336, 11, 736, 169, 1),
(337, 11, 724, 169, 1),
(338, 14, 750, 17, 1),
(339, 14, 751, 14, 1),
(340, 14, 752, 13, 1),
(341, 14, 754, 14, 1),
(342, 14, 755, 17, 1),
(343, 14, 756, 17, 1),
(344, 14, 760, 19, 1),
(345, 14, 761, 13, 1),
(346, 14, 767, 29, 1),
(347, 14, 768, 17, 1),
(348, 14, 770, 14, 1),
(349, 14, 772, 15, 1),
(350, 14, 774, 26, 1),
(351, 14, 777, 17, 1),
(352, 14, 778, 14, 1),
(353, 14, 779, 17, 1),
(354, 14, 780, 17, 1),
(355, 14, 781, 17, 1),
(356, 14, 782, 27, 1),
(357, 14, 783, 19, 1),
(358, 14, 784, 19, 1),
(359, 14, 785, 19, 1),
(360, 14, 786, 19, 1),
(361, 14, 787, 14, 1),
(362, 14, 788, 17, 1),
(363, 14, 789, 17, 1),
(364, 14, 792, 19, 1),
(365, 14, 794, 17, 1),
(366, 14, 796, 17, 1),
(367, 14, 799, 13, 1),
(368, 14, 803, 14, 1),
(369, 14, 804, 14, 1),
(370, 14, 807, 19, 1),
(371, 14, 808, 19, 1),
(372, 14, 809, 14, 1),
(373, 14, 810, 13, 1),
(374, 14, 811, 14, 1),
(375, 14, 812, 17, 1),
(376, 14, 820, 31, 1),
(377, 14, 821, 30, 1),
(378, 14, 822, 17, 1),
(379, 14, 836, 217, 1),
(380, 14, 835, 217, 1),
(381, 14, 819, 217, 1),
(382, 14, 837, 206, 1),
(384, 11, 841, 172, 1),
(385, 14, 850, 217, 1),
(387, 14, 844, 213, 1),
(389, 14, 853, 207, 1),
(391, 14, 843, 218, 1),
(392, 11, 889, 169, 1),
(393, 11, 893, 172, 1),
(394, 7, 405, 112, 1),
(395, 11, 895, 169, 1),
(396, 7, 901, 118, 1),
(397, 7, 898, 116, 1),
(398, 7, 899, 116, 1),
(399, 7, 882, 116, 1),
(400, 7, 869, 116, 1),
(401, 11, 904, 172, 1),
(402, 15, 905, 17, 1),
(403, 15, 906, 14, 1),
(404, 15, 907, 13, 1),
(405, 15, 909, 14, 1),
(406, 15, 910, 17, 1),
(407, 15, 911, 17, 1),
(408, 15, 915, 19, 1),
(409, 15, 916, 13, 1),
(410, 15, 922, 29, 1),
(411, 15, 923, 17, 1),
(412, 15, 925, 14, 1),
(413, 15, 927, 15, 1),
(414, 15, 929, 26, 1),
(415, 15, 932, 17, 1),
(416, 15, 933, 14, 1),
(417, 15, 934, 17, 1),
(418, 15, 935, 17, 1),
(419, 15, 936, 17, 1),
(420, 15, 937, 27, 1),
(421, 15, 938, 19, 1),
(422, 15, 939, 19, 1),
(423, 15, 940, 19, 1),
(424, 15, 941, 19, 1),
(425, 15, 942, 14, 1),
(426, 15, 943, 17, 1),
(427, 15, 944, 17, 1),
(428, 15, 947, 19, 1),
(429, 15, 949, 17, 1),
(430, 15, 951, 17, 1),
(431, 15, 954, 13, 1),
(432, 15, 958, 14, 1),
(433, 15, 959, 14, 1),
(434, 15, 962, 19, 1),
(435, 15, 963, 19, 1),
(436, 15, 964, 14, 1),
(437, 15, 965, 13, 1),
(438, 15, 966, 14, 1),
(439, 15, 967, 17, 1),
(440, 15, 975, 31, 1),
(441, 15, 976, 30, 1),
(442, 15, 977, 17, 1),
(443, 15, 960, 225, 1),
(444, 15, 961, 225, 1),
(446, 15, 968, 219, 1),
(449, 15, 994, 235, 1),
(450, 11, 995, 172, 1),
(451, 11, 996, 172, 1),
(452, 11, 624, 169, 1),
(454, 11, 1002, 168, 1),
(455, 11, 1003, 174, 1),
(456, 11, 1004, 174, 1),
(457, 11, 1001, 236, 1),
(458, 11, 897, 172, 1),
(459, 15, 993, 223, 1),
(460, 15, 1007, 225, 1),
(461, 15, 1009, 219, 1),
(462, 15, 1010, 224, 1),
(464, 11, 1012, 174, 1),
(465, 15, 973, 225, 1),
(466, 15, 992, 237, 1),
(467, 15, 972, 225, 1),
(468, 15, 971, 225, 1),
(469, 15, 970, 225, 1),
(471, 15, 969, 225, 1),
(472, 15, 1013, 225, 1),
(473, 15, 1014, 225, 1),
(474, 15, 1016, 238, 1),
(475, 15, 1015, 238, 1),
(476, 15, 1017, 238, 1),
(477, 15, 1011, 220, 1),
(478, 15, 1018, 225, 1),
(479, 15, 918, 237, 1),
(480, 15, 1021, 223, 1),
(481, 15, 1022, 223, 1),
(482, 15, 1023, 225, 1),
(483, 16, 1024, 17, 1),
(484, 16, 1025, 14, 1),
(485, 16, 1026, 13, 1),
(486, 16, 1028, 14, 1),
(487, 16, 1029, 17, 1),
(488, 16, 1030, 17, 1),
(489, 16, 1034, 19, 1),
(490, 16, 1035, 13, 1),
(491, 16, 1041, 29, 1),
(492, 16, 1042, 17, 1),
(493, 16, 1044, 14, 1),
(494, 16, 1046, 15, 1),
(495, 16, 1048, 26, 1),
(496, 16, 1051, 17, 1),
(497, 16, 1052, 14, 1),
(498, 16, 1053, 17, 1),
(499, 16, 1054, 17, 1),
(500, 16, 1055, 17, 1),
(501, 16, 1056, 27, 1),
(502, 16, 1057, 19, 1),
(503, 16, 1058, 19, 1),
(504, 16, 1059, 19, 1),
(505, 16, 1060, 19, 1),
(506, 16, 1061, 14, 1),
(507, 16, 1062, 17, 1),
(508, 16, 1063, 17, 1),
(509, 16, 1066, 19, 1),
(510, 16, 1068, 17, 1),
(511, 16, 1070, 17, 1),
(512, 16, 1073, 13, 1),
(513, 16, 1077, 14, 1),
(514, 16, 1078, 14, 1),
(515, 16, 1081, 19, 1),
(516, 16, 1082, 19, 1),
(517, 16, 1083, 14, 1),
(518, 16, 1084, 13, 1),
(519, 16, 1085, 14, 1),
(520, 16, 1086, 17, 1),
(521, 16, 1094, 31, 1),
(522, 16, 1095, 30, 1),
(523, 16, 1096, 17, 1);

-- --------------------------------------------------------

--
-- Table structure for table `products`
--

CREATE TABLE `products` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `categoryid` int(11) DEFAULT NULL,
  `dataset` varchar(255) DEFAULT NULL,
  `datasetid` varchar(500) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) DEFAULT NULL,
  `aralias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `substance` varchar(100) DEFAULT NULL,
  `size` varchar(100) DEFAULT NULL,
  `sheets` varchar(100) DEFAULT NULL,
  `origin` varchar(100) DEFAULT NULL,
  `unit_weight` varchar(100) DEFAULT NULL,
  `unit_base` varchar(100) DEFAULT NULL,
  `unit_pack` varchar(100) DEFAULT NULL,
  `unit_pallet` varchar(100) DEFAULT NULL,
  `pallet_height` int(11) DEFAULT NULL,
  `brandid` int(11) DEFAULT NULL,
  `manufacturerid` int(11) DEFAULT NULL,
  `packing` varchar(100) DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `quality` varchar(100) DEFAULT NULL,
  `leadtime` int(11) DEFAULT NULL,
  `reorder` int(11) DEFAULT NULL,
  `sbarcodeimage` varchar(255) DEFAULT NULL,
  `palletecode` varchar(255) DEFAULT NULL,
  `palletecodeimage` varchar(255) DEFAULT NULL,
  `productcolorimage` varchar(255) DEFAULT NULL,
  `excepectedrate` float(13,2) DEFAULT NULL,
  `excepectedrevenue` float(13,2) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `pricestatus` int(11) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `netexcepectedrevenue` float(13,2) DEFAULT 0.00,
  `netperton` float(13,2) DEFAULT 0.00,
  `totalquantity` float(13,2) DEFAULT 0.00,
  `used` float(13,2) DEFAULT 0.00,
  `balance` float(13,2) DEFAULT 0.00,
  `staticprice` int(11) DEFAULT 0,
  `profitperkg` float(13,2) DEFAULT 0.00,
  `co2budget` float(13,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `products`
--

INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(14, 1, 8, NULL, NULL, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 179000, 8, 8, '', 0, '', 0, 0, '', '', '', '14_color_Tulip_494_ATA.jpg', 95.00, 14019.12, 145.24, 1, 0, 0, '4', 11619.12, 2904.78, NULL, NULL, NULL, NULL, 2.36, 0.00),
(15, 1, 9, NULL, NULL, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 178648, 5, 8, '', 0, '', 0, 0, '', '', '', '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 14119.92, 677.00, 1, 0, 0, '1', 13539.92, 13539.92, NULL, NULL, NULL, NULL, 9.81, 0.00),
(18, 1, 6, NULL, NULL, 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 177976, 5, 8, '', 0, '', 0, 0, '', '', '', '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 14800.58, 733.03, 1, 0, 0, '1', 14660.58, 14660.58, NULL, NULL, NULL, NULL, 10.13, 0.00),
(19, 1, 6, NULL, NULL, 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 177656, 5, 8, '', 0, '', 0, 0, '', '', '', '19_color_bedding_sand.jpg', 80.00, 2556.40, 0.00, 1, 0, 0, '', 2556.40, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(20, 1, 8, NULL, NULL, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 177656, 5, 8, '', 0, '', 0, 0, '', '', '', '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '0', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(24, 1, 8, NULL, NULL, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 177656, 1, 8, '', 0, '', 0, 0, '', '', '', '24_color_52156_S.png', 100.00, 11746.63, 166.28, 1, 0, 0, '3', 9976.63, 3325.54, NULL, NULL, NULL, NULL, 2.72, 0.00),
(25, 1, 6, NULL, NULL, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 177304, 5, 8, '', 0, '', 0, 0, '', '', '', '25_color_download.jpg', 100.00, 22457.39, 195.07, 1, 0, 0, '5', 19507.39, 3901.48, NULL, NULL, NULL, NULL, 3.21, 0.00),
(29, 1, 5, NULL, NULL, 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '29_color_tantilum.jpg', 100.00, 13616.16, 0.00, 1, 0, 1, '', 13616.16, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(30, 1, 5, NULL, NULL, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '30_color_12_inv_$_1.JPG', 80.00, 10892.93, 0.00, 1, 0, 1, '', 10892.93, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(32, 1, 7, NULL, NULL, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, 0, 1, '', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(33, 1, 5, NULL, NULL, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 176542, 8, 8, '', 0, '', 0, 0, '', '', '', '33_color_depop-boards.jpg', 100.00, 6808.08, 0.00, 1, 0, 0, '', 6808.08, 0.00, NULL, NULL, NULL, NULL, 1.30, 0.00),
(34, 1, 5, NULL, NULL, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '34_color_depop-withgld.jpg', 60.00, 8169.70, 0.00, 1, 0, 0, '', 8169.70, 0.00, NULL, NULL, NULL, NULL, 9.14, 0.00),
(35, 1, 5, NULL, NULL, 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 6808.08, 0.00, 1, 0, 1, '', 6808.08, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(36, 1, 7, 'Price List', NULL, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(37, 1, 5, NULL, NULL, 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '37_color_2_inv_1490602912483463053580.jpg', 100.00, 13616.16, 680.81, 1, 0, 1, '1', 13616.16, 13616.16, NULL, NULL, NULL, NULL, 0.00, 0.00),
(38, 1, 7, NULL, NULL, 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 3010.17, 0.00, 1, 0, 1, '', 3010.17, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(39, 1, 7, NULL, NULL, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 6020.35, 0.00, 1, 0, 1, '', 6020.35, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(40, 1, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 176542, 5, 8, '', 0, '', 0, 0, '', '', '', '40_color_Aluminium Powder.jpg', 100.00, 24081.40, 0.00, 1, 0, 0, '', 24081.40, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(42, 1, 8, NULL, NULL, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 176542, 8, 8, '', 0, '', 0, 0, '', '', '', '42_color_tv-nometal.jpeg', 70.00, 18085.26, 196.57, 1, 0, 0, '4', 15725.26, 3931.31, NULL, NULL, NULL, NULL, 2.34, 0.00),
(43, 1, 1, NULL, NULL, 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 176190, 5, 8, '', 0, '', 0, 0, '', '', '', '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 51264.95, 2563247.25, 1, 0, 1, '0.001', 51264.95, 51264944.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(47, 1, 6, NULL, NULL, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 175870, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 8721.11, 57.71, 1, 0, 0, '5', 5771.11, 1154.22, NULL, NULL, NULL, NULL, 1.46, 0.00),
(49, 1, 8, NULL, NULL, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 175108, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 251.80, 0.00, 1, NULL, 1, '', 251.80, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(52, 1, 1, 'None', NULL, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 175108, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(53, 1, 12, NULL, NULL, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 175108, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(54, 1, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 175108, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(55, 1, 14, NULL, NULL, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 175108, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00, 0.00),
(56, 1, 5, 'None', NULL, 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 175108, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 38719.08, 615.32, 1, 0, 0, '3', 36919.08, 12306.36, NULL, NULL, NULL, NULL, 8.65, 0.00),
(63, 1, 8, NULL, NULL, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 174026, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1719.94, 73.50, 1, 0, 0, '1', 1469.94, 1469.94, NULL, NULL, NULL, NULL, 0.98, 0.00),
(64, 1, 8, NULL, NULL, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 174026, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 940.01, 84.00, 1, 0, 0, '0.5', 840.01, 1680.02, NULL, NULL, NULL, NULL, 1.08, 0.00),
(65, 1, 7, NULL, NULL, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 174026, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 2730.43, 91.52, 1, 0, 0, '1', 1830.43, 1830.43, NULL, NULL, NULL, NULL, 2.63, 0.00),
(68, 1, 8, NULL, NULL, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 173674, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1767.89, 68.39, 1, 0, 0, '1', 1367.89, 1367.89, NULL, NULL, NULL, NULL, 1.11, 0.00),
(69, 1, 7, NULL, NULL, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 173642, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 35634.31, 148.17, 1, 0, 0, '10', 29634.31, 2963.43, NULL, NULL, NULL, NULL, 2.40, 0.00),
(71, 1, 5, NULL, NULL, 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 172560, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, NULL, NULL, NULL, NULL, 0.00, 0.00),
(76, 1, 8, NULL, NULL, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 172560, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 3238.13, 50.95, 1, 0, 0, '2', 2038.13, 1019.07, NULL, NULL, NULL, NULL, 0.99, 0.00),
(77, 1, 7, NULL, NULL, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 172528, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 6579.46, 135.49, 1, 0, 0, '2', 5419.46, 2709.73, NULL, NULL, NULL, NULL, 2.50, 0.00),
(79, 1, 5, NULL, NULL, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 172176, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 17806.85, 148.07, 1, 0, 0, '5', 14806.85, 2961.37, NULL, NULL, NULL, NULL, 2.46, 0.00),
(80, 1, 6, NULL, NULL, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 171824, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 10231.71, 225.79, 1, 0, 0, '2', 9031.71, 4515.85, NULL, NULL, NULL, NULL, 3.75, 0.00),
(84, 1, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 171472, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 100.00, 52721.75, 527.22, 1, 1, 0, '5', 52721.75, 10544.35, NULL, NULL, NULL, NULL, 6.63, 0.00),
(85, 1, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 170390, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 100.00, 20285.86, 202.86, 1, 1, 0, '5', 20285.86, 4057.17, NULL, NULL, NULL, NULL, 3.17, 0.00),
(86, 1, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Yield', 'Low_Yield', 'Low_Yield', '56805949', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 169308, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 100.00, 61952.27, 619.52, 1, 1, 0, '5', 61952.27, 12390.45, NULL, NULL, NULL, NULL, 1.97, 0.00),
(87, 1, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 168956, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 375849.16, 830.70, 1, 1, 0, '22', 365509.16, 16614.05, NULL, NULL, NULL, NULL, 9.18, 0.00),
(88, 1, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 167874, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 585176.69, 1304.95, 1, 1, 0, '22', 574176.69, 26098.94, NULL, NULL, NULL, NULL, 14.37, 0.00),
(89, 1, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 166792, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 211525.95, 459.74, 1, 1, 0, '22', 202285.95, 9194.82, NULL, NULL, NULL, NULL, 5.39, 0.00),
(90, 1, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 165710, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 41946.55, 2068.83, 1, 1, 0, '1', 41376.55, 41376.55, NULL, NULL, NULL, NULL, 26.06, 0.00),
(91, 1, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 165358, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 67128.37, 3332.42, 1, 1, 0, '1', 66648.37, 66648.37, NULL, NULL, NULL, NULL, 38.85, 0.00),
(92, 1, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 165006, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 119995.39, 5966.27, 1, 1, 0, '1', 119325.39, 119325.39, NULL, NULL, NULL, NULL, 64.32, 0.00),
(93, 1, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 164654, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 28455.22, 474.25, 1, 1, 0, '3', 28455.22, 9485.07, NULL, NULL, NULL, NULL, 7.31, 0.00),
(94, 1, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 163982, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 25201.04, 630.03, 1, 1, 0, '2', 25201.04, 12600.52, NULL, NULL, NULL, NULL, 9.84, 0.00),
(95, 1, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 163310, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 99.00, 19463.89, 973.19, 1, 1, 0, '1', 19463.89, 19463.89, NULL, NULL, NULL, NULL, 13.50, 0.00),
(96, 1, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 162990, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 99.00, 7736.47, 128.94, 1, 1, 0, '3', 7736.47, 2578.82, NULL, NULL, NULL, NULL, 1.87, 0.00),
(97, 1, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 162670, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 99.00, 31541.78, 525.70, 1, 1, 0, '3', 31541.78, 10513.93, NULL, NULL, NULL, NULL, 6.55, 0.00),
(98, 1, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 162350, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 62159.81, 3107.99, 1, 1, 0, '1', 62159.81, 62159.81, NULL, NULL, NULL, NULL, 38.86, 0.00),
(99, 1, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 161268, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 33922.87, 1696.14, 1, 1, 0, '1', 33922.87, 33922.87, NULL, NULL, NULL, NULL, 24.15, 0.00),
(100, 1, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 160506, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 97064.99, 1617.75, 1, 1, 0, '3', 97064.99, 32355.00, NULL, NULL, NULL, NULL, 18.73, 0.00),
(101, 1, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 159424, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 183335.20, 916.68, 1, 1, 0, '10', 183335.20, 18333.52, NULL, NULL, NULL, NULL, 10.56, 0.00),
(102, 1, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Anywhere', '', '', '', '1025', 158342, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 11916.61, 119.17, 1, 1, 0, '5', 11916.61, 2383.32, NULL, NULL, NULL, 0, 1.44, 0.00),
(103, 1, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 158310, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 8808.11, 88.08, 1, 1, 0, '5', 8808.11, 1761.62, NULL, NULL, NULL, 0, 1.02, 0.00),
(104, 1, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 158310, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 99.00, 6385.26, 63.85, 1, 1, 0, '5', 6385.26, 1277.05, NULL, NULL, NULL, 0, 0.74, 0.00),
(105, 1, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 158310, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0, 0.00, 0.00),
(106, 1, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 158310, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 523728.62, 13062.22, 1, 1, 0, '2', 522488.62, 261244.31, NULL, NULL, NULL, 0, 150.67, 0.00),
(107, 1, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 157228, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 974187.69, 24315.19, 1, 1, 0, '2', 972607.69, 486303.84, NULL, NULL, NULL, 0, 258.70, 0.00),
(108, 1, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 156146, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 263654.78, 6562.87, 1, 1, 0, '2', 262514.78, 131257.39, NULL, NULL, NULL, 0, 83.37, 0.00),
(109, 1, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 155064, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 208054.27, 3425.07, 1, 1, 0, '3', 205504.27, 68501.42, NULL, NULL, NULL, 0, 40.41, 0.00),
(111, 1, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1100', 153982, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 21635.00, 1081.75, 1, 1, 0, '1', 21635.00, 21635.00, NULL, NULL, NULL, 0, 17.13, 0.00),
(112, 1, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 152900, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 19585.55, 979.28, 1, 1, 0, '1', 19585.55, 19585.55, NULL, NULL, NULL, 0, 7.97, 0.00),
(113, 1, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 152548, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 6997.47, 349.87, 1, 1, 0, '1', 6997.47, 6997.47, NULL, NULL, NULL, 0, 7.50, 0.00),
(114, 1, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 151786, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 16446.36, 822.32, 1, 1, 0, '1', 16446.36, 16446.36, NULL, NULL, NULL, 0, 5.34, 0.00),
(115, 1, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 151434, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 70.00, 10168.88, 508.44, 1, 1, 0, '1', 10168.88, 10168.88, NULL, NULL, NULL, 0, 1.42, 0.00),
(116, 1, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 151434, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 61428.61, 1535.72, 1, 1, 0, '2', 61428.61, 30714.30, NULL, NULL, NULL, 0, 16.05, 0.00),
(117, 1, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '1025', 150352, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 70646.70, 1177.45, 1, 1, 0, '3', 70646.70, 23548.90, NULL, NULL, NULL, 0, 12.67, 0.00),
(124, 1, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 149270, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 89579.91, 447.90, 1, NULL, 0, '10', 89579.91, 8957.99, NULL, NULL, NULL, 0, 5.09, 0.00),
(125, 1, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 149270, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 62433.68, 312.17, 1, NULL, 0, '10', 62433.68, 6243.37, NULL, NULL, NULL, 0, 3.55, 0.00),
(126, 1, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '1025', 149270, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 13449.34, 112.08, 1, NULL, 0, '6', 13449.34, 2241.56, NULL, NULL, NULL, 0, 1.45, 0.00),
(127, 1, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 148950, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, NULL, NULL, NULL, 1, 0.00, 0.00),
(131, 1, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 148950, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, NULL, NULL, NULL, 1, 0.00, 0.00),
(132, 4, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 148950, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 14019.12, 145.24, 1, NULL, 0, '4', 11619.12, 2904.78, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(133, 4, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 148598, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 14119.92, 677.00, 1, NULL, 0, '1', 13539.92, 13539.92, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(134, 4, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 147926, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 14800.58, 733.03, 1, NULL, 0, '1', 14660.58, 14660.58, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(135, 4, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 147606, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 2556.40, 0.00, 1, NULL, 0, '', 2556.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(136, 4, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 147606, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(137, 4, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 147606, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 11746.63, 166.28, 1, NULL, 0, '3', 9976.63, 3325.54, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(138, 4, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 147254, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 22457.39, 195.07, 1, NULL, 0, '5', 19507.39, 3901.48, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(139, 4, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 13616.16, 0.00, 1, NULL, 1, '', 13616.16, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(140, 4, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 10892.93, 0.00, 1, NULL, 1, '', 10892.93, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(141, 4, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(142, 4, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 146492, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 6808.08, 0.00, 1, NULL, 0, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(143, 4, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 8169.70, 0.00, 1, NULL, 0, '', 8169.70, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(144, 4, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 6808.08, 0.00, 1, NULL, 1, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(145, 4, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(146, 4, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 13616.16, 680.81, 1, NULL, 1, '1', 13616.16, 13616.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(147, 4, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 3010.17, 0.00, 1, NULL, 1, '', 3010.17, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(148, 4, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 6020.35, 0.00, 1, NULL, 1, '', 6020.35, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(149, 4, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 146492, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 24081.40, 0.00, 1, NULL, 0, '', 24081.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(150, 4, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 146492, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 18085.26, 196.57, 1, NULL, 0, '4', 15725.26, 3931.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(151, 4, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 146140, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 51264.95, 2563247.25, 1, NULL, 1, '0.001', 51264.95, 51264944.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(152, 4, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 145820, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 8721.11, 57.71, 1, NULL, 0, '5', 5771.11, 1154.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(153, 4, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 145058, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 251.80, 0.00, 1, NULL, 1, '', 251.80, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(154, 4, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 145058, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(155, 4, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 145058, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(156, 4, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 145058, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(157, 4, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 145058, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(158, 4, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 145058, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 38719.08, 615.32, 1, NULL, 0, '3', 36919.08, 12306.36, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(159, 4, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 143976, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1719.94, 73.50, 1, NULL, 0, '1', 1469.94, 1469.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(160, 4, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 143976, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 940.01, 84.00, 1, NULL, 0, '0.5', 840.01, 1680.02, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(161, 4, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 143976, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 2730.43, 91.52, 1, NULL, 0, '1', 1830.43, 1830.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(162, 4, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 143624, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1767.89, 68.39, 1, NULL, 0, '1', 1367.89, 1367.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(163, 4, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 143592, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 35634.31, 148.17, 1, NULL, 0, '10', 29634.31, 2963.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(164, 4, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 142510, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(165, 4, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 142510, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 3238.13, 50.95, 1, NULL, 0, '2', 2038.13, 1019.07, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(166, 4, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 142478, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 6579.46, 135.49, 1, NULL, 0, '2', 5419.46, 2709.73, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(167, 4, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 142126, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 17806.85, 148.07, 1, NULL, 0, '5', 14806.85, 2961.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(168, 4, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 141774, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 10231.71, 225.79, 1, NULL, 0, '2', 9031.71, 4515.85, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(169, 4, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 141422, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 68939.38, 644.64, 1, NULL, 0, '5', 64464.38, 12892.88, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(170, 4, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 140340, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 30673.36, 278.73, 1, NULL, 0, '5', 27873.36, 5574.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(171, 4, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 139668, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 23319.47, 205.19, 1, NULL, 0, '5', 20519.47, 4103.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(172, 4, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 139316, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 375849.16, 830.70, 1, NULL, 0, '22', 365509.16, 16614.05, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(173, 4, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 138234, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 585176.69, 1304.95, 1, NULL, 0, '22', 574176.69, 26098.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(174, 4, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 137152, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 211525.95, 459.74, 1, NULL, 0, '22', 202285.95, 9194.82, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(175, 4, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 136070, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 41946.55, 2068.83, 1, NULL, 0, '1', 41376.55, 41376.55, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(176, 4, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 135718, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 67128.37, 3332.42, 1, NULL, 0, '1', 66648.37, 66648.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(177, 4, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 135366, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 119995.39, 5966.27, 1, NULL, 0, '1', 119325.39, 119325.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(178, 4, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 135014, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 26205.46, 409.26, 1, NULL, 0, '3', 24555.46, 8185.15, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(179, 4, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 134662, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 24265.21, 593.73, 1, NULL, 0, '2', 23749.21, 11874.61, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(180, 4, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 134310, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 24923.86, 1246.19, 1, NULL, 0, '1', 24923.86, 24923.86, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(181, 4, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 133990, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 12087.47, 199.26, 1, NULL, 0, '3', 11955.47, 3985.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(182, 4, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 133670, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 27220.98, 453.68, 1, NULL, 0, '3', 27220.98, 9073.66, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(183, 4, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 133350, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 62596.52, 3103.83, 1, NULL, 0, '1', 62076.52, 62076.52, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(184, 4, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 132268, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 35291.57, 1738.58, 1, NULL, 0, '1', 34771.57, 34771.57, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(185, 4, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 131506, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 96150.23, 1576.50, 1, NULL, 0, '3', 94590.23, 31530.08, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(186, 4, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 130424, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 176226.20, 855.13, 1, NULL, 0, '10', 171026.20, 17102.62, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(187, 4, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 129342, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 9932.63, 87.33, 1, NULL, 0, '5', 8732.63, 1746.53, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(188, 4, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 129342, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 8158.95, 69.59, 1, NULL, 0, '5', 6958.95, 1391.79, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(189, 4, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 129342, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 5804.78, 46.05, 1, NULL, 0, '5', 4604.78, 920.96, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(190, 4, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 129342, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(191, 4, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 129342, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 523728.62, 13062.22, 1, NULL, 0, '2', 522488.62, 261244.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(192, 4, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 128260, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 974187.69, 24315.19, 1, NULL, 0, '2', 972607.69, 486303.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(193, 4, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 127178, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 263654.78, 6562.87, 1, NULL, 0, '2', 262514.78, 131257.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(194, 4, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 126096, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 208054.27, 3425.07, 1, NULL, 0, '3', 205504.27, 68501.42, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(195, 4, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 125014, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 19664.65, 969.23, 1, NULL, 0, '1', 19384.65, 19384.65, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(196, 4, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 123932, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 15937.83, 775.39, 1, NULL, 0, '1', 15507.83, 15507.83, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(197, 4, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 123260, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 10963.21, 526.66, 1, NULL, 0, '1', 10533.21, 10533.21, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(198, 4, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 122178, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5676.67, 264.83, 1, NULL, 0, '1', 5296.67, 5296.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(199, 4, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 121826, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 3954.11, 176.21, 1, NULL, 0, '1', 3524.11, 3524.11, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(200, 4, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 121506, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 47337.02, 1159.03, 1, NULL, 0, '2', 46361.02, 23180.51, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(201, 4, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 120424, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 55203.65, 897.56, 1, NULL, 0, '3', 53853.65, 17951.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(202, 4, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 119342, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 89579.91, 447.90, 1, NULL, 0, '10', 89579.91, 8957.99, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(203, 4, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 119342, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 62433.68, 312.17, 1, NULL, 0, '10', 62433.68, 6243.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(204, 4, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 119342, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 47904.54, 119.76, 1, NULL, 0, '20', 47904.54, 2395.23, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(205, 4, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 118990, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(206, 4, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 118990, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(207, 5, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 118990, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 14019.12, 145.24, 1, NULL, 0, '4', 11619.12, 2904.78, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(208, 5, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 118638, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 14119.92, 677.00, 1, NULL, 0, '1', 13539.92, 13539.92, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(209, 5, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 117966, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 14800.58, 733.03, 1, NULL, 0, '1', 14660.58, 14660.58, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(210, 5, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 117646, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 2556.40, 0.00, 1, NULL, 0, '', 2556.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(211, 5, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 117646, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(212, 5, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 117646, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 11746.63, 166.28, 1, NULL, 0, '3', 9976.63, 3325.54, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(213, 5, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 117294, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 22457.39, 195.07, 1, NULL, 0, '5', 19507.39, 3901.48, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(214, 5, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 13616.16, 0.00, 1, NULL, 1, '', 13616.16, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(215, 5, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 10892.93, 0.00, 1, NULL, 1, '', 10892.93, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(216, 5, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(217, 5, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 116532, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 6808.08, 0.00, 1, NULL, 0, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(218, 5, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 8169.70, 0.00, 1, NULL, 0, '', 8169.70, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(219, 5, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 6808.08, 0.00, 1, NULL, 1, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(220, 5, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(221, 5, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 13616.16, 680.81, 1, NULL, 1, '1', 13616.16, 13616.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(222, 5, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 3010.17, 0.00, 1, NULL, 1, '', 3010.17, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(223, 5, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 6020.35, 0.00, 1, NULL, 1, '', 6020.35, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(224, 5, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 116532, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 24081.40, 0.00, 1, NULL, 0, '', 24081.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(225, 5, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 116532, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 18085.26, 196.57, 1, NULL, 0, '4', 15725.26, 3931.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(226, 5, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 116180, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 51264.95, 2563247.25, 1, NULL, 1, '0.001', 51264.95, 51264944.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(227, 5, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 115860, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 8721.11, 57.71, 1, NULL, 0, '5', 5771.11, 1154.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(228, 5, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 115098, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 251.80, 0.00, 1, NULL, 1, '', 251.80, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(229, 5, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 115098, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(230, 5, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 115098, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(231, 5, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 115098, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(232, 5, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 115098, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(233, 5, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 115098, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 38719.08, 615.32, 1, NULL, 0, '3', 36919.08, 12306.36, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(234, 5, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 114016, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1719.94, 73.50, 1, NULL, 0, '1', 1469.94, 1469.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(235, 5, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 114016, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 940.01, 84.00, 1, NULL, 0, '0.5', 840.01, 1680.02, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(236, 5, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 114016, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 2730.43, 91.52, 1, NULL, 0, '1', 1830.43, 1830.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(237, 5, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 113664, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1767.89, 68.39, 1, NULL, 0, '1', 1367.89, 1367.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(238, 5, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 113632, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 35634.31, 148.17, 1, NULL, 0, '10', 29634.31, 2963.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(239, 5, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 112550, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(240, 5, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 112550, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 3238.13, 50.95, 1, NULL, 0, '2', 2038.13, 1019.07, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(241, 5, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 112518, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 6579.46, 135.49, 1, NULL, 0, '2', 5419.46, 2709.73, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(242, 5, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 112166, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 17806.85, 148.07, 1, NULL, 0, '5', 14806.85, 2961.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(243, 5, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 111814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 10231.71, 225.79, 1, NULL, 0, '2', 9031.71, 4515.85, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(244, 5, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 111462, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 68939.38, 644.64, 1, NULL, 0, '5', 64464.38, 12892.88, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(245, 5, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 110380, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 30673.36, 278.73, 1, NULL, 0, '5', 27873.36, 5574.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(246, 5, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 109708, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 23319.47, 205.19, 1, NULL, 0, '5', 20519.47, 4103.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(247, 5, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 109356, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 375849.16, 830.70, 1, NULL, 0, '22', 365509.16, 16614.05, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(248, 5, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 108274, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 585176.69, 1304.95, 1, NULL, 0, '22', 574176.69, 26098.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(249, 5, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 107192, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 211525.95, 459.74, 1, NULL, 0, '22', 202285.95, 9194.82, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(250, 5, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 106110, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 41946.55, 2068.83, 1, NULL, 0, '1', 41376.55, 41376.55, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(251, 5, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 105758, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 67128.37, 3332.42, 1, NULL, 0, '1', 66648.37, 66648.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(252, 5, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 105406, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 119995.39, 5966.27, 1, NULL, 0, '1', 119325.39, 119325.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(253, 5, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 105054, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 26205.46, 409.26, 1, NULL, 0, '3', 24555.46, 8185.15, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(254, 5, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 104702, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 24265.21, 593.73, 1, NULL, 0, '2', 23749.21, 11874.61, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(255, 5, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 104350, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 24923.86, 1246.19, 1, NULL, 0, '1', 24923.86, 24923.86, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(256, 5, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 104030, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 12087.47, 199.26, 1, NULL, 0, '3', 11955.47, 3985.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(257, 5, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 103710, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 27220.98, 453.68, 1, NULL, 0, '3', 27220.98, 9073.66, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(258, 5, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 103390, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 62596.52, 3103.83, 1, NULL, 0, '1', 62076.52, 62076.52, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(259, 5, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 102308, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 35291.57, 1738.58, 1, NULL, 0, '1', 34771.57, 34771.57, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(260, 5, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 101546, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 96150.23, 1576.50, 1, NULL, 0, '3', 94590.23, 31530.08, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(261, 5, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 100464, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 176226.20, 855.13, 1, NULL, 0, '10', 171026.20, 17102.62, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(262, 5, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 99382, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 9932.63, 87.33, 1, NULL, 0, '5', 8732.63, 1746.53, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(263, 5, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 99382, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 8158.95, 69.59, 1, NULL, 0, '5', 6958.95, 1391.79, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(264, 5, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 99382, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 5804.78, 46.05, 1, NULL, 0, '5', 4604.78, 920.96, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(265, 5, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 99382, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(266, 5, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 99382, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 523728.62, 13062.22, 1, NULL, 0, '2', 522488.62, 261244.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(267, 5, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 98300, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 974187.69, 24315.19, 1, NULL, 0, '2', 972607.69, 486303.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(268, 5, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 97218, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 263654.78, 6562.87, 1, NULL, 0, '2', 262514.78, 131257.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(269, 5, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 96136, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 208054.27, 3425.07, 1, NULL, 0, '3', 205504.27, 68501.42, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(270, 5, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 95054, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 19664.65, 969.23, 1, NULL, 0, '1', 19384.65, 19384.65, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(271, 5, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 93972, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 15937.83, 775.39, 1, NULL, 0, '1', 15507.83, 15507.83, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(272, 5, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 93300, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 10963.21, 526.66, 1, NULL, 0, '1', 10533.21, 10533.21, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(273, 5, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 92218, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5676.67, 264.83, 1, NULL, 0, '1', 5296.67, 5296.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(274, 5, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 91866, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 3954.11, 176.21, 1, NULL, 0, '1', 3524.11, 3524.11, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(275, 5, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 91546, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 47337.02, 1159.03, 1, NULL, 0, '2', 46361.02, 23180.51, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(276, 5, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 90464, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 55203.65, 897.56, 1, NULL, 0, '3', 53853.65, 17951.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(277, 5, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 89382, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 89579.91, 447.90, 1, NULL, 0, '10', 89579.91, 8957.99, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(278, 5, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 89382, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 62433.68, 312.17, 1, NULL, 0, '10', 62433.68, 6243.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(279, 5, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 89382, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 47904.54, 119.76, 1, NULL, 0, '20', 47904.54, 2395.23, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(280, 5, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 89030, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(281, 5, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 89030, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(282, 6, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 89030, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 14019.12, 145.24, 1, NULL, 0, '4', 11619.12, 2904.78, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(283, 6, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 88678, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 14119.92, 677.00, 1, NULL, 0, '1', 13539.92, 13539.92, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(284, 6, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 88006, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 14800.58, 733.03, 1, NULL, 0, '1', 14660.58, 14660.58, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(285, 6, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 87686, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 2556.40, 0.00, 1, NULL, 0, '', 2556.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(286, 6, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 87686, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(287, 6, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 87686, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 11746.63, 166.28, 1, NULL, 0, '3', 9976.63, 3325.54, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(288, 6, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 87334, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 22457.39, 195.07, 1, NULL, 0, '5', 19507.39, 3901.48, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(289, 6, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 13616.16, 0.00, 1, NULL, 1, '', 13616.16, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(290, 6, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 10892.93, 0.00, 1, NULL, 1, '', 10892.93, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(291, 6, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(292, 6, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 86572, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 6808.08, 0.00, 1, NULL, 0, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(293, 6, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 8169.70, 0.00, 1, NULL, 0, '', 8169.70, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(294, 6, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 6808.08, 0.00, 1, NULL, 1, '', 6808.08, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(295, 6, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(296, 6, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 13616.16, 680.81, 1, NULL, 1, '1', 13616.16, 13616.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(297, 6, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 3010.17, 0.00, 1, NULL, 1, '', 3010.17, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(298, 6, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 6020.35, 0.00, 1, NULL, 1, '', 6020.35, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(299, 6, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 86572, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 24081.40, 0.00, 1, NULL, 0, '', 24081.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(300, 6, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 86572, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 18085.26, 196.57, 1, NULL, 0, '4', 15725.26, 3931.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(301, 6, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 86220, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 51264.95, 2563247.25, 1, NULL, 1, '0.001', 51264.95, 51264944.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(302, 6, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 85900, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 8721.11, 57.71, 1, NULL, 0, '5', 5771.11, 1154.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(303, 6, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 85138, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 251.80, 0.00, 1, NULL, 1, '', 251.80, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(304, 6, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 85138, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(305, 6, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 85138, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(306, 6, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 85138, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(307, 6, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 85138, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(308, 6, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 85138, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 38719.08, 615.32, 1, NULL, 0, '3', 36919.08, 12306.36, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(309, 6, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 84056, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1719.94, 73.50, 1, NULL, 0, '1', 1469.94, 1469.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(310, 6, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 84056, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 940.01, 84.00, 1, NULL, 0, '0.5', 840.01, 1680.02, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(311, 6, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 84056, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 2730.43, 91.52, 1, NULL, 0, '1', 1830.43, 1830.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(312, 6, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 83704, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1767.89, 68.39, 1, NULL, 0, '1', 1367.89, 1367.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(313, 6, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 83672, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 35634.31, 148.17, 1, NULL, 0, '10', 29634.31, 2963.43, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(314, 6, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 82590, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(315, 6, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 82590, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 3238.13, 50.95, 1, NULL, 0, '2', 2038.13, 1019.07, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(316, 6, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 82558, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 6579.46, 135.49, 1, NULL, 0, '2', 5419.46, 2709.73, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(317, 6, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 82206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 17806.85, 148.07, 1, NULL, 0, '5', 14806.85, 2961.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(318, 6, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 81854, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 10231.71, 225.79, 1, NULL, 0, '2', 9031.71, 4515.85, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(319, 6, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 81502, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 68939.38, 644.64, 1, NULL, 0, '5', 64464.38, 12892.88, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(320, 6, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 80420, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 30673.36, 278.73, 1, NULL, 0, '5', 27873.36, 5574.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(321, 6, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 79748, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 23319.47, 205.19, 1, NULL, 0, '5', 20519.47, 4103.89, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(322, 6, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 79396, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 375849.16, 830.70, 1, NULL, 0, '22', 365509.16, 16614.05, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(323, 6, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 78314, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 585176.69, 1304.95, 1, NULL, 0, '22', 574176.69, 26098.94, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(324, 6, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 77232, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 211525.95, 459.74, 1, NULL, 0, '22', 202285.95, 9194.82, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(325, 6, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 76150, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 41946.55, 2068.83, 1, NULL, 0, '1', 41376.55, 41376.55, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(326, 6, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 75798, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 67128.37, 3332.42, 1, NULL, 0, '1', 66648.37, 66648.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(327, 6, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 75446, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 119995.39, 5966.27, 1, NULL, 0, '1', 119325.39, 119325.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(328, 6, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 75094, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 26205.46, 409.26, 1, NULL, 0, '3', 24555.46, 8185.15, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(329, 6, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 74742, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 24265.21, 593.73, 1, NULL, 0, '2', 23749.21, 11874.61, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(330, 6, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 74390, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 24923.86, 1246.19, 1, NULL, 0, '1', 24923.86, 24923.86, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(331, 6, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 74070, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 12087.47, 199.26, 1, NULL, 0, '3', 11955.47, 3985.16, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(332, 6, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 73750, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 27220.98, 453.68, 1, NULL, 0, '3', 27220.98, 9073.66, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(333, 6, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 73430, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 62596.52, 3103.83, 1, NULL, 0, '1', 62076.52, 62076.52, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(334, 6, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 72348, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 35291.57, 1738.58, 1, NULL, 0, '1', 34771.57, 34771.57, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(335, 6, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 71586, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 96150.23, 1576.50, 1, NULL, 0, '3', 94590.23, 31530.08, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(336, 6, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 70504, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 176226.20, 855.13, 1, NULL, 0, '10', 171026.20, 17102.62, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(337, 6, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 69422, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 9932.63, 87.33, 1, NULL, 0, '5', 8732.63, 1746.53, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(338, 6, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 69422, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 8158.95, 69.59, 1, NULL, 0, '5', 6958.95, 1391.79, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(339, 6, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 69422, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 5804.78, 46.05, 1, NULL, 0, '5', 4604.78, 920.96, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(340, 6, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 69422, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(341, 6, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 69422, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 523728.62, 13062.22, 1, NULL, 0, '2', 522488.62, 261244.31, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(342, 6, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 68340, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 974187.69, 24315.19, 1, NULL, 0, '2', 972607.69, 486303.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(343, 6, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 67258, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 263654.78, 6562.87, 1, NULL, 0, '2', 262514.78, 131257.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(344, 6, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 66176, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 208054.27, 3425.07, 1, NULL, 0, '3', 205504.27, 68501.42, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(345, 6, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 65094, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 19664.65, 969.23, 1, NULL, 0, '1', 19384.65, 19384.65, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(346, 6, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 64012, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 15937.83, 775.39, 1, NULL, 0, '1', 15507.83, 15507.83, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(347, 6, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 63340, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 10963.21, 526.66, 1, NULL, 0, '1', 10533.21, 10533.21, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(348, 6, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 62258, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5676.67, 264.83, 1, NULL, 0, '1', 5296.67, 5296.67, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(349, 6, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 61906, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 3954.11, 176.21, 1, NULL, 0, '1', 3524.11, 3524.11, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(350, 6, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 61586, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 47337.02, 1159.03, 1, NULL, 0, '2', 46361.02, 23180.51, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(351, 6, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 60504, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 55203.65, 897.56, 1, NULL, 0, '3', 53853.65, 17951.22, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(352, 6, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 59422, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 89579.91, 447.90, 1, NULL, 0, '10', 89579.91, 8957.99, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(353, 6, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 59422, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 62433.68, 312.17, 1, NULL, 0, '10', 62433.68, 6243.37, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(354, 6, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 59422, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 47904.54, 119.76, 1, NULL, 0, '20', 47904.54, 2395.23, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(355, 6, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(356, 6, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(357, 7, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 13272.45, 135.91, 1, 0, 0, '4', 10872.45, 2718.11, 0.00, 0.00, 0.00, 0, 3.85, 0.00),
(358, 7, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 18628.00, 902.40, 1, NULL, 0, '1', 18048.00, 18048.00, 0.00, 0.00, 0.00, 0, 14.92, 0.00),
(359, 7, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 7916.90, 388.85, 1, NULL, 0, '1', 7776.90, 7776.90, 0.00, 0.00, 0.00, 0, 15.72, 0.00),
(360, 7, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 14902.40, 0.00, 1, NULL, 0, '', 14902.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(361, 7, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(362, 7, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 59070, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 13971.00, 203.35, 1, NULL, 0, '3', 12201.00, 4067.00, 0.00, 0.00, 0.00, 0, 4.36, 0.00),
(363, 7, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 23285.00, 203.35, 1, NULL, 0, '5', 20335.00, 4067.00, 0.00, 0.00, 0.00, 0, 5.06, 0.00),
(364, 7, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 18628.00, 0.00, 1, NULL, 1, '', 18628.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(365, 7, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 29804.80, 0.00, 1, NULL, 1, '', 29804.80, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(366, 7, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 3725.60, 0.00, 1, NULL, 1, '', 3725.60, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(367, 7, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 4657.00, 0.00, 1, NULL, 0, '', 4657.00, 0.00, 0.00, 0.00, 0.00, 0, 2.28, 0.00),
(368, 7, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 8382.60, 0.00, 1, NULL, 0, '', 8382.60, 0.00, 0.00, 0.00, 0.00, 0, 13.86, 0.00),
(369, 7, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 4657.00, 0.00, 1, NULL, 1, '', 4657.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(370, 7, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(371, 7, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9314.00, 465.70, 1, NULL, 1, '1', 9314.00, 9314.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(372, 7, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 2328.50, 0.00, 1, NULL, 1, '', 2328.50, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(373, 7, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 4657.00, 0.00, 1, NULL, 1, '', 4657.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(374, 7, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 23285.00, 0.00, 1, NULL, 0, '', 23285.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(375, 7, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 13039.60, 133.50, 1, NULL, 0, '4', 10679.60, 2669.90, 0.00, 0.00, 0.00, 0, 3.66, 0.00),
(376, 7, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 4657.00, 232850.00, 1, NULL, 1, '0.001', 4657.00, 4657000.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(377, 7, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 23285.00, 203.35, 1, NULL, 0, '5', 20335.00, 4067.00, 0.00, 0.00, 0.00, 0, 2.29, 0.00),
(378, 7, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 1164.25, 0.00, 1, NULL, 1, '', 1164.25, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(379, 7, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(380, 7, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 4657.00, 232.85, 1, NULL, 1, '1', 4657.00, 4657.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(381, 7, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 4657.00, 232.85, 1, NULL, 0, '1', 4657.00, 4657.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(382, 7, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 4657.00, 232.85, 1, NULL, 1, '1', 4657.00, 4657.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(383, 7, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 59070, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 23285.00, 358.08, 1, NULL, 0, '3', 21485.00, 7161.67, 0.00, 0.00, 0.00, 0, 13.20, 0.00),
(384, 7, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 4657.00, 220.35, 1, NULL, 0, '1', 4407.00, 4407.00, 0.00, 0.00, 0.00, 0, 1.71, 0.00),
(385, 7, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 4657.00, 455.70, 1, NULL, 0, '0.5', 4557.00, 9114.00, 0.00, 0.00, 0.00, 0, 1.89, 0.00),
(386, 7, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 13272.45, 618.62, 1, NULL, 0, '1', 12372.45, 12372.45, 0.00, 0.00, 0.00, 0, 4.12, 0.00),
(387, 7, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 59070, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 9314.00, 445.70, 1, NULL, 0, '1', 8914.00, 8914.00, 0.00, 0.00, 0.00, 0, 1.91, 0.00),
(388, 7, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 13971.00, 39.85, 1, NULL, 0, '10', 7971.00, 797.10, 0.00, 0.00, 0.00, 0, 3.70, 0.00),
(389, 7, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 59070, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 3725.60, 186.28, 1, NULL, 0, '1', 3725.60, 3725.60, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(390, 7, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 8848.30, 191.21, 1, NULL, 0, '2', 7648.30, 3824.15, 0.00, 0.00, 0.00, 0, 1.68, 0.00),
(391, 7, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 13272.45, 302.81, 1, NULL, 0, '2', 12112.45, 6056.23, 0.00, 0.00, 0.00, 0, 3.98, 0.00),
(392, 7, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 13971.00, 109.71, 1, NULL, 0, '5', 10971.00, 2194.20, 0.00, 0.00, 0.00, 0, 3.81, 0.00),
(393, 7, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 59070, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 13272.45, 301.81, 1, NULL, 0, '2', 12072.45, 6036.23, 0.00, 0.00, 0.00, 0, 5.83, 0.00),
(394, 7, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 59070, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 90771.38, 907.71, 1, NULL, 0, '5', 90771.38, 18154.28, 0.00, 0.00, 0.00, 0, 9.56, 0.00),
(395, 7, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 57988, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 55556.69, 555.57, 1, NULL, 0, '5', 55556.69, 11111.34, 0.00, 0.00, 0.00, 0, 5.79, 0.00),
(396, 7, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 56906, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 54149.46, 541.49, 1, NULL, 0, '5', 54149.46, 10829.89, 0.00, 0.00, 0.00, 0, 4.08, 0.00),
(397, 7, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 56554, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 1623.20, -19.81, 1, NULL, 0, '22', -8716.80, -396.22, 0.00, 0.00, 0.00, 0, 13.78, 0.00),
(398, 7, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 56554, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 1606.97, -21.35, 1, NULL, 0, '22', -9393.03, -426.96, 0.00, 0.00, 0.00, 0, 21.56, 0.00),
(399, 7, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 56554, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 1606.97, -17.35, 1, NULL, 0, '22', -7633.03, -346.96, 0.00, 0.00, 0.00, 0, 8.09, 0.00),
(400, 7, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 56554, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 964.18, 19.71, 1, NULL, 0, '1', 394.18, 394.18, 0.00, 0.00, 0.00, 0, 39.09, 0.00),
(401, 7, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 56554, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 45.00, 146.09, 7.30, 1, NULL, 0, '1', 146.09, 146.09, 0.00, 0.00, 0.00, 0, 20.28, 0.00),
(402, 7, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 56554, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 964.18, 14.71, 1, NULL, 0, '1', 294.18, 294.18, 0.00, 0.00, 0.00, 0, 96.48, 0.00),
(403, 7, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 56554, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 29123.66, 485.39, 1, NULL, 0, '3', 29123.66, 9707.89, 0.00, 0.00, 0.00, 0, 8.08, 0.00),
(404, 7, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 55882, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 31444.41, 786.11, 1, NULL, 0, '2', 31444.41, 15722.20, 0.00, 0.00, 0.00, 0, 11.70, 0.00),
(405, 7, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 55210, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 32491.58, 1624.58, 1, NULL, 0, '1', 32491.58, 32491.58, 0.00, 0.00, 0.00, 0, 18.42, 0.00),
(406, 7, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 54890, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 80.00, 26907.68, 448.46, 1, NULL, 0, '3', 26907.68, 8969.23, 0.00, 0.00, 0.00, 0, 1.19, 0.00),
(407, 7, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 54570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 75.00, 40721.19, 678.69, 1, NULL, 0, '3', 40721.19, 13573.73, 0.00, 0.00, 0.00, 0, 7.79, 0.00),
(408, 7, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 54250, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 75.00, 46572.32, 2328.62, 1, NULL, 0, '1', 46572.32, 46572.32, 0.00, 0.00, 0.00, 0, 36.19, 0.00),
(409, 7, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 53168, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 34685.17, 1734.26, 1, NULL, 0, '1', 34685.17, 34685.17, 0.00, 0.00, 0.00, 0, 29.53, 0.00),
(410, 7, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 52406, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 80.00, 83223.55, 1387.06, 1, NULL, 0, '3', 83223.55, 27741.18, 0.00, 0.00, 0.00, 0, 17.67, 0.00),
(411, 7, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 51324, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 80.00, 188281.50, 941.41, 1, NULL, 0, '10', 188281.50, 18828.15, 0.00, 0.00, 0.00, 0, 7.87, 0.00),
(412, 7, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 50242, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 18091.58, 180.92, 1, 1, 0, '5', 18091.58, 3618.32, 0.00, 0.00, 0.00, 0, 1.60, 0.00),
(413, 7, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 50242, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 12770.52, 127.71, 1, 1, 0, '5', 12770.52, 2554.10, 0.00, 0.00, 0.00, 0, 0.66, 0.00),
(414, 7, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 50242, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 95.00, 58742.64, 587.43, 1, 1, 0, '5', 58742.64, 11748.53, 0.00, 0.00, 0.00, 0, 0.23, 0.00),
(415, 7, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 50242, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.30, 0.00),
(416, 7, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 50242, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 542594.81, 13564.87, 1, 1, 0, '2', 542594.81, 271297.38, 0.00, 0.00, 0.00, 0, 225.03, 0.00),
(417, 7, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1150', 49160, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 1243298.00, 31082.45, 1, 1, 0, '2', 1243298.00, 621649.00, 0.00, 0.00, 0.00, 0, 387.07, 0.00),
(418, 7, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1150', 48078, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 361084.62, 9027.12, 1, 1, 0, '2', 361084.62, 180542.31, 0.00, 0.00, 0.00, 0, 124.08, 0.00),
(419, 7, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 46996, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 224489.84, 3741.50, 1, 1, 0, '3', 224489.84, 74829.95, 0.00, 0.00, 0.00, 0, 59.64, 0.00),
(420, 7, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1100', 45914, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 90.00, 35435.80, 1771.79, 1, 1, 0, '1', 35435.80, 35435.80, 0.00, 0.00, 0.00, 0, 18.21, 0.00),
(421, 7, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 44832, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 98.00, 28287.32, 1414.37, 1, 1, 0, '1', 28287.32, 28287.32, 0.00, 0.00, 0.00, 0, 12.90, 0.00),
(422, 7, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 44160, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 40.00, 4744.64, 237.23, 1, 1, 0, '1', 4744.64, 4744.64, 0.00, 0.00, 0.00, 0, 5.37, 0.00),
(423, 7, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 44160, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 50.00, 5930.80, 296.54, 1, 1, 0, '1', 5930.80, 5930.80, 0.00, 0.00, 0.00, 0, 1.77, 0.00),
(424, 7, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 44160, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 50.00, 2372.32, 118.62, 1, 1, 0, '1', 2372.32, 2372.32, 0.00, 0.00, 0.00, 0, 2.01, 0.00),
(425, 7, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 44160, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 89.00, 57005.83, 1425.15, 1, 1, 0, '2', 57005.83, 28502.92, 0.00, 0.00, 0.00, 0, 16.02, 0.00),
(426, 7, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 43078, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 4706346.00, 235317.30, 1, 1, 0, '1', 4706346.00, 4706346.00, 0.00, 0.00, 0.00, 0, 13.40, 0.00),
(427, 7, 35, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'Anywhere', '', '', '', '1025', 41996, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 1184007.50, 5920.04, 1, NULL, 1, '10', 1184007.50, 118400.75, 0.00, 0.00, 0.00, 0, 5.05, 0.00),
(428, 7, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '', '', '', '1025', 41996, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 937733.94, 0.00, 1, NULL, 0, '0', 937733.94, 0.00, 0.00, 0.00, 0.00, 0, 6.21, 0.00),
(429, 7, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '1025', 41996, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 2813201.75, 0.00, 1, NULL, 0, '0', 2813201.75, 0.00, 0.00, 0.00, 0.00, 0, 1.60, 0.00),
(430, 7, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '12.00.00', 'Varies', '', 'Romania', '', '', '', '1025', 41996, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 99.00, 937733.94, 46886.70, 1, NULL, 1, '1', 937733.94, 937733.94, 0.00, 0.00, 0.00, 1, 0.04, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(431, 7, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 41996, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 150.00, 1420809.00, 3229.11, 1, NULL, 1, '22', 1420809.00, 64582.23, 0.00, 0.00, 0.00, 1, 1.93, 0.00),
(439, 7, 14, 'NA', 'NA', 'Sale Item Adding', 'Sale Item Adding', 'Sale Item Adding', 'Sale Item Adding', '34909677', '', '', '', 'United States', '', '', '', '1025', 41996, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '439_color_668091-ewaste-040418.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(440, 10, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1100', 41644, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 2491816.75, 31117.71, 1, NULL, 0, '4', 2489416.75, 622354.19, 0.00, 0.00, 0.00, 0, 1.28, 0.00),
(441, 10, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 40760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 1238977.88, 61919.90, 1, 0, 0, '1', 1238397.88, 1238397.88, 0.00, 0.00, 0.00, 0, 4.97, 0.00),
(442, 10, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'United States', '', '', '', '1025', 40728, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 95.00, 4357.17, 217.86, 1, 0, 0, '1', 4357.17, 4357.17, 0.00, 0.00, 0.00, 0, 1.63, 0.00),
(443, 10, 2, '', '', 'Gold Powder', 'Gold Powder', 'Gold Powder', 'Gold Powder', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 40728, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '443_color_Gold Powder.jpg', 100.00, 9456.00, 0.00, 1, NULL, 0, '', 9456.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(444, 10, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 40728, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 1576.00, 0.00, 1, NULL, 1, '0', 1576.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(457, 10, 8, '', '', 'Dry Ceramic Mud', 'Dry Ceramic Mud', 'Dry Ceramic Mud', 'Dry Ceramic Mud', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 40728, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 7880.00, 0.00, 1, 0, 1, '', 7880.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(458, 10, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 40728, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 41783.30, 492.79, 1, NULL, 0, '4', 39423.30, 9855.83, 0.00, 0.00, 0.00, 0, 1.22, 0.00),
(460, 10, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 39646, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 56972.88, 540.23, 1, NULL, 0, '5', 54022.88, 10804.58, 0.00, 0.00, 0.00, 0, 0.76, 0.00),
(461, 10, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1150', 39646, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, -65.20, 0.00, 1, NULL, 1, '', -65.20, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(463, 10, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1150', 39646, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 2653.39, 132.67, 1, NULL, 1, '1', 2653.39, 2653.39, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(464, 10, 8, '', '', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', '50272186', '11.21.25', 'Granular', '', 'Romania', '', '', '', '1100', 38564, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(466, 10, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 38564, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 36883.38, 584.72, 1, NULL, 0, '3', 35083.38, 11694.46, 0.00, 0.00, 0.00, 0, 4.40, 0.00),
(467, 10, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1100', 38212, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 3248.30, 149.91, 1, NULL, 0, '1', 2998.30, 2998.30, 0.00, 0.00, 0.00, 0, 0.57, 0.00),
(471, 10, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 37892, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 92026.05, 430.13, 1, NULL, 0, '10', 86026.05, 8602.60, 0.00, 0.00, 0.00, 0, 1.23, 0.00),
(472, 10, 5, '', '', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', '39434181', '16.02.16', 'Varies', '', 'United States', '', '', '', '1100', 37540, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 99.75, 2275.80, 455.16, 1, 0, 0, '.25', 2275.80, 9103.20, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(473, 10, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 37188, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 45743.41, 1113.59, 1, NULL, 0, '2', 44543.41, 22271.71, 0.00, 0.00, 0.00, 0, 0.56, 0.00),
(474, 10, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 36426, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 15029.56, 346.74, 1, NULL, 0, '2', 13869.56, 6934.78, 0.00, 0.00, 0.00, 0, 1.33, 0.00),
(475, 10, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 35664, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 269830.03, 2668.30, 1, NULL, 0, '5', 266830.03, 53366.01, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(476, 10, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 35312, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 148246.23, 3706.16, 1, NULL, 0, '2', 148246.23, 74123.12, 0.00, 0.00, 0.00, 0, 1.94, 0.00),
(477, 10, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 34960, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 527279.25, 5228.04, 1, NULL, 0, '5', 522804.25, 104560.85, 0.00, 0.00, 0.00, 0, 4.23, 0.00),
(478, 10, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 34608, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 91886.48, 890.86, 1, NULL, 0, '5', 89086.48, 17817.30, 0.00, 0.00, 0.00, 0, 2.12, 0.00),
(479, 10, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 34256, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 57100.28, 543.00, 1, NULL, 0, '5', 54300.28, 10860.06, 0.00, 0.00, 0.00, 0, 1.55, 0.00),
(480, 10, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 33494, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 982326.00, 2209.06, 1, NULL, 0, '22', 971986.00, 44181.18, 0.00, 0.00, 0.00, 0, 4.59, 0.00),
(481, 10, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 33174, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 392602.69, 867.28, 1, NULL, 0, '22', 381602.69, 17345.58, 0.00, 0.00, 0.00, 0, 7.19, 0.00),
(482, 10, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 32854, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 627044.25, 1404.10, 1, NULL, 0, '22', 617804.25, 28082.01, 0.00, 0.00, 0.00, 0, 2.70, 0.00),
(483, 10, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 32534, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 62378.16, 3090.41, 1, NULL, 0, '1', 61808.16, 61808.16, 0.00, 0.00, 0.00, 0, 13.03, 0.00),
(484, 10, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 31452, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 35063.45, 1753.17, 1, NULL, 0, '1', 35063.45, 35063.45, 0.00, 0.00, 0.00, 0, 15.89, 0.00),
(485, 10, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 30690, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 23801.96, 1156.60, 1, NULL, 0, '1', 23131.96, 23131.96, 0.00, 0.00, 0.00, 0, 32.16, 0.00),
(486, 10, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 29928, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 44427.34, 712.96, 1, NULL, 0, '3', 42777.34, 14259.11, 0.00, 0.00, 0.00, 0, 2.94, 0.00),
(487, 10, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 28846, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 19865.26, 483.73, 1, NULL, 0, '2', 19349.26, 9674.63, 0.00, 0.00, 0.00, 0, 4.15, 0.00),
(488, 10, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 28846, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 3955.85, 197.79, 1, NULL, 0, '1', 3955.85, 3955.85, 0.00, 0.00, 0.00, 0, 7.79, 0.00),
(489, 10, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 28846, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 5804.78, 94.55, 1, NULL, 0, '3', 5672.78, 1890.93, 0.00, 0.00, 0.00, 0, 1.36, 0.00),
(490, 10, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 28846, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 28191.10, 469.85, 1, NULL, 0, '3', 28191.10, 9397.03, 0.00, 0.00, 0.00, 0, 2.78, 0.00),
(491, 10, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1100', 28846, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 426008.12, 21300.41, 1, NULL, 0, '1', 426008.12, 426008.12, 0.00, 0.00, 0.00, 0, 15.88, 0.00),
(492, 10, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1100', 27764, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 512803.72, 25640.19, 1, NULL, 0, '1', 512803.72, 512803.72, 0.00, 0.00, 0.00, 0, 8.62, 0.00),
(493, 10, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 26682, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 819722.62, 13662.04, 1, NULL, 0, '3', 819722.62, 273240.88, 0.00, 0.00, 0.00, 0, 6.00, 0.00),
(494, 10, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 25600, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 1034831.00, 5174.15, 1, NULL, 0, '10', 1034831.00, 103483.10, 0.00, 0.00, 0.00, 0, 1.96, 0.00),
(495, 10, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 24518, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 159809.48, 1586.09, 1, NULL, 0, '5', 158609.48, 31721.90, 0.00, 0.00, 0.00, 0, 0.56, 0.00),
(496, 10, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 23436, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 111844.82, 1106.45, 1, NULL, 0, '5', 110644.82, 22128.96, 0.00, 0.00, 0.00, 0, 0.46, 0.00),
(497, 10, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 22354, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 72808.10, 716.08, 1, NULL, 0, '5', 71608.10, 14321.62, 0.00, 0.00, 0.00, 0, 0.33, 0.00),
(498, 10, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 21272, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(499, 10, 10, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'United States', '', '', '', '1100', 20920, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 99.00, 101.69, 203.39, 1, 0, 0, '.025', 101.69, 4067.78, 0.00, 0.00, 0.00, 0, 62.60, 0.00),
(500, 10, 9, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'United States', '', '', '', '1100', 20920, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 98.00, 1940212.38, 48505.31, 1, 0, 0, '2', 1940212.38, 970106.19, 0.00, 0.00, 0.00, 0, 125.10, 0.00),
(501, 10, 11, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'United States', '', '', '', '1100', 20600, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 98.00, 85.38, 170.76, 1, 0, 0, '.025', 85.38, 3415.24, 0.00, 0.00, 0.00, 0, 21.11, 0.00),
(502, 10, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'United States', '', '', '', '1025', 20600, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 313300.84, 5221.68, 1, NULL, 0, '3', 313300.84, 104433.61, 0.00, 0.00, 0.00, 0, 11.63, 0.00),
(503, 10, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 20280, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 37460.21, 1873.01, 1, NULL, 0, '1', 37460.21, 37460.21, 0.00, 0.00, 0.00, 0, 5.62, 0.00),
(504, 10, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 20280, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 11919.16, 595.96, 1, NULL, 0, '1', 11919.16, 11919.16, 0.00, 0.00, 0.00, 0, 3.56, 0.00),
(505, 10, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1150', 20280, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 6600.67, 330.03, 1, NULL, 0, '1', 6600.67, 6600.67, 0.00, 0.00, 0.00, 0, 1.95, 0.00),
(506, 10, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1150', 20280, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 6600.67, 330.03, 1, NULL, 0, '1', 6600.67, 6600.67, 0.00, 0.00, 0.00, 0, 2.50, 0.00),
(507, 10, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1150', 20280, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 6600.67, 330.03, 1, NULL, 0, '1', 6600.67, 6600.67, 0.00, 0.00, 0.00, 0, -0.86, 0.00),
(508, 10, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1150', 20280, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 6600.67, 165.02, 1, NULL, 0, '2', 6600.67, 3300.33, 0.00, 0.00, 0.00, 0, 4.90, 0.00),
(509, 10, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '1150', 20280, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 6600.67, 110.01, 1, NULL, 0, '3', 6600.67, 2200.22, 0.00, 0.00, 0.00, 0, 3.24, 0.00),
(512, 10, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '1150', 20280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 3960.40, 33.00, 1, NULL, 0, '6', 3960.40, 660.07, 0.00, 0.00, 0.00, 0, 0.82, 0.00),
(515, 10, 9, 'NA', 'NA', 'Mixed CPU', 'Mixed CPU', 'Mixed CPU', 'Mixed CPU', '60596637', '', '200', '', 'United States', '', '', '', '1150', 20280, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '515_color_IMG_2092.JPG', 98.00, 1306.80, 0.65, 1, 0, 0, '100', 1306.80, 13.07, 0.00, 0.00, 0.00, 0, 100.01, 0.00),
(516, 10, 3, 'NA', 'NA', 'Dissolved Gold Solution', 'Dissolved Gold Solution', 'Dissolved Gold Solution', 'Dissolved Gold Solution', '25065677', '0', '0', '', 'Anywhere', '', '', '', '1150', 20280, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '516_color_Dissolved Gold Solution.jpg', 100.00, 1333.47, 33.34, 1, NULL, 0, '2', 1333.47, 666.73, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(517, 10, 8, 'NA', 'NA', 'Waste Liquid', 'Waste Liquid', 'Waste Liquid', 'Waste Liquid', '85104372', '0', '0', '', 'Anywhere', '', '', '', '1150', 20280, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '517_color_Waste Liquid.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(518, 10, 1, 'NA', 'NA', 'Refined Gold for Melting', 'Refined Gold for Melting', 'Refined Gold for Melting', 'Refined Gold for Melting', '24265051', '0', '0', '', 'Anywhere', '', '', '', '1150', 20280, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '518_color_Refined Gold Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(519, 10, 122, 'NA', 'NA', 'Melted Gold', 'Melted Gold', 'Melted Gold', 'Melted Gold', '12344439', '0', '0', '', 'Anywhere', '', '', '', '1150', 20280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '519_color_Melted Gold.jpg', 100.00, 1333.47, 0.00, 1, NULL, 0, '0', 1333.47, 0.00, 0.00, 0.00, 0.00, 0, 15797.50, 0.00),
(520, 10, 1, 'NA', 'NA', '1kg Gold Bar', '1kg Gold Bar', '1kg Gold Bar', '1kg Gold Bar', '69129228', '0', '0', '', 'Anywhere', '', '', '', '1150', 20280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '520_color_Gold Bar.jpg', 125.00, 1666.83, 83341.74, 1, 0, 1, '.001', 1666.83, 1666834.75, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(522, 1, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 20280, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 10429.70, 521.49, 1, NULL, 0, '1', 10429.70, 10429.70, 0.00, 0.00, 0.00, 0, 4.62, 0.00),
(523, 1, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19928, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 10591.34, 529.57, 1, NULL, 0, '1', 10591.34, 10591.34, 0.00, 0.00, 0.00, 0, 4.09, 0.00),
(524, 1, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 19576, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 10695.75, 534.79, 1, NULL, 0, '1', 10695.75, 10695.75, 0.00, 0.00, 0.00, 0, 3.38, 0.00),
(525, 1, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 19576, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 19959.47, 498.99, 1, NULL, 0, '2', 19959.47, 9979.74, 0.00, 0.00, 0.00, 0, 1.09, 0.00),
(526, 7, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19544, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 10801.09, 540.05, 1, 1, 0, '1', 10801.09, 10801.09, 0.00, 0.00, 0.00, 0, 4.39, 0.00),
(527, 7, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19544, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 9600.97, 480.05, 1, 1, 0, '1', 9600.97, 9600.97, 0.00, 0.00, 0.00, 0, 4.49, 0.00),
(528, 7, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19544, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 9240.93, 462.05, 1, 1, 0, '1', 9240.93, 9240.93, 0.00, 0.00, 0.00, 0, 1.69, 0.00),
(529, 7, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19544, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 10134.36, 253.36, 1, 1, 0, '2', 10134.36, 5067.18, 0.00, 0.00, 0.00, 0, 0.79, 0.00),
(530, 10, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19544, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 9826.91, 491.35, 1, NULL, 0, '1', 9826.91, 9826.91, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(531, 10, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1150', 19192, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 3200.66, 160.03, 1, NULL, 0, '1', 3200.66, 3200.66, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(532, 10, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 18840, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 1527.96, 76.40, 1, NULL, 0, '1', 1527.96, 1527.96, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(533, 10, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 18840, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 10012.13, 250.30, 1, NULL, 0, '2', 10012.13, 5006.07, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(534, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 18808, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 41126.83, 102.82, 1, NULL, 0, '20', 41126.83, 2056.34, 0.00, 0.00, 0.00, 0, 1.46, 0.00),
(535, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 17726, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 74200.00, 185.50, 1, NULL, 0, '20', 74200.00, 3710.00, 0.00, 0.00, 0.00, 0, 2.48, 0.00),
(536, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 16644, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 45546.47, 113.87, 1, NULL, 0, '20', 45546.47, 2277.32, 0.00, 0.00, 0.00, 0, 1.36, 0.00),
(537, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 15562, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 236433.91, 591.08, 1, 1, 0, '20', 236433.91, 11821.70, 0.00, 0.00, 0.00, 0, 0.55, 0.00),
(538, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 15210, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 70730.52, 176.83, 1, 1, 0, '20', 70730.52, 3536.53, 0.00, 0.00, 0.00, 0, 1.14, 0.00),
(539, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 14128, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 57864.23, 144.66, 1, 1, 0, '20', 57864.23, 2893.21, 0.00, 0.00, 0.00, 0, 1.54, 0.00),
(540, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(541, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(542, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(543, 10, 8, 'NA', 'NA', 'AMD', 'AMD', 'AMD', 'AMD', '59291912', '', '', '', 'Anywhere', '', '', '', '1025', 13046, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '543_color_bfc2.jpg', 99.00, 70756.65, 35378.33, 1, NULL, 0, '.1', 70756.65, 707566.50, 0.00, 0.00, 0.00, 0, 52.05, 0.00),
(545, 11, 0, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 71471.37, 3573.57, 1, 1, 0, '1', 71471.37, 71471.37, 0.00, 0.00, 0.00, 0, 12.27, 0.00),
(546, 11, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 30375.33, 1511.77, 1, 0, 0, '1', 30235.33, 30235.33, 0.00, 0.00, 0.00, 0, 14.04, 0.00),
(547, 11, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 57177.09, 0.00, 1, 0, 0, '', 57177.09, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(548, 11, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(549, 11, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 13046, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 53603.53, 863.89, 1, 1, 0, '3', 51833.53, 17277.84, 0.00, 0.00, 0.00, 0, 3.90, 0.00),
(551, 11, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 71471.37, 0.00, 1, 0, 1, '', 71471.37, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(552, 11, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 114354.19, 0.00, 1, 0, 1, '', 114354.19, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(553, 11, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 14294.27, 0.00, 1, 0, 1, '', 14294.27, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(554, 11, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 17867.84, 0.00, 1, 1, 0, '', 17867.84, 0.00, 0.00, 0.00, 0.00, 0, 2.04, 0.00),
(555, 11, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 32162.12, 0.00, 1, 0, 0, '', 32162.12, 0.00, 0.00, 0.00, 0.00, 0, 12.39, 0.00),
(557, 11, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(558, 11, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 35735.68, 1786.78, 1, 0, 1, '1', 35735.68, 35735.68, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(559, 11, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 8933.92, 0.00, 1, 0, 1, '', 8933.92, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(560, 11, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 17867.84, 0.00, 1, 0, 1, '', 17867.84, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(561, 11, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Anywhere', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 107207.05, 357.36, 1, 0, 1, '15', 107207.05, 7147.14, 0.00, 0.00, 0.00, 0, -0.18, 0.00),
(563, 11, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 17867.84, 893392.06, 1, 0, 1, '0.001', 17867.84, 17867842.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(565, 11, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 4466.96, 0.00, 1, 0, 1, '', 4466.96, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(566, 11, 15, 'None', '', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, 92123.50, 0.00, 92123.50, 0, 0.00, 0.00),
(567, 11, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 17867.84, 893.39, 1, 0, 1, '1', 17867.84, 17867.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(568, 11, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 17867.84, 893.39, 1, 0, 0, '1', 17867.84, 17867.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(569, 11, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 17867.84, 893.39, 1, 0, 1, '1', 17867.84, 17867.84, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(570, 11, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 13046, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 89339.21, 1458.99, 1, 0, 0, '3', 87539.21, 29179.74, 0.00, 0.00, 0.00, 0, 11.79, 0.00),
(571, 11, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 17867.84, 880.89, 1, 0, 0, '1', 17617.84, 17617.84, 0.00, 0.00, 0.00, 0, 1.53, 0.00),
(572, 11, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 17867.84, 1776.78, 1, 0, 0, '0.5', 17767.84, 35535.68, 0.00, 0.00, 0.00, 0, 1.69, 0.00),
(573, 11, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 50923.35, 2501.17, 1, 0, 0, '1', 50023.35, 50023.35, 0.00, 0.00, 0.00, 0, 3.68, 0.00),
(576, 11, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 13046, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 14294.27, 714.71, 1, 0, 0, '1', 14294.27, 14294.27, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(581, 11, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 70.00, 137582.38, 1375.82, 1, 0, 0, '5', 137582.38, 27516.48, 0.00, 0.00, 0.00, 0, 9.17, 0.00),
(582, 11, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 80.00, 157237.02, 1572.37, 1, 0, 0, '5', 157237.02, 31447.40, 0.00, 0.00, 0.00, 0, 2.77, 0.00),
(583, 11, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 98.00, 192615.33, 1926.15, 1, 1, 0, '5', 192615.33, 38523.07, 0.00, 0.00, 0.00, 0, 1.94, 0.00),
(584, 11, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 70.00, 62537.45, 142.13, 1, 0, 0, '22', 62537.45, 2842.61, 0.00, 0.00, 0.00, 0, 6.95, 0.00),
(585, 11, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 75.00, 67004.41, 152.28, 1, 0, 0, '22', 67004.41, 3045.65, 0.00, 0.00, 0.00, 0, 12.92, 0.00),
(586, 11, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 75.00, 67004.41, 152.28, 1, 0, 0, '22', 67004.41, 3045.65, 0.00, 0.00, 0.00, 0, 3.81, 0.00),
(587, 11, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 13046, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 30.00, 16081.06, 804.05, 1, 1, 0, '1', 16081.06, 16081.06, 0.00, 0.00, 0.00, 0, 8.91, 0.00),
(588, 11, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 72.00, 38594.54, 1929.73, 1, 1, 0, '1', 38594.54, 38594.54, 0.00, 0.00, 0.00, 0, 36.19, 0.00),
(589, 11, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 78.00, 41810.75, 2090.54, 1, 0, 0, '1', 41810.75, 41810.75, 0.00, 0.00, 0.00, 0, 66.23, 0.00),
(590, 11, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 12639.30, 3.35, 0, 1, 0, '3', 10147.30, 10147.30, 0.00, 0.00, 0.00, 0, 6.80, 0.00),
(591, 11, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 194580.80, 4864.52, 1, 0, 0, '2', 194580.80, 97290.40, 0.00, 0.00, 0.00, 0, 10.13, 0.00),
(592, 11, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 28588.55, 1429.43, 1, 0, 0, '1', 28588.55, 28588.55, 0.00, 0.00, 0.00, 0, 19.21, 0.00),
(593, 11, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 70.00, 25014.98, 416.92, 1, 1, 0, '3', 25014.98, 8338.33, 0.00, 0.00, 0.00, 0, 3.44, 0.00),
(594, 11, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 70.00, 25014.98, 416.92, 1, 1, 0, '3', 25014.98, 8338.33, 0.00, 0.00, 0.00, 0, 8.76, 0.00),
(595, 11, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 85.00, 167064.31, 8353.22, 1, 0, 0, '1', 167064.31, 167064.31, 0.00, 0.00, 0.00, 0, 41.50, 0.00),
(596, 11, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 85.00, 167064.31, 8353.22, 1, 0, 0, '1', 167064.31, 167064.31, 0.00, 0.00, 0.00, 0, 24.79, 0.00),
(597, 11, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 80.00, 157237.02, 2620.62, 1, 0, 0, '3', 157237.02, 52412.34, 0.00, 0.00, 0.00, 0, 18.48, 0.00),
(598, 11, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 85.00, 167064.31, 835.32, 1, 0, 0, '10', 167064.31, 16706.43, 0.00, 0.00, 0.00, 0, 10.38, 0.00),
(599, 11, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 13046, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 100.00, 35735.68, 357.36, 1, 1, 0, '5', 35735.68, 7147.14, 0.00, 0.00, 0.00, 0, 1.95, 1300.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(600, 11, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 100.00, 17867.84, 178.68, 1, 1, 0, '5', 17867.84, 3573.57, 0.00, 0.00, 0.00, 0, 1.06, 0.00),
(601, 11, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 100.00, 17867.84, 178.68, 1, 1, 0, '5', 17867.84, 3573.57, 0.00, 0.00, 0.00, 0, 0.75, 0.00),
(602, 11, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.32, 0.00),
(603, 11, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 88.00, 141513.31, 3537.83, 1, 0, 0, '2', 141513.31, 70756.65, 0.00, 0.00, 0.00, 0, 195.74, 0.00),
(604, 11, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 77.00, 137582.38, 3439.56, 1, 0, 0, '2', 137582.38, 68791.19, 0.00, 0.00, 0.00, 0, 279.30, 0.00),
(605, 11, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 66.00, 58963.88, 1474.10, 1, 0, 0, '2', 58963.88, 29481.94, 0.00, 0.00, 0.00, 0, 72.81, 0.00),
(606, 11, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 40.00, 28588.55, 476.48, 1, 0, 0, '3', 28588.55, 9529.52, 0.00, 0.00, 0.00, 0, 19.95, 0.00),
(607, 11, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 80.00, 142942.73, 7147.14, 1, 1, 0, '1', 142942.73, 142942.73, 0.00, 0.00, 0.00, 0, 13.86, 0.00),
(608, 11, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 88.00, 172960.70, 8648.04, 1, 1, 0, '1', 172960.70, 172960.70, 0.00, 0.00, 0.00, 0, 9.60, 0.00),
(609, 11, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 85.00, 167064.31, 8353.22, 1, 1, 0, '1', 167064.31, 167064.31, 0.00, 0.00, 0.00, 0, 8.92, 0.00),
(610, 11, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 13046, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 194580.80, 9729.04, 1, 1, 0, '1', 194580.80, 194580.80, 0.00, 0.00, 0.00, 0, 3.45, 0.00),
(611, 11, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 13046, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 75.00, 147409.69, 7370.48, 1, 1, 0, '1', 147409.69, 147409.69, 0.00, 0.00, 0.00, 0, 1.73, 0.00),
(612, 11, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 80.00, 157237.02, 3930.93, 1, 0, 0, '2', 157237.02, 78618.50, 0.00, 0.00, 0.00, 0, 15.20, 0.00),
(613, 11, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 75.00, 147409.69, 7370.48, 1, 0, 0, '1', 147409.69, 147409.69, 0.00, 0.00, 0.00, 0, 10.75, 0.00),
(617, 11, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 13046, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, 0, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(619, 11, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 77.00, 96307.67, 4815.38, 1, 1, 0, '1', 96307.67, 96307.67, 0.00, 0.00, 0.00, 0, 2.26, 0.00),
(620, 11, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 80405.29, 4020.26, 1, 0, 0, '1', 80405.29, 80405.29, 0.00, 0.00, 0.00, 0, 2.51, 0.00),
(621, 11, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 90.00, 48243.17, 2412.16, 1, 1, 0, '1', 48243.17, 48243.17, 0.00, 0.00, 0.00, 0, 1.50, 0.00),
(622, 11, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 101846.70, 2546.17, 1, 1, 0, '2', 101846.70, 50923.35, 0.00, 0.00, 0.00, 0, 1.15, 0.00),
(623, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 13046, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 95.00, 98505.45, 246.26, 1, 1, 0, '20', 98505.45, 4925.27, 0.00, 0.00, 0.00, 0, 0.81, 0.00),
(624, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 12694, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 90.00, 73152.15, 182.88, 1, 1, 0, '20', 73152.15, 3657.61, 0.00, 0.00, 0.00, 0, 1.61, 0.00),
(625, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 11612, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 99.00, 85158.45, 212.90, 1, 1, 0, '20', 85158.45, 4257.92, 0.00, 0.00, 0.00, 0, 1.74, 0.00),
(626, 12, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 7148.48, 59.36, 1, NULL, 0, '4', 4748.48, 1187.12, 0.00, 0.00, 0.00, 0, 2.56, 0.00),
(627, 12, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 10032.96, 472.65, 1, NULL, 0, '1', 9452.96, 9452.96, 0.00, 0.00, 0.00, 0, 9.94, 0.00),
(628, 12, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 4264.01, 206.20, 1, NULL, 0, '1', 4124.01, 4124.01, 0.00, 0.00, 0.00, 0, 10.48, 0.00),
(629, 12, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 8026.37, 0.00, 1, NULL, 0, '', 8026.37, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(630, 12, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(631, 12, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 7524.72, 95.91, 1, NULL, 0, '3', 5754.72, 1918.24, 0.00, 0.00, 0.00, 0, 2.91, 0.00),
(632, 12, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 12541.20, 95.91, 1, NULL, 0, '5', 9591.20, 1918.24, 0.00, 0.00, 0.00, 0, 3.37, 0.00),
(633, 12, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 10032.96, 0.00, 1, NULL, 1, '', 10032.96, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(634, 12, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 16052.74, 0.00, 1, NULL, 1, '', 16052.74, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(635, 12, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 2006.59, 0.00, 1, NULL, 1, '', 2006.59, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(636, 12, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 2508.24, 0.00, 1, NULL, 0, '', 2508.24, 0.00, 0.00, 0.00, 0.00, 0, 1.52, 0.00),
(637, 12, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 4514.83, 0.00, 1, NULL, 0, '', 4514.83, 0.00, 0.00, 0.00, 0.00, 0, 9.24, 0.00),
(638, 12, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 2508.24, 0.00, 1, NULL, 1, '', 2508.24, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(639, 12, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(640, 12, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 5016.48, 250.82, 1, NULL, 1, '1', 5016.48, 5016.48, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(641, 12, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 1254.12, 0.00, 1, NULL, 1, '', 1254.12, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(642, 12, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 2508.24, 0.00, 1, NULL, 1, '', 2508.24, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(643, 12, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 12541.20, 0.00, 1, NULL, 0, '', 12541.20, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(644, 12, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 7023.07, 58.29, 1, NULL, 0, '4', 4663.07, 1165.77, 0.00, 0.00, 0.00, 0, 2.44, 0.00),
(645, 12, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 2508.24, 125412.00, 1, NULL, 1, '0.001', 2508.24, 2508240.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(646, 12, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 12541.20, 95.91, 1, NULL, 0, '5', 9591.20, 1918.24, 0.00, 0.00, 0.00, 0, 1.53, 0.00),
(647, 12, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 627.06, 0.00, 1, NULL, 1, '', 627.06, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(648, 12, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(649, 12, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 2508.24, 125.41, 1, NULL, 1, '1', 2508.24, 2508.24, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(650, 12, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 2508.24, 125.41, 1, NULL, 0, '1', 2508.24, 2508.24, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(651, 12, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 2508.24, 125.41, 1, NULL, 1, '1', 2508.24, 2508.24, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(652, 12, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 10530, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 12541.20, 179.02, 1, NULL, 0, '3', 10741.20, 3580.40, 0.00, 0.00, 0.00, 0, 8.80, 0.00),
(653, 12, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 2508.24, 112.91, 1, NULL, 0, '1', 2258.24, 2258.24, 0.00, 0.00, 0.00, 0, 1.14, 0.00),
(654, 12, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 2508.24, 240.82, 1, NULL, 0, '0.5', 2408.24, 4816.48, 0.00, 0.00, 0.00, 0, 1.26, 0.00),
(655, 12, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 7148.48, 312.42, 1, NULL, 0, '1', 6248.48, 6248.48, 0.00, 0.00, 0.00, 0, 2.75, 0.00),
(656, 12, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 5016.48, 230.82, 1, NULL, 0, '1', 4616.48, 4616.48, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(657, 12, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 7524.72, 7.62, 1, NULL, 0, '10', 1524.72, 152.47, 0.00, 0.00, 0.00, 0, 2.47, 0.00),
(658, 12, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 2006.59, 100.33, 1, NULL, 0, '1', 2006.59, 2006.59, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(659, 12, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 4765.66, 89.14, 1, NULL, 0, '2', 3565.66, 1782.83, 0.00, 0.00, 0.00, 0, 1.12, 0.00),
(660, 12, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 7148.48, 149.71, 1, NULL, 0, '2', 5988.48, 2994.24, 0.00, 0.00, 0.00, 0, 2.66, 0.00),
(661, 12, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 7524.72, 45.25, 1, NULL, 0, '5', 4524.72, 904.94, 0.00, 0.00, 0.00, 0, 2.54, 0.00),
(662, 12, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 7148.48, 148.71, 1, NULL, 0, '2', 5948.48, 2974.24, 0.00, 0.00, 0.00, 0, 3.89, 0.00),
(663, 12, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 70.00, 19313.45, 193.13, 1, NULL, 0, '5', 19313.45, 3862.69, 0.00, 0.00, 0.00, 0, 7.51, 0.00),
(664, 12, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 60.00, 16554.38, 165.54, 1, NULL, 0, '5', 16554.38, 3310.88, 0.00, 0.00, 0.00, 0, 1.90, 0.00),
(665, 12, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 22072.51, 220.73, 1, NULL, 0, '5', 22072.51, 4414.50, 0.00, 0.00, 0.00, 0, 1.64, 0.00),
(666, 12, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 10530, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 12541.20, 5.00, 1, NULL, 0, '22', 2201.20, 100.05, 0.00, 0.00, 0.00, 0, 9.18, 0.00),
(667, 12, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 10530, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 12415.79, 3.22, 1, NULL, 0, '22', 1415.79, 64.35, 0.00, 0.00, 0.00, 0, 14.37, 0.00),
(668, 12, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10530, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 12415.79, 7.22, 1, NULL, 0, '22', 3175.79, 144.35, 0.00, 0.00, 0.00, 0, 5.39, 0.00),
(669, 12, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 10530, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 7449.47, 343.97, 1, NULL, 0, '1', 6879.47, 6879.47, 0.00, 0.00, 0.00, 0, 26.06, 0.00),
(670, 12, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 10530, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 7449.47, 348.47, 1, NULL, 0, '1', 6969.47, 6969.47, 0.00, 0.00, 0.00, 0, 38.85, 0.00),
(671, 12, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 10530, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 7449.47, 338.97, 1, NULL, 0, '1', 6779.47, 6779.47, 0.00, 0.00, 0.00, 0, 64.32, 0.00),
(672, 12, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 27314.73, 455.25, 1, NULL, 0, '3', 27314.73, 9104.91, 0.00, 0.00, 0.00, 0, 7.31, 0.00),
(673, 12, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 27314.73, 682.87, 1, NULL, 0, '2', 27314.73, 13657.37, 0.00, 0.00, 0.00, 0, 9.84, 0.00),
(674, 12, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 4013.18, 200.66, 1, NULL, 0, '1', 4013.18, 4013.18, 0.00, 0.00, 0.00, 0, 15.58, 0.00),
(675, 12, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 10530, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 2508.24, 39.60, 1, NULL, 0, '3', 2376.24, 792.08, 0.00, 0.00, 0.00, 0, 2.72, 0.00),
(676, 12, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 2508.24, 41.80, 1, NULL, 0, '3', 2508.24, 836.08, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(677, 12, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 38.86, 0.00),
(678, 12, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 24.15, 0.00),
(679, 12, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 27314.73, 455.25, 1, NULL, 0, '3', 27314.73, 9104.91, 0.00, 0.00, 0.00, 0, 18.73, 0.00),
(680, 12, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 27314.73, 136.57, 1, NULL, 0, '10', 27314.73, 2731.47, 0.00, 0.00, 0.00, 0, 10.56, 0.00),
(681, 12, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 10530, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 2483.16, 24.83, 1, NULL, 0, '5', 2483.16, 496.63, 0.00, 0.00, 0.00, 0, 1.13, 0.00),
(682, 12, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 2483.16, 24.83, 1, NULL, 0, '5', 2483.16, 496.63, 0.00, 0.00, 0.00, 0, 0.93, 0.00),
(683, 12, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 2257.42, 22.57, 1, NULL, 0, '5', 2257.42, 451.48, 0.00, 0.00, 0.00, 0, 0.48, 0.00),
(684, 12, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(685, 12, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 10530, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 11287.08, 251.18, 1, NULL, 0, '2', 10047.08, 5023.54, 0.00, 0.00, 0.00, 0, 150.67, 0.00),
(686, 12, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1025', 10530, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 11914.14, 258.35, 1, NULL, 0, '2', 10334.14, 5167.07, 0.00, 0.00, 0.00, 0, 258.70, 0.00),
(687, 12, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1025', 10530, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 12415.79, 281.89, 1, NULL, 0, '2', 11275.79, 5637.89, 0.00, 0.00, 0.00, 0, 83.37, 0.00),
(688, 12, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 10530, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 12415.79, 164.43, 1, NULL, 0, '3', 9865.79, 3288.60, 0.00, 0.00, 0.00, 0, 40.41, 0.00),
(689, 12, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 14.80, 0.00),
(690, 12, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 9.35, 0.00),
(691, 12, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 8.59, 0.00),
(692, 12, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 10530, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 3.22, 0.00),
(693, 12, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 10530, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 70.00, 19313.45, 965.67, 1, NULL, 0, '1', 19313.45, 19313.45, 0.00, 0.00, 0.00, 0, 2.05, 0.00),
(694, 12, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 27314.73, 682.87, 1, NULL, 0, '2', 27314.73, 13657.37, 0.00, 0.00, 0.00, 0, 16.05, 0.00),
(695, 12, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '1025', 10530, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 27314.73, 455.25, 1, NULL, 0, '3', 27314.73, 9104.91, 0.00, 0.00, 0.00, 0, 12.67, 0.00),
(696, 12, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 10530, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 3135.30, 15.68, 1, NULL, 0, '10', 3135.30, 313.53, 0.00, 0.00, 0.00, 0, 5.94, 0.00),
(697, 12, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 2483.16, 12.42, 1, NULL, 0, '10', 2483.16, 248.32, 0.00, 0.00, 0.00, 0, 4.14, 0.00),
(698, 12, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 7449.47, 62.08, 1, NULL, 0, '6', 7449.47, 1241.58, 0.00, 0.00, 0.00, 0, 1.64, 0.00),
(699, 12, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(700, 12, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(701, 12, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 24831.58, 1241.58, 1, NULL, 0, '1', 24831.58, 24831.58, 0.00, 0.00, 0.00, 0, 4.62, 0.00),
(702, 12, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 24831.58, 1241.58, 1, NULL, 0, '1', 24831.58, 24831.58, 0.00, 0.00, 0.00, 0, 4.09, 0.00),
(703, 12, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 27314.73, 1365.74, 1, NULL, 0, '1', 27314.73, 27314.73, 0.00, 0.00, 0.00, 0, 3.38, 0.00),
(704, 12, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 23828.28, 595.71, 1, NULL, 0, '2', 23828.28, 11914.14, 0.00, 0.00, 0.00, 0, 1.09, 0.00),
(705, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 27314.73, 68.29, 1, NULL, 0, '20', 27314.73, 1365.74, 0.00, 0.00, 0.00, 0, 0.85, 0.00),
(706, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 27314.73, 68.29, 1, NULL, 0, '20', 27314.73, 1365.74, 0.00, 0.00, 0.00, 0, 1.51, 0.00),
(707, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 18059.33, 45.15, 1, NULL, 0, '20', 18059.33, 902.97, 0.00, 0.00, 0.00, 0, 1.36, 0.00),
(708, 10, 101, 'NA', 'NA', 'Pentium Pro ', 'Pentium Pro ', 'Pentium Pro ', 'Pentium Pro ', '57083643', '', '', '', 'United States', '', '', '', '1025', 10530, 2, 1, '', 0, '', NULL, 0, NULL, '', NULL, '708_color_IMG_0956.JPG', 98.00, 2458.08, 4916.15, 1, NULL, 0, '.025', 2458.08, 98323.01, 0.00, 0.00, 0.00, 0, 115.18, 0.00),
(709, 10, 121, 'NA', 'NA', 'Pentium 1', 'Pentium 1', 'Pentium 1', 'Pentium 1', '17799889', '', '', '', 'Anywhere', '', '', '', '1025', 10530, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '709_color_IMG_0957 2.JPG', 100.00, 2508.24, 5016.48, 1, 0, 0, '.025', 2508.24, 100329.60, 0.00, 0.00, 0.00, 0, 15.80, 0.00),
(710, 7, 38, 'NA', 'NA', 'Insulation', 'Insulation', 'Insulation', 'Insulation', '99648761', '', '', '', 'Anywhere', '', '', '', '1025', 10530, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '710_color_pl19511332-heating_insulation_refrigerator_vacuum_insulated_panel_for_beverage_coolers.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(711, 7, 38, 'NA', 'NA', 'Refrigerant (Freon)', 'Refrigerant (Freon)', 'Refrigerant (Freon)', 'Refrigerant (Freon)', '46814406', '', '', '', 'Anywhere', '', '', '', '1025', 10530, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '711_color_Refrigerant-r22.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(712, 7, 38, 'NA', 'NA', 'Refrigerator', 'Refrigerator', 'Refrigerator', 'Refrigerator', '84246398', '', '', '', 'Anywhere', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '712_color_csm_anlagen_maschine_rpww_04_123e67368a.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(713, 10, 123, 'NA', 'NA', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', '19906366', '', '', '', 'Anywhere', '', '', '', '1025', 10530, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '713_color_dust.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '15lbs', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.10, 0.00),
(714, 1, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10530, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 75873.46, 3793.67, 1, NULL, 0, '1', 75873.46, 75873.46, 0.00, 0.00, 0.00, 0, 22.27, 0.00),
(715, 2, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 10210, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 71763.46, 3588.17, 1, NULL, 0, '1', 71763.46, 71763.46, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(716, 3, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9890, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 64313.98, 3215.70, 1, NULL, 0, '1', 64313.98, 64313.98, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(717, 4, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 52146.31, 2607.32, 1, NULL, 0, '1', 52146.31, 52146.31, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(718, 5, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 52146.31, 2607.32, 1, NULL, 0, '1', 52146.31, 52146.31, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(719, 6, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 52146.31, 2607.32, 1, NULL, 0, '1', 52146.31, 52146.31, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(720, 7, 4, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 80.00, 42138.43, 2106.92, 1, 1, 0, '1', 42138.43, 42138.43, 0.00, 0.00, 0.00, 0, 51.85, 0.00),
(721, 8, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9570, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 64313.98, 3215.70, 1, NULL, 0, '1', 64313.98, 64313.98, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(722, 9, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 9250, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 84384.42, 4219.22, 1, NULL, 0, '1', 84384.42, 84384.42, 0.00, 0.00, 0.00, 0, 12.89, 0.00),
(723, 10, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8930, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 94294.23, 4714.71, 1, NULL, 0, '1', 94294.23, 94294.23, 0.00, 0.00, 0.00, 0, 8.42, 0.00),
(724, 11, 4, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8930, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 94294.23, 4714.71, 1, 0, 0, '1', 94294.23, 94294.23, 0.00, 0.00, 0.00, 0, 56.47, 0.00),
(725, 12, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8930, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 94294.23, 4714.71, 1, NULL, 0, '1', 94294.23, 94294.23, 0.00, 0.00, 0.00, 0, 16.84, 0.00),
(726, 1, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8930, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 32033.34, 400.42, 1, NULL, 0, '4', 32033.34, 8008.34, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(727, 2, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8578, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 32033.34, 400.42, 1, NULL, 0, '4', 32033.34, 8008.34, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(728, 3, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 8226, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 32033.34, 400.42, 1, NULL, 0, '4', 32033.34, 8008.34, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(729, 4, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7874, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 49891.13, 623.64, 1, NULL, 0, '4', 49891.13, 12472.78, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(730, 5, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7874, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 49891.13, 623.64, 1, NULL, 0, '4', 49891.13, 12472.78, 0.00, 0.00, 0.00, 0, 1.00, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(731, 6, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7874, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 49891.13, 623.64, 1, NULL, 0, '4', 49891.13, 12472.78, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(732, 7, 0, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7874, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 49891.13, 623.64, 1, 1, 0, '4', 49891.13, 12472.78, 0.00, 0.00, 0.00, 0, 1.19, 0.00),
(733, 8, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7874, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 32033.34, 400.42, 1, NULL, 0, '4', 32033.34, 8008.34, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(734, 9, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7522, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 32033.34, 400.42, 1, NULL, 0, '4', 32033.34, 8008.34, 0.00, 0.00, 0.00, 0, 1.00, 0.00),
(735, 10, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7170, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 8159.36, 101.99, 1, NULL, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 0.63, 0.00),
(736, 11, 6, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7170, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 8159.36, 101.99, 1, 0, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 1.21, 0.00),
(737, 12, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7170, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 8159.36, 101.99, 1, NULL, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(738, 1, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 7170, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 47398.63, 592.48, 1, NULL, 0, '4', 47398.63, 11849.66, 0.00, 0.00, 0.00, 0, 8.10, 0.00),
(739, 2, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 6088, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 37334.84, 466.69, 1, NULL, 0, '4', 37334.84, 9333.71, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(740, 3, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 5006, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 37334.84, 466.69, 1, NULL, 0, '4', 37334.84, 9333.71, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(741, 4, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 3924, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 8159.36, 101.99, 1, NULL, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(742, 5, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 3924, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 8159.36, 101.99, 1, NULL, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(743, 6, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 3924, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 8159.36, 101.99, 1, NULL, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(744, 7, 5, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 3924, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 8159.36, 101.99, 1, 1, 0, '4', 8159.36, 2039.84, 0.00, 0.00, 0.00, 0, 9.40, 0.00),
(745, 8, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 3924, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 37334.84, 466.69, 1, NULL, 0, '4', 37334.84, 9333.71, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(746, 9, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 2842, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 37334.84, 466.69, 1, NULL, 0, '4', 37334.84, 9333.71, 0.00, 0.00, 0.00, 0, 5.56, 0.00),
(747, 10, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 135140.53, 1689.26, 1, NULL, 0, '4', 135140.53, 33785.13, 0.00, 0.00, 0.00, 0, 3.42, 0.00),
(748, 11, 3, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 135140.53, 1689.26, 1, 0, 0, '4', 135140.53, 33785.13, 0.00, 0.00, 0.00, 0, 9.05, 0.00),
(749, 12, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 135140.53, 1689.26, 1, NULL, 0, '4', 135140.53, 33785.13, 0.00, 0.00, 0.00, 0, 6.84, 0.00),
(750, 14, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 35013.68, 407.67, 1, NULL, 0, '4', 32613.68, 8153.42, 0.00, 0.00, 0.00, 0, 2.56, 0.00),
(751, 14, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 49142.01, 2428.10, 1, NULL, 0, '1', 48562.01, 48562.01, 0.00, 0.00, 0.00, 0, 9.94, 0.00),
(752, 14, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 20885.35, 1037.27, 1, NULL, 0, '1', 20745.35, 20745.35, 0.00, 0.00, 0.00, 0, 10.48, 0.00),
(754, 14, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(755, 14, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 36856.51, 584.78, 1, NULL, 0, '3', 35086.51, 11695.50, 0.00, 0.00, 0.00, 0, 2.91, 0.00),
(756, 14, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 61427.51, 584.78, 1, NULL, 0, '5', 58477.51, 11695.50, 0.00, 0.00, 0.00, 0, 3.37, 0.00),
(757, 14, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 49142.01, 0.00, 1, NULL, 1, '', 49142.01, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(758, 14, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 78627.22, 0.00, 1, NULL, 1, '', 78627.22, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(759, 14, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 9828.40, 0.00, 1, NULL, 1, '', 9828.40, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(760, 14, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 12285.50, 0.00, 1, NULL, 0, '', 12285.50, 0.00, 0.00, 0.00, 0.00, 0, 1.52, 0.00),
(761, 14, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 22113.91, 0.00, 1, NULL, 0, '', 22113.91, 0.00, 0.00, 0.00, 0.00, 0, 9.24, 0.00),
(762, 14, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 12285.50, 0.00, 1, NULL, 1, '', 12285.50, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(763, 14, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(764, 14, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 24571.01, 1228.55, 1, NULL, 1, '1', 24571.01, 24571.01, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(765, 14, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 6142.75, 0.00, 1, NULL, 1, '', 6142.75, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(766, 14, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 12285.50, 0.00, 1, NULL, 1, '', 12285.50, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(767, 14, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 61427.51, 0.00, 1, NULL, 0, '', 61427.51, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(768, 14, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 34399.41, 400.49, 1, NULL, 0, '4', 32039.41, 8009.85, 0.00, 0.00, 0.00, 0, 2.44, 0.00),
(769, 14, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 12285.50, 614275.12, 1, NULL, 1, '0.001', 12285.50, 12285503.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(770, 14, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 61427.51, 584.78, 1, NULL, 0, '5', 58477.51, 11695.50, 0.00, 0.00, 0.00, 0, 1.53, 0.00),
(771, 14, 137, '', '', 'Aluminum Rods / Heat Sink', 'Aluminum Rods / Heat Sink', 'Aluminum Rods / Heat Sink', 'Aluminum Rods / Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 3071.38, 0.00, 1, NULL, 1, '', 3071.38, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(772, 14, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(773, 14, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 12285.50, 614.28, 1, NULL, 1, '1', 12285.50, 12285.50, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(774, 14, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 12285.50, 614.28, 1, NULL, 0, '1', 12285.50, 12285.50, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(775, 14, 0, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 12285.50, 614.28, 1, NULL, 1, '1', 12285.50, 12285.50, 0.00, 0.00, 0.00, 0, 0.35, 0.00),
(776, 14, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 61427.51, 993.79, 1, NULL, 0, '3', 59627.51, 19875.84, 0.00, 0.00, 0.00, 0, 8.80, 0.00),
(777, 14, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 12285.50, 601.78, 1, 1, 0, '1', 12035.50, 12035.50, 0.00, 0.00, 0.00, 0, 1.14, 0.00),
(778, 14, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 12285.50, 1218.55, 1, 1, 0, '0.5', 12185.50, 24371.01, 0.00, 0.00, 0.00, 0, 1.26, 0.00),
(779, 14, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 35013.68, 1705.68, 1, NULL, 0, '1', 34113.68, 34113.68, 0.00, 0.00, 0.00, 0, 2.75, 0.00),
(780, 14, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 24571.01, 1208.55, 1, 0, 0, '1', 24171.01, 24171.01, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(781, 14, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 36856.51, 154.28, 1, NULL, 0, '10', 30856.51, 3085.65, 0.00, 0.00, 0.00, 0, 2.47, 0.00),
(782, 14, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 1760, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 9828.40, 491.42, 1, NULL, 0, '1', 9828.40, 9828.40, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(783, 14, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 23342.46, 553.56, 1, NULL, 0, '2', 22142.46, 11071.23, 0.00, 0.00, 0.00, 0, 1.12, 0.00),
(784, 14, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 35013.68, 846.34, 1, NULL, 0, '2', 33853.68, 16926.84, 0.00, 0.00, 0.00, 0, 2.66, 0.00),
(785, 14, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 36856.51, 338.57, 1, NULL, 0, '5', 33856.51, 6771.30, 0.00, 0.00, 0.00, 0, 2.54, 0.00),
(786, 14, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 35013.68, 845.34, 1, 1, 0, '2', 33813.68, 16906.84, 0.00, 0.00, 0.00, 0, 3.89, 0.00),
(787, 14, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 100.00, 135140.53, 1351.41, 1, 1, 0, '5', 135140.53, 27028.11, 0.00, 0.00, 0.00, 0, 6.46, 0.00),
(788, 14, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 100.00, 135140.53, 1351.41, 1, 1, 0, '5', 135140.53, 27028.11, 0.00, 0.00, 0.00, 0, 3.08, 0.00),
(789, 14, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Yield', 'Low_Yield', 'Low_Yield', '56805949', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 100.00, 135140.53, 1351.41, 1, 1, 0, '5', 135140.53, 27028.11, 0.00, 0.00, 0.00, 0, 1.80, 0.00),
(790, 14, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 1760, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 61427.51, 116.11, 1, 1, 0, '22', 51087.51, 2322.16, 0.00, 0.00, 0.00, 0, 9.18, 0.00),
(791, 14, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 1760, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 60813.24, 113.21, 1, 1, 0, '22', 49813.24, 2264.24, 0.00, 0.00, 0.00, 0, 14.37, 0.00),
(792, 14, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 1760, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 60813.24, 117.21, 1, 1, 0, '22', 51573.24, 2344.24, 0.00, 0.00, 0.00, 0, 5.39, 0.00),
(793, 14, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 1760, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 36487.94, 1795.90, 1, 1, 0, '1', 35917.94, 35917.94, 0.00, 0.00, 0.00, 0, 26.06, 0.00),
(794, 14, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 1760, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 36487.94, 1800.40, 1, 1, 0, '1', 36007.94, 36007.94, 0.00, 0.00, 0.00, 0, 38.85, 0.00),
(795, 14, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 1760, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 36487.94, 1790.90, 1, 1, 0, '1', 35817.94, 35817.94, 0.00, 0.00, 0.00, 0, 64.32, 0.00),
(796, 14, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 133789.12, 2229.82, 1, 1, 0, '3', 133789.12, 44596.38, 0.00, 0.00, 0.00, 0, 6.32, 0.00),
(797, 14, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 133789.12, 3344.73, 1, 1, 0, '2', 133789.12, 66894.56, 0.00, 0.00, 0.00, 0, 8.81, 0.00),
(798, 14, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 99.00, 36487.94, 1824.40, 1, NULL, 0, '1', 36487.94, 36487.94, 0.00, 0.00, 0.00, 0, 13.50, 0.00),
(799, 14, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 99.00, 36487.94, 608.13, 1, NULL, 0, '3', 36487.94, 12162.65, 0.00, 0.00, 0.00, 0, 1.87, 0.00),
(800, 14, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 99.00, 36487.94, 608.13, 1, NULL, 0, '3', 36487.94, 12162.65, 0.00, 0.00, 0.00, 0, 6.55, 0.00),
(801, 14, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 133789.12, 6689.46, 1, 1, 0, '1', 133789.12, 133789.12, 0.00, 0.00, 0.00, 0, 37.52, 0.00),
(802, 14, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 133789.12, 6689.46, 1, 1, 0, '1', 133789.12, 133789.12, 0.00, 0.00, 0.00, 0, 23.00, 0.00),
(803, 14, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 133789.12, 2229.82, 1, 1, 0, '3', 133789.12, 44596.38, 0.00, 0.00, 0.00, 0, 17.76, 0.00),
(804, 14, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 133789.12, 668.95, 1, 1, 0, '10', 133789.12, 13378.91, 0.00, 0.00, 0.00, 0, 9.68, 0.00),
(805, 14, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '1025', 1760, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 12162.65, 121.63, 1, NULL, 0, '5', 12162.65, 2432.53, 0.00, 0.00, 0.00, 0, 1.47, 0.00),
(806, 14, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 12162.65, 121.63, 1, NULL, 0, '5', 12162.65, 2432.53, 0.00, 0.00, 0.00, 0, 0.78, 0.00),
(807, 14, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 11056.95, 110.57, 1, NULL, 0, '5', 11056.95, 2211.39, 0.00, 0.00, 0.00, 0, 0.26, 0.00),
(808, 14, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 1760, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(809, 14, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1760, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 55284.76, 1351.12, 1, NULL, 0, '2', 54044.76, 27022.38, 0.00, 0.00, 0.00, 0, 150.67, 0.00),
(810, 14, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1025', 1760, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 58356.14, 1419.40, 1, NULL, 0, '2', 56776.14, 28388.07, 0.00, 0.00, 0.00, 0, 258.70, 0.00),
(811, 14, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1025', 1760, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 60813.24, 1491.83, 1, NULL, 0, '2', 59673.24, 29836.62, 0.00, 0.00, 0.00, 0, 83.37, 0.00),
(812, 14, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1760, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 60813.24, 971.05, 1, 1, 0, '3', 58263.24, 19421.08, 0.00, 0.00, 0.00, 0, 40.41, 0.00),
(813, 14, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 95.00, 128383.50, 6419.18, 1, 1, 0, '1', 128383.50, 128383.50, 0.00, 0.00, 0.00, 0, 6.67, 0.00),
(814, 14, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 95.00, 128383.50, 6419.18, 1, 1, 0, '1', 128383.50, 128383.50, 0.00, 0.00, 0.00, 0, 4.29, 0.00),
(815, 14, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 95.00, 128383.50, 6419.18, 1, 1, 0, '1', 128383.50, 128383.50, 0.00, 0.00, 0.00, 0, 3.87, 0.00),
(816, 14, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '1025', 1760, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 95.00, 128383.50, 6419.18, 1, 1, 0, '1', 128383.50, 128383.50, 0.00, 0.00, 0.00, 0, 1.80, 0.00),
(817, 14, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 95.00, 128383.50, 6419.18, 1, 1, 0, '1', 128383.50, 128383.50, 0.00, 0.00, 0.00, 0, 1.09, 0.00),
(818, 14, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 133789.12, 3344.73, 1, 1, 0, '2', 133789.12, 66894.56, 0.00, 0.00, 0.00, 0, 15.58, 0.00),
(819, 14, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 133789.12, 2229.82, 1, 1, 0, '3', 133789.12, 44596.38, 0.00, 0.00, 0.00, 0, 12.24, 0.00),
(820, 14, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 15356.88, 76.78, 1, NULL, 0, '10', 15356.88, 1535.69, 0.00, 0.00, 0.00, 0, 5.94, 0.00),
(821, 14, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 12162.65, 60.81, 1, NULL, 0, '10', 12162.65, 1216.26, 0.00, 0.00, 0.00, 0, 4.14, 0.00),
(822, 14, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 85.00, 31328.03, 261.07, 1, 1, 0, '6', 31328.03, 5221.34, 0.00, 0.00, 0.00, 0, 1.20, 0.00),
(825, 14, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 121626.48, 6081.32, 1, 1, 0, '1', 121626.48, 121626.48, 0.00, 0.00, 0.00, 0, 3.00, 0.00),
(826, 14, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 99.00, 133789.12, 6689.46, 1, 1, 0, '1', 133789.12, 133789.12, 0.00, 0.00, 0.00, 0, 3.21, 0.00),
(827, 14, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 133789.12, 6689.46, 1, 1, 0, '1', 133789.12, 133789.12, 0.00, 0.00, 0.00, 0, 1.18, 0.00),
(828, 14, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 116712.28, 2917.81, 1, 1, 0, '2', 116712.28, 58356.14, 0.00, 0.00, 0.00, 0, 0.77, 0.00),
(829, 14, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 133789.12, 334.47, 1, 1, 0, '20', 133789.12, 6689.46, 0.00, 0.00, 0.00, 0, 1.25, 0.00),
(830, 14, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 133789.12, 334.47, 1, 1, 0, '20', 133789.12, 6689.46, 0.00, 0.00, 0.00, 0, 2.01, 0.00),
(831, 14, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 88455.62, 221.14, 1, 1, 0, '20', 88455.62, 4422.78, 0.00, 0.00, 0.00, 0, 1.33, 0.00),
(832, 14, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 255415.59, 12770.78, 1, NULL, 0, '1', 255415.59, 255415.59, 0.00, 0.00, 0.00, 0, 22.47, 0.00),
(833, 14, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 135140.53, 1689.26, 1, 1, 0, '4', 135140.53, 33785.13, 0.00, 0.00, 0.00, 0, 1.07, 0.00),
(834, 14, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 135140.53, 1689.26, 1, 1, 0, '4', 135140.53, 33785.13, 0.00, 0.00, 0.00, 0, 6.92, 0.00),
(835, 14, 131, 'NA', 'NA', 'Analog Electric Meters', 'Analog Electric Meters', 'Analog Electric Meters', 'Analog Electric Meters', '75423902', '13.25.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '835_color_cuz.jpeg', 98.00, 36119.38, 90.30, 1, 1, 0, '20', 36119.38, 1805.97, 0.00, 0.00, 0.00, 0, 0.97, 0.00),
(836, 14, 131, 'NA', 'NA', 'Digital Electric Meter', 'Digital Electric Meter', 'Digital Electric Meter', 'Digital Electric Meter', '14765420', '35.03.13', '22x48x12', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '836_color_cuz2.jpeg', 100.00, 49142.01, 122.86, 1, 1, 0, '20', 49142.01, 2457.10, 0.00, 0.00, 0.00, 0, 1.01, 0.00),
(837, 14, 131, 'NA', 'NA', 'Mixed Small Appliances', 'Mixed Small Appliances', 'Mixed Small Appliances', 'Mixed Small Appliances', '28865001', '13.04.14', 'Container', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '837_color_mixedappliances.jpeg', 90.00, 132683.44, 442.28, 1, 1, 0, '15', 132683.44, 8845.56, 0.00, 0.00, 0.00, 0, 0.74, 0.00),
(838, 7, 45, 'NA', 'NA', 'Developer test', 'Developer test', 'Developer test', 'Developer test', '77857981', 'NA', '5', '', 'United Kingdom', '', '', '', '1025', 1760, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 19656.80, 982.84, 1, NULL, 0, '1', 19656.80, 19656.80, 0.00, 0.00, 0.00, 0, 1.92, 0.00),
(841, 11, 8, 'NA', 'NA', 'Whole Computers / Servers', 'Whole Computers / Servers', 'Whole Computers / Servers', 'Whole Computers / Servers', '65479752', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '841_color_unnamed.jpg', 98.00, 60198.96, 1504.97, 1, 0, 0, '2', 60198.96, 30099.48, 0.00, 0.00, 0.00, 0, 0.94, 0.00),
(843, 14, 131, 'NA', 'NA', 'Printers - Assorted', 'Printers - Assorted', 'Printers - Assorted', 'Printers - Assorted', '94001340', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '843_color_Printer.png', 96.00, 94352.66, 4717.63, 1, 1, 0, '1', 94352.66, 94352.66, 0.00, 0.00, 0.00, 0, 0.66, 0.00),
(844, 14, 131, 'NA', 'NA', 'Toner Cartridges', 'Toner Cartridges', 'Toner Cartridges', 'Toner Cartridges', '37759414', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '844_color_download.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(845, 14, 131, 'NA', 'NA', 'AC Adaptor Plug', 'AC Adaptor Plug', 'AC Adaptor Plug', 'AC Adaptor Plug', '52729885', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '845_color_AC Adaptor Plug (no cable).png', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(846, 14, 131, 'NA', 'NA', 'HDD - Complete', 'HDD - Complete', 'HDD - Complete', 'HDD - Complete', '22425176', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '846_color_HDD.png', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(847, 14, 131, 'NA', 'NA', 'LED / LCD Monitor', 'LED / LCD Monitor', 'LED / LCD Monitor', 'LED / LCD Monitor', '16732496', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '847_color_LCD Monitor.png', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(848, 14, 131, 'NA', 'NA', 'Shredded eWaste', 'Shredded eWaste', 'Shredded eWaste', 'Shredded eWaste', '96072547', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '848_color_Shredded HDD.png', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(849, 14, 131, 'NA', 'NA', 'Small Domestic Appliances', 'Small Domestic Appliances', 'Small Domestic Appliances', 'Small Domestic Appliances', '68278774', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '849_color_Small Domestic Appliances.webp', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(850, 14, 130, 'NA', 'NA', 'Small Medical Devices', 'Small Medical Devices', 'Small Medical Devices', 'Small Medical Devices', '58397726', '16.02.16', 'Small', '', 'Anywhere', '', '', '', '1025', 1760, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '850_color_medsma.jpeg', 99.00, 97301.18, 324.34, 1, 1, 0, '15', 97301.18, 6486.75, 0.00, 0.00, 0.00, 0, 0.82, 0.00),
(851, 14, 131, 'NA', 'NA', 'Computer Fans', 'Computer Fans', 'Computer Fans', 'Computer Fans', '63279942', '', '', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '851_color_Computer Fan.png', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(852, 14, 137, 'NA', 'NA', 'Toner Powder', 'Toner Powder', 'Toner Powder', 'Toner Powder', '92742485', 'Waste', 'Powder', '', 'Anywhere', '', '', '', '1025', 1760, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '852_color_toner1.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(853, 14, 131, 'NA', 'NA', 'Printer Carcus - No Cartride', 'Printer Carcus - No Cartride', 'Printer Carcus - No Cartride', 'Printer Carcus - No Cartride', '41820784', '0', 'medium', '', 'Anywhere', '', '', '', '1025', 1760, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '853_color_carcus.jpg', 96.00, 94352.66, 4717.63, 1, 0, 0, '1', 94352.66, 94352.66, 0.00, 0.00, 0.00, 0, 0.80, 0.00),
(863, 1, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 100.00, 73713.02, 245.71, 1, NULL, 0, '15', 73713.02, 4914.20, 0.00, 0.00, 0.00, 0, 0.87, 0.00),
(864, 2, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 55284.76, 184.28, 1, NULL, 0, '15', 55284.76, 3685.65, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(865, 3, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 55284.76, 184.28, 1, NULL, 0, '15', 55284.76, 3685.65, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(866, 4, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 99512.57, 331.71, 1, NULL, 0, '15', 99512.57, 6634.17, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(867, 5, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 99512.57, 331.71, 1, NULL, 0, '15', 99512.57, 6634.17, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(868, 6, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 99512.57, 331.71, 1, NULL, 0, '15', 99512.57, 6634.17, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(869, 7, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 99512.57, 331.71, 1, NULL, 0, '15', 99512.57, 6634.17, 0.00, 0.00, 0.00, 0, 1.04, 0.00),
(870, 8, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 55284.76, 184.28, 1, NULL, 0, '15', 55284.76, 3685.65, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(871, 9, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 55284.76, 184.28, 1, NULL, 0, '15', 55284.76, 3685.65, 0.00, 0.00, 0.00, 0, 0.15, 0.00),
(872, 10, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 60636.72, 202.12, 1, NULL, 0, '15', 60636.72, 4042.45, 0.00, 0.00, 0.00, 0, 0.43, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(873, 11, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 67374.13, 224.58, 1, 0, 0, '15', 67374.13, 4491.61, 0.00, 0.00, 0.00, 0, 1.09, 0.00),
(874, 12, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 90.00, 60636.72, 202.12, 1, NULL, 0, '15', 60636.72, 4042.45, 0.00, 0.00, 0.00, 0, 0.86, 0.00),
(875, 14, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 96.00, 71865.74, 239.55, 1, NULL, 0, '15', 71865.74, 4791.05, 0.00, 0.00, 0.00, 0, 0.39, 0.00),
(876, 1, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 1760, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 100.00, 60491.38, 177.92, 1, NULL, 0, '17', 60491.38, 3558.32, 0.00, 0.00, 0.00, 0, 0.96, 0.00),
(877, 2, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 1408, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 124456.98, 366.05, 1, NULL, 0, '17', 124456.98, 7321.00, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(878, 3, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 1056, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 124456.98, 366.05, 1, NULL, 0, '17', 124456.98, 7321.00, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(879, 4, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 704, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 194722.05, 572.71, 1, NULL, 0, '17', 194722.05, 11454.24, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(880, 5, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 704, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 194722.05, 572.71, 1, NULL, 0, '17', 194722.05, 11454.24, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(881, 6, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 704, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 194722.05, 572.71, 1, NULL, 0, '17', 194722.05, 11454.24, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(882, 7, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 704, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 194722.05, 572.71, 1, NULL, 0, '17', 194722.05, 11454.24, 0.00, 0.00, 0.00, 0, 1.38, 0.00),
(883, 8, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 704, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 124456.98, 366.05, 1, NULL, 0, '17', 124456.98, 7321.00, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(884, 9, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '1025', 352, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 124456.98, 366.05, 1, NULL, 0, '17', 124456.98, 7321.00, 0.00, 0.00, 0.00, 0, 0.71, 0.00),
(885, 10, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.55, 0.00),
(886, 11, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 0.00, 0.00, 1, 0, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.25, 0.00),
(887, 12, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.11, 0.00),
(888, 14, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 96.00, 0.00, 0.00, 1, NULL, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.33, 0.00),
(889, 11, 7, 'NA', 'NA', 'PC Fans', 'PC Fans', 'PC Fans', 'PC Fans', '41344299', '16.02.16', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '889_color_fans.jpeg', 99.00, 0.00, 0.00, 1, 0, 0, '12', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.46, 0.00),
(891, 11, 5, 'NA', 'NA', 'Aluminum Heat Sync', 'Aluminum Heat Sync', 'Aluminum Heat Sync', 'Aluminum Heat Sync', '29667943', '16.02.02', 'small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '891_color_heatsync.jpeg', 95.00, 0.00, 0.00, 1, 0, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.85, 0.00),
(892, 11, 6, 'NA', 'NA', 'Computer Wires/Connectors', 'Computer Wires/Connectors', 'Computer Wires/Connectors', 'Computer Wires/Connectors', '48362399', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '892_color_cables.jpeg', 95.00, 0.00, 0.00, 1, 1, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.27, 0.00),
(893, 11, 5, 'NA', 'NA', 'Hard Disk Drives', 'Hard Disk Drives', 'Hard Disk Drives', 'Hard Disk Drives', '54731545', '16.02.16', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '893_color_HDD.jpeg', 95.00, 0.00, 0.00, 1, 0, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.19, 0.00),
(894, 11, 154, 'NA', 'NA', 'Mixed Metals ', 'Mixed Metals ', 'Mixed Metals ', 'Mixed Metals ', '99813708', '16.08.02', 'Small', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '894_color_IMG-20200416-WA0010.jpg', 99.00, 0.00, 0.00, 1, 0, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.13, 0.00),
(895, 11, 5, 'NA', 'NA', 'Hard Drive Circuit Boards', 'Hard Drive Circuit Boards', 'Hard Drive Circuit Boards', 'Hard Drive Circuit Boards', '93532425', '16.02.16', 'Varies2', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '895_color_15870347664122092202541234945665.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.91, 0.00),
(897, 11, 8, 'NA', 'NA', 'Remote Controls Whole', 'Remote Controls Whole', 'Remote Controls Whole', 'Remote Controls Whole', '79871004', '160616', 'Small', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '897_color_best_universal_remote_lead-1-f13a157.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.31, 0.00),
(898, 7, 36, 'NA', 'NA', 'Remote Controls', 'Remote Controls', 'Remote Controls', 'Remote Controls', '90960222', '16.02.16', 'small', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '898_color_remotes.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(899, 7, 36, 'NA', 'NA', 'mobile phone', 'mobile phone', 'mobile phone', 'mobile phone', '43390604', '16.01.16', 'small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '899_color_cellphones.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(900, 7, 45, 'NA', 'NA', 'Computer Cases Fe', 'Computer Cases Fe', 'Computer Cases Fe', 'Computer Cases Fe', '39897486', '15.22.60', 'shredded', '', 'Romania', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '900_color_computermetal.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(901, 7, 36, 'NA', 'NA', 'Cables / Wires Cu/Al', 'Cables / Wires Cu/Al', 'Cables / Wires Cu/Al', 'Cables / Wires Cu/Al', '86286647', '16.01.16', 'various', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '901_color_wires.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(902, 7, 44, 'NA', 'NA', 'Batteries / Li / Pb', 'Batteries / Li / Pb', 'Batteries / Li / Pb', 'Batteries / Li / Pb', '21060599', '13.55.32', 'small only', '', 'Romania', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '902_color_batteries.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(903, 7, 38, 'NA', 'NA', 'Black Decorative Stone From Melting Slag', 'Black Decorative Stone From Melting Slag', 'Black Decorative Stone From Melting Slag', 'Black Decorative Stone From Melting Slag', '12838381', '0', 'small', '', 'Slovakia', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '903_color_blackstones.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(904, 11, 7, 'NA', 'NA', 'Mixed IT Equipment', 'Mixed IT Equipment', 'Mixed IT Equipment', 'Mixed IT Equipment', '40000761', '140414', 'varies', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '904_color_we-buy-computer-it-scrap.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(905, 15, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 0.00, -30.00, 1, NULL, 0, '4', -2400.00, -600.00, 0.00, 0.00, 0.00, 0, 3.59, 0.00),
(906, 15, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 0.00, -29.00, 1, 1, 0, '1', -580.00, -580.00, 0.00, 0.00, 0.00, 0, 13.92, 0.00),
(907, 15, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 0.00, -7.00, 1, NULL, 0, '1', -140.00, -140.00, 0.00, 0.00, 0.00, 0, 14.67, 0.00),
(908, 15, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(909, 15, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(910, 15, 8, '', '', 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', 'MidGrade Green Radio/VCR Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 95.00, 0.00, 0.00, 1, 1, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.84, 0.00),
(911, 15, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 0.00, -29.50, 1, NULL, 0, '5', -2950.00, -590.00, 0.00, 0.00, 0.00, 0, 4.72, 0.00),
(912, 15, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(913, 15, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(914, 15, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(915, 15, 5, '', '', 'Depopulated Circuit Board (SILVER SOLDER)', 'Depopulated Circuit Board (SILVER SOLDER)', 'Depopulated Circuit Board (SILVER SOLDER)', 'Depopulated Circuit Board (SILVER SOLDER)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.13, 0.00),
(916, 15, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 12.94, 0.00),
(917, 15, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(918, 15, 8, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(919, 15, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(920, 15, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(921, 15, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(922, 15, 12, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(923, 15, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 0.00, -29.50, 1, 1, 0, '4', -2360.00, -590.00, 0.00, 0.00, 0.00, 0, 3.41, 0.00),
(924, 15, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 0.00, 0.00, 1, NULL, 1, '0.001', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(925, 15, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 0.00, -29.50, 1, NULL, 0, '5', -2950.00, -590.00, 0.00, 0.00, 0.00, 0, 2.14, 0.00),
(926, 15, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(927, 15, 5, 'None', '', 'Copper Concentrates (AU AG PT PD) BLUE BAG', 'Copper Concentrates (AU AG PT PD) BLUE BAG', 'Copper Concentrates (AU AG PT PD) BLUE BAG', 'Copper Concentrates (AU AG PT PD) BLUE BAG', '23152210', '16.02.16', 'Granuale', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(928, 15, 5, '', '', 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', 'Copper Concentrated Precious Metals (AU AG PT PD) GREEN BAG', '56422163', '11.02.15', 'Bag', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(929, 15, 13, '', '', 'Copper and Precious Metals For Inhouse Refining Yellow Bag', 'Copper and Precious Metals For Inhouse Refining Yellow Bag', 'Copper and Precious Metals For Inhouse Refining Yellow Bag', 'Copper and Precious Metals For Inhouse Refining Yellow Bag', '50272186', '11.21.25', 'Granular', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(930, 15, 5, '', '', 'High Grade Copper Only RED BAG', 'High Grade Copper Only RED BAG', 'High Grade Copper Only RED BAG', 'High Grade Copper Only RED BAG', '84266198', '11.21.25', 'Granular', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(931, 15, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 0.00, -30.00, 1, NULL, 0, '3', -1800.00, -600.00, 0.00, 0.00, 0.00, 0, 12.32, 0.00),
(932, 15, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 0.00, -12.50, 1, NULL, 0, '1', -250.00, -250.00, 0.00, 0.00, 0.00, 0, 1.60, 0.00),
(933, 15, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 0.00, -10.00, 1, NULL, 0, '0.5', -100.00, -200.00, 0.00, 0.00, 0.00, 0, 1.76, 0.00),
(934, 15, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 0.00, -45.00, 1, NULL, 0, '1', -900.00, -900.00, 0.00, 0.00, 0.00, 0, 3.85, 0.00),
(935, 15, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 0.00, -20.00, 1, NULL, 0, '1', -400.00, -400.00, 0.00, 0.00, 0.00, 0, 1.78, 0.00),
(936, 15, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 0.00, -30.00, 1, NULL, 0, '10', -6000.00, -600.00, 0.00, 0.00, 0.00, 0, 3.46, 0.00),
(937, 15, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(938, 15, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 0.00, -30.00, 1, NULL, 0, '2', -1200.00, -600.00, 0.00, 0.00, 0.00, 0, 1.57, 0.00),
(939, 15, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 0.00, -29.00, 1, NULL, 0, '2', -1160.00, -580.00, 0.00, 0.00, 0.00, 0, 3.72, 0.00),
(940, 15, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 0.00, -30.00, 1, 1, 0, '5', -3000.00, -600.00, 0.00, 0.00, 0.00, 0, 3.56, 0.00),
(941, 15, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 0.00, -30.00, 1, 1, 0, '2', -1200.00, -600.00, 0.00, 0.00, 0.00, 0, 5.45, 0.00),
(942, 15, 4, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26674997', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 8.10, 0.00),
(943, 15, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.37, 0.00),
(944, 15, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Yield', 'Low_Yield', 'Low_Yield', '56805949', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.58, 0.00),
(945, 15, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 0.00, -23.50, 1, NULL, 0, '22', -10340.00, -470.00, 0.00, 0.00, 0.00, 0, 12.86, 0.00),
(946, 15, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 0.00, -25.00, 1, NULL, 0, '22', -11000.00, -500.00, 0.00, 0.00, 0.00, 0, 20.12, 0.00),
(947, 15, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 0.00, -21.00, 1, NULL, 0, '22', -9240.00, -420.00, 0.00, 0.00, 0.00, 0, 7.55, 0.00),
(948, 15, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 0.00, -28.50, 1, NULL, 0, '1', -570.00, -570.00, 0.00, 0.00, 0.00, 0, 36.48, 0.00),
(949, 15, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 0.00, -24.00, 1, NULL, 0, '1', -480.00, -480.00, 0.00, 0.00, 0.00, 0, 54.39, 0.00),
(950, 15, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 75.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 62.83, 0.00),
(951, 15, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 8.85, 0.00),
(952, 15, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 12.33, 0.00),
(953, 15, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 45.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.42, 0.00),
(954, 15, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 95.00, 0.00, 0.00, 1, 0, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.50, 0.00),
(955, 15, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 75.00, 0.00, 0.00, 1, 0, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.48, 0.00),
(956, 15, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 60.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 27.00, 0.00),
(957, 15, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 80.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 21.32, 0.00),
(958, 15, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 16.17, 0.00),
(959, 15, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 0.00, 0.00, 1, 1, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 12.85, 0.00),
(960, 15, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', 'GC020', 'varies', '', 'Anywhere', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.60, 0.00),
(961, 15, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', 'GC020', 'Varies', '', 'Romania', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.76, 0.00),
(962, 15, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', 'GC020', 'Varies', '', 'Romania', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.28, 0.00),
(963, 15, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', 'GC020', 'Varies', '', 'Romania', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 100.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.11, 0.00),
(964, 15, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '', '', '', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 50.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 112.01, 0.00),
(965, 15, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '', '', '', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 60.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 223.57, 0.00),
(966, 15, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '', '', '', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 30.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 30.20, 0.00),
(967, 15, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '', '', '', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 50.00, 0.00, 0.00, 1, 1, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 24.05, 60.00),
(968, 15, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 13.58, 0.00),
(969, 15, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 10.25, 3230.00),
(970, 15, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 100.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 9.66, 0.00),
(971, 15, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 7.04, 0.00),
(972, 15, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United States', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.66, 3350.00),
(973, 15, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 90.00, 0.00, 0.00, 1, 0, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 14.65, 0.00),
(974, 15, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'United States', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 80.00, 0.00, 0.00, 1, 0, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 8.67, 0.00),
(975, 15, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 0.00, 0.00, 1, 1, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 6.41, 0.00),
(976, 15, 5, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 1.00, 1.00, 1.00, 0, 4.46, 0.00),
(978, 15, 7, 'NA', 'NA', 'Circuit Fiber for bricks and pavement', 'Circuit Fiber for bricks and pavement', 'Circuit Fiber for bricks and pavement', 'Circuit Fiber for bricks and pavement', '11367803', '', '', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(979, 15, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(980, 15, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 4.04, 0.00),
(981, 15, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.61, 0.00),
(982, 15, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.28, 0.00),
(983, 15, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.74, 0.00),
(984, 15, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.59, 0.00),
(985, 15, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.19, 0.00),
(986, 15, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 98.00, 0.00, 0.00, 1, 1, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.24, 0.00),
(987, 15, 0, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 95.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 24.74, 0.00),
(988, 15, 4, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 0.00, 0.00, 1, NULL, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.60, 0.00),
(989, 15, 4, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 0.00, 0.00, 1, NULL, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 8.74, 0.00),
(990, 15, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 100.00, 0.00, 0.00, 1, NULL, 0, '15', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.95, 0.00),
(991, 15, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', 'GC020', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.59, 800.00),
(992, 15, 8, 'NA', 'NA', 'Remote Controls', 'Remote Controls', 'Remote Controls', 'Remote Controls', '20524987', 'GC020', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '992_color_best_universal_remote_lead-1-f13a157.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.42, 0.00),
(993, 15, 8, 'NA', 'NA', 'Computer Keyboards', 'Computer Keyboards', 'Computer Keyboards', 'Computer Keyboards', '93706060', 'GC020', 'Various', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '993_color_keyboards.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, -0.43, 0.00),
(994, 15, 8, 'NA', 'NA', 'Desktop Phones', 'Desktop Phones', 'Desktop Phones', 'Desktop Phones', '37549258', 'GC020', 'varies', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '994_color_hqdefault.jpg', 80.00, 0.00, 0.00, 1, 1, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.55, 1122.00),
(995, 11, 7, 'NA', 'NA', 'Desktop Telephones', 'Desktop Telephones', 'Desktop Telephones', 'Desktop Telephones', '83334490', '16.02.16', 'varies', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '995_color_hqdefault.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.91, 0.00),
(996, 11, 7, 'NA', 'NA', 'Keyboards', 'Keyboards', 'Keyboards', 'Keyboards', '15707118', '16.02.16', 'varies', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '996_color_keys.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.38, 0.00),
(999, 11, 14, 'NA', 'NA', 'ABS Black Regrind ', 'ABS Black Regrind ', 'ABS Black Regrind ', 'ABS Black Regrind ', '77196041', '222222', '8mm', '', 'Romania', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '999_color_ansblack.jpg', 250.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.75, 0.00),
(1000, 11, 15, 'NA', 'NA', 'ABS LIGHT Regrind', 'ABS LIGHT Regrind', 'ABS LIGHT Regrind', 'ABS LIGHT Regrind', '48416708', '222222', '8mm', '', 'Romania', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1000_color_whiteABS.jpg', 250.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.44, 0.00),
(1001, 11, 8, 'NA', 'NA', 'ABS Sorted Plastic', 'ABS Sorted Plastic', 'ABS Sorted Plastic', 'ABS Sorted Plastic', '24326216', '222222', 'varies', '', 'Romania', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1001_color_Mixed-ABS-Scrap.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1002, 11, 8, 'NA', 'NA', 'Keypad Mylar', 'Keypad Mylar', 'Keypad Mylar', 'Keypad Mylar', '33426607', '111111', 'all', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1002_color_mylar.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.17, 0.00),
(1003, 11, 6, 'NA', 'NA', 'Desktop Phone Circuit Boards', 'Desktop Phone Circuit Boards', 'Desktop Phone Circuit Boards', 'Desktop Phone Circuit Boards', '51524421', '160216', 'All', '', 'Romania', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1003_color_suntech3.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 4.91, 0.00),
(1004, 11, 7, 'NA', 'NA', 'Remote Circuit Boards', 'Remote Circuit Boards', 'Remote Circuit Boards', 'Remote Circuit Boards', '25843128', '160216', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1004_color_P90521-131100.jpg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.23, 0.00),
(1005, 11, 7, 'NA', 'NA', 'Mixed Plastic PLA', 'Mixed Plastic PLA', 'Mixed Plastic PLA', 'Mixed Plastic PLA', '65143253', '220221', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1005_color_PLAframes.jpeg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.55, 0.00),
(1006, 11, 7, 'NA', 'NA', 'Rubber Membranes', 'Rubber Membranes', 'Rubber Membranes', 'Rubber Membranes', '45517781', '201433', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1006_color_rubber.jpeg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.55, 0.00),
(1007, 15, 7, 'NA', 'NA', 'Sorted ABS (Remotes Keyboards)', 'Sorted ABS (Remotes Keyboards)', 'Sorted ABS (Remotes Keyboards)', 'Sorted ABS (Remotes Keyboards)', '94815319', 'GC21201', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1007_color_Mixed-ABS-Scrap.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.33, 0.00),
(1008, 15, 7, 'NA', 'NA', 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', 'Mixed Silicon Keypads ( Keyboards, Remotes, Phones )', '93065671', 'GC12010', 'varies', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1008_color_rubber.jpeg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.29, 0.00),
(1009, 15, 8, 'NA', 'NA', 'PP Silver Mylar', 'PP Silver Mylar', 'PP Silver Mylar', 'PP Silver Mylar', '47735179', 'GC12020', 'Sheets', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1009_color_mylar PP.jpeg', 99.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.62, 0.00);
INSERT INTO `products` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`, `co2budget`) VALUES
(1010, 15, 8, 'NA', 'NA', 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', 'Unsorted Plastics and Metals (phones, Remotes, Keyboards)', '20618814', '000000', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1010_color_varies.jpeg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1011, 15, 5, 'NA', 'NA', 'Remote Circuit Boards', 'Remote Circuit Boards', 'Remote Circuit Boards', 'Remote Circuit Boards', '29268103', 'GC020', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1011_color_remotes.jpeg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 6.44, 0.00),
(1012, 11, 5, 'NA', 'NA', 'Copper Foil', 'Copper Foil', 'Copper Foil', 'Copper Foil', '49459868', '160216', 'rolls', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1012_color_copper.jpeg', 99.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.66, 0.00),
(1013, 15, 6, 'NA', 'NA', 'Flash Drives', 'Flash Drives', 'Flash Drives', 'Flash Drives', '79570283', 'GC020', 'small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1013_color_pile-of-usb-sticks-kingston-1920x1080.jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1014, 15, 8, 'NA', 'NA', 'Cables Connectors and Chords', 'Cables Connectors and Chords', 'Cables Connectors and Chords', 'Cables Connectors and Chords', '26869147', 'GC020', 'all', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1014_color_cables-bunch-tangled-audio-pile-141604812.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.36, 60.00),
(1015, 15, 7, 'NA', 'NA', 'Whole Computers / Servers', 'Whole Computers / Servers', 'Whole Computers / Servers', 'Whole Computers / Servers', '74834607', 'GC020', 'All', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1015_color_service7.jpg', 0.00, 0.00, 0.00, 1, 1, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1016, 15, 7, 'NA', 'NA', 'Printers Scanners Fax Machines', 'Printers Scanners Fax Machines', 'Printers Scanners Fax Machines', 'Printers Scanners Fax Machines', '77601579', 'GC020', 'all', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1016_color_printers-old-abandoned-recycling.jpg', 0.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1017, 15, 6, 'NA', 'NA', 'LCD / PLasma / OLED Displays', 'LCD / PLasma / OLED Displays', 'LCD / PLasma / OLED Displays', 'LCD / PLasma / OLED Displays', '98962708', 'GC020', 'all', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1017_color_used-lcd-monitor-500x500.jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1018, 15, 14, 'NA', 'NA', 'Circuit Boards Phones Keyboards and Remotes', 'Circuit Boards Phones Keyboards and Remotes', 'Circuit Boards Phones Keyboards and Remotes', 'Circuit Boards Phones Keyboards and Remotes', '75210658', 'GC020', 'all', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1018_color_rema1.jpeg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1019, 15, 7, 'NA', 'NA', 'RIbbon Cables with Connectors', 'RIbbon Cables with Connectors', 'RIbbon Cables with Connectors', 'RIbbon Cables with Connectors', '61570029', 'GC020', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1019_color_5277-c03d21291a8d4f72790c72ff49ce99cb.jpg', 90.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.95, 22.00),
(1020, 15, 154, 'NA', 'NA', 'Copper Etching Foils', 'Copper Etching Foils', 'Copper Etching Foils', 'Copper Etching Foils', '25545580', 'Gc020', 'Rolls', '', 'Anywhere', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1020_color_IMG-20220715-WA0002.jpg', 50.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.76, 4300.00),
(1021, 15, 146, 'NA', 'NA', 'Flatscreen TV Monitor', 'Flatscreen TV Monitor', 'Flatscreen TV Monitor', 'Flatscreen TV Monitor', '86506796', 'None', 'Caries', '', 'United States', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1021_color_images.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1022, 15, 8, 'NA', 'NA', 'Mixed Computer / IT Scrap', 'Mixed Computer / IT Scrap', 'Mixed Computer / IT Scrap', 'Mixed Computer / IT Scrap', '64240570', 'NA', 'varies', '', 'United States', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1022_color_this.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.04),
(1023, 15, 8, 'NA', 'NA', 'Wire Insulation', 'Wire Insulation', 'Wire Insulation', 'Wire Insulation', '45798123', '', '', '', 'Anywhere', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1023_color_Wire_Cables.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 1.00),
(1024, 16, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 0.00, -30.00, 1, NULL, 0, '4', -2400.00, -600.00, 0.00, 0.00, 0.00, 0, 2.48, 0.00),
(1025, 16, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 0.00, -29.00, 1, NULL, 0, '1', -580.00, -580.00, 0.00, 0.00, 0.00, 0, 9.89, 0.00),
(1026, 16, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 0.00, -7.00, 1, NULL, 0, '1', -140.00, -140.00, 0.00, 0.00, 0.00, 0, 10.34, 0.00),
(1027, 16, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1028, 16, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1029, 16, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 0.00, -29.50, 1, NULL, 0, '3', -1770.00, -590.00, 0.00, 0.00, 0.00, 0, 2.83, 0.00),
(1030, 16, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 0.00, -29.50, 1, NULL, 0, '5', -2950.00, -590.00, 0.00, 0.00, 0.00, 0, 3.31, 0.00),
(1031, 16, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1032, 16, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1033, 16, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1034, 16, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.43, 0.00),
(1035, 16, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 9.20, 0.00),
(1036, 16, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1037, 16, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1038, 16, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1039, 16, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1040, 16, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1041, 16, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1042, 16, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 0.00, -29.50, 1, NULL, 0, '4', -2360.00, -590.00, 0.00, 0.00, 0.00, 0, 2.40, 0.00),
(1043, 16, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 0.00, 0.00, 1, NULL, 1, '0.001', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1044, 16, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 0.00, -29.50, 1, NULL, 0, '5', -2950.00, -590.00, 0.00, 0.00, 0.00, 0, 1.50, 0.00),
(1045, 16, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1046, 16, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1047, 16, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1048, 16, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1049, 16, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1050, 16, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 0.00, -30.00, 1, NULL, 0, '3', -1800.00, -600.00, 0.00, 0.00, 0.00, 0, 8.74, 0.00),
(1051, 16, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 0.00, -12.50, 1, NULL, 0, '1', -250.00, -250.00, 0.00, 0.00, 0.00, 0, 1.07, 0.00),
(1052, 16, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 0.00, -10.00, 1, NULL, 0, '0.5', -100.00, -200.00, 0.00, 0.00, 0.00, 0, 1.18, 0.00),
(1053, 16, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 0.00, -45.00, 1, NULL, 0, '1', -900.00, -900.00, 0.00, 0.00, 0.00, 0, 2.70, 0.00),
(1054, 16, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 0.00, -20.00, 1, NULL, 0, '1', -400.00, -400.00, 0.00, 0.00, 0.00, 0, 1.21, 0.00),
(1055, 16, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 0.00, -30.00, 1, NULL, 0, '10', -6000.00, -600.00, 0.00, 0.00, 0.00, 0, 2.44, 0.00),
(1056, 16, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1057, 16, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 0.00, -30.00, 1, NULL, 0, '2', -1200.00, -600.00, 0.00, 0.00, 0.00, 0, 1.07, 0.00),
(1058, 16, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 0.00, -29.00, 1, NULL, 0, '2', -1160.00, -580.00, 0.00, 0.00, 0.00, 0, 2.59, 0.00),
(1059, 16, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 0.00, -30.00, 1, NULL, 0, '5', -3000.00, -600.00, 0.00, 0.00, 0.00, 0, 2.51, 0.00),
(1060, 16, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 0.00, -30.00, 1, NULL, 0, '2', -1200.00, -600.00, 0.00, 0.00, 0.00, 0, 3.83, 0.00),
(1061, 16, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 6.63, 0.00),
(1062, 16, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.17, 0.00),
(1063, 16, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Yield', 'Low_Yield', 'Low_Yield', '56805949', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.97, 0.00),
(1064, 16, 4, 'Laptop_Boards', 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 0.00, -23.50, 1, NULL, 0, '22', -10340.00, -470.00, 0.00, 0.00, 0.00, 0, 9.18, 0.00),
(1065, 16, 5, 'Laptop_Boards', 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 0.00, -25.00, 1, NULL, 0, '22', -11000.00, -500.00, 0.00, 0.00, 0.00, 0, 14.37, 0.00),
(1066, 16, 6, 'Laptop_Boards', 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '0', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 0.00, -21.00, 1, NULL, 0, '22', -9240.00, -420.00, 0.00, 0.00, 0.00, 0, 5.39, 0.00),
(1067, 16, 4, 'Ram', 'ICN3203040099432398848', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 0.00, -28.50, 1, NULL, 0, '1', -570.00, -570.00, 0.00, 0.00, 0.00, 0, 26.06, 0.00),
(1068, 16, 3, 'Ram', 'ICN3203040099432398848', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 0.00, -24.00, 1, NULL, 0, '1', -480.00, -480.00, 0.00, 0.00, 0.00, 0, 38.85, 0.00),
(1069, 16, 2, 'Ram', 'ICN3203040099432398848', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '0', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 0.00, -33.50, 1, NULL, 0, '1', -670.00, -670.00, 0.00, 0.00, 0.00, 0, 64.32, 0.00),
(1070, 16, 5, 'Extension_Cards', 'ICN2261506302335254528', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 7.31, 0.00),
(1071, 16, 4, 'Extension_Cards', 'ICN2261506302335254528', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 0.00, 0.00, 1, NULL, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 9.84, 0.00),
(1072, 16, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 13.50, 0.00),
(1073, 16, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.87, 0.00),
(1074, 16, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 6.55, 0.00),
(1075, 16, 5, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 38.86, 0.00),
(1076, 16, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 24.15, 0.00),
(1077, 16, 6, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 18.73, 0.00),
(1078, 16, 7, 'CellPhone_Boards', 'ICN7017588983815208960', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 10.56, 0.00),
(1079, 16, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Anywhere', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.44, 0.00),
(1080, 16, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.02, 0.00),
(1081, 16, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '5', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.74, 0.00),
(1082, 16, 8, 'Copper_Frames_and_Blanks', 'ICN6597401819167588352', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00),
(1083, 16, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 0.00, -31.00, 1, NULL, 0, '2', -1240.00, -620.00, 0.00, 0.00, 0.00, 0, 150.67, 0.00),
(1084, 16, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 0.00, -39.50, 1, NULL, 0, '2', -1580.00, -790.00, 0.00, 0.00, 0.00, 0, 258.70, 0.00),
(1085, 16, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 0.00, -28.50, 1, NULL, 0, '2', -1140.00, -570.00, 0.00, 0.00, 0.00, 0, 83.37, 0.00),
(1086, 16, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '0', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 0.00, -42.50, 1, NULL, 0, '3', -2550.00, -850.00, 0.00, 0.00, 0.00, 0, 40.41, 0.00),
(1087, 16, 3, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 17.13, 0.00),
(1088, 16, 4, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 7.97, 0.00),
(1089, 16, 5, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 7.50, 0.00),
(1090, 16, 6, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 5.34, 0.00),
(1091, 16, 7, 'Telecom_Boards', 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '0', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 70.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.42, 0.00),
(1092, 16, 5, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 16.05, 0.00),
(1093, 16, 4, 'Server_Boards', 'ICN237138269832216576', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '3', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 12.67, 0.00),
(1094, 16, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 0.00, 0.00, 1, NULL, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 5.59, 0.00),
(1095, 16, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.89, 0.00),
(1096, 16, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '6', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.56, 0.00),
(1097, 16, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 0.00, 0.00, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(1098, 16, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00, 0.00),
(1099, 16, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', 'High_Grade_High_PMs', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 4.62, 0.00),
(1100, 16, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 4.09, 0.00),
(1101, 16, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 3.38, 0.00),
(1102, 16, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 0.00, 0.00, 1, NULL, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.09, 0.00),
(1103, 16, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.46, 0.00),
(1104, 16, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 2.48, 0.00),
(1105, 16, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.36, 0.00),
(1106, 16, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 22.47, 0.00),
(1107, 16, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 0.00, 0.00, 1, NULL, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1.27, 0.00),
(1108, 16, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '0', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 0.00, 0.00, 1, NULL, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 8.10, 0.00),
(1109, 16, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', 'Large_Printers_Copiers', '40541648', '142014', 'Large', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '863_color_861_color_WhatsApp-Image-2018-11-29-at-4.09.13-PM-1.jpeg', 100.00, 0.00, 0.00, 1, NULL, 0, '15', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.87, 0.00),
(1110, 16, 8, 'Whole_Printers', 'ICN6909537777130405888', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', 'Small_And_AllInOne', '14105015', '180615', 'Small', '', 'Anywhere', '', '', '', '0', 0, 11, 8, '', 0, '', NULL, 0, NULL, '', NULL, '876_color_862_color_image.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '17', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.96, 0.00),
(1111, 11, 154, 'NA', 'NA', 'Graphite Powder', 'Graphite Powder', 'Graphite Powder', 'Graphite Powder', '32773232', '170927', 'Powder', '', 'Anywhere', '', '', '', '0', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '1111_color_phpptp.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0.00);

-- --------------------------------------------------------

--
-- Table structure for table `products-21-12-19`
--

CREATE TABLE `products-21-12-19` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `categoryid` int(11) DEFAULT NULL,
  `dataset` varchar(255) DEFAULT NULL,
  `datasetid` varchar(500) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) DEFAULT NULL,
  `aralias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `substance` varchar(100) DEFAULT NULL,
  `size` varchar(100) DEFAULT NULL,
  `sheets` varchar(100) DEFAULT NULL,
  `origin` varchar(100) DEFAULT NULL,
  `unit_weight` varchar(100) DEFAULT NULL,
  `unit_base` varchar(100) DEFAULT NULL,
  `unit_pack` varchar(100) DEFAULT NULL,
  `unit_pallet` varchar(100) DEFAULT NULL,
  `pallet_height` int(11) DEFAULT NULL,
  `brandid` int(11) DEFAULT NULL,
  `manufacturerid` int(11) DEFAULT NULL,
  `packing` varchar(100) DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `quality` varchar(100) DEFAULT NULL,
  `leadtime` int(11) DEFAULT NULL,
  `reorder` int(11) DEFAULT NULL,
  `sbarcodeimage` varchar(255) DEFAULT NULL,
  `palletecode` varchar(255) DEFAULT NULL,
  `palletecodeimage` varchar(255) DEFAULT NULL,
  `productcolorimage` varchar(255) DEFAULT NULL,
  `excepectedrate` float(13,2) DEFAULT NULL,
  `excepectedrevenue` float(13,2) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `pricestatus` int(11) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `netexcepectedrevenue` float(13,2) DEFAULT 0.00,
  `netperton` float(13,2) DEFAULT 0.00,
  `totalquantity` float(13,2) DEFAULT 0.00,
  `used` float(13,2) DEFAULT 0.00,
  `balance` float(13,2) DEFAULT 0.00,
  `staticprice` int(11) DEFAULT 0,
  `profitperkg` float(13,2) NOT NULL DEFAULT 0.00
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `products-21-12-19`
--

INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(14, 1, 8, NULL, NULL, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', 0, 0, '', '', '', '14_color_Tulip_494_ATA.jpg', 95.00, 3515.59, 1.76, 1, 0, 0, '4', 3515.59, 3515.59, NULL, NULL, NULL, NULL, 1.76),
(15, 1, 9, NULL, NULL, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', 0, 0, '', '', '', '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 16417.94, 8.21, 1, 0, 0, '1', 16417.94, 16417.94, NULL, NULL, NULL, NULL, 8.21),
(18, 1, 6, NULL, NULL, 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', 0, 0, '', '', '', '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 15172.50, 7.59, 1, 0, 0, '1', 15172.50, 15172.50, NULL, NULL, NULL, NULL, 7.59),
(19, 1, 6, NULL, NULL, 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, 0, 0, '', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(20, 1, 8, NULL, NULL, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '0', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(24, 1, 8, NULL, NULL, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', 0, 0, '', '', '', '24_color_52156_S.png', 100.00, 4048.20, 2.02, 1, 0, 0, '3', 4048.20, 4048.20, NULL, NULL, NULL, NULL, 2.02),
(25, 1, 6, NULL, NULL, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', 0, 0, '', '', '', '25_color_download.jpg', 100.00, 4947.90, 2.47, 1, 0, 0, '5', 4947.90, 4947.90, NULL, NULL, NULL, NULL, 2.47),
(29, 1, 5, NULL, NULL, 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(30, 1, 5, NULL, NULL, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(32, 1, 7, NULL, NULL, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(33, 1, 5, NULL, NULL, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', 0, 0, '', '', '', '33_color_depop-boards.jpg', 100.00, 1945.60, 0.97, 1, 0, 0, '', 1945.60, 1945.60, NULL, NULL, NULL, NULL, 0.97),
(34, 1, 5, NULL, NULL, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '34_color_depop-withgld.jpg', 60.00, 13693.80, 6.85, 1, 0, 0, '', 13693.80, 13693.80, NULL, NULL, NULL, NULL, 6.85),
(35, 1, 5, NULL, NULL, 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(36, 1, 7, 'Price List', NULL, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', 0, 0, '', '', '', '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(37, 1, 5, NULL, NULL, 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', 0, 0, '', '', '', '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, 0, 1, '1', 9019.68, 9019.68, NULL, NULL, NULL, NULL, 0.00),
(38, 1, 7, NULL, NULL, 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(39, 1, 7, NULL, NULL, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(40, 1, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(42, 1, 8, NULL, NULL, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', 0, 0, '', '', '', '42_color_tv-nometal.jpeg', 70.00, 3482.36, 1.74, 1, 0, 0, '4', 3482.36, 3482.36, NULL, NULL, NULL, NULL, 1.74),
(43, 1, 1, NULL, NULL, 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', 0, 0, '', '', '', '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, 0, 1, '0.001', 31708.65, 31708654.00, NULL, NULL, NULL, NULL, 0.00),
(47, 1, 6, NULL, NULL, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 2272.64, 1.14, 1, 0, 0, '5', 2272.64, 2272.64, NULL, NULL, NULL, NULL, 1.14),
(49, 1, 8, NULL, NULL, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, 0.00),
(52, 1, 1, 'None', NULL, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(53, 1, 12, NULL, NULL, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(54, 1, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(55, 1, 14, NULL, NULL, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(56, 1, 5, 'None', NULL, 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 13765.66, 6.88, 1, 0, 0, '3', 13765.66, 13765.66, NULL, NULL, NULL, NULL, 6.88),
(63, 1, 8, NULL, NULL, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1459.20, 0.73, 1, 0, 0, '1', 1459.20, 1459.20, NULL, NULL, NULL, NULL, 0.73),
(64, 1, 8, NULL, NULL, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 1611.20, 0.81, 1, 0, 0, '0.5', 1611.20, 1611.20, NULL, NULL, NULL, NULL, 0.81),
(65, 1, 7, NULL, NULL, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 3925.32, 1.96, 1, 0, 0, '1', 3925.32, 3925.32, NULL, NULL, NULL, NULL, 1.96),
(68, 1, 8, NULL, NULL, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1648.20, 0.82, 1, 0, 0, '1', 1648.20, 1648.20, NULL, NULL, NULL, NULL, 0.82),
(69, 1, 7, NULL, NULL, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 4117.97, 2.06, 1, 0, 0, '10', 4117.97, 4117.97, NULL, NULL, NULL, NULL, 2.06),
(71, 1, 5, NULL, NULL, 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, NULL, 0.00),
(76, 1, 8, NULL, NULL, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 1463.00, 0.73, 1, 0, 0, '2', 1463.00, 1463.00, NULL, NULL, NULL, NULL, 0.73),
(77, 1, 7, NULL, NULL, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 3737.49, 1.87, 1, 0, 0, '2', 3737.49, 3737.49, NULL, NULL, NULL, NULL, 1.87),
(79, 1, 5, NULL, NULL, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 3678.00, 1.84, 1, 0, 0, '5', 3678.00, 3678.00, NULL, NULL, NULL, NULL, 1.84),
(80, 1, 6, NULL, NULL, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 5602.19, 2.80, 1, 0, 0, '2', 5602.19, 5602.19, NULL, NULL, NULL, NULL, 2.80),
(84, 1, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 100.00, 10234.34, 5.12, 1, 1, 0, '5', 10234.34, 10234.34, NULL, NULL, NULL, NULL, 5.12),
(85, 1, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 100.00, 4944.66, 2.47, 1, 1, 0, '5', 4944.66, 4944.66, NULL, NULL, NULL, NULL, 2.47),
(86, 1, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Yield', 'Low_Yield', 'Low_Yield', '56805949', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 100.00, 3130.44, 1.57, 1, 1, 0, '5', 3130.44, 3130.44, NULL, NULL, NULL, NULL, 1.57),
(87, 1, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 13845.95, 6.92, 1, 1, 0, '22', 13845.95, 13845.95, NULL, NULL, NULL, NULL, 6.92),
(88, 1, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 21947.68, 10.97, 1, 1, 0, '22', 21947.68, 21947.68, NULL, NULL, NULL, NULL, 10.97),
(89, 1, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 8401.02, 4.20, 1, 1, 0, '22', 8401.02, 8401.02, NULL, NULL, NULL, NULL, 4.20),
(90, 1, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 39024.61, 19.51, 1, 1, 0, '1', 39024.61, 39024.61, NULL, NULL, NULL, NULL, 19.51),
(91, 1, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 58175.57, 29.09, 1, 1, 0, '1', 58175.57, 58175.57, NULL, NULL, NULL, NULL, 29.09),
(92, 1, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 96307.20, 48.15, 1, 1, 0, '1', 96307.20, 96307.20, NULL, NULL, NULL, NULL, 48.15),
(93, 1, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 11923.46, 5.96, 1, 1, 0, '3', 11923.46, 11923.46, NULL, NULL, NULL, NULL, 5.96),
(94, 1, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15803.90, 7.90, 1, 1, 0, '2', 15803.90, 15803.90, NULL, NULL, NULL, NULL, 7.90),
(95, 1, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 99.00, 43660.46, 21.83, 1, 1, 0, '1', 43660.46, 43660.46, NULL, NULL, NULL, NULL, 21.83),
(96, 1, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 99.00, 2002.28, 1.00, 1, 1, 0, '3', 2002.28, 2002.28, NULL, NULL, NULL, NULL, 1.00),
(97, 1, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 99.00, 14492.22, 7.25, 1, 1, 0, '3', 14492.22, 14492.22, NULL, NULL, NULL, NULL, 7.25),
(98, 1, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 59852.06, 29.93, 1, 1, 0, '1', 59852.06, 59852.06, NULL, NULL, NULL, NULL, 29.93),
(99, 1, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 37372.42, 18.69, 1, 1, 0, '1', 37372.42, 37372.42, NULL, NULL, NULL, NULL, 18.69),
(100, 1, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 29021.41, 14.51, 1, 1, 0, '3', 29021.41, 29021.41, NULL, NULL, NULL, NULL, 14.51),
(101, 1, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 16588.60, 8.29, 1, 1, 0, '10', 16588.60, 16588.60, NULL, NULL, NULL, NULL, 8.29),
(102, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 2194.18, 1.10, 1, 1, 0, '5', 2194.18, 2194.18, NULL, NULL, NULL, 0, 1.10),
(103, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 1169.53, 0.58, 1, 1, 0, '5', 1169.53, 1169.53, NULL, NULL, NULL, 0, 0.58),
(104, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 393.98, 0.20, 1, 1, 0, '5', 393.98, 393.98, NULL, NULL, NULL, 0, 0.20),
(105, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0, 0.00),
(106, 1, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 254806.16, 127.40, 1, 1, 0, '2', 254806.16, 254806.16, NULL, NULL, NULL, 0, 127.40),
(107, 1, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 390352.69, 195.18, 1, 1, 0, '2', 390352.69, 390352.69, NULL, NULL, NULL, 0, 195.18),
(108, 1, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 156755.45, 78.38, 1, 1, 0, '2', 156755.45, 156755.45, NULL, NULL, NULL, 0, 78.38),
(109, 1, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 68585.82, 34.29, 1, 1, 0, '3', 68585.82, 68585.82, NULL, NULL, NULL, 0, 34.29),
(111, 1, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 28117.41, 14.06, 1, 1, 0, '1', 28117.41, 28117.41, NULL, NULL, NULL, 0, 14.06),
(112, 1, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 16422.00, 8.21, 1, 1, 0, '1', 16422.00, 16422.00, NULL, NULL, NULL, 0, 8.21),
(113, 1, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 14471.91, 7.24, 1, 1, 0, '1', 14471.91, 14471.91, NULL, NULL, NULL, 0, 7.24),
(114, 1, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5208.45, 2.60, 1, 1, 0, '1', 5208.45, 5208.45, NULL, NULL, NULL, 0, 2.60),
(115, 1, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 70.00, 3596.61, 1.80, 1, 1, 0, '1', 3596.61, 3596.61, NULL, NULL, NULL, 0, 1.80),
(116, 1, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 26532.98, 13.27, 1, 1, 0, '2', 26532.98, 26532.98, NULL, NULL, NULL, 0, 13.27),
(117, 1, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 21035.20, 10.52, 1, 1, 0, '3', 21035.20, 21035.20, NULL, NULL, NULL, 0, 10.52),
(124, 1, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 7599.99, 3.80, 1, NULL, 0, '10', 7599.99, 7599.99, NULL, NULL, NULL, 0, 3.80),
(125, 1, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 5296.90, 2.65, 1, NULL, 0, '10', 5296.90, 5296.90, NULL, NULL, NULL, 0, 2.65),
(126, 1, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 2169.98, 1.08, 1, NULL, 0, '6', 2169.98, 2169.98, NULL, NULL, NULL, 0, 1.08),
(127, 1, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, NULL, NULL, NULL, 1, 0.00),
(131, 1, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, NULL, NULL, NULL, 1, 0.00),
(132, 4, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0, 0.00),
(133, 4, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 9361.18, 4.39, 1, NULL, 0, '1', 8781.18, 8781.18, 0.00, 0.00, 0.00, 0, 0.00),
(134, 4, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 9238.24, 4.55, 1, NULL, 0, '1', 9098.24, 9098.24, 0.00, 0.00, 0.00, 0, 0.00),
(135, 4, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(136, 4, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(137, 4, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 7382.88, 0.94, 1, NULL, 0, '3', 5612.88, 1870.96, 0.00, 0.00, 0.00, 0, 0.00),
(138, 4, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 14077.28, 1.11, 1, NULL, 0, '5', 11127.28, 2225.46, 0.00, 0.00, 0.00, 0, 0.00),
(139, 4, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(140, 4, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(141, 4, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(142, 4, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 194880.00, 389760.00, 1, NULL, 0, '', 2336.00, 2336.00, 0.00, 0.00, 0.00, 0, 0.00),
(143, 4, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 1026657.00, 2053314.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(144, 4, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(145, 4, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(146, 4, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(147, 4, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(148, 4, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(149, 4, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(150, 4, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 11469.59, 1.14, 1, NULL, 0, '4', 9109.59, 2277.40, 0.00, 0.00, 0.00, 0, 0.00),
(151, 4, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(152, 4, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 5294.62, 0.23, 1, NULL, 0, '5', 2344.62, 468.92, 0.00, 0.00, 0.00, 0, 0.00),
(153, 4, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(154, 4, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(155, 4, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(156, 4, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(157, 4, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(158, 4, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 24960.28, 3.86, 1, NULL, 0, '3', 23160.28, 7720.09, 0.00, 0.00, 0.00, 0, 0.00),
(159, 4, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1139.33, 0.44, 1, NULL, 0, '1', 889.33, 889.33, 0.00, 0.00, 0.00, 0, 0.00),
(160, 4, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 619.46, 0.52, 1, NULL, 0, '0.5', 519.46, 1038.93, 0.00, 0.00, 0.00, 0, 0.00),
(161, 4, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 1611.93, 0.36, 1, NULL, 0, '1', 711.93, 711.93, 0.00, 0.00, 0.00, 0, 0.00),
(162, 4, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1156.08, 0.38, 1, NULL, 0, '1', 756.08, 756.08, 0.00, 0.00, 0.00, 0, 0.00),
(163, 4, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 25607.98, 0.98, 1, NULL, 0, '10', 19607.98, 1960.80, 0.00, 0.00, 0.00, 0, 0.00),
(164, 4, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(165, 4, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 2106.04, 0.23, 1, NULL, 0, '2', 906.04, 453.02, 0.00, 0.00, 0.00, 0, 0.00),
(166, 4, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 4092.96, 0.73, 1, NULL, 0, '2', 2932.96, 1466.48, 0.00, 0.00, 0.00, 0, 0.00),
(167, 4, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 11096.51, 0.81, 1, NULL, 0, '5', 8096.51, 1619.30, 0.00, 0.00, 0.00, 0, 0.00),
(168, 4, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 6337.89, 1.28, 1, NULL, 0, '2', 5137.89, 2568.95, 0.00, 0.00, 0.00, 0, 0.00),
(169, 4, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 48060.54, 6.97, 1, NULL, 0, '5', 43585.54, 8717.11, 0.00, 0.00, 0.00, 0, 0.00),
(170, 4, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 20135.85, 2.77, 1, NULL, 0, '5', 17335.85, 3467.17, 0.00, 0.00, 0.00, 0, 0.00),
(171, 4, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 14666.23, 1.19, 1, NULL, 0, '5', 11866.23, 2373.25, 0.00, 0.00, 0.00, 0, 0.00),
(172, 4, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 237745.50, 5.17, 1, NULL, 0, '22', 237745.50, 237745.50, 0.00, 0.00, 0.00, 0, 0.00),
(173, 4, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 374065.31, 8.25, 1, NULL, 0, '22', 374065.31, 374065.31, 0.00, 0.00, 0.00, 0, 0.00),
(174, 4, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 138489.70, 2.94, 1, NULL, 0, '22', 138489.70, 138489.70, 0.00, 0.00, 0.00, 0, 0.00),
(175, 4, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 25972.26, 12.70, 1, NULL, 0, '1', 25402.26, 25402.26, 0.00, 0.00, 0.00, 0, 0.00),
(176, 4, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 41604.35, 20.56, 1, NULL, 0, '1', 41604.35, 41604.35, 0.00, 0.00, 0.00, 0, 0.00),
(177, 4, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 74434.28, 36.88, 1, NULL, 0, '1', 74434.28, 74434.28, 0.00, 0.00, 0.00, 0, 0.00),
(178, 4, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 16910.36, 4.07, 1, NULL, 0, '3', 15260.36, 5086.79, 0.00, 0.00, 0.00, 0, 0.00),
(179, 4, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15331.48, 5.93, 1, NULL, 0, '2', 14815.48, 7407.74, 0.00, 0.00, 0.00, 0, 0.00),
(180, 4, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 15526.65, 12.42, 1, NULL, 0, '1', 15526.65, 15526.65, 0.00, 0.00, 0.00, 0, 0.00),
(181, 4, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 7723.15, 2.02, 1, NULL, 0, '3', 7591.15, 2530.38, 0.00, 0.00, 0.00, 0, 0.00),
(182, 4, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 17119.42, 4.57, 1, NULL, 0, '3', 17119.42, 5706.47, 0.00, 0.00, 0.00, 0, 0.00),
(183, 4, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 39591.94, 31.26, 1, NULL, 0, '1', 39071.94, 39071.94, 0.00, 0.00, 0.00, 0, 0.00),
(184, 4, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 22174.87, 17.32, 1, NULL, 0, '1', 21654.87, 21654.87, 0.00, 0.00, 0.00, 0, 0.00);
INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(185, 4, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 61364.12, 15.95, 1, NULL, 0, '3', 59804.12, 19934.71, 0.00, 0.00, 0.00, 0, 0.00),
(186, 4, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 113854.23, 8.69, 1, NULL, 0, '10', 108654.23, 10865.42, 0.00, 0.00, 0.00, 0, 0.00),
(187, 4, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 6579.62, 0.54, 1, NULL, 0, '5', 6579.62, 6579.62, 0.00, 0.00, 0.00, 0, 0.00),
(188, 4, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 5404.69, 0.42, 1, NULL, 0, '5', 5404.69, 5404.69, 0.00, 0.00, 0.00, 0, 0.00),
(189, 4, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 3845.23, 0.26, 1, NULL, 0, '5', 3845.23, 3845.23, 0.00, 0.00, 0.00, 0, 0.00),
(190, 4, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(191, 4, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 372182.16, 148.38, 1, NULL, 0, '2', 370942.16, 185471.08, 0.00, 0.00, 0.00, 0, 0.00),
(192, 4, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 621168.88, 247.84, 1, NULL, 0, '2', 619588.88, 309794.44, 0.00, 0.00, 0.00, 0, 0.00),
(193, 4, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 211163.23, 84.01, 1, NULL, 0, '2', 210023.23, 105011.61, 0.00, 0.00, 0.00, 0, 0.00),
(194, 4, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 149400.95, 39.16, 1, NULL, 0, '3', 146850.95, 48950.32, 0.00, 0.00, 0.00, 0, 0.00),
(195, 4, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 14825.71, 11.64, 1, NULL, 0, '1', 14825.71, 14825.71, 0.00, 0.00, 0.00, 0, 0.00),
(196, 4, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 11076.89, 8.52, 1, NULL, 0, '1', 11076.89, 11076.89, 0.00, 0.00, 0.00, 0, 0.00),
(197, 4, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 7325.96, 5.52, 1, NULL, 0, '1', 6895.96, 6895.96, 0.00, 0.00, 0.00, 0, 0.00),
(198, 4, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 3551.70, 2.54, 1, NULL, 0, '1', 3551.70, 3551.70, 0.00, 0.00, 0.00, 0, 0.00),
(199, 4, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 2483.18, 1.64, 1, NULL, 0, '1', 2483.18, 2483.18, 0.00, 0.00, 0.00, 0, 0.00),
(200, 4, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 32476.78, 12.60, 1, NULL, 0, '2', 31500.78, 15750.39, 0.00, 0.00, 0.00, 0, 0.00),
(201, 4, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 38277.77, 9.85, 1, NULL, 0, '3', 36927.77, 12309.26, 0.00, 0.00, 0.00, 0, 0.00),
(202, 4, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, 0.00, 0.00, 0.00, 0, 0.00),
(203, 4, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, 0.00, 0.00, 0.00, 0, 0.00),
(204, 4, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, 0.00, 0.00, 0.00, 0, 0.00),
(205, 4, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(206, 4, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(207, 5, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0, 0.00),
(208, 5, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 9361.18, 4.39, 1, NULL, 0, '1', 8781.18, 8781.18, 0.00, 0.00, 0.00, 0, 0.00),
(209, 5, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 9238.24, 4.55, 1, NULL, 0, '1', 9098.24, 9098.24, 0.00, 0.00, 0.00, 0, 0.00),
(210, 5, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(211, 5, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(212, 5, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 7382.88, 0.94, 1, NULL, 0, '3', 5612.88, 1870.96, 0.00, 0.00, 0.00, 0, 0.00),
(213, 5, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 14077.28, 1.11, 1, NULL, 0, '5', 11127.28, 2225.46, 0.00, 0.00, 0.00, 0, 0.00),
(214, 5, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(215, 5, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(216, 5, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(217, 5, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 194880.00, 389760.00, 1, NULL, 0, '', 2336.00, 2336.00, 0.00, 0.00, 0.00, 0, 0.00),
(218, 5, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 1026657.00, 2053314.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(219, 5, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(220, 5, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(221, 5, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(222, 5, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(223, 5, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(224, 5, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(225, 5, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 11469.59, 1.14, 1, NULL, 0, '4', 9109.59, 2277.40, 0.00, 0.00, 0.00, 0, 0.00),
(226, 5, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(227, 5, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 5294.62, 0.23, 1, NULL, 0, '5', 2344.62, 468.92, 0.00, 0.00, 0.00, 0, 0.00),
(228, 5, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(229, 5, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(230, 5, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(231, 5, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(232, 5, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(233, 5, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 24960.28, 3.86, 1, NULL, 0, '3', 23160.28, 7720.09, 0.00, 0.00, 0.00, 0, 0.00),
(234, 5, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1139.33, 0.44, 1, NULL, 0, '1', 889.33, 889.33, 0.00, 0.00, 0.00, 0, 0.00),
(235, 5, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 619.46, 0.52, 1, NULL, 0, '0.5', 519.46, 1038.93, 0.00, 0.00, 0.00, 0, 0.00),
(236, 5, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 1611.93, 0.36, 1, NULL, 0, '1', 711.93, 711.93, 0.00, 0.00, 0.00, 0, 0.00),
(237, 5, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1156.08, 0.38, 1, NULL, 0, '1', 756.08, 756.08, 0.00, 0.00, 0.00, 0, 0.00),
(238, 5, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 25607.98, 0.98, 1, NULL, 0, '10', 19607.98, 1960.80, 0.00, 0.00, 0.00, 0, 0.00),
(239, 5, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(240, 5, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 2106.04, 0.23, 1, NULL, 0, '2', 906.04, 453.02, 0.00, 0.00, 0.00, 0, 0.00),
(241, 5, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 4092.96, 0.73, 1, NULL, 0, '2', 2932.96, 1466.48, 0.00, 0.00, 0.00, 0, 0.00),
(242, 5, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 11096.51, 0.81, 1, NULL, 0, '5', 8096.51, 1619.30, 0.00, 0.00, 0.00, 0, 0.00),
(243, 5, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 6337.89, 1.28, 1, NULL, 0, '2', 5137.89, 2568.95, 0.00, 0.00, 0.00, 0, 0.00),
(244, 5, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 48060.54, 6.97, 1, NULL, 0, '5', 43585.54, 8717.11, 0.00, 0.00, 0.00, 0, 0.00),
(245, 5, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 20135.85, 2.77, 1, NULL, 0, '5', 17335.85, 3467.17, 0.00, 0.00, 0.00, 0, 0.00),
(246, 5, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 14666.23, 1.19, 1, NULL, 0, '5', 11866.23, 2373.25, 0.00, 0.00, 0.00, 0, 0.00),
(247, 5, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 237745.50, 5.17, 1, NULL, 0, '22', 237745.50, 237745.50, 0.00, 0.00, 0.00, 0, 0.00),
(248, 5, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 374065.31, 8.25, 1, NULL, 0, '22', 374065.31, 374065.31, 0.00, 0.00, 0.00, 0, 0.00),
(249, 5, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 138489.70, 2.94, 1, NULL, 0, '22', 138489.70, 138489.70, 0.00, 0.00, 0.00, 0, 0.00),
(250, 5, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 25972.26, 12.70, 1, NULL, 0, '1', 25402.26, 25402.26, 0.00, 0.00, 0.00, 0, 0.00),
(251, 5, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 41604.35, 20.56, 1, NULL, 0, '1', 41604.35, 41604.35, 0.00, 0.00, 0.00, 0, 0.00),
(252, 5, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 74434.28, 36.88, 1, NULL, 0, '1', 74434.28, 74434.28, 0.00, 0.00, 0.00, 0, 0.00),
(253, 5, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 16910.36, 4.07, 1, NULL, 0, '3', 15260.36, 5086.79, 0.00, 0.00, 0.00, 0, 0.00),
(254, 5, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15331.48, 5.93, 1, NULL, 0, '2', 14815.48, 7407.74, 0.00, 0.00, 0.00, 0, 0.00),
(255, 5, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 15526.65, 12.42, 1, NULL, 0, '1', 15526.65, 15526.65, 0.00, 0.00, 0.00, 0, 0.00),
(256, 5, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 7723.15, 2.02, 1, NULL, 0, '3', 7591.15, 2530.38, 0.00, 0.00, 0.00, 0, 0.00),
(257, 5, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 17119.42, 4.57, 1, NULL, 0, '3', 17119.42, 5706.47, 0.00, 0.00, 0.00, 0, 0.00),
(258, 5, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 39591.94, 31.26, 1, NULL, 0, '1', 39071.94, 39071.94, 0.00, 0.00, 0.00, 0, 0.00),
(259, 5, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 22174.87, 17.32, 1, NULL, 0, '1', 21654.87, 21654.87, 0.00, 0.00, 0.00, 0, 0.00),
(260, 5, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 61364.12, 15.95, 1, NULL, 0, '3', 59804.12, 19934.71, 0.00, 0.00, 0.00, 0, 0.00),
(261, 5, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 113854.23, 8.69, 1, NULL, 0, '10', 108654.23, 10865.42, 0.00, 0.00, 0.00, 0, 0.00),
(262, 5, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 6579.62, 0.54, 1, NULL, 0, '5', 6579.62, 6579.62, 0.00, 0.00, 0.00, 0, 0.00),
(263, 5, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 5404.69, 0.42, 1, NULL, 0, '5', 5404.69, 5404.69, 0.00, 0.00, 0.00, 0, 0.00),
(264, 5, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 3845.23, 0.26, 1, NULL, 0, '5', 3845.23, 3845.23, 0.00, 0.00, 0.00, 0, 0.00),
(265, 5, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(266, 5, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 372182.16, 148.38, 1, NULL, 0, '2', 370942.16, 185471.08, 0.00, 0.00, 0.00, 0, 0.00),
(267, 5, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 621168.88, 247.84, 1, NULL, 0, '2', 619588.88, 309794.44, 0.00, 0.00, 0.00, 0, 0.00),
(268, 5, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 211163.23, 84.01, 1, NULL, 0, '2', 210023.23, 105011.61, 0.00, 0.00, 0.00, 0, 0.00),
(269, 5, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 149400.95, 39.16, 1, NULL, 0, '3', 146850.95, 48950.32, 0.00, 0.00, 0.00, 0, 0.00),
(270, 5, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 14825.71, 11.64, 1, NULL, 0, '1', 14825.71, 14825.71, 0.00, 0.00, 0.00, 0, 0.00),
(271, 5, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 11076.89, 8.52, 1, NULL, 0, '1', 11076.89, 11076.89, 0.00, 0.00, 0.00, 0, 0.00),
(272, 5, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 7325.96, 5.52, 1, NULL, 0, '1', 6895.96, 6895.96, 0.00, 0.00, 0.00, 0, 0.00),
(273, 5, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 3551.70, 2.54, 1, NULL, 0, '1', 3551.70, 3551.70, 0.00, 0.00, 0.00, 0, 0.00),
(274, 5, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 2483.18, 1.64, 1, NULL, 0, '1', 2483.18, 2483.18, 0.00, 0.00, 0.00, 0, 0.00),
(275, 5, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 32476.78, 12.60, 1, NULL, 0, '2', 31500.78, 15750.39, 0.00, 0.00, 0.00, 0, 0.00),
(276, 5, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 38277.77, 9.85, 1, NULL, 0, '3', 36927.77, 12309.26, 0.00, 0.00, 0.00, 0, 0.00),
(277, 5, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, 0.00, 0.00, 0.00, 0, 0.00),
(278, 5, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, 0.00, 0.00, 0.00, 0, 0.00),
(279, 5, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, 0.00, 0.00, 0.00, 0, 0.00),
(280, 5, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(281, 5, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(282, 6, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0, 0.00),
(283, 6, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 9361.18, 4.39, 1, NULL, 0, '1', 8781.18, 8781.18, 0.00, 0.00, 0.00, 0, 0.00),
(284, 6, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 9238.24, 4.55, 1, NULL, 0, '1', 9098.24, 9098.24, 0.00, 0.00, 0.00, 0, 0.00),
(285, 6, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(286, 6, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(287, 6, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 7382.88, 0.94, 1, NULL, 0, '3', 5612.88, 1870.96, 0.00, 0.00, 0.00, 0, 0.00),
(288, 6, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 14077.28, 1.11, 1, NULL, 0, '5', 11127.28, 2225.46, 0.00, 0.00, 0.00, 0, 0.00),
(289, 6, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(290, 6, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(291, 6, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(292, 6, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 194880.00, 389760.00, 1, NULL, 0, '', 2336.00, 2336.00, 0.00, 0.00, 0.00, 0, 0.00),
(293, 6, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 1026657.00, 2053314.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(294, 6, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(295, 6, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(296, 6, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(297, 6, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(298, 6, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(299, 6, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(300, 6, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 11469.59, 1.14, 1, NULL, 0, '4', 9109.59, 2277.40, 0.00, 0.00, 0.00, 0, 0.00),
(301, 6, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(302, 6, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 5294.62, 0.23, 1, NULL, 0, '5', 2344.62, 468.92, 0.00, 0.00, 0.00, 0, 0.00),
(303, 6, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(304, 6, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(305, 6, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(306, 6, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(307, 6, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(308, 6, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 24960.28, 3.86, 1, NULL, 0, '3', 23160.28, 7720.09, 0.00, 0.00, 0.00, 0, 0.00),
(309, 6, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1139.33, 0.44, 1, NULL, 0, '1', 889.33, 889.33, 0.00, 0.00, 0.00, 0, 0.00),
(310, 6, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 619.46, 0.52, 1, NULL, 0, '0.5', 519.46, 1038.93, 0.00, 0.00, 0.00, 0, 0.00),
(311, 6, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 1611.93, 0.36, 1, NULL, 0, '1', 711.93, 711.93, 0.00, 0.00, 0.00, 0, 0.00),
(312, 6, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1156.08, 0.38, 1, NULL, 0, '1', 756.08, 756.08, 0.00, 0.00, 0.00, 0, 0.00);
INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(313, 6, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 25607.98, 0.98, 1, NULL, 0, '10', 19607.98, 1960.80, 0.00, 0.00, 0.00, 0, 0.00),
(314, 6, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(315, 6, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 2106.04, 0.23, 1, NULL, 0, '2', 906.04, 453.02, 0.00, 0.00, 0.00, 0, 0.00),
(316, 6, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 4092.96, 0.73, 1, NULL, 0, '2', 2932.96, 1466.48, 0.00, 0.00, 0.00, 0, 0.00),
(317, 6, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 11096.51, 0.81, 1, NULL, 0, '5', 8096.51, 1619.30, 0.00, 0.00, 0.00, 0, 0.00),
(318, 6, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 6337.89, 1.28, 1, NULL, 0, '2', 5137.89, 2568.95, 0.00, 0.00, 0.00, 0, 0.00),
(319, 6, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 48060.54, 6.97, 1, NULL, 0, '5', 43585.54, 8717.11, 0.00, 0.00, 0.00, 0, 0.00),
(320, 6, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 20135.85, 2.77, 1, NULL, 0, '5', 17335.85, 3467.17, 0.00, 0.00, 0.00, 0, 0.00),
(321, 6, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 14666.23, 1.19, 1, NULL, 0, '5', 11866.23, 2373.25, 0.00, 0.00, 0.00, 0, 0.00),
(322, 6, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 237745.50, 5.17, 1, NULL, 0, '22', 237745.50, 237745.50, 0.00, 0.00, 0.00, 0, 0.00),
(323, 6, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 374065.31, 8.25, 1, NULL, 0, '22', 374065.31, 374065.31, 0.00, 0.00, 0.00, 0, 0.00),
(324, 6, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 138489.70, 2.94, 1, NULL, 0, '22', 138489.70, 138489.70, 0.00, 0.00, 0.00, 0, 0.00),
(325, 6, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 25972.26, 12.70, 1, NULL, 0, '1', 25402.26, 25402.26, 0.00, 0.00, 0.00, 0, 0.00),
(326, 6, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 41604.35, 20.56, 1, NULL, 0, '1', 41604.35, 41604.35, 0.00, 0.00, 0.00, 0, 0.00),
(327, 6, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 74434.28, 36.88, 1, NULL, 0, '1', 74434.28, 74434.28, 0.00, 0.00, 0.00, 0, 0.00),
(328, 6, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 16910.36, 4.07, 1, NULL, 0, '3', 15260.36, 5086.79, 0.00, 0.00, 0.00, 0, 0.00),
(329, 6, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15331.48, 5.93, 1, NULL, 0, '2', 14815.48, 7407.74, 0.00, 0.00, 0.00, 0, 0.00),
(330, 6, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 15526.65, 12.42, 1, NULL, 0, '1', 15526.65, 15526.65, 0.00, 0.00, 0.00, 0, 0.00),
(331, 6, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 7723.15, 2.02, 1, NULL, 0, '3', 7591.15, 2530.38, 0.00, 0.00, 0.00, 0, 0.00),
(332, 6, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 17119.42, 4.57, 1, NULL, 0, '3', 17119.42, 5706.47, 0.00, 0.00, 0.00, 0, 0.00),
(333, 6, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 39591.94, 31.26, 1, NULL, 0, '1', 39071.94, 39071.94, 0.00, 0.00, 0.00, 0, 0.00),
(334, 6, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 22174.87, 17.32, 1, NULL, 0, '1', 21654.87, 21654.87, 0.00, 0.00, 0.00, 0, 0.00),
(335, 6, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 61364.12, 15.95, 1, NULL, 0, '3', 59804.12, 19934.71, 0.00, 0.00, 0.00, 0, 0.00),
(336, 6, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 113854.23, 8.69, 1, NULL, 0, '10', 108654.23, 10865.42, 0.00, 0.00, 0.00, 0, 0.00),
(337, 6, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 6579.62, 0.54, 1, NULL, 0, '5', 6579.62, 6579.62, 0.00, 0.00, 0.00, 0, 0.00),
(338, 6, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 5404.69, 0.42, 1, NULL, 0, '5', 5404.69, 5404.69, 0.00, 0.00, 0.00, 0, 0.00),
(339, 6, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 3845.23, 0.26, 1, NULL, 0, '5', 3845.23, 3845.23, 0.00, 0.00, 0.00, 0, 0.00),
(340, 6, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(341, 6, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 372182.16, 148.38, 1, NULL, 0, '2', 370942.16, 185471.08, 0.00, 0.00, 0.00, 0, 0.00),
(342, 6, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 621168.88, 247.84, 1, NULL, 0, '2', 619588.88, 309794.44, 0.00, 0.00, 0.00, 0, 0.00),
(343, 6, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 211163.23, 84.01, 1, NULL, 0, '2', 210023.23, 105011.61, 0.00, 0.00, 0.00, 0, 0.00),
(344, 6, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 149400.95, 39.16, 1, NULL, 0, '3', 146850.95, 48950.32, 0.00, 0.00, 0.00, 0, 0.00),
(345, 6, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 14825.71, 11.64, 1, NULL, 0, '1', 14825.71, 14825.71, 0.00, 0.00, 0.00, 0, 0.00),
(346, 6, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 11076.89, 8.52, 1, NULL, 0, '1', 11076.89, 11076.89, 0.00, 0.00, 0.00, 0, 0.00),
(347, 6, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 7325.96, 5.52, 1, NULL, 0, '1', 6895.96, 6895.96, 0.00, 0.00, 0.00, 0, 0.00),
(348, 6, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 3551.70, 2.54, 1, NULL, 0, '1', 3551.70, 3551.70, 0.00, 0.00, 0.00, 0, 0.00),
(349, 6, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 2483.18, 1.64, 1, NULL, 0, '1', 2483.18, 2483.18, 0.00, 0.00, 0.00, 0, 0.00),
(350, 6, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 32476.78, 12.60, 1, NULL, 0, '2', 31500.78, 15750.39, 0.00, 0.00, 0.00, 0, 0.00),
(351, 6, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 38277.77, 9.85, 1, NULL, 0, '3', 36927.77, 12309.26, 0.00, 0.00, 0.00, 0, 0.00),
(352, 6, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, 0.00, 0.00, 0.00, 0, 0.00),
(353, 6, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, 0.00, 0.00, 0.00, 0, 0.00),
(354, 6, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, 0.00, 0.00, 0.00, 0, 0.00),
(355, 6, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(356, 6, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(357, 7, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 3633.84, 2.00, 1, 0, 0, '4', 3633.84, 3633.84, 0.00, 0.00, 0.00, 0, 1.64),
(358, 7, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 16491.16, 9.07, 1, NULL, 0, '1', 16491.16, 16491.16, 0.00, 0.00, 0.00, 0, 7.42),
(359, 7, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 15368.85, 8.45, 1, NULL, 0, '1', 15368.85, 15368.85, 0.00, 0.00, 0.00, 0, 6.92),
(360, 7, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(361, 7, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(362, 7, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 4153.10, 2.28, 1, NULL, 0, '3', 4153.10, 4153.10, 0.00, 0.00, 0.00, 0, 1.87),
(363, 7, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 5042.47, 2.77, 1, NULL, 0, '5', 5042.47, 5042.47, 0.00, 0.00, 0.00, 0, 2.27),
(364, 7, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(365, 7, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(366, 7, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(367, 7, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 2070.40, 1.14, 1, NULL, 0, '', 2070.40, 2070.40, 0.00, 0.00, 0.00, 0, 0.93),
(368, 7, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 13749.60, 7.56, 1, NULL, 0, '', 13749.60, 13749.60, 0.00, 0.00, 0.00, 0, 6.19),
(369, 7, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(370, 7, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(371, 7, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(372, 7, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(373, 7, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(374, 7, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(375, 7, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 3539.22, 1.95, 1, NULL, 0, '4', 3539.22, 3539.22, 0.00, 0.00, 0.00, 0, 1.59),
(376, 7, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(377, 7, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 2311.18, 1.27, 1, NULL, 0, '5', 2311.18, 2311.18, 0.00, 0.00, 0.00, 0, 1.04),
(378, 7, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(379, 7, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(380, 7, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(381, 7, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(382, 7, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(383, 7, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 13847.70, 7.62, 1, NULL, 0, '3', 13847.70, 13847.70, 0.00, 0.00, 0.00, 0, 6.23),
(384, 7, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1552.80, 0.85, 1, NULL, 0, '1', 1552.80, 1552.80, 0.00, 0.00, 0.00, 0, 0.70),
(385, 7, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 1714.55, 0.94, 1, NULL, 0, '0.5', 1714.55, 1714.55, 0.00, 0.00, 0.00, 0, 0.77),
(386, 7, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 3992.93, 2.20, 1, NULL, 0, '1', 3992.93, 3992.93, 0.00, 0.00, 0.00, 0, 1.80),
(387, 7, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1741.80, 0.96, 1, NULL, 0, '1', 1741.80, 1741.80, 0.00, 0.00, 0.00, 0, 0.78),
(388, 7, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 4156.27, 2.29, 1, NULL, 0, '10', 4156.27, 4156.27, 0.00, 0.00, 0.00, 0, 1.87),
(389, 7, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.01, 0.00, 1, NULL, 0, '1', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00),
(390, 7, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 1537.10, 0.85, 1, NULL, 0, '2', 1537.10, 1537.10, 0.00, 0.00, 0.00, 0, 0.69),
(391, 7, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 3825.93, 2.10, 1, NULL, 0, '2', 3825.93, 3825.93, 0.00, 0.00, 0.00, 0, 1.72),
(392, 7, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 3724.20, 2.05, 1, NULL, 0, '5', 3724.20, 3724.20, 0.00, 0.00, 0.00, 0, 1.68),
(393, 7, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 5679.14, 3.12, 1, NULL, 0, '2', 5679.14, 5679.14, 0.00, 0.00, 0.00, 0, 2.56),
(394, 7, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 13708.38, 5.26, 1, NULL, 0, '5', 9558.38, 9558.38, 0.00, 0.00, 0.00, 0, 4.30),
(395, 7, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 6478.36, 3.15, 1, NULL, 0, '5', 5728.36, 5728.36, 0.00, 0.00, 0.00, 0, 2.58),
(396, 7, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 4629.25, 2.13, 1, NULL, 0, '5', 3879.25, 3879.25, 0.00, 0.00, 0.00, 0, 1.75),
(397, 7, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 13843.61, 7.61, 1, NULL, 0, '22', 13843.61, 13843.61, 0.00, 0.00, 0.00, 0, 6.23),
(398, 7, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 21943.35, 12.07, 1, NULL, 0, '22', 21943.35, 21943.35, 0.00, 0.00, 0.00, 0, 9.87),
(399, 7, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 8399.38, 4.62, 1, NULL, 0, '22', 8399.38, 8399.38, 0.00, 0.00, 0.00, 0, 3.78),
(400, 7, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 39016.69, 21.46, 1, NULL, 0, '1', 39016.69, 39016.69, 0.00, 0.00, 0.00, 0, 17.56),
(401, 7, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 45.00, 25558.20, 10.16, 1, NULL, 0, '1', 18478.20, 18478.20, 0.00, 0.00, 0.00, 0, 8.32),
(402, 7, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 96287.40, 52.96, 1, NULL, 0, '1', 96287.40, 96287.40, 0.00, 0.00, 0.00, 0, 43.33),
(403, 7, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 8809.94, 4.30, 1, NULL, 0, '3', 7809.94, 7809.94, 0.00, 0.00, 0.00, 0, 3.51),
(404, 7, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 12393.30, 6.27, 1, NULL, 0, '2', 11393.30, 11393.30, 0.00, 0.00, 0.00, 0, 5.13),
(405, 7, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 23334.11, 9.20, 1, NULL, 0, '1', 16734.11, 16734.11, 0.00, 0.00, 0.00, 0, 7.53),
(406, 7, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 80.00, 6522.50, 2.21, 1, NULL, 0, '3', 4022.50, 4022.50, 0.00, 0.00, 0.00, 0, 1.81),
(407, 7, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 75.00, 12486.64, 3.46, 1, NULL, 0, '3', 6286.64, 6286.64, 0.00, 0.00, 0.00, 0, 2.83),
(408, 7, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 75.00, 41030.47, 18.94, 1, NULL, 0, '1', 34430.47, 34430.47, 0.00, 0.00, 0.00, 0, 15.49),
(409, 7, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 35031.38, 15.64, 1, NULL, 0, '1', 28431.38, 28431.38, 0.00, 0.00, 0.00, 0, 12.79),
(410, 7, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 80.00, 21870.39, 9.20, 1, NULL, 0, '3', 16720.39, 16720.39, 0.00, 0.00, 0.00, 0, 7.52),
(411, 7, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 80.00, 11970.32, 3.75, 1, NULL, 0, '10', 6820.32, 6820.32, 0.00, 0.00, 0.00, 0, 3.07),
(412, 7, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 2190.57, 0.98, 1, 1, 0, '5', 1790.57, 1790.57, 0.00, 0.00, 0.00, 0, 0.81),
(413, 7, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 841.30, 0.33, 1, 1, 0, '5', 591.30, 591.30, 0.00, 0.00, 0.00, 0, 0.27),
(414, 7, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 95.00, 415.19, 0.09, 1, 1, 0, '5', 165.19, 165.19, 0.00, 0.00, 0.00, 0, 0.07),
(415, 7, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, -0.22, 1, 1, 0, '1', -400.00, -400.00, 0.00, 0.00, 0.00, 0, -0.18),
(416, 7, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 254701.55, 139.37, 1, 1, 0, '2', 253401.55, 253401.55, 0.00, 0.00, 0.00, 0, 114.03),
(417, 7, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 390267.00, 213.93, 1, 1, 0, '2', 388967.00, 388967.00, 0.00, 0.00, 0.00, 0, 175.04),
(418, 7, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 156667.23, 85.45, 1, 1, 0, '2', 155367.23, 155367.23, 0.00, 0.00, 0.00, 0, 69.92),
(419, 7, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 68558.73, 36.99, 1, 1, 0, '3', 67258.73, 67258.73, 0.00, 0.00, 0.00, 0, 30.27),
(420, 7, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 90.00, 28205.89, 11.88, 1, 1, 0, '1', 21605.89, 21605.89, 0.00, 0.00, 0.00, 0, 9.72),
(421, 7, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 98.00, 15928.88, 8.21, 1, 1, 0, '1', 14928.88, 14928.88, 0.00, 0.00, 0.00, 0, 6.72),
(422, 7, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 40.00, 6452.38, 3.20, 1, 1, 0, '1', 5809.38, 5809.38, 0.00, 0.00, 0.00, 0, 2.61),
(423, 7, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 50.00, 2537.77, 0.96, 1, 1, 0, '1', 1737.77, 1737.77, 0.00, 0.00, 0.00, 0, 0.78),
(424, 7, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 50.00, 2488.11, 1.01, 1, 1, 0, '1', 1845.11, 1845.11, 0.00, 0.00, 0.00, 0, 0.83),
(425, 7, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 89.00, 22954.31, 8.99, 1, 1, 0, '2', 16354.31, 16354.31, 0.00, 0.00, 0.00, 0, 7.36),
(426, 7, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 20146.32, 7.45, 1, 1, 0, '1', 13546.32, 13546.32, 0.00, 0.00, 0.00, 0, 6.10),
(427, 7, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 8087.49, 4.45, 1, NULL, 0, '10', 8087.49, 8087.49, 0.00, 0.00, 0.00, 0, 3.64),
(428, 7, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '', '', '', '', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 5636.66, 3.10, 1, NULL, 0, '0', 5636.66, 5636.66, 0.00, 0.00, 0.00, 0, 2.54),
(429, 7, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 2278.09, 0.62, 1, NULL, 0, '0', 1128.09, 1128.09, 0.00, 0.00, 0.00, 0, 0.51),
(430, 7, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '12.00.00', 'Varies', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 99.00, 217.78, 0.17, 1, NULL, 1, '1', 217.78, 217.78, 0.00, 0.00, 0.00, 1, 0.04),
(431, 7, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 150.00, 9704.99, 7.73, 1, NULL, 1, '22', 9659.99, 9659.99, 0.00, 0.00, 0.00, 1, 1.93),
(439, 7, 14, 'NA', 'NA', 'Sale Item Adding', 'Sale Item Adding', 'Sale Item Adding', 'Sale Item Adding', '34909677', '', '', '', 'United States', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '439_color_668091-ewaste-040418.jpg', 0.00, 10000.00, 11.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(440, 10, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 3487.92, 2.62, 1, NULL, 0, '4', 3487.92, 3487.92, 0.00, 0.00, 0.00, 0, 0.87),
(441, 10, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 16394.55, 12.30, 1, 0, 0, '1', 16394.55, 16394.55, 0.00, 0.00, 0.00, 0, 4.10),
(442, 10, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'United States', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 95.00, 13489.05, 1.49, 1, 0, 0, '1', 1983.05, 1983.05, 0.00, 0.00, 0.00, 0, 0.50),
(443, 10, 2, '', '', 'Gold Powder', 'Gold Powder', 'Gold Powder', 'Gold Powder', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '443_color_Gold Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(444, 10, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(445, 10, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 4023.50, 3.02, 1, NULL, 0, '3', 4023.50, 4023.50, 0.00, 0.00, 0.00, 0, 1.01),
(446, 10, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 4924.97, 3.69, 1, NULL, 0, '5', 4924.97, 4924.97, 0.00, 0.00, 0.00, 0, 1.23),
(450, 10, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 1916.80, 1.44, 1, NULL, 0, '', 1916.80, 1916.80, 0.00, 0.00, 0.00, 0, 0.48),
(451, 10, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 13677.60, 10.26, 1, NULL, 0, '', 13677.60, 13677.60, 0.00, 0.00, 0.00, 0, 3.42);
INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(457, 10, 8, '', '', 'Dry Ceramic Mud', 'Dry Ceramic Mud', 'Dry Ceramic Mud', 'Dry Ceramic Mud', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(458, 10, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 3468.66, 2.60, 1, NULL, 0, '4', 3468.66, 3468.66, 0.00, 0.00, 0.00, 0, 0.87),
(460, 10, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 2263.18, 1.70, 1, NULL, 0, '5', 2263.18, 2263.18, 0.00, 0.00, 0.00, 0, 0.57),
(461, 10, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(463, 10, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(464, 10, 8, '', '', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', 'Ceramic Mud Cu,Ag,Pt,Pd ', '50272186', '11.21.25', 'Granular', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(466, 10, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 13742.10, 10.31, 1, NULL, 0, '3', 13742.10, 13742.10, 0.00, 0.00, 0.00, 0, 3.44),
(467, 10, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1437.60, 1.08, 1, NULL, 0, '1', 1437.60, 1437.60, 0.00, 0.00, 0.00, 0, 0.36),
(471, 10, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 4107.31, 3.08, 1, NULL, 0, '10', 4107.31, 4107.31, 0.00, 0.00, 0.00, 0, 1.03),
(472, 10, 5, '', '', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', 'Ball Mill Ground CPU\'s', '39434181', '16.02.16', 'Varies', '', 'United States', '', '', '', '', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 99.75, 0.01, 0.00, 1, 0, 0, '.25', 0.01, 0.01, 0.00, 0.00, 0.00, 0, 0.00),
(473, 10, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 1445.90, 1.08, 1, NULL, 0, '2', 1445.90, 1445.90, 0.00, 0.00, 0.00, 0, 0.36),
(474, 10, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 3716.49, 2.79, 1, NULL, 0, '2', 3716.49, 3716.49, 0.00, 0.00, 0.00, 0, 0.93),
(475, 10, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 3666.60, 2.75, 1, NULL, 0, '5', 3666.60, 3666.60, 0.00, 0.00, 0.00, 0, 0.92),
(476, 10, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 5583.38, 4.19, 1, NULL, 0, '2', 5583.38, 5583.38, 0.00, 0.00, 0.00, 0, 1.40),
(477, 10, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 13706.62, 10.28, 1, NULL, 0, '5', 13706.62, 13706.62, 0.00, 0.00, 0.00, 0, 3.43),
(478, 10, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 6476.27, 4.86, 1, NULL, 0, '5', 6476.27, 6476.27, 0.00, 0.00, 0.00, 0, 1.62),
(479, 10, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 4627.25, 3.47, 1, NULL, 0, '5', 4627.25, 4627.25, 0.00, 0.00, 0.00, 0, 1.16),
(480, 10, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 13841.39, 10.38, 1, NULL, 0, '22', 13841.39, 13841.39, 0.00, 0.00, 0.00, 0, 3.46),
(481, 10, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 21939.88, 16.45, 1, NULL, 0, '22', 21939.88, 21939.88, 0.00, 0.00, 0.00, 0, 5.48),
(482, 10, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 8396.31, 6.30, 1, NULL, 0, '22', 8396.31, 8396.31, 0.00, 0.00, 0.00, 0, 2.10),
(483, 10, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 39014.61, 29.26, 1, NULL, 0, '1', 39014.61, 39014.61, 0.00, 0.00, 0.00, 0, 9.75),
(484, 10, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 56228.04, 33.54, 1, NULL, 0, '1', 44722.04, 44722.04, 0.00, 0.00, 0.00, 0, 11.18),
(485, 10, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 96284.93, 72.21, 1, NULL, 0, '1', 96284.93, 96284.93, 0.00, 0.00, 0.00, 0, 24.07),
(486, 10, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 8806.87, 6.61, 1, NULL, 0, '3', 8806.87, 8806.87, 0.00, 0.00, 0.00, 0, 2.20),
(487, 10, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 12390.70, 9.29, 1, NULL, 0, '2', 12390.70, 12390.70, 0.00, 0.00, 0.00, 0, 3.10),
(488, 10, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 23332.35, 17.50, 1, NULL, 0, '1', 23332.35, 23332.35, 0.00, 0.00, 0.00, 0, 5.83),
(489, 10, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 4075.46, 3.06, 1, NULL, 0, '3', 4075.46, 4075.46, 0.00, 0.00, 0.00, 0, 1.02),
(490, 10, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 8323.33, 6.24, 1, NULL, 0, '3', 8323.33, 8323.33, 0.00, 0.00, 0.00, 0, 2.08),
(491, 10, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 57143.41, 34.23, 1, NULL, 0, '1', 45637.41, 45637.41, 0.00, 0.00, 0.00, 0, 11.41),
(492, 10, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 35031.38, 17.64, 1, NULL, 0, '1', 23525.38, 23525.38, 0.00, 0.00, 0.00, 0, 5.88),
(493, 10, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 27064.60, 11.67, 1, NULL, 0, '3', 15558.60, 15558.60, 0.00, 0.00, 0.00, 0, 3.89),
(494, 10, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 14813.27, 2.48, 1, NULL, 0, '10', 3307.27, 3307.27, 0.00, 0.00, 0.00, 0, 0.83),
(495, 10, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 1682.60, 1.26, 1, NULL, 0, '5', 1682.60, 1682.60, 0.00, 0.00, 0.00, 0, 0.42),
(496, 10, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 1382.14, 1.04, 1, NULL, 0, '5', 1382.14, 1382.14, 0.00, 0.00, 0.00, 0, 0.35),
(497, 10, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 983.34, 0.74, 1, NULL, 0, '5', 983.34, 983.34, 0.00, 0.00, 0.00, 0, 0.25),
(498, 10, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(499, 10, 10, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'United States', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 99.00, 196156.20, 138.49, 1, 0, 0, '.025', 184650.20, 184650.20, 0.00, 0.00, 0.00, 0, 46.16),
(500, 10, 9, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'United States', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 98.00, 383424.19, 278.94, 1, 0, 0, '2', 371918.19, 371918.19, 0.00, 0.00, 0.00, 0, 92.98),
(501, 10, 11, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'United States', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 98.00, 71859.48, 45.27, 1, 0, 0, '.025', 60353.48, 60353.48, 0.00, 0.00, 0.00, 0, 15.09),
(502, 10, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'United States', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 41608.75, 24.43, 1, NULL, 0, '3', 32569.75, 32569.75, 0.00, 0.00, 0.00, 0, 8.14),
(503, 10, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 31026.48, 14.64, 1, NULL, 0, '1', 19520.48, 19520.48, 0.00, 0.00, 0.00, 0, 4.88),
(504, 10, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 21620.51, 7.59, 1, NULL, 0, '1', 10114.51, 10114.51, 0.00, 0.00, 0.00, 0, 2.53),
(505, 10, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 15969.65, 3.35, 1, NULL, 0, '1', 4463.65, 4463.65, 0.00, 0.00, 0.00, 0, 1.12),
(506, 10, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 7836.18, 5.88, 1, NULL, 0, '1', 7836.18, 7836.18, 0.00, 0.00, 0.00, 0, 1.96),
(507, 10, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 6560.21, -3.71, 1, NULL, 0, '1', -4945.79, -4945.79, 0.00, 0.00, 0.00, 0, -1.24),
(508, 10, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 25533.44, 10.52, 1, NULL, 0, '2', 14027.44, 14027.44, 0.00, 0.00, 0.00, 0, 3.51),
(509, 10, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 20146.32, 6.48, 1, NULL, 0, '3', 8640.32, 8640.32, 0.00, 0.00, 0.00, 0, 2.16),
(512, 10, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 2145.03, 1.61, 1, NULL, 0, '6', 2145.03, 2145.03, 0.00, 0.00, 0.00, 0, 0.54),
(515, 10, 9, 'NA', 'NA', 'Mixed CPU', 'Mixed CPU', 'Mixed CPU', 'Mixed CPU', '60596637', '', '200', '', 'United States', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '515_color_IMG_2092.JPG', 98.00, 301492.09, 224.27, 1, 0, 0, '100', 299025.09, 299025.09, 0.00, 0.00, 0.00, 0, 74.76),
(516, 10, 3, 'NA', 'NA', 'Dissolved Gold Solution', 'Dissolved Gold Solution', 'Dissolved Gold Solution', 'Dissolved Gold Solution', '25065677', '0', '0', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '516_color_Dissolved Gold Solution.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(517, 10, 8, 'NA', 'NA', 'Waste Liquid', 'Waste Liquid', 'Waste Liquid', 'Waste Liquid', '85104372', '0', '0', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '517_color_Waste Liquid.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(518, 10, 1, 'NA', 'NA', 'Refined Gold for Melting', 'Refined Gold for Melting', 'Refined Gold for Melting', 'Refined Gold for Melting', '24265051', '0', '0', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '518_color_Refined Gold Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(519, 10, 122, 'NA', 'NA', 'Melted Gold', 'Melted Gold', 'Melted Gold', 'Melted Gold', '12344439', '0', '0', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '519_color_Melted Gold.jpg', 100.00, 47330000.00, 35497.50, 1, NULL, 0, '0', 47330000.00, 47330000.00, 0.00, 0.00, 0.00, 0, 11832.50),
(520, 10, 1, 'NA', 'NA', '1kg Gold Bar', '1kg Gold Bar', '1kg Gold Bar', '1kg Gold Bar', '69129228', '0', '0', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '520_color_Gold Bar.jpg', 125.00, 0.00, 0.00, 1, 0, 1, '.001', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(522, 1, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 7971.90, 3.99, 1, NULL, 0, '1', 7971.90, 7971.90, 0.00, 0.00, 0.00, 0, 3.99),
(523, 1, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 6793.09, 3.40, 1, NULL, 0, '1', 6793.09, 6793.09, 0.00, 0.00, 0.00, 0, 3.40),
(524, 1, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 5942.71, 2.97, 1, NULL, 0, '1', 5942.71, 5942.71, 0.00, 0.00, 0.00, 0, 2.97),
(525, 1, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 1664.16, 0.83, 1, NULL, 0, '2', 1664.16, 1664.16, 0.00, 0.00, 0.00, 0, 0.83),
(526, 7, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 5572.12, 2.51, 1, 1, 0, '1', 4572.12, 4572.12, 0.00, 0.00, 0.00, 0, 2.06),
(527, 7, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 4851.66, 2.53, 1, 1, 0, '1', 4601.66, 4601.66, 0.00, 0.00, 0.00, 0, 2.07),
(528, 7, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 2421.81, 0.78, 1, 1, 0, '1', 1421.81, 1421.81, 0.00, 0.00, 0.00, 0, 0.64),
(529, 7, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 1503.77, 0.28, 1, 1, 0, '2', 503.77, 503.77, 0.00, 0.00, 0.00, 0, 0.23),
(530, 10, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(531, 10, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(532, 10, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(533, 10, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 0.00, 0.00, 1, NULL, 0, '2', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(534, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 2411.27, 1.21, 1, NULL, 0, '20', 2411.27, 2411.27, 0.00, 0.00, 0.00, 0, 1.21),
(535, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 4159.12, 2.08, 1, NULL, 0, '20', 4159.12, 4159.12, 0.00, 0.00, 0.00, 0, 2.08),
(536, 1, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 2217.86, 1.11, 1, NULL, 0, '20', 2217.86, 2217.86, 0.00, 0.00, 0.00, 0, 1.11),
(537, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 1061.65, 0.28, 1, 1, 0, '20', 511.65, 511.65, 0.00, 0.00, 0.00, 0, 0.23),
(538, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 1714.84, 0.64, 1, 1, 0, '20', 1164.84, 1164.84, 0.00, 0.00, 0.00, 0, 0.52),
(539, 7, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 2159.18, 0.82, 1, 1, 0, '20', 1499.18, 1499.18, 0.00, 0.00, 0.00, 0, 0.67),
(540, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(541, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(542, 10, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 0.00, 0.00, 0, NULL, 0, '20', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(543, 10, 8, 'NA', 'NA', 'AMD', 'AMD', 'AMD', 'AMD', '59291912', '', '', '', 'Anywhere', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '543_color_bfc2.jpg', 99.00, 164533.05, 114.77, 1, NULL, 0, '.1', 153027.05, 153027.05, 0.00, 0.00, 0.00, 0, 38.26),
(545, 11, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 16390.13, 12.29, 1, 1, 0, '1', 16390.13, 16390.13, 0.00, 0.00, 0.00, 0, 4.10),
(546, 11, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 15118.95, 11.34, 1, NULL, 0, '1', 15118.95, 15118.95, 0.00, 0.00, 0.00, 0, 3.78),
(547, 11, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(548, 11, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(549, 11, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 4020.80, 3.02, 1, NULL, 0, '3', 4020.80, 4020.80, 0.00, 0.00, 0.00, 0, 1.01),
(551, 11, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(552, 11, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(553, 11, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(554, 11, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 1913.60, 1.44, 1, NULL, 0, '', 1913.60, 1913.60, 0.00, 0.00, 0.00, 0, 0.48),
(555, 11, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 13676.10, 10.26, 1, NULL, 0, '', 13676.10, 13676.10, 0.00, 0.00, 0.00, 0, 3.42),
(557, 11, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(558, 11, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(559, 11, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(560, 11, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(561, 11, 83, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, -0.21, 1, NULL, 1, '15', -355.00, -355.00, 0.00, 0.00, 0.00, 0, -0.14),
(563, 11, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(565, 11, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(566, 11, 90, 'None', '', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', 'Cu Granules High Grades (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(567, 11, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(568, 11, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(569, 11, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(570, 11, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 13739.00, 10.30, 1, NULL, 0, '3', 13739.00, 13739.00, 0.00, 0.00, 0.00, 0, 3.43),
(571, 11, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1435.20, 1.08, 1, NULL, 0, '1', 1435.20, 1435.20, 0.00, 0.00, 0.00, 0, 0.36),
(572, 11, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 1584.70, 1.19, 1, NULL, 0, '0.5', 1584.70, 1584.70, 0.00, 0.00, 0.00, 0, 0.40),
(573, 11, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 3907.27, 2.93, 1, NULL, 0, '1', 3907.27, 3907.27, 0.00, 0.00, 0.00, 0, 0.98),
(576, 11, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, 0, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(581, 11, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 70.00, 12231.40, 8.33, 1, 1, 0, '5', 11109.40, 11109.40, 0.00, 0.00, 0.00, 0, 2.78),
(582, 11, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 80.00, 3953.14, 2.37, 1, 1, 0, '5', 3161.14, 3161.14, 0.00, 0.00, 0.00, 0, 0.79),
(583, 11, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Yield', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 98.00, 3178.00, 1.81, 1, 1, 0, '5', 2408.00, 2408.00, 0.00, 0.00, 0.00, 0, 0.60),
(584, 11, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 70.00, 9688.93, 5.40, 1, 1, 0, '22', 7196.93, 7196.93, 0.00, 0.00, 0.00, 0, 1.80),
(585, 11, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 75.00, 16620.85, 10.60, 1, 1, 0, '22', 14128.85, 14128.85, 0.00, 0.00, 0.00, 0, 3.53),
(586, 11, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 75.00, 6360.64, 2.90, 1, 1, 0, '22', 3868.64, 3868.64, 0.00, 0.00, 0.00, 0, 0.97),
(587, 11, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 30.00, 11822.61, 7.00, 1, 1, 0, '1', 9330.61, 9330.61, 0.00, 0.00, 0.00, 0, 2.33),
(588, 11, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 72.00, 42299.32, 29.86, 1, 1, 0, '1', 39807.32, 39807.32, 0.00, 0.00, 0.00, 0, 9.95),
(589, 11, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '', '', '', '', 0, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 78.00, 75860.85, 55.03, 1, 1, 0, '1', 73368.85, 73368.85, 0.00, 0.00, 0.00, 0, 18.34),
(590, 11, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 11917.36, 7.07, 1, 1, 0, '3', 9425.36, 9425.36, 0.00, 0.00, 0.00, 0, 2.36),
(591, 11, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15797.26, 9.98, 1, 1, 0, '2', 13305.26, 13305.26, 0.00, 0.00, 0.00, 0, 3.33),
(592, 11, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 23332.35, 15.63, 1, 1, 0, '1', 20840.35, 20840.35, 0.00, 0.00, 0.00, 0, 5.21),
(593, 11, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 70.00, 5705.64, 2.41, 1, 1, 0, '3', 3213.64, 3213.64, 0.00, 0.00, 0.00, 0, 0.80),
(594, 11, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 70.00, 11652.66, 6.87, 1, 1, 0, '3', 9160.66, 9160.66, 0.00, 0.00, 0.00, 0, 2.29),
(595, 11, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 85.00, 51373.42, 36.66, 1, 1, 0, '1', 48881.42, 48881.42, 0.00, 0.00, 0.00, 0, 12.22),
(596, 11, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 85.00, 32077.81, 22.19, 1, 1, 0, '1', 29585.81, 29585.81, 0.00, 0.00, 0.00, 0, 7.40),
(597, 11, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 80.00, 23444.28, 16.74, 1, 1, 0, '3', 22319.28, 22319.28, 0.00, 0.00, 0.00, 0, 5.58),
(598, 11, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 85.00, 14238.01, 9.83, 1, 1, 0, '10', 13113.01, 13113.01, 0.00, 0.00, 0.00, 0, 3.28),
(599, 11, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 80.00, 1770.16, 0.95, 1, 1, 0, '5', 1268.16, 1268.16, 0.00, 0.00, 0.00, 0, 0.32),
(600, 11, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 90.00, 1061.46, 0.55, 1, 1, 0, '5', 731.46, 731.46, 0.00, 0.00, 0.00, 0, 0.18),
(601, 11, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 100.00, 437.04, 0.27, 1, 1, 0, '5', 357.04, 357.04, 0.00, 0.00, 0.00, 0, 0.09),
(602, 11, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, -0.36, 1, 1, 0, '1', -477.00, -477.00, 0.00, 0.00, 0.00, 0, -0.12),
(603, 11, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 88.00, 249009.22, 184.89, 1, 1, 0, '2', 246517.22, 246517.22, 0.00, 0.00, 0.00, 0, 61.63),
(604, 11, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 77.00, 316319.09, 235.37, 1, 1, 0, '2', 313827.09, 313827.09, 0.00, 0.00, 0.00, 0, 78.46),
(605, 11, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 66.00, 104420.83, 76.45, 1, 1, 0, '2', 101928.83, 101928.83, 0.00, 0.00, 0.00, 0, 25.48),
(606, 11, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 40.00, 27405.14, 18.68, 1, 1, 0, '3', 24913.14, 24913.14, 0.00, 0.00, 0.00, 0, 6.23),
(607, 11, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 80.00, 22868.03, 15.28, 1, 1, 0, '1', 20376.03, 20376.03, 0.00, 0.00, 0.00, 0, 5.09),
(608, 11, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 88.00, 14588.97, 9.43, 1, 1, 0, '1', 12576.97, 12576.97, 0.00, 0.00, 0.00, 0, 3.14),
(609, 11, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 85.00, 12418.65, 8.47, 1, 1, 0, '1', 11296.65, 11296.65, 0.00, 0.00, 0.00, 0, 2.82),
(610, 11, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5202.69, 3.04, 1, 1, 0, '1', 4055.69, 4055.69, 0.00, 0.00, 0.00, 0, 1.01);
INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(611, 11, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 75.00, 3850.94, 2.05, 1, 1, 0, '1', 2728.94, 2728.94, 0.00, 0.00, 0.00, 0, 0.68),
(612, 11, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 80.00, 21436.99, 14.21, 1, 1, 0, '2', 18944.99, 18944.99, 0.00, 0.00, 0.00, 0, 4.74),
(613, 11, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 75.00, 15932.61, 10.08, 1, 1, 0, '1', 13440.61, 13440.61, 0.00, 0.00, 0.00, 0, 3.36),
(617, 11, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(619, 11, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 12228.86, 7.30, 1, 1, 0, '1', 9736.86, 9736.86, 0.00, 0.00, 0.00, 0, 2.43),
(620, 11, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 4851.44, 1.77, 1, 1, 0, '1', 2359.44, 2359.44, 0.00, 0.00, 0.00, 0, 0.59),
(621, 11, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 90.00, 2201.64, 1.12, 1, 1, 0, '1', 1494.64, 1494.64, 0.00, 0.00, 0.00, 0, 0.37),
(622, 11, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 1518.37, 0.89, 1, 1, 0, '2', 1188.37, 1188.37, 0.00, 0.00, 0.00, 0, 0.30),
(623, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 95.00, 2312.56, 0.83, 1, 1, 0, '20', 1110.56, 1110.56, 0.00, 0.00, 0.00, 0, 0.28),
(624, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 90.00, 3779.22, 1.90, 1, 1, 0, '20', 2532.22, 2532.22, 0.00, 0.00, 0.00, 0, 0.63),
(625, 11, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 99.00, 3194.99, 2.11, 1, 1, 0, '20', 2819.99, 2819.99, 0.00, 0.00, 0.00, 0, 0.70),
(626, 12, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '14_color_Tulip_494_ATA.jpg', 95.00, 3387.60, 1.69, 1, NULL, 0, '4', 3387.60, 3387.60, 0.00, 0.00, 0.00, 0, 1.69),
(627, 12, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 16325.72, 8.16, 1, NULL, 0, '1', 16325.72, 16325.72, 0.00, 0.00, 0.00, 0, 8.16),
(628, 12, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 14955.75, 7.48, 1, NULL, 0, '1', 14955.75, 14955.75, 0.00, 0.00, 0.00, 0, 7.48),
(629, 12, 6, '', '', 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(630, 12, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(631, 12, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '24_color_52156_S.png', 100.00, 3934.40, 1.97, 1, NULL, 0, '3', 3934.40, 3934.40, 0.00, 0.00, 0.00, 0, 1.97),
(632, 12, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '25_color_download.jpg', 100.00, 4844.04, 2.42, 1, NULL, 0, '5', 4844.04, 4844.04, 0.00, 0.00, 0.00, 0, 2.42),
(633, 12, 5, '', '', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(634, 12, 5, '', '', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(635, 12, 7, '', '', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(636, 12, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '33_color_depop-boards.jpg', 100.00, 1811.20, 0.91, 1, NULL, 0, '', 1811.20, 1811.20, 0.00, 0.00, 0.00, 0, 0.91),
(637, 12, 5, '', '', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '34_color_depop-withgld.jpg', 60.00, 13628.10, 6.81, 1, NULL, 0, '', 13628.10, 13628.10, 0.00, 0.00, 0.00, 0, 6.81),
(638, 12, 5, '', '', 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(639, 12, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(640, 12, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0, 0.00),
(641, 12, 7, '', '', 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(642, 12, 7, '', '', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(643, 12, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(644, 12, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '42_color_tv-nometal.jpeg', 70.00, 3420.14, 1.71, 1, NULL, 0, '4', 3420.14, 3420.14, 0.00, 0.00, 0.00, 0, 1.71),
(645, 12, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0, 0.00),
(646, 12, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 2230.09, 1.12, 1, NULL, 0, '5', 2230.09, 2230.09, 0.00, 0.00, 0.00, 0, 1.12),
(647, 12, 8, '', '', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(648, 12, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(649, 12, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(650, 12, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(651, 12, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(652, 12, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 13668.60, 6.83, 1, NULL, 0, '3', 13668.60, 13668.60, 0.00, 0.00, 0.00, 0, 6.83),
(653, 12, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1358.40, 0.68, 1, NULL, 0, '1', 1358.40, 1358.40, 0.00, 0.00, 0.00, 0, 0.68),
(654, 12, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 1499.90, 0.75, 1, NULL, 0, '0.5', 1499.90, 1499.90, 0.00, 0.00, 0.00, 0, 0.75),
(655, 12, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 3851.34, 1.93, 1, NULL, 0, '1', 3851.34, 3851.34, 0.00, 0.00, 0.00, 0, 1.93),
(656, 12, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1547.40, 0.77, 1, NULL, 0, '1', 1547.40, 1547.40, 0.00, 0.00, 0.00, 0, 0.77),
(657, 12, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 4073.11, 2.04, 1, NULL, 0, '10', 4073.11, 4073.11, 0.00, 0.00, 0.00, 0, 2.04),
(658, 12, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(659, 12, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 1383.20, 0.69, 1, NULL, 0, '2', 1383.20, 1383.20, 0.00, 0.00, 0.00, 0, 0.69),
(660, 12, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 3641.26, 1.82, 1, NULL, 0, '2', 3641.26, 3641.26, 0.00, 0.00, 0.00, 0, 1.82),
(661, 12, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 3627.00, 1.81, 1, NULL, 0, '5', 3627.00, 3627.00, 0.00, 0.00, 0.00, 0, 1.81),
(662, 12, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 5517.54, 2.76, 1, NULL, 0, '2', 5517.54, 5517.54, 0.00, 0.00, 0.00, 0, 2.76),
(663, 12, 5, 'MotherBoards', 'ICN2556984659137265664', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 70.00, 12230.05, 6.12, 1, NULL, 0, '5', 12230.05, 12230.05, 0.00, 0.00, 0.00, 0, 6.12),
(664, 12, 6, 'MotherBoards', 'ICN2556984659137265664', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 60.00, 2963.58, 1.48, 1, NULL, 0, '5', 2963.58, 2963.58, 0.00, 0.00, 0.00, 0, 1.48),
(665, 12, 7, 'MotherBoards', 'ICN2556984659137265664', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 2592.29, 1.30, 1, NULL, 0, '5', 2592.29, 2592.29, 0.00, 0.00, 0.00, 0, 1.30),
(666, 12, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 13839.11, 6.92, 1, NULL, 0, '22', 13839.11, 13839.11, 0.00, 0.00, 0.00, 0, 6.92),
(667, 12, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 21936.06, 10.97, 1, NULL, 0, '22', 21936.06, 21936.06, 0.00, 0.00, 0.00, 0, 10.97),
(668, 12, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 8392.97, 4.20, 1, NULL, 0, '22', 8392.97, 8392.97, 0.00, 0.00, 0.00, 0, 4.20),
(669, 12, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 39012.53, 19.51, 1, NULL, 0, '1', 39012.53, 39012.53, 0.00, 0.00, 0.00, 0, 19.51),
(670, 12, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 58159.43, 29.08, 1, NULL, 0, '1', 58159.43, 58159.43, 0.00, 0.00, 0.00, 0, 29.08),
(671, 12, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 96282.45, 48.14, 1, NULL, 0, '1', 96282.45, 96282.45, 0.00, 0.00, 0.00, 0, 48.14),
(672, 12, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 11914.29, 5.96, 1, NULL, 0, '3', 11914.29, 11914.29, 0.00, 0.00, 0.00, 0, 5.96),
(673, 12, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15794.66, 7.90, 1, NULL, 0, '2', 15794.66, 15794.66, 0.00, 0.00, 0.00, 0, 7.90),
(674, 12, 5, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 23330.59, 11.67, 1, NULL, 0, '1', 23330.59, 23330.59, 0.00, 0.00, 0.00, 0, 11.67),
(675, 12, 7, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 4074.36, 2.04, 1, NULL, 0, '3', 4074.36, 4074.36, 0.00, 0.00, 0.00, 0, 2.04),
(676, 12, 6, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 8322.23, 4.16, 1, NULL, 0, '3', 8322.23, 8322.23, 0.00, 0.00, 0.00, 0, 4.16),
(677, 12, 5, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 59833.82, 29.92, 1, NULL, 0, '1', 59833.82, 59833.82, 0.00, 0.00, 0.00, 0, 29.92),
(678, 12, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 37359.58, 18.68, 1, NULL, 0, '1', 37359.58, 37359.58, 0.00, 0.00, 0.00, 0, 18.68),
(679, 12, 6, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 29010.67, 14.51, 1, NULL, 0, '3', 29010.67, 29010.67, 0.00, 0.00, 0.00, 0, 14.51),
(680, 12, 7, 'CellPhone_Boards', 'ICN1343889082165493760', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 16581.08, 8.29, 1, NULL, 0, '10', 16581.08, 16581.08, 0.00, 0.00, 0.00, 0, 8.29),
(681, 12, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 1682.60, 0.84, 1, NULL, 0, '5', 1682.60, 1682.60, 0.00, 0.00, 0.00, 0, 0.84),
(682, 12, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 1382.14, 0.69, 1, NULL, 0, '5', 1382.14, 1382.14, 0.00, 0.00, 0.00, 0, 0.69),
(683, 12, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 710.19, 0.36, 1, NULL, 0, '5', 710.19, 710.19, 0.00, 0.00, 0.00, 0, 0.36),
(684, 12, 8, 'Copper_Frames_and_Blanks', 'ICN5080750872976162816', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00),
(685, 12, 4, 'Processors', 'ICN8294737710174699520', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 254668.52, 127.33, 1, NULL, 0, '2', 254668.52, 254668.52, 0.00, 0.00, 0.00, 0, 127.33),
(686, 12, 3, 'Processors', 'ICN8294737710174699520', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 390263.81, 195.13, 1, NULL, 0, '2', 390263.81, 390263.81, 0.00, 0.00, 0.00, 0, 195.13),
(687, 12, 5, 'Processors', 'ICN8294737710174699520', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 156631.23, 78.32, 1, NULL, 0, '2', 156631.23, 156631.23, 0.00, 0.00, 0.00, 0, 78.32),
(688, 12, 5, 'Processors', 'ICN8294737710174699520', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 68550.17, 34.28, 1, NULL, 0, '3', 68550.17, 68550.17, 0.00, 0.00, 0.00, 0, 34.28),
(689, 12, 3, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 28110.58, 14.06, 1, NULL, 0, '1', 28110.58, 28110.58, 0.00, 0.00, 0.00, 0, 14.06),
(690, 12, 4, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 16416.97, 8.21, 1, NULL, 0, '1', 16416.97, 16416.97, 0.00, 0.00, 0.00, 0, 8.21),
(691, 12, 5, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 14467.62, 7.23, 1, NULL, 0, '1', 14467.62, 14467.62, 0.00, 0.00, 0.00, 0, 7.23),
(692, 12, 6, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 5205.69, 2.60, 1, NULL, 0, '1', 5205.69, 5205.69, 0.00, 0.00, 0.00, 0, 2.60),
(693, 12, 7, 'Telecom_Boards', 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '', '', '', '', 0, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 70.00, 3594.21, 1.80, 1, NULL, 0, '1', 3594.21, 3594.21, 0.00, 0.00, 0.00, 0, 1.80),
(694, 12, 5, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 26528.27, 13.26, 1, NULL, 0, '2', 26528.27, 26528.27, 0.00, 0.00, 0.00, 0, 13.26),
(695, 12, 4, 'Server_Boards', 'ICN4271510314933026816', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 21031.04, 10.52, 1, NULL, 0, '3', 21031.04, 21031.04, 0.00, 0.00, 0.00, 0, 10.52),
(696, 12, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 7074.99, 3.54, 1, NULL, 0, '10', 7074.99, 7074.99, 0.00, 0.00, 0.00, 0, 3.54),
(697, 12, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 4930.99, 2.47, 1, NULL, 0, '10', 4930.99, 4930.99, 0.00, 0.00, 0.00, 0, 2.47),
(698, 12, 7, '', '', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 2053.56, 1.03, 1, NULL, 0, '6', 2053.56, 2053.56, 0.00, 0.00, 0.00, 0, 1.03),
(699, 12, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(700, 12, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(701, 12, 5, 'Printer_Boards', 'ICN5491985813950431232', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', 'High_Grade_High_PMs  ', '98320995', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '522_color_P90521-135739.jpg', 90.00, 7969.71, 3.98, 1, NULL, 0, '1', 7969.71, 7969.71, 0.00, 0.00, 0.00, 0, 3.98),
(702, 12, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '23449604', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '523_color_P90521-123049.jpg', 90.00, 6791.12, 3.40, 1, NULL, 0, '1', 6791.12, 6791.12, 0.00, 0.00, 0.00, 0, 3.40),
(703, 12, 6, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', 'Low_Quality_PMs', '38810283', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '524_color_P90522-171952.jpg', 99.00, 5940.58, 2.97, 1, NULL, 0, '1', 5940.58, 5940.58, 0.00, 0.00, 0.00, 0, 2.97),
(704, 12, 7, 'Printer_Boards', 'ICN5491985813950431232', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', 'Low_Quality_BaseMet', '52761676', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '525_color_P90521-122733.jpg', 95.00, 1661.85, 0.83, 1, NULL, 0, '2', 1661.85, 1661.85, 0.00, 0.00, 0.00, 0, 0.83),
(705, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', 'Low_Grade_HeavyMetal', '67170861', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '534_color_T1iVKUXxNXXXXXXXXX_!!0-item_pic.jpg', 99.00, 1502.68, 0.75, 1, NULL, 0, '20', 1502.68, 1502.68, 0.00, 0.00, 0.00, 0, 0.75),
(706, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', 'Mid_Grade_LowPMs', '45975272', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '535_color_circuit-boards.jpg', 99.00, 2709.27, 1.35, 1, NULL, 0, '20', 2709.27, 2709.27, 0.00, 0.00, 0.00, 0, 1.35),
(707, 12, 8, 'CRT_Boards', 'ICN7981429672816672768', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', 'High_End_CRTs', '98128552', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '536_color_images.jpg', 90.00, 2215.98, 1.11, 1, NULL, 0, '20', 2215.98, 2215.98, 0.00, 0.00, 0.00, 0, 1.11),
(708, 10, 101, 'NA', 'NA', 'Pentium Pro ', 'Pentium Pro ', 'Pentium Pro ', 'Pentium Pro ', '57083643', '', '', '', 'United States', '', '', '', '', 0, 2, 1, '', 0, '', NULL, 0, NULL, '', NULL, '708_color_IMG_0956.JPG', 98.00, 345092.50, 258.82, 1, NULL, 0, '.025', 345092.50, 345092.50, 0.00, 0.00, 0.00, 0, 86.27),
(709, 10, 121, 'NA', 'NA', 'Pentium 1', 'Pentium 1', 'Pentium 1', 'Pentium 1', '17799889', '', '', '', 'Anywhere', '', '', '', '', 0, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '709_color_IMG_0957 2.JPG', 100.00, 47330.00, 35.50, 1, 0, 0, '.025', 47330.00, 47330.00, 0.00, 0.00, 0.00, 0, 11.83),
(710, 7, 38, 'NA', 'NA', 'Insulation', 'Insulation', 'Insulation', 'Insulation', '99648761', '', '', '', 'Anywhere', '', '', '', '', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '710_color_pl19511332-heating_insulation_refrigerator_vacuum_insulated_panel_for_beverage_coolers.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(711, 7, 38, 'NA', 'NA', 'Refrigerant (Freon)', 'Refrigerant (Freon)', 'Refrigerant (Freon)', 'Refrigerant (Freon)', '46814406', '', '', '', 'Anywhere', '', '', '', '', 0, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '711_color_Refrigerant-r22.jpg', 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(712, 7, 38, 'NA', 'NA', 'Refrigerator', 'Refrigerator', 'Refrigerator', 'Refrigerator', '84246398', '', '', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '712_color_csm_anlagen_maschine_rpww_04_123e67368a.jpg', 0.00, 0.00, 0.00, 1, NULL, 0, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 0.00),
(713, 10, 123, 'NA', 'NA', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', 'Sample Material - Shred Dust', '19906366', '', '', '', 'Anywhere', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '713_color_dust.jpg', 0.00, 0.00, -0.30, 1, NULL, 0, '15lbs', -400.00, -400.00, 0.00, 0.00, 0.00, 0, -0.10),
(714, 1, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 64111.15, 31.86, 1, NULL, 0, '1', 63711.15, 63711.15, 0.00, 0.00, 0.00, 0, 31.86),
(715, 2, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(716, 3, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(717, 4, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(718, 5, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(719, 6, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(720, 7, 4, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 51838.95, 28.07, 1, NULL, 0, '1', 51038.95, 51038.95, 0.00, 0.00, 0.00, 0, 22.97),
(721, 8, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(722, 9, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25781.60, 12.89, 1, NULL, 0, '1', 25781.60, 25781.60, 0.00, 0.00, 0.00, 0, 12.89),
(723, 10, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25216.63, 18.91, 1, NULL, 0, '1', 25216.63, 25216.63, 0.00, 0.00, 0.00, 0, 6.30),
(724, 11, 4, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', 'UltraHG_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 64107.69, 47.09, 1, 1, 0, '1', 62785.69, 62785.69, 0.00, 0.00, 0.00, 0, 15.70),
(725, 12, 110, 'Gold_Plated_Blanks', 'ICN5348152100851286016', 'UltraHG_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', 'UltraHD_HardCoat', '79231071', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '714_color_IMG-20190612-WA0016.jpeg', 99.00, 25216.63, 12.61, 1, NULL, 0, '1', 25216.63, 25216.63, 0.00, 0.00, 0.00, 0, 12.61),
(726, 1, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 2043.23, 1.02, 1, NULL, 0, '4', 2043.23, 2043.23, 0.00, 0.00, 0.00, 0, 1.02),
(727, 2, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(728, 3, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(729, 4, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(730, 5, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(731, 6, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(732, 7, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1476.87, 0.81, 1, NULL, 0, '4', 1476.87, 1476.87, 0.00, 0.00, 0.00, 0, 0.66),
(733, 8, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(734, 9, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 1990.43, 1.00, 1, NULL, 0, '4', 1990.43, 1990.43, 0.00, 0.00, 0.00, 0, 1.00),
(735, 10, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 2041.62, 1.53, 1, NULL, 0, '4', 2041.62, 2041.62, 0.00, 0.00, 0.00, 0, 0.51),
(736, 11, 6, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', 'LowYeild_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 2041.62, 1.28, 1, 1, 0, '4', 1711.62, 1711.62, 0.00, 0.00, 0.00, 0, 0.43),
(737, 12, 111, 'MotherBoards', 'ICN2556984659137265664', 'LowYeild_Metal', 'LowYield_Metal', 'LowYield_Metal', 'LowYield_Metal', '85262726', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '726_color_123.png', 100.00, 2041.58, 1.02, 1, NULL, 0, '4', 2041.58, 2041.58, 0.00, 0.00, 0.00, 0, 1.02),
(738, 1, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 13193.19, 6.60, 1, NULL, 0, '4', 13193.19, 13193.19, 0.00, 0.00, 0.00, 0, 6.60),
(739, 2, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(740, 3, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(741, 4, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(742, 5, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(743, 6, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(744, 7, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 8919.39, 4.91, 1, NULL, 0, '4', 8919.39, 8919.39, 0.00, 0.00, 0.00, 0, 4.01),
(745, 8, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56),
(746, 9, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11115.41, 5.56, 1, NULL, 0, '4', 11115.41, 11115.41, 0.00, 0.00, 0.00, 0, 5.56);
INSERT INTO `products-21-12-19` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`, `profitperkg`) VALUES
(747, 10, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11296.24, 8.47, 1, NULL, 0, '4', 11296.24, 11296.24, 0.00, 0.00, 0.00, 0, 2.82),
(748, 11, 3, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 13189.44, 9.64, 1, 1, 0, '4', 12859.44, 12859.44, 0.00, 0.00, 0.00, 0, 3.21),
(749, 12, 108, 'MotherBoards', 'ICN2556984659137265664', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', 'Ultra_High_Grade', '86960900', '16.02.16', 'Varies', '', 'Anywhere', '', '', '', '', 0, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '738_color_234.png', 100.00, 11295.48, 5.65, 1, NULL, 0, '4', 11295.48, 11295.48, 0.00, 0.00, 0.00, 0, 5.65);

-- --------------------------------------------------------

--
-- Table structure for table `products6may`
--

CREATE TABLE `products6may` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `categoryid` int(11) DEFAULT NULL,
  `dataset` varchar(255) DEFAULT NULL,
  `datasetid` varchar(500) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) DEFAULT NULL,
  `aralias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `substance` varchar(100) DEFAULT NULL,
  `size` varchar(100) DEFAULT NULL,
  `sheets` varchar(100) DEFAULT NULL,
  `origin` varchar(100) DEFAULT NULL,
  `unit_weight` varchar(100) DEFAULT NULL,
  `unit_base` varchar(100) DEFAULT NULL,
  `unit_pack` varchar(100) DEFAULT NULL,
  `unit_pallet` varchar(100) DEFAULT NULL,
  `pallet_height` int(11) DEFAULT NULL,
  `brandid` int(11) DEFAULT NULL,
  `manufacturerid` int(11) DEFAULT NULL,
  `packing` varchar(100) DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `quality` varchar(100) DEFAULT NULL,
  `leadtime` int(11) DEFAULT NULL,
  `reorder` int(11) DEFAULT NULL,
  `sbarcodeimage` varchar(255) DEFAULT NULL,
  `palletecode` varchar(255) DEFAULT NULL,
  `palletecodeimage` varchar(255) DEFAULT NULL,
  `productcolorimage` varchar(255) DEFAULT NULL,
  `excepectedrate` float(13,2) DEFAULT NULL,
  `excepectedrevenue` float(13,2) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `pricestatus` int(11) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `netexcepectedrevenue` float(13,2) DEFAULT 0.00,
  `netperton` float(13,2) DEFAULT 0.00,
  `totalquantity` float(13,2) DEFAULT 0.00,
  `used` float(13,2) DEFAULT 0.00,
  `balance` float(13,2) DEFAULT 0.00,
  `staticprice` int(11) DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `products6may`
--

INSERT INTO `products6may` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`) VALUES
(14, 1, 8, NULL, NULL, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', 0, 0, '', '', '', '14_color_Tulip_494_ATA.jpg', 95.00, 8931.01, 0.82, 1, 0, 0, '4', 6531.01, 1632.75, NULL, NULL, NULL, NULL),
(15, 1, 9, NULL, NULL, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', 0, 0, '', '', '', '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 9361.18, 4.39, 1, 0, 0, '1', 8781.18, 8781.18, NULL, NULL, NULL, NULL),
(18, 1, 6, NULL, NULL, 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', 0, 0, '', '', '', '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 9238.24, 4.55, 1, 0, 0, '1', 9098.24, 9098.24, NULL, NULL, NULL, NULL),
(19, 1, 6, NULL, NULL, 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, 0, 0, '', NULL, NULL, NULL, NULL, NULL, NULL),
(20, 1, 8, NULL, NULL, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '0', 0.00, 0.00, NULL, NULL, NULL, NULL),
(24, 1, 8, NULL, NULL, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', 0, 0, '', '', '', '24_color_52156_S.png', 100.00, 7382.88, 0.94, 1, 0, 0, '3', 5612.88, 1870.96, NULL, NULL, NULL, NULL),
(25, 1, 6, NULL, NULL, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', 0, 0, '', '', '', '25_color_download.jpg', 100.00, 14077.28, 1.11, 1, 0, 0, '5', 11127.28, 2225.46, NULL, NULL, NULL, NULL),
(29, 1, 5, NULL, NULL, 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(30, 1, 5, NULL, NULL, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(32, 1, 7, NULL, NULL, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(33, 1, 5, NULL, NULL, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', 0, 0, '', '', '', '33_color_depop-boards.jpg', 100.00, 194880.00, 389760.00, 1, 0, 0, '', 2336.00, 2336.00, NULL, NULL, NULL, NULL),
(34, 1, 5, NULL, NULL, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '34_color_depop-withgld.jpg', 60.00, 1026657.00, 2053314.00, 1, 0, 0, '', NULL, NULL, NULL, NULL, NULL, NULL),
(35, 1, 5, NULL, NULL, 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(36, 1, 7, 'Price List', NULL, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', 0, 0, '', '', '', '36_color_14_inv_1490604347436973696850.jpg', 0.00, 0.00, 0.00, 1, 0, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(37, 1, 5, NULL, NULL, 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', 0, 0, '', '', '', '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9019.68, 4.51, 1, 0, 1, '1', 9019.68, 9019.68, NULL, NULL, NULL, NULL),
(38, 1, 7, NULL, NULL, 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(39, 1, 7, NULL, NULL, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(40, 1, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, 0, 0, '', 0.00, 0.00, NULL, NULL, NULL, NULL),
(42, 1, 8, NULL, NULL, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', 0, 0, '', '', '', '42_color_tv-nometal.jpeg', 70.00, 11469.59, 1.14, 1, 0, 0, '4', 9109.59, 2277.40, NULL, NULL, NULL, NULL),
(43, 1, 1, NULL, NULL, 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', 0, 0, '', '', '', '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31708.65, 15854.33, 1, 0, 1, '0.001', 31708.65, 31708654.00, NULL, NULL, NULL, NULL),
(47, 1, 6, NULL, NULL, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 5294.62, 0.23, 1, 0, 0, '5', 2344.62, 468.92, NULL, NULL, NULL, NULL),
(49, 1, 8, NULL, NULL, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', NULL, NULL, NULL, NULL, NULL, NULL),
(52, 1, 1, 'None', NULL, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(53, 1, 12, NULL, NULL, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(54, 1, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(55, 1, 14, NULL, NULL, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(56, 1, 5, 'None', NULL, 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 24960.28, 3.86, 1, 0, 0, '3', 23160.28, 7720.09, NULL, NULL, NULL, NULL),
(63, 1, 8, NULL, NULL, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1139.33, 0.44, 1, 0, 0, '1', 889.33, 889.33, NULL, NULL, NULL, NULL),
(64, 1, 8, NULL, NULL, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 619.46, 0.52, 1, 0, 0, '0.5', 519.46, 1038.93, NULL, NULL, NULL, NULL),
(65, 1, 7, NULL, NULL, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 1611.93, 0.36, 1, 0, 0, '1', 711.93, 711.93, NULL, NULL, NULL, NULL),
(68, 1, 8, NULL, NULL, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1156.08, 0.38, 1, 0, 0, '1', 756.08, 756.08, NULL, NULL, NULL, NULL),
(69, 1, 7, NULL, NULL, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 25607.98, 0.98, 1, 0, 0, '10', 19607.98, 1960.80, NULL, NULL, NULL, NULL),
(71, 1, 5, NULL, NULL, 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, NULL),
(76, 1, 8, NULL, NULL, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 2106.04, 0.23, 1, 0, 0, '2', 906.04, 453.02, NULL, NULL, NULL, NULL),
(77, 1, 7, NULL, NULL, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 4092.96, 0.73, 1, 0, 0, '2', 2932.96, 1466.48, NULL, NULL, NULL, NULL),
(79, 1, 5, NULL, NULL, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 11096.51, 0.81, 1, 0, 0, '5', 8096.51, 1619.30, NULL, NULL, NULL, NULL),
(80, 1, 6, NULL, NULL, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 6337.89, 1.28, 1, 0, 0, '2', 5137.89, 2568.95, NULL, NULL, NULL, NULL),
(84, 1, 5, 'MotherBoards', 'ICN4797712617434078908', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 48060.54, 6.97, 1, 1, 0, '5', 43585.54, 8717.11, NULL, NULL, NULL, NULL),
(85, 1, 6, 'MotherBoards', 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 99.00, 20135.85, 2.77, 1, 1, 0, '5', 17335.85, 3467.17, NULL, NULL, NULL, NULL),
(86, 1, 7, 'MotherBoards', 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 14666.23, 1.19, 1, 1, 0, '5', 11866.23, 2373.25, NULL, NULL, NULL, NULL),
(87, 1, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 237745.50, 5.17, 1, 1, 0, '22', 237745.50, 237745.50, NULL, NULL, NULL, NULL),
(88, 1, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 374065.31, 8.25, 1, 1, 0, '22', 374065.31, 374065.31, NULL, NULL, NULL, NULL),
(89, 1, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 138489.70, 2.94, 1, 1, 0, '22', 138489.70, 138489.70, NULL, NULL, NULL, NULL),
(90, 1, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 25972.26, 12.70, 1, 1, 0, '1', 25402.26, 25402.26, NULL, NULL, NULL, NULL),
(91, 1, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 41604.35, 20.56, 1, 1, 0, '1', 41604.35, 41604.35, NULL, NULL, NULL, NULL),
(92, 1, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 74434.28, 36.88, 1, 1, 0, '1', 74434.28, 74434.28, NULL, NULL, NULL, NULL),
(93, 1, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 16910.36, 4.07, 1, 1, 0, '3', 15260.36, 5086.79, NULL, NULL, NULL, NULL),
(94, 1, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 15331.48, 5.93, 1, 1, 0, '2', 14815.48, 7407.74, NULL, NULL, NULL, NULL),
(95, 1, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 80.00, 15526.65, 12.42, 1, 1, 0, '1', 15526.65, 15526.65, NULL, NULL, NULL, NULL),
(96, 1, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 50.00, 7723.15, 2.02, 1, 1, 0, '3', 7591.15, 2530.38, NULL, NULL, NULL, NULL),
(97, 1, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 50.00, 17119.42, 4.57, 1, 1, 0, '3', 17119.42, 5706.47, NULL, NULL, NULL, NULL),
(98, 1, 5, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 39591.94, 31.26, 1, 1, 0, '1', 39071.94, 39071.94, NULL, NULL, NULL, NULL),
(99, 1, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 22174.87, 17.32, 1, 1, 0, '1', 21654.87, 21654.87, NULL, NULL, NULL, NULL),
(100, 1, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 61364.12, 15.95, 1, 1, 0, '3', 59804.12, 19934.71, NULL, NULL, NULL, NULL),
(101, 1, 7, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 113854.23, 8.69, 1, 1, 0, '10', 108654.23, 10865.42, NULL, NULL, NULL, NULL),
(102, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '102_color_good.jpg', 99.00, 6579.62, 0.54, 1, 1, 0, '5', 6579.62, 6579.62, NULL, NULL, NULL, 0),
(103, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '103_color_stuffe.jpg', 99.00, 5404.69, 0.42, 1, 1, 0, '5', 5404.69, 5404.69, NULL, NULL, NULL, 0),
(104, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '104_color_P81126-111759.jpg', 90.00, 3845.23, 0.26, 1, 1, 0, '5', 3845.23, 3845.23, NULL, NULL, NULL, 0),
(105, 1, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '105_color_P81115-152230 (3).jpg', 0.00, 0.00, 0.00, 1, 1, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(106, 1, 4, 'Processors', 'ICN1352050014989540777', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '106_color_L_Intel-A80486DX2-66.jpg', 90.00, 372182.16, 148.38, 1, 1, 0, '2', 370942.16, 185471.08, NULL, NULL, NULL, 0),
(107, 1, 3, 'Processors', 'ICN1352050014989540777', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '107_color_S_IBM-6x86-2V2P120GC.jpg', 95.00, 621168.88, 247.84, 1, 1, 0, '2', 619588.88, 309794.44, NULL, NULL, NULL, 0),
(108, 1, 5, 'Processors', 'ICN1352050014989540777', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '108_color_L_AMD-A0900AMT3B (ES).jpg', 99.00, 211163.23, 84.01, 1, 1, 0, '2', 210023.23, 105011.61, NULL, NULL, NULL, 0),
(109, 1, 5, 'Processors', 'ICN1352050014989540777', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, '109_color_L_Intel-Celeron 433 (ES front).jpg', 99.00, 149400.95, 39.16, 1, 1, 0, '3', 146850.95, 48950.32, NULL, NULL, NULL, 0),
(111, 1, 3, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '111_color_Gold-Plated-Circuit-Board-Scrap-for-sale.jpg_220x220.jpg', 99.00, 14825.71, 11.64, 1, 1, 0, '1', 14825.71, 14825.71, NULL, NULL, NULL, 0),
(112, 1, 4, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '112_color_oNDYNAE.jpg', 99.00, 11076.89, 8.52, 1, 1, 0, '1', 11076.89, 11076.89, NULL, NULL, NULL, 0),
(113, 1, 5, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '113_color_images.jpg', 99.00, 7325.96, 5.52, 1, 1, 0, '1', 6895.96, 6895.96, NULL, NULL, NULL, 0),
(114, 1, 6, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '114_color_Ericsson-Aastra-GSU-ROF-137-5390-1-R5A-01W44-_1.jpg', 99.00, 3551.70, 2.54, 1, 1, 0, '1', 3551.70, 3551.70, NULL, NULL, NULL, 0),
(115, 1, 7, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, '115_color_dsc01664_1.jpg', 99.00, 2483.18, 1.64, 1, 1, 0, '1', 2483.18, 2483.18, NULL, NULL, NULL, 0),
(116, 1, 5, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '116_color_server.jpg', 99.00, 32476.78, 12.60, 1, 1, 0, '2', 31500.78, 15750.39, NULL, NULL, NULL, 0),
(117, 1, 4, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '117_color_serber2.jpg', 99.00, 38277.77, 9.85, 1, 1, 0, '3', 36927.77, 12309.26, NULL, NULL, NULL, 0),
(124, 1, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, '124_color_soym1-500x500.jpg', 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, NULL, NULL, NULL, 0),
(125, 1, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '125_color_copper-anodes-1512122324-3483179.jpeg', 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, NULL, NULL, NULL, 0),
(126, 1, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '126_color_resize.jpg', 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, NULL, NULL, NULL, 0),
(127, 1, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '127_color_WhatsApp Image 2019-02-25 at 17.41.24.jpeg', 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, NULL, NULL, NULL, 1),
(131, 1, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '131_color_CopperSmall.jpg', 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, NULL, NULL, NULL, 1),
(132, 1, 7, 'Test', 'NA', 'Test', 'Test', 'Test', 'Test', '78528376', '121121', '65', '', 'United Kingdom', '90', '90', '90', '', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 2590.34, 1.86, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(135, 14, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, NULL, NULL, NULL, 0),
(136, 14, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 9361.18, 4.39, 1, NULL, 0, '1', 8781.18, 8781.18, NULL, NULL, NULL, 0),
(137, 14, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 85.00, 9238.24, 4.55, 1, NULL, 0, '1', 9098.24, 9098.24, NULL, NULL, NULL, 0),
(138, 14, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, NULL, NULL, NULL, 0),
(139, 14, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 7382.88, 0.94, 1, NULL, 0, '3', 5612.88, 1870.96, NULL, NULL, NULL, 0),
(140, 14, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 14077.28, 1.11, 1, NULL, 0, '5', 11127.28, 2225.46, NULL, NULL, NULL, 0),
(141, 14, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 194880.00, 389760.00, 1, NULL, 0, '', 2336.00, 2336.00, NULL, NULL, NULL, 0),
(142, 14, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(143, 14, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, NULL, NULL, NULL, 0),
(144, 14, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, NULL, NULL, NULL, 0),
(145, 14, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 70.00, 11469.59, 1.14, 1, NULL, 0, '4', 9109.59, 2277.40, NULL, NULL, NULL, 0),
(146, 14, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, NULL, NULL, NULL, 0),
(147, 14, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 5294.62, 0.23, 1, NULL, 0, '5', 2344.62, 468.92, NULL, NULL, NULL, 0),
(148, 14, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(149, 14, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(150, 14, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(151, 14, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(152, 14, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 24960.28, 3.86, 1, NULL, 0, '3', 23160.28, 7720.09, NULL, NULL, NULL, 0),
(153, 14, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 1139.33, 0.44, 1, NULL, 0, '1', 889.33, 889.33, NULL, NULL, NULL, 0),
(154, 14, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 619.46, 0.52, 1, NULL, 0, '0.5', 519.46, 1038.93, NULL, NULL, NULL, 0),
(155, 14, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 1611.93, 0.36, 1, NULL, 0, '1', 711.93, 711.93, NULL, NULL, NULL, 0),
(156, 14, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 1156.08, 0.38, 1, NULL, 0, '1', 756.08, 756.08, NULL, NULL, NULL, 0),
(157, 14, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 60.00, 25607.98, 0.98, 1, NULL, 0, '10', 19607.98, 1960.80, NULL, NULL, NULL, 0),
(158, 14, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(159, 14, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 2106.04, 0.23, 1, NULL, 0, '2', 906.04, 453.02, NULL, NULL, NULL, 0),
(160, 14, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 4092.96, 0.73, 1, NULL, 0, '2', 2932.96, 1466.48, NULL, NULL, NULL, 0),
(161, 14, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 11096.51, 0.81, 1, NULL, 0, '5', 8096.51, 1619.30, NULL, NULL, NULL, 0),
(162, 14, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 6337.89, 1.28, 1, NULL, 0, '2', 5137.89, 2568.95, NULL, NULL, NULL, 0),
(163, 14, 5, 'MotherBoards', 'ICN4797712617434078908', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 48060.54, 6.97, 1, NULL, 0, '5', 43585.54, 8717.11, NULL, NULL, NULL, 0),
(164, 14, 6, 'MotherBoards', 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 20135.85, 2.77, 1, NULL, 0, '5', 17335.85, 3467.17, NULL, NULL, NULL, 0),
(165, 14, 7, 'MotherBoards', 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 14666.23, 1.19, 1, NULL, 0, '5', 11866.23, 2373.25, NULL, NULL, NULL, 0),
(166, 14, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 237745.50, 5.17, 1, NULL, 0, '22', 237745.50, 237745.50, NULL, NULL, NULL, 0),
(167, 14, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 374065.31, 8.25, 1, NULL, 0, '22', 374065.31, 374065.31, NULL, NULL, NULL, 0),
(168, 14, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 138489.70, 2.94, 1, NULL, 0, '22', 138489.70, 138489.70, NULL, NULL, NULL, 0),
(169, 14, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 25972.26, 12.70, 1, NULL, 0, '1', 25402.26, 25402.26, NULL, NULL, NULL, 0),
(170, 14, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 41604.35, 20.56, 1, NULL, 0, '1', 41604.35, 41604.35, NULL, NULL, NULL, 0),
(171, 14, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 74434.28, 36.88, 1, NULL, 0, '1', 74434.28, 74434.28, NULL, NULL, NULL, 0),
(172, 14, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 16910.36, 4.07, 1, NULL, 0, '3', 15260.36, 5086.79, NULL, NULL, NULL, 0),
(173, 14, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 15331.48, 5.93, 1, NULL, 0, '2', 14815.48, 7407.74, NULL, NULL, NULL, 0),
(174, 14, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 15526.65, 12.42, 1, NULL, 0, '1', 15526.65, 15526.65, NULL, NULL, NULL, 0),
(175, 14, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 50.00, 7723.15, 2.02, 1, NULL, 0, '3', 7591.15, 2530.38, NULL, NULL, NULL, 0),
(176, 14, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 50.00, 17119.42, 4.57, 1, NULL, 0, '3', 17119.42, 5706.47, NULL, NULL, NULL, 0),
(177, 14, 5, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 39591.94, 31.26, 1, NULL, 0, '1', 39071.94, 39071.94, NULL, NULL, NULL, 0),
(178, 14, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 22174.87, 17.32, 1, NULL, 0, '1', 21654.87, 21654.87, NULL, NULL, NULL, 0),
(179, 14, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 61364.12, 15.95, 1, NULL, 0, '3', 59804.12, 19934.71, NULL, NULL, NULL, 0),
(180, 14, 7, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 113854.23, 8.69, 1, NULL, 0, '10', 108654.23, 10865.42, NULL, NULL, NULL, 0),
(181, 14, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 6579.62, 0.54, 1, NULL, 0, '5', 6579.62, 6579.62, NULL, NULL, NULL, 0),
(182, 14, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 5404.69, 0.42, 1, NULL, 0, '5', 5404.69, 5404.69, NULL, NULL, NULL, 0),
(183, 14, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 90.00, 3845.23, 0.26, 1, NULL, 0, '5', 3845.23, 3845.23, NULL, NULL, NULL, 0),
(184, 14, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(185, 14, 4, 'Processors', 'ICN1352050014989540777', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 90.00, 372182.16, 148.38, 1, NULL, 0, '2', 370942.16, 185471.08, NULL, NULL, NULL, 0),
(186, 14, 3, 'Processors', 'ICN1352050014989540777', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 621168.88, 247.84, 1, NULL, 0, '2', 619588.88, 309794.44, NULL, NULL, NULL, 0),
(187, 14, 5, 'Processors', 'ICN1352050014989540777', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 211163.23, 84.01, 1, NULL, 0, '2', 210023.23, 105011.61, NULL, NULL, NULL, 0),
(188, 14, 5, 'Processors', 'ICN1352050014989540777', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 149400.95, 39.16, 1, NULL, 0, '3', 146850.95, 48950.32, NULL, NULL, NULL, 0),
(189, 14, 3, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 14825.71, 11.64, 1, NULL, 0, '1', 14825.71, 14825.71, NULL, NULL, NULL, 0),
(190, 14, 4, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 11076.89, 8.52, 1, NULL, 0, '1', 11076.89, 11076.89, NULL, NULL, NULL, 0),
(191, 14, 5, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 7325.96, 5.52, 1, NULL, 0, '1', 6895.96, 6895.96, NULL, NULL, NULL, 0);
INSERT INTO `products6may` (`id`, `userid`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`, `staticprice`) VALUES
(192, 14, 6, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 3551.70, 2.54, 1, NULL, 0, '1', 3551.70, 3551.70, NULL, NULL, NULL, 0),
(193, 14, 7, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 2483.18, 1.64, 1, NULL, 0, '1', 2483.18, 2483.18, NULL, NULL, NULL, 0),
(194, 14, 5, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 32476.78, 12.60, 1, NULL, 0, '2', 31500.78, 15750.39, NULL, NULL, NULL, 0),
(195, 14, 4, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 38277.77, 9.85, 1, NULL, 0, '3', 36927.77, 12309.26, NULL, NULL, NULL, 0),
(196, 14, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, NULL, NULL, NULL, 0),
(197, 14, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, NULL, NULL, NULL, 0),
(198, 14, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, NULL, NULL, NULL, 0),
(199, 14, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, NULL, NULL, NULL, 1),
(200, 14, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, NULL, NULL, NULL, 1),
(201, 14, 7, 'Test', 'NA', 'Test', 'Test', 'Test', 'Test', '78528376', '121121', '65', '', 'United Kingdom', '90', '90', '90', '', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 2590.34, 1.86, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL, 0),
(202, 15, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0),
(203, 15, 9, '', '', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 25262, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 9361.18, 4.39, 1, NULL, 0, '1', 8781.18, 8781.18, 0.00, 0.00, 0.00, 0),
(204, 15, 6, '', '', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 23828, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 85.00, 9238.24, 4.55, 1, NULL, 0, '1', 9098.24, 9098.24, 0.00, 0.00, 0.00, 0),
(205, 15, 8, '', '', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '0', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(206, 15, 8, '', '', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 23508, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 7382.88, 0.94, 1, NULL, 0, '3', 5612.88, 1870.96, 0.00, 0.00, 0.00, 0),
(207, 15, 6, '', '', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 23156, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 14077.28, 1.11, 1, NULL, 0, '5', 11127.28, 2225.46, 0.00, 0.00, 0.00, 0),
(208, 15, 5, '', '', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 194880.00, 389760.00, 1, NULL, 0, '', 2336.00, 2336.00, 0.00, 0.00, 0.00, 0),
(209, 15, 7, 'Price List', '', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(210, 15, 5, '', '', 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 20230, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 9019.68, 4.51, 1, NULL, 1, '1', 9019.68, 9019.68, 0.00, 0.00, 0.00, 0),
(211, 15, 8, '', '', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 0, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(212, 15, 8, '', '', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 19878, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 70.00, 11469.59, 1.14, 1, NULL, 0, '4', 9109.59, 2277.40, 0.00, 0.00, 0.00, 0),
(213, 15, 1, '', '', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 19526, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 31708.65, 15854.33, 1, NULL, 1, '0.001', 31708.65, 31708654.00, 0.00, 0.00, 0.00, 0),
(214, 15, 6, '', '', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 19206, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 5294.62, 0.23, 1, NULL, 0, '5', 2344.62, 468.92, 0.00, 0.00, 0.00, 0),
(215, 15, 1, 'None', '', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(216, 15, 12, '', '', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 12.50, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(217, 15, 13, '', '', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', 'Cu,Au,Ag,Pt,Pd Metals For Refining', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(218, 15, 14, '', '', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 17362, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(219, 15, 5, 'None', '', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', 'Back Plate Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17362, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 24960.28, 3.86, 1, NULL, 0, '3', 23160.28, 7720.09, 0.00, 0.00, 0.00, 0),
(220, 15, 8, '', '', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 1139.33, 0.44, 1, NULL, 0, '1', 889.33, 889.33, 0.00, 0.00, 0.00, 0),
(221, 15, 8, '', '', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 619.46, 0.52, 1, NULL, 0, '0.5', 519.46, 1038.93, 0.00, 0.00, 0.00, 0),
(222, 15, 7, '', '', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 16280, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 1611.93, 0.36, 1, NULL, 0, '1', 711.93, 711.93, 0.00, 0.00, 0.00, 0),
(223, 15, 8, '', '', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 15928, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 1156.08, 0.38, 1, NULL, 0, '1', 756.08, 756.08, 0.00, 0.00, 0.00, 0),
(224, 15, 7, '', '', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 15896, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 60.00, 25607.98, 0.98, 1, NULL, 0, '10', 19607.98, 1960.80, 0.00, 0.00, 0.00, 0),
(225, 15, 5, '', '', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 14814, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(226, 15, 8, '', '', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14814, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 2106.04, 0.23, 1, NULL, 0, '2', 906.04, 453.02, 0.00, 0.00, 0.00, 0),
(227, 15, 7, '', '', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 14782, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 4092.96, 0.73, 1, NULL, 0, '2', 2932.96, 1466.48, 0.00, 0.00, 0.00, 0),
(228, 15, 5, '', '', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14430, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 11096.51, 0.81, 1, NULL, 0, '5', 8096.51, 1619.30, 0.00, 0.00, 0.00, 0),
(229, 15, 6, '', '', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 14078, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 6337.89, 1.28, 1, NULL, 0, '2', 5137.89, 2568.95, 0.00, 0.00, 0.00, 0),
(230, 15, 5, 'MotherBoards', 'ICN4797712617434078908', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 48060.54, 6.97, 1, NULL, 0, '5', 43585.54, 8717.11, 0.00, 0.00, 0.00, 0),
(231, 15, 6, 'MotherBoards', 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 672, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 20135.85, 2.77, 1, NULL, 0, '5', 17335.85, 3467.17, 0.00, 0.00, 0.00, 0),
(232, 15, 7, 'MotherBoards', 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 13022, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 14666.23, 1.19, 1, NULL, 0, '5', 11866.23, 2373.25, 0.00, 0.00, 0.00, 0),
(233, 15, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 12670, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 100.00, 237745.50, 5.17, 1, NULL, 0, '22', 237745.50, 237745.50, 0.00, 0.00, 0.00, 0),
(234, 15, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 11588, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 374065.31, 8.25, 1, NULL, 0, '22', 374065.31, 374065.31, 0.00, 0.00, 0.00, 0),
(235, 15, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 10506, 10, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 138489.70, 2.94, 1, NULL, 0, '22', 138489.70, 138489.70, 0.00, 0.00, 0.00, 0),
(236, 15, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 9424, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 25972.26, 12.70, 1, NULL, 0, '1', 25402.26, 25402.26, 0.00, 0.00, 0.00, 0),
(237, 15, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 9072, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 41604.35, 20.56, 1, NULL, 0, '1', 41604.35, 41604.35, 0.00, 0.00, 0.00, 0),
(238, 15, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 8720, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 74434.28, 36.88, 1, NULL, 0, '1', 74434.28, 74434.28, 0.00, 0.00, 0.00, 0),
(239, 15, 5, 'Extension_Cards', 'ICN9118051636822650169', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 16910.36, 4.07, 1, NULL, 0, '3', 15260.36, 5086.79, 0.00, 0.00, 0.00, 0),
(240, 15, 4, 'Extension_Cards', 'ICN9118051636822650169', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 352, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 15331.48, 5.93, 1, NULL, 0, '2', 14815.48, 7407.74, 0.00, 0.00, 0.00, 0),
(241, 15, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 80.00, 15526.65, 12.42, 1, NULL, 0, '1', 15526.65, 15526.65, 0.00, 0.00, 0.00, 0),
(242, 15, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '44', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 50.00, 7723.15, 2.02, 1, NULL, 0, '3', 7591.15, 2530.38, 0.00, 0.00, 0.00, 0),
(243, 15, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 50.00, 17119.42, 4.57, 1, NULL, 0, '3', 17119.42, 5706.47, 0.00, 0.00, 0.00, 0),
(244, 15, 5, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 39591.94, 31.26, 1, NULL, 0, '1', 39071.94, 39071.94, 0.00, 0.00, 0.00, 0),
(245, 15, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 22174.87, 17.32, 1, NULL, 0, '1', 21654.87, 21654.87, 0.00, 0.00, 0.00, 0),
(246, 15, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 61364.12, 15.95, 1, NULL, 0, '3', 59804.12, 19934.71, 0.00, 0.00, 0.00, 0),
(247, 15, 7, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1082, 9, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 113854.23, 8.69, 1, NULL, 0, '10', 108654.23, 10865.42, 0.00, 0.00, 0.00, 0),
(248, 15, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', 'MultiLayer_HighGrade', '35227960', '16.02.16', 'varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 6579.62, 0.54, 1, NULL, 0, '5', 6579.62, 6579.62, 0.00, 0.00, 0.00, 0),
(249, 15, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', 'Two_Layer_MidGrade', '14053219', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 5404.69, 0.42, 1, NULL, 0, '5', 5404.69, 5404.69, 0.00, 0.00, 0.00, 0),
(250, 15, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', 'SingleLayer_LowGrade', '70583371', '16.02.16', 'Varies', '', 'Romania', '0', '120', '120', '1025', 2836, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 90.00, 3845.23, 0.26, 1, NULL, 0, '5', 3845.23, 3845.23, 0.00, 0.00, 0.00, 0),
(251, 15, 8, 'Copper_Frames_and_Blanks', 'ICN5262563530192074018', 'Empty', 'Empty', 'Empty', 'Empty', '96197516', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '0', 0, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(252, 15, 4, 'Processors', 'ICN1352050014989540777', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', 'HighEnd_Ceramic', '82337943', '16.02.12', 'Varies', '', 'Romania', '140', '360', '120', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 90.00, 372182.16, 148.38, 1, NULL, 0, '2', 370942.16, 185471.08, 0.00, 0.00, 0.00, 0),
(253, 15, 3, 'Processors', 'ICN1352050014989540777', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', 'UltraHigh_Ceramic', '68384034', '16.02.12', 'Varies', '', 'Romania', '220', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 621168.88, 247.84, 1, NULL, 0, '2', 619588.88, 309794.44, 0.00, 0.00, 0.00, 0),
(254, 15, 5, 'Processors', 'ICN1352050014989540777', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', 'MidRange_Ceramic', '78181112', '16.02.12', 'Varies', '', 'Romania', '0', '350', '220', '1150', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 211163.23, 84.01, 1, NULL, 0, '2', 210023.23, 105011.61, 0.00, 0.00, 0.00, 0),
(255, 15, 5, 'Processors', 'ICN1352050014989540777', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', 'LowYeild_Plastic', '24789991', '16.02.12', 'Varies', '', 'Romania', '350', '300', '200', '1025', 1082, 2, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 149400.95, 39.16, 1, NULL, 0, '3', 146850.95, 48950.32, 0.00, 0.00, 0.00, 0),
(256, 15, 3, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', 'Grade_AAA_Shielded', '50095386', '16.02.16', 'Varies', '', 'Romania', '0', '0', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 14825.71, 11.64, 1, NULL, 0, '1', 14825.71, 14825.71, 0.00, 0.00, 0.00, 0),
(257, 15, 4, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', 'Grade_AA_Finger_Conn', '45713668', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 672, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 11076.89, 8.52, 1, NULL, 0, '1', 11076.89, 11076.89, 0.00, 0.00, 0.00, 0),
(258, 15, 5, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', 'Grade_A_Pinned_Conn', '91366794', '16.02.16', 'Varies', '', 'Romania', '0', '150', '280', '1025', 1082, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 7325.96, 5.52, 1, NULL, 0, '1', 6895.96, 6895.96, 0.00, 0.00, 0.00, 0),
(259, 15, 6, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', 'Grade_B_Low_PMs', '55082506', '16.02.16', 'Varies', '', 'United Kingdom', '0', '100', '280', '1025', 352, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 3551.70, 2.54, 1, NULL, 0, '1', 3551.70, 3551.70, 0.00, 0.00, 0.00, 0),
(260, 15, 7, 'Telecom_Boards', 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', 'Grade_C_Heavy_Copper', '93865831', '16.02.16', 'Varies', '', 'United Kingdom', '0', '150', '280', '1025', 320, 12, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 2483.18, 1.64, 1, NULL, 0, '1', 2483.18, 2483.18, 0.00, 0.00, 0.00, 0),
(261, 15, 5, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', 'Server_Boards_High_Grade', '27122830', '16.02.16', 'Varies', '', 'Romania', '20', '188', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 32476.78, 12.60, 1, NULL, 0, '2', 31500.78, 15750.39, 0.00, 0.00, 0.00, 0),
(262, 15, 4, 'Server_Boards', 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', 'Server_Boards_Low_Grade', '64537106', '16.02.16', 'Varies', '', 'Canada', '20', '150', '280', '1025', 1082, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 38277.77, 9.85, 1, NULL, 0, '3', 36927.77, 12309.26, 0.00, 0.00, 0.00, 0),
(263, 15, 5, 'NA', 'NA', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '99.99 Copper Sheet', '31545466', 'New Product', 'Varies', '', 'United Kingdom', '0', '0', '0', '1025', 0, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 125.00, 65579.93, 5.25, 1, NULL, 0, '10', 65579.93, 6557.99, 0.00, 0.00, 0.00, 0),
(264, 15, 6, 'NA', 'NA', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', 'Anodes (Mixed Metal)', '67725883', 'New Product', 'Varies', '', 'Romania', '0', '0', '0', '1025', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 45121.19, 3.61, 1, NULL, 0, '10', 45121.19, 4512.12, 0.00, 0.00, 0.00, 0),
(265, 15, 7, 'NA', 'NA', 'Whole Computers', 'Whole Computers', 'Whole Computers', 'Whole Computers', '73725992', '12.12.12', 'Varies', '', 'Romania', '0', '0', '0', '1025', 352, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 33695.28, 1.35, 1, NULL, 0, '20', 33695.28, 33695.28, 0.00, 0.00, 0.00, 0),
(266, 15, 5, 'NA', 'NA', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', 'FIBER Bricks', '11367803', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 12040.61, 1.97, 1, NULL, 1, '10', 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(267, 15, 4, 'NA', 'NA', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', 'Copper Pipes', '38104308', '', '', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 0.00, 7888.00, 7.88, 1, NULL, 1, '22', 0.00, 0.00, 0.00, 0.00, 0.00, 1),
(268, 15, 7, 'Test', 'NA', 'Test', 'Test', 'Test', 'Test', '78528376', '121121', '65', '', 'United Kingdom', '90', '90', '90', '', 320, 13, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 99.00, 2590.34, 1.86, 1, NULL, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0),
(269, 16, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0),
(270, 17, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0),
(271, 18, 8, '', '', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 25614, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, NULL, 95.00, 8931.01, 0.82, 1, NULL, 0, '4', 6531.01, 1632.75, 0.00, 0.00, 0.00, 0);

-- --------------------------------------------------------

--
-- Table structure for table `products281218`
--

CREATE TABLE `products281218` (
  `id` int(11) NOT NULL,
  `categoryid` int(11) DEFAULT NULL,
  `dataset` varchar(255) DEFAULT NULL,
  `datasetid` varchar(500) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) DEFAULT NULL,
  `aralias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `substance` varchar(100) DEFAULT NULL,
  `size` varchar(100) DEFAULT NULL,
  `sheets` varchar(100) DEFAULT NULL,
  `origin` varchar(100) DEFAULT NULL,
  `unit_weight` varchar(100) DEFAULT NULL,
  `unit_base` varchar(100) DEFAULT NULL,
  `unit_pack` varchar(100) DEFAULT NULL,
  `unit_pallet` varchar(100) DEFAULT NULL,
  `pallet_height` int(11) DEFAULT NULL,
  `brandid` int(11) DEFAULT NULL,
  `manufacturerid` int(11) DEFAULT NULL,
  `packing` varchar(100) DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `quality` varchar(100) DEFAULT NULL,
  `leadtime` int(11) DEFAULT NULL,
  `reorder` int(11) DEFAULT NULL,
  `sbarcodeimage` varchar(255) DEFAULT NULL,
  `palletecode` varchar(255) DEFAULT NULL,
  `palletecodeimage` varchar(255) DEFAULT NULL,
  `productcolorimage` varchar(255) DEFAULT NULL,
  `excepectedrate` float(13,2) DEFAULT NULL,
  `excepectedrevenue` float(13,2) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `pricestatus` int(11) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `netexcepectedrevenue` float(13,2) DEFAULT NULL,
  `netperton` float(13,2) DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `products281218`
--

INSERT INTO `products281218` (`id`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`) VALUES
(3, 5, NULL, NULL, '*MIXED* Older Motherboards Pre Pentium (With Metal/Heat symc)', '*MIXED* Older Motherboards Pre Pentium (With Metal/Heat symc)', '*MIXED* Older Motherboards Pre Pentium (With Metal/Heat symc)', '*MIXED* Older Motherboards Pre Pentium (With Metal/Heat symc)', '13991', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 17560, 1, 8, '', 0, '', 0, 0, '', '', '', '3_color_486_Baby_AT_VLB_motherboard_view.jpg', 100.00, 21057.77, 3.21, 1, 1, 0, '3', 19257.77, 6419.26, NULL, NULL, NULL),
(6, 11, NULL, NULL, 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', 'ALL Intel Pentium 2 Socket CPUs', '73856129', 'plastic / ceramic / all ', '1.4 x 1.4', '', 'Romania', '0.30', 'grams', '30', '500', 30, 2, 1, '', 0, '', 0, 0, '', '', '', '6_color_S_Intel-B80522P266512 (front).jpg', 0.85, 9190.03, 18380.06, 1, 0, 0, '', NULL, NULL, NULL, NULL, NULL),
(7, 3, NULL, NULL, 'Full Gold Plated Circuit Board (With Components)', 'Full Gold Plated Circuit Board (With Components)', 'Full Gold Plated Circuit Board (With Components)', 'Full Gold Plated Circuit Board (With Components)', '49982753', '16.06.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 16478, 1, 5, '', 0, '', 0, 0, '', '', '', '7_color_111.jpg', 88.00, 138125.41, 22.72, 1, 1, 0, '3', 136325.41, 45441.80, NULL, NULL, NULL),
(12, 6, NULL, NULL, 'Connector Card (gold/copper connectors)', 'Connector Card (gold/copper connectors)', 'Connector Card (gold/copper connectors)', 'Connector Card (gold/copper connectors)', '5564633', '16.02.16', 'Various', '', 'Romania', '', '', '', '1025', 15396, 4, 8, '', 0, '', 0, 0, '', '', '', '12_color_images (2).jpg', 100.00, 8096.49, 1.35, 1, 1, 0, '3', 8096.49, 2698.83, NULL, NULL, NULL),
(13, 5, NULL, NULL, '*MIXED* Computer Mother Boards 2002+(Newer No Metal)', '*MIXED* Computer Mother Boards 2002+(Newer No Metal)', '*MIXED* Computer Mother Boards 2002+(Newer No Metal)', '*MIXED* Computer Mother Boards 2002+(Newer No Metal)', '76862528', '16.06.16', 'Varies', '', 'Romania', '20', '350', '220', '1025', 15044, 1, 8, '', 0, '', 0, 0, '', '', '', '13_color_1737_6.jpg', 95.00, 13402.90, 1.94, 1, 1, 0, '3', 11632.90, 3877.63, NULL, NULL, NULL),
(14, 8, NULL, NULL, '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '*MIXED* Populated Green Circuit Boards', '48112763', '16.02.16', '20 x 20', '', 'Romania', '20', '350', '230', '1025', 13962, 8, 8, '', 0, '', 0, 0, '', '', '', '14_color_Tulip_494_ATA.jpg', 95.00, 8931.11, 0.82, 1, 1, 0, '4', 6531.11, 1632.78, NULL, NULL, NULL),
(15, 9, NULL, NULL, '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '*MIXED* Various IC Chip / Component Boards ', '24530222', 'Various', 'Any', '', 'Romania', '20', '330', '230', '1025', 13610, 5, 8, '', 0, '', 0, 0, '', '', '', '15_color_Lot-of-3-pounds-scrap-ceramic-eprom-IC-_1.jpg', 80.00, 9168.00, 4.29, 1, 0, 0, '1', 8588.00, 8588.00, NULL, NULL, NULL),
(16, 4, NULL, NULL, '*MIXED* Older Motherboards Pre2002 (No Metal)', '*MIXED* Older Motherboards Pre2002 (No Metal)', '*MIXED* Older Motherboards Pre2002 (No Metal)', '*MIXED* Older Motherboards Pre2002 (No Metal)', '20231856', '16.06.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 12938, 1, 8, '', 0, '', 0, 0, '', '', '', '16_color_mb_chips_386.jpg', 100.00, 47736.95, 3.68, 1, 1, 0, '6', 44136.95, 7356.16, NULL, NULL, NULL),
(17, 6, NULL, NULL, '*MIXED* Socket Card (WITH Metal / HEAT SYNC)', '*MIXED* Socket Card (WITH Metal / HEAT SYNC)', '*MIXED* Socket Card (WITH Metal / HEAT SYNC)', '*MIXED* Socket Card (WITH Metal / HEAT SYNC)', '96668190', 'Various', 'Any', '', 'Romania', '20', '350', '230', '1025', 11856, 4, 8, '', 0, '', 0, 0, '', '', '', '17_color_12_color_GeForce 8500GT 256MB PCI-E x16 Video Card w DVI.gif', 70.00, 17718.18, 2.65, 1, 1, 0, '3', 15918.18, 5306.06, NULL, NULL, NULL),
(18, 6, NULL, NULL, 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', 'Gold Plated Pins', '44601141', 'Metal', 'Various', '', 'Romania', '20', '120', '0', '1025', 11094, 5, 8, '', 0, '', 0, 0, '', '', '', '18_color_Gold-Plated-Pins-150x150.jpg', 85.00, 9192.95, 4.53, 1, 0, 0, '1', 9052.95, 9052.95, NULL, NULL, NULL),
(19, 6, NULL, NULL, 'Mining Sands', 'Mining Sands', 'Mining Sands', 'Mining Sands', '57807440', 'Sand', '100', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '19_color_bedding_sand.jpg', 80.00, 0.00, 0.00, 1, 0, 0, '', NULL, NULL, NULL, NULL, NULL),
(20, 8, NULL, NULL, 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', 'Bags / Scrap / Garbage', '54974552', 'Garbage', 'any', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '20_color_extra-large-garden-waste-bag.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '0', 0.00, 0.00, NULL, NULL, NULL),
(24, 8, NULL, NULL, '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '*MIXED* Sat Receiver / Radio Boards (NO METAL FRAMES)', '11723200', 'Various', '22 x 22', '', 'Romania', '20', '350', '220', '1025', 10774, 1, 8, '', 0, '', 0, 0, '', '', '', '24_color_52156_S.png', 100.00, 7361.84, 0.93, 1, 1, 0, '3', 5591.84, 1863.94, NULL, NULL, NULL),
(25, 6, NULL, NULL, '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '*MIXED* HDD/CD/DVD/Other Circuit Boards', '36603416', 'Various', 'Any', '', 'Romania', '20', '350', '220', '1025', 10422, 5, 8, '', 0, '', 0, 0, '', '', '', '25_color_download.jpg', 100.00, 14028.82, 1.11, 1, 1, 0, '5', 11078.82, 2215.76, NULL, NULL, NULL),
(26, 6, NULL, NULL, '*MIXED* Computer Mother Boards 2002+(Newer With Metal)', '*MIXED* Computer Mother Boards 2002+(Newer With Metal)', '*MIXED* Computer Mother Boards 2002+(Newer With Metal)', '*MIXED* Computer Mother Boards 2002+(Newer With Metal)', '98500875', '16.02.16', 'Any', '', 'Romania', '20', '350', '230', '1025', 9660, 1, 8, '', 0, '', 0, 0, '', '', '', '26_color_8885.jpeg', 85.00, 13490.41, 1.95, 1, 1, 0, '3', 11690.41, 3896.80, NULL, NULL, NULL),
(28, 5, NULL, NULL, 'Cellphone Board', 'Cellphone Board', 'Cellphone Board', 'Cellphone Board', '18096754', '20-01-36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 8578, 1, 8, '', 0, '', 0, 0, '', '', '', '28_color_downloadcell.jpg', 100.00, 40527.22, 9.84, 1, 1, 0, '2', 39347.22, 19673.61, NULL, NULL, NULL),
(29, 5, NULL, NULL, 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', 'Tantilum capacitors', '89718435', 'Ta-Ag-Au-Pt-Pd', 'standard, yellow', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '29_color_tantilum.jpg', 100.00, 134041800.00, 268083600.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(30, 5, NULL, NULL, 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', 'Palladium Monolythic Capacitor', '25962756', 'MLCCS', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '30_color_12_inv_$_1.JPG', 80.00, 40193256.00, 80386512.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(32, 7, NULL, NULL, 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', 'Silver Crystal Oscillator', '67979855', 'OSC001', 'small', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '32_color_oscilators.jpg', 80.00, 11388720.00, 22680000.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(33, 5, NULL, NULL, 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', 'Depopulated Circuit Board (NO GOLD)', '44023031', '16.02.16', 'varies', '', 'Romania', '', '', '', '', 0, 8, 8, '', 0, '', 0, 0, '', '', '', '33_color_depop-boards.jpg', 100.00, 194880.00, 389760.00, 1, 1, 0, '', 2336.00, 2336.00, NULL, NULL, NULL),
(34, 5, NULL, NULL, 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', 'Depopulated Circuit Board (WITH GOLD)', '12143179', '20-01-36', 'Varios', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '34_color_depop-withgld.jpg', 60.00, 1026657.00, 2053314.00, 1, 0, 0, '', NULL, NULL, NULL, NULL, NULL),
(35, 5, NULL, NULL, 'Copper Powder', 'Copper Powder', 'Copper Powder', 'Copper Powder', '68098872', '12-01-03', 'Various', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '35_color_1_invdetails_20170314_165732_625.jpg', 100.00, 487200.00, 974400.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(36, 7, NULL, NULL, 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', 'Plastic / Metal Mixed Parts', '22742448', 'PMMP', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '36_color_14_inv_1490604347436973696850.jpg', 80.00, 273662.41, 547324.81, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(37, 5, NULL, NULL, 'Processor Caps', 'Processor Caps', 'Processor Caps', 'Processor Caps', '80059384', '12.04.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 7496, 5, 8, '', 0, '', 0, 0, '', '', '', '37_color_2_inv_1490602912483463053580.jpg', 100.00, 9074.40, 4.54, 1, 0, 1, '1', 9074.40, 9074.40, NULL, NULL, NULL),
(38, 7, NULL, NULL, 'Metal Parts', 'Metal Parts', 'Metal Parts', 'Metal Parts', '56972340', 'FV01', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '38_color_4_inv_1490603057186-248235756.jpg', 50.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(39, 7, NULL, NULL, 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', 'Plastic Parts (NON METALIC)', '49694165', 'Plastic', 'All', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '39_color_9_inv_1490603590533-621125783.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(40, 8, NULL, NULL, 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', 'FiberGlass Resin', '71588988', '19-12-04', 'Particles', '', 'Romania', '', '', '', '', 0, 5, 8, '', 0, '', 0, 0, '', '', '', '40_color_Aluminium Powder.jpg', 100.00, 0.00, 0.00, 1, 0, 1, '', NULL, NULL, NULL, NULL, NULL),
(41, 11, NULL, NULL, 'Deplated CPU', 'Deplated CPU', 'Deplated CPU', 'Deplated CPU', '81440658', '16-02-16', 'Standard', '', 'Romania', '20', '350', '230', '1025', 7496, 7, 8, '', 0, '', 0, 0, '', '', '', '41_color_CPU-Deplated.jpg', 70.00, 11192.80, 5.30, 1, 0, 0, '1', 10592.80, 10592.80, NULL, NULL, NULL),
(42, 8, NULL, NULL, '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '*MIXED* Old Televisions / receivers, vcr, (NO METAL FRAMES)', '84408340', '16.02.16', 'All', '', 'Romania', '20', '350', '220', '1025', 7144, 8, 8, '', 0, '', 0, 0, '', '', '', '42_color_tv-nometal.jpeg', 70.00, 11441.44, 1.14, 1, 1, 0, '4', 9081.44, 2270.36, NULL, NULL, NULL),
(43, 1, NULL, NULL, 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', 'Karat Gold Alloy', '64694702', 'GLD', 'Various', '', 'Romania', '', '', '', '1025', 6792, 5, 8, '', 0, '', 0, 0, '', '', '', '43_color_WhatsApp Image 2018-07-09 at 18.06.33.jpeg', 100.00, 31437.68, 15718.84, 1, 0, 1, '0.001', 31437.68, 31437684.00, NULL, NULL, NULL),
(44, 8, NULL, NULL, '*MIXED* Low Grade (1 to 2 Layer / Spotted Cu) Circuit Board Frames', '*MIXED* Low Grade (1 to 2 Layer / Spotted Cu) Circuit Board Frames', '*MIXED* Low Grade (1 to 2 Layer / Spotted Cu) Circuit Board Frames', '*MIXED* Low Grade (1 to 2 Layer / Spotted Cu) Circuit Board Frames', '87486622', '20.01.39', 'Various', '', 'Romania', '0', '350', '220', '1025', 6472, 6, 8, '', 0, '', 0, 0, '', '', '', '44_color_il_340x270.1158086908_cnw5.jpg', 100.00, 5253.60, 0.24, 1, 1, 0, '5', 2403.60, 480.72, NULL, NULL, NULL),
(47, 6, NULL, NULL, 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', 'Printer/Fax/Scanner - Radio/CD Controller Cards', '20236763', '20.01.36', 'Varies', '', 'Romania', '20', '350', '220', '1025', 6472, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '47_color_CE664-69001__17186.1509986857.700.700.jpg', 100.00, 5275.67, 0.23, 1, 0, 0, '5', 2325.67, 465.13, NULL, NULL, NULL),
(48, 3, NULL, NULL, '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', '*MIXED* Server Motherboards (multi processor)', '11219740', '20.01.36', 'Varies', '', 'Romania', '20', '366', '230', '1025', 5710, 1, 3, '', 0, '', NULL, 0, NULL, '', NULL, '48_color_1IBM.jpg', 100.00, 27247.62, 3.10, 1, 1, 0, '4', 24783.62, 6195.91, NULL, NULL, NULL),
(49, 8, NULL, NULL, 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', 'Aluminum Heat Sink', '45858111', '16 01 18', 'All', '', 'Romania', '0', '0', '0', '0', 0, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '49_color_1hear.png', 25.00, 0.00, 0.00, 1, NULL, 1, '', NULL, NULL, NULL, NULL, NULL),
(52, 1, NULL, NULL, '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '#1 Concentrates (BLUE BIN)', '23152210', '16.02.16', 'Granuale', '', 'Romania', '0', '0', '0', '1025', 4628, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '52_color_1s1.jpg', 100.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL),
(53, 12, NULL, NULL, 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', 'Concentrated Precious Metals Cu,Au,Ag,Pt,Pd (GREEN BAG)', '56422163', '11.02.15', 'Bag', '', 'Romania', '0', '0', '0', '1025', 4628, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '53_color_1s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL),
(54, 13, NULL, NULL, 'Mid Grade Cu,Au,Ag,Pt,Pd Metals (YELLOW MARK)', 'Mid Grade Cu,Au,Ag,Pt,Pd Metals (YELLOW MARK)', 'Mid Grade Cu,Au,Ag,Pt,Pd Metals (YELLOW MARK)', 'Mid Grade Cu,Au,Ag,Pt,Pd Metals (YELLOW MARK)', '50272186', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 4628, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '54_color_2s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL),
(55, 14, NULL, NULL, 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', 'Low Grades Cu Only (RED BAG)', '84266198', '11.21.25', 'Granular', '', 'Romania', '0', '0', '0', '1025', 4628, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '55_color_3s.jpg', 100.00, 0.00, 0.00, 1, NULL, 1, '1', 0.00, 0.00, NULL, NULL, NULL),
(56, 5, NULL, NULL, 'Back Plane Connector Card', 'Back Plane Connector Card', 'Back Plane Connector Card', 'Back Plane Connector Card', '10006298', '20.01.36', 'Varies', '', 'Romania', '20', '350', '230', '1025', 4628, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '56_color_backplane.jpg', 100.00, 24703.80, 3.82, 1, 1, 0, '3', 22903.80, 7634.60, NULL, NULL, NULL),
(58, 7, NULL, NULL, '*MIXED* Mid Grade Circuit Board Frames (2 and 3 Layer) No Au', '*MIXED* Mid Grade Circuit Board Frames (2 and 3 Layer) No Au', '*MIXED* Mid Grade Circuit Board Frames (2 and 3 Layer) No Au', '*MIXED* Mid Grade Circuit Board Frames (2 and 3 Layer) No Au', '41357634', '20.01.39', 'Varies', '', 'Romania', '20', '350', '230', '1025', 3546, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '58_color_WhatsApp Image 2018-07-02 at 12.38.51.jpeg', 100.00, 11701.20, 0.29, 1, 1, 0, '10', 5701.20, 570.12, NULL, NULL, NULL),
(60, 7, NULL, NULL, 'High Grade Circuit Board Frames (2,3 and Multi Layer Cu With Au)', 'High Grade Circuit Board Frames (2,3 and Multi Layer Cu With Au)', 'High Grade Circuit Board Frames (2,3 and Multi Layer Cu With Au)', 'High Grade Circuit Board Frames (2,3 and Multi Layer Cu With Au)', '15515206', '20.01.39', 'Varies', '', 'Romania', '0', '350', '230', '1025', 3546, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '60_color_WhatsApp Image 2018-07-02 at 12.45.45.jpeg', 91.00, 8055.54, 0.38, 1, 1, 0, '6', 4575.54, 762.59, NULL, NULL, NULL),
(61, 6, NULL, NULL, '*MIXED* HighGrade MultiLayer Cu with Au Circuit Board Frames', '*MIXED* HighGrade MultiLayer Cu with Au Circuit Board Frames', '*MIXED* HighGrade MultiLayer Cu with Au Circuit Board Frames', '*MIXED* HighGrade MultiLayer Cu with Au Circuit Board Frames', '14034347', '16.02.16', 'Varies', '', 'Romania', '0', '200', '200', '1100', 3226, 6, 8, '', 0, '', NULL, 0, NULL, '', NULL, '61_color_IMG_5754.JPG', 85.00, 331.71, 0.35, 1, 0, 0, '.300', 211.71, 705.69, NULL, NULL, NULL),
(62, 8, NULL, NULL, 'Ballast Housing with Controller Boards', 'Ballast Housing with Controller Boards', 'Ballast Housing with Controller Boards', 'Ballast Housing with Controller Boards', '21669203', '20.03.29', 'Long', '', 'Romania', '50', '100', '100', '1025', 3226, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '62_color_62_color_IMG_5753.JPG', 100.00, 2679.34, 0.32, 1, 0, 0, '3', 1929.34, 643.11, NULL, NULL, NULL),
(63, 8, NULL, NULL, 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', 'Power Supply (With Cable)', '87233073', '20.03.18', 'Small', '', 'Romania', '0', '250', '0', '1025', 3226, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '63_color_IMG_5746.JPG', 100.00, 1146.24, 0.45, 1, 0, 0, '1', 896.24, 896.24, NULL, NULL, NULL),
(64, 8, NULL, NULL, 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', 'AC Power Supply (Without Cable)', '42573819', '20.01.08', 'Varies', '', 'Romania', '0', '200', '0', '1100', 3226, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '64_color_IMG_5745.JPG', 100.00, 623.28, 0.52, 1, 0, 0, '0.5', 523.28, 1046.56, NULL, NULL, NULL),
(65, 7, NULL, NULL, 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', 'CD/  DVD / Floppy Drives', '78737460', '20.06.29', 'Varies', '', 'Romania', '350', '320', '230', '1150', 3226, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '65_color_IMG_5749.JPG', 95.00, 1606.91, 0.35, 1, 0, 0, '1', 706.91, 706.91, NULL, NULL, NULL),
(68, 8, NULL, NULL, 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', 'Power Supply Unit (Whole, In Case)', '75151741', '20.02.29', 'Varies', '', 'Romania', '50', '150', '200', '1025', 2874, 5, 8, '', 0, '', NULL, 0, NULL, '', NULL, '68_color_6b7450e8-1e6f-4a34-bc37-0f6cc3215f77_1.b198783e314efffd7b67d2397057451f.jpeg', 100.00, 1162.02, 0.38, 1, 0, 0, '1', 762.01, 762.01, NULL, NULL, NULL),
(69, 7, NULL, NULL, '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '*MIXED* Class C Boards TV, RADIO, AUDIO/VIDEO Green / Brown', '92893655', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 2842, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '69_color_IMG_5758.JPG', 60.00, 25269.54, 0.96, 1, 1, 0, '10', 19269.54, 1926.95, NULL, NULL, NULL),
(71, 5, NULL, NULL, 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', 'Crumble / Pins', '39434181', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1100', 1760, 7, 8, '', 0, '', NULL, 0, NULL, '', NULL, '71_color_WhatsApp Image 2018-07-04 at 15.43.40(2).jpeg', 80.00, 0.00, 0.00, 1, NULL, 0, '1', 0.00, 0.00, NULL, NULL, NULL),
(76, 8, NULL, NULL, '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '*MIXED* TV Boards Full Of Metal', '93707883', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1760, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '76_color_tv-metal.jpeg', 95.00, 2110.33, 0.23, 1, 1, 0, '2', 910.33, 455.17, NULL, NULL, NULL),
(77, 7, NULL, NULL, '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '*MIXED* Heavy Electronic Boards', '61845404', '16.02.16', 'Varies', '', 'Romania', '0', '350', '230', '1025', 1728, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '77_color_heavy.jpeg', 95.00, 4086.24, 0.73, 1, 1, 0, '2', 2926.24, 1463.12, NULL, NULL, NULL),
(78, 7, NULL, NULL, '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', '*MIXED* High Grade Circuit Boards (No Components)', '21610908', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1376, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '78_color_coppercopper.jpeg', 100.00, 3629.76, 0.61, 1, 1, 0, '2', 2429.76, 1214.88, NULL, NULL, NULL),
(79, 5, NULL, NULL, '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '*MIXED* Telephone/Router/Communication Boards', '22381516', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1376, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '79_color_sat-routers.jpeg', 100.00, 11038.03, 0.80, 1, 1, 0, '5', 8038.03, 1607.61, NULL, NULL, NULL),
(80, 6, NULL, NULL, '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '*mixed* Older Model Satalite Receivers', '88743108', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 1024, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '80_color_images.jpg', 95.00, 6304.61, 1.28, 1, 1, 0, '2', 5104.61, 2552.31, NULL, NULL, NULL),
(81, 8, NULL, NULL, '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '*MIXED* Rejects - Boards Missing Components,Pins, Or Contaminated', '24329725', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 672, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '81_color_REJECT.jpeg', 80.00, 1197.30, 0.30, 1, NULL, 0, '1', 597.30, 597.30, NULL, NULL, NULL),
(82, 5, NULL, NULL, 'Laptop Boards', 'Laptop Boards', 'Laptop Boards', 'Laptop Boards', '32668569', '16.02.16', 'Varies', '', 'Romania', '20', '350', '230', '1025', 352, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '82_color_depositphotos_10483830-stock-photo-laptop-motherboards-composition.jpg', 95.00, 27266.62, 2.43, 1, 1, 0, '5', 24266.62, 4853.32, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `products_dataset281218`
--

CREATE TABLE `products_dataset281218` (
  `id` int(11) NOT NULL,
  `categoryid` int(11) DEFAULT NULL,
  `dataset` varchar(255) NOT NULL,
  `datasetid` varchar(500) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `arname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) DEFAULT NULL,
  `aralias` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `substance` varchar(100) DEFAULT NULL,
  `size` varchar(100) DEFAULT NULL,
  `sheets` varchar(100) DEFAULT NULL,
  `origin` varchar(100) DEFAULT NULL,
  `unit_weight` varchar(100) DEFAULT NULL,
  `unit_base` varchar(100) DEFAULT NULL,
  `unit_pack` varchar(100) DEFAULT NULL,
  `unit_pallet` varchar(100) DEFAULT NULL,
  `pallet_height` int(11) DEFAULT NULL,
  `brandid` int(11) DEFAULT NULL,
  `manufacturerid` int(11) DEFAULT NULL,
  `packing` varchar(100) DEFAULT NULL,
  `quantity` int(11) DEFAULT NULL,
  `quality` varchar(100) DEFAULT NULL,
  `leadtime` int(11) DEFAULT NULL,
  `reorder` int(11) DEFAULT NULL,
  `sbarcodeimage` varchar(255) DEFAULT NULL,
  `palletecode` varchar(255) DEFAULT NULL,
  `palletecodeimage` varchar(255) DEFAULT NULL,
  `productcolorimage` varchar(255) DEFAULT NULL,
  `excepectedrate` float(13,2) DEFAULT NULL,
  `excepectedrevenue` float(13,2) DEFAULT NULL,
  `offerprice` float(13,2) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `pricestatus` int(11) DEFAULT NULL,
  `saleitem` int(11) DEFAULT NULL,
  `minimum_required` varchar(255) DEFAULT NULL,
  `netexcepectedrevenue` float(13,2) DEFAULT NULL,
  `netperton` float(13,2) DEFAULT NULL,
  `totalquantity` float(13,2) DEFAULT NULL,
  `used` float(13,2) DEFAULT NULL,
  `balance` float(13,2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `products_dataset281218`
--

INSERT INTO `products_dataset281218` (`id`, `categoryid`, `dataset`, `datasetid`, `name`, `arname`, `alias`, `aralias`, `code`, `substance`, `size`, `sheets`, `origin`, `unit_weight`, `unit_base`, `unit_pack`, `unit_pallet`, `pallet_height`, `brandid`, `manufacturerid`, `packing`, `quantity`, `quality`, `leadtime`, `reorder`, `sbarcodeimage`, `palletecode`, `palletecodeimage`, `productcolorimage`, `excepectedrate`, `excepectedrevenue`, `offerprice`, `status`, `pricestatus`, `saleitem`, `minimum_required`, `netexcepectedrevenue`, `netperton`, `totalquantity`, `used`, `balance`) VALUES
(84, 5, 'MotherBoards', 'ICN4797712617434078908', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', 'High_Grade_1979_1995', '26674997', '16.02.16', 'Varies', '', 'Romania', '120', '350', '425', '1025', 10890, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '84_color_Sep23-05.jpg', 80.00, 34376.34, 2.99, 1, 1, 0, '5', 29901.34, 5980.27, NULL, NULL, NULL),
(85, 6, 'MotherBoards', 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', 'Mid_Grade_1996_2003', '50413699', '16.06.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 10538, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '85_color_t810-intel-socket-370-mainboard-n-pentium-3-1ghz-processor-110913-tailk-1309-11-tailk@6.jpg', 80.00, 27618.27, 2.48, 1, 1, 0, '5', 24818.27, 4963.65, NULL, NULL, NULL),
(86, 7, 'MotherBoards', 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', 'Low_Grade_2004_Latest', '56805949', '16.02.16', 'Varies', '', 'Romania', '20', '350', '190', '1025', 10186, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '86_color_25.jpg', 80.00, 14642.80, 1.18, 1, 1, 0, '5', 11842.80, 2368.56, NULL, NULL, NULL),
(87, 4, 'Laptop_Boards', 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', 'HighGrade_Pre2002_and_Military', '87315380', '16.02.16', 'Varies', '', 'Romania', '20', '300', '150', '1025', 9834, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '87_color_8.jpeg', 100.00, 236415.98, 5.14, 1, 1, 0, '22', 226075.98, 10276.18, NULL, NULL, NULL),
(88, 5, 'Laptop_Boards', 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', 'MidGrade_Pentium_AMD', '56371969', '16.02.16', 'Varies', '', 'Romania', '20', '300', '180', '1025', 8752, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '88_color_5.jpg', 99.00, 372028.22, 8.21, 1, NULL, 0, '22', 361028.22, 16410.37, NULL, NULL, NULL),
(89, 6, 'Laptop_Boards', 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', 'LowGrade_2014_and_Netbooks', '98460551', '16.06.16', 'Varies', '', 'Romania', '20', '300', '100', '1025', 7670, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '89_color_18.jpg', 99.00, 137922.97, 2.92, 1, NULL, 0, '22', 128682.97, 5849.23, NULL, NULL, NULL),
(90, 4, 'Ram', 'ICN9055675874563173188', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '68574154', '16.02.16', 'varies', '', 'Romania', '10', '430', '130', '1025', 6588, 3, 8, '', 0, '', NULL, 0, NULL, '', NULL, '90_color_4.jpg', 99.00, 25854.31, 12.64, 1, NULL, 0, '1', 25284.31, 25284.31, NULL, NULL, NULL),
(91, 3, 'Ram', 'ICN9055675874563173188', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '70812813', '16.02.16', 'Varies', '', 'Romania', '10', '320', '150', '1025', 6236, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '91_color_7.jpg', 99.00, 41407.29, 20.46, 1, NULL, 0, '1', 40927.29, 40927.29, NULL, NULL, NULL),
(92, 2, 'Ram', 'ICN9055675874563173188', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '77830672', '16.05.16', 'Varies', '', 'Romania', '20', '500', '150', '1025', 5884, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '92_color_r9.jpg', 99.00, 74076.10, 36.70, 1, 1, 0, '1', 73406.10, 73406.10, NULL, NULL, NULL),
(93, 5, 'Extension_Cards', 'ICN1365791270425866824', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '21502823', '16.06.16', 'Varies', '', 'Romania', '20', '350', '180', '1025', 5532, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '93_color_16.jpg', 99.00, 17056.58, 2.57, 1, 0, 0, '3', 15406.58, 5135.53, NULL, NULL, NULL),
(94, 4, 'Extension_Cards', 'ICN1365791270425866824', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '69745458', '16.06.16', 'Varies', '', 'Romania', '12', '123', '123', '1025', 4770, 4, 8, '', 0, '', NULL, 0, NULL, '', NULL, '94_color_isbx.png', 99.00, 17324.12, 4.20, 1, 1, 0, '2', 16808.12, 8404.06, NULL, NULL, NULL),
(95, 5, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'High_Grade', 'High_Grade', 'High_Grade', 'High_Grade', '26140107', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 4008, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '95_color_edddb9b0-d5ea-4add-8e19-fab36d227f2b.jpeg', 99.00, 4318.29, 2.16, 1, 1, 0, '1', 4318.29, 4318.29, NULL, NULL, NULL),
(96, 7, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Low_Grade', 'Low_Grade', 'Low_Grade', 'Low_Grade', '14633310', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 3688, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '96_color_0025645c-2c8b-43a3-8f17-56b2637bd60d.jpeg', 99.00, 1040.21, 0.52, 1, 0, 0, '1', 1040.21, 1040.21, NULL, NULL, NULL),
(97, 6, 'Gold_Plated_Blanks', 'ICN1374427601567308279', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', 'Mid_Grade', '62563252', '16.02.16', 'Varies', '', 'Romania', '0', '0', '0', '1025', 3688, 8, 8, '', 0, '', NULL, 0, NULL, '', NULL, '97_color_d9c9de51-21df-457b-a6e1-5084c09c444f.jpeg', 99.00, 1693.46, 0.85, 1, 0, 0, '1', 1693.46, 1693.46, NULL, NULL, NULL),
(98, 5, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', 'HighGrade_Older_NoMetal', '39639155', '16.06.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 3368, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '98_color_CELL_PHONE_CIRCUIT_BOARD.jpg', 99.00, 14038.53, 6.76, 1, 1, 0, '1', 13518.53, 13518.53, NULL, NULL, NULL),
(99, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', 'HighGrade_Older_WithMetal  ', '74017864', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 2286, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '99_color_s-l300 (2).jpg', 99.00, 9665.66, 4.57, 1, 0, 0, '1', 9145.66, 9145.66, NULL, NULL, NULL),
(100, 6, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', 'SmartPhone_NoMetal', '45338706', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 1524, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '100_color_samsung-galaxy-ace-gt-s5830-motherboard-main-board-replacement-service-2066-p.jpg', 99.00, 5700.10, 2.59, 1, 1, 0, '1', 5180.10, 5180.10, NULL, NULL, NULL),
(101, 7, 'CellPhone_Boards', 'ICN5124169819646411186', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', 'SmartPhone_WithMetal', '58606662', '16.02.16', 'Varies', '', 'Romania', '20', '300', '200', '1025', 762, 1, 8, '', 0, '', NULL, 0, NULL, '', NULL, '101_color_images (3).jpg', 99.00, 2581.56, 1.03, 1, 0, 0, '1', 2061.56, 2061.56, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `product_hide`
--

CREATE TABLE `product_hide` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `product_hide`
--

INSERT INTO `product_hide` (`id`, `userid`, `supplierid`, `productid`, `status`) VALUES
(1, 1, 51, 5, 1),
(2, 1, 51, 3, 1),
(47, 1, 53, 58, 1),
(48, 1, 53, 7, 1),
(50, 1, 53, 1, 1),
(51, 1, 53, 24, 1),
(52, 1, 53, 61, 1),
(53, 1, 53, 70, 1),
(54, 1, 53, 69, 1),
(55, 1, 53, 66, 1),
(56, 1, 53, 47, 1),
(57, 1, 53, 33, 1),
(58, 1, 53, 12, 1),
(59, 1, 53, 56, 1),
(60, 1, 53, 14, 1),
(61, 1, 53, 57, 1),
(62, 1, 53, 2, 1),
(63, 1, 53, 4, 1),
(64, 1, 53, 5, 1),
(65, 1, 53, 9, 1),
(66, 1, 53, 10, 1),
(67, 1, 53, 11, 1),
(68, 1, 53, 62, 1),
(69, 1, 53, 63, 1),
(70, 1, 53, 64, 1),
(71, 1, 53, 65, 1),
(72, 1, 53, 67, 1),
(73, 1, 53, 68, 1),
(138, 1, 1, 24, 1),
(139, 1, 1, 3, 1),
(140, 1, 1, 7, 1),
(141, 1, 1, 13, 1),
(142, 1, 1, 16, 1),
(143, 1, 1, 26, 1),
(144, 1, 1, 1, 1),
(145, 1, 1, 2, 1),
(146, 1, 1, 4, 1),
(147, 1, 1, 5, 1),
(148, 1, 1, 9, 1),
(149, 1, 1, 10, 1),
(150, 1, 1, 11, 1),
(151, 1, 1, 57, 1),
(152, 1, 1, 12, 1),
(153, 1, 61, 362, 1),
(154, 1, 61, 369, 1),
(155, 10, 0, 542, 1),
(156, 10, 0, 512, 1),
(157, 10, 0, 735, 1),
(158, 10, 0, 723, 1),
(159, 10, 0, 747, 1),
(160, 10, 0, 541, 1),
(161, 10, 0, 540, 1),
(162, 10, 0, 533, 1),
(163, 10, 0, 532, 1),
(164, 10, 0, 531, 1),
(165, 10, 0, 530, 1),
(166, 10, 0, 509, 1),
(167, 10, 0, 507, 1),
(168, 10, 0, 506, 1),
(169, 10, 0, 504, 1),
(170, 10, 0, 508, 1),
(171, 10, 0, 503, 1),
(172, 10, 0, 502, 1),
(173, 10, 0, 492, 1),
(174, 10, 0, 440, 1),
(175, 10, 0, 480, 1),
(176, 10, 0, 490, 1),
(177, 10, 0, 498, 1),
(178, 10, 0, 505, 1),
(179, 10, 0, 497, 1),
(184, 10, 0, 496, 1),
(185, 10, 0, 495, 1),
(186, 10, 0, 494, 1),
(187, 10, 0, 493, 1),
(188, 10, 0, 491, 1),
(189, 10, 0, 489, 1),
(190, 10, 0, 488, 1),
(191, 10, 0, 487, 1),
(192, 10, 0, 486, 1),
(193, 10, 0, 485, 1),
(194, 10, 0, 484, 1),
(195, 10, 0, 483, 1),
(196, 10, 0, 482, 1),
(197, 10, 0, 481, 1),
(198, 10, 0, 479, 1),
(199, 10, 0, 478, 1),
(200, 10, 0, 477, 1),
(201, 10, 0, 476, 1),
(202, 10, 0, 475, 1),
(203, 10, 0, 474, 1),
(204, 10, 0, 473, 1),
(205, 10, 0, 471, 1),
(206, 10, 0, 467, 1),
(207, 10, 0, 466, 1),
(208, 10, 0, 460, 1),
(209, 10, 0, 458, 1),
(227, 1, 129, 951, 1),
(228, 1, 129, 952, 1),
(229, 1, 129, 910, 1),
(230, 1, 129, 923, 1),
(231, 1, 129, 940, 1),
(232, 1, 129, 941, 1),
(233, 1, 129, 980, 1),
(234, 1, 129, 981, 1),
(235, 1, 129, 982, 1),
(236, 1, 129, 983, 1),
(237, 1, 129, 975, 1),
(238, 1, 129, 972, 1),
(239, 1, 129, 971, 1),
(240, 1, 129, 970, 1),
(241, 1, 129, 969, 1),
(242, 1, 129, 968, 1),
(243, 1, 129, 1017, 1),
(244, 1, 129, 1016, 1),
(245, 1, 129, 993, 1),
(246, 1, 129, 959, 1),
(247, 1, 129, 958, 1),
(248, 1, 129, 957, 1),
(249, 1, 129, 956, 1),
(250, 1, 129, 986, 1),
(251, 1, 129, 984, 1),
(252, 1, 129, 985, 1),
(253, 1, 129, 985, 1),
(254, 1, 129, 964, 1),
(255, 1, 129, 965, 1);

-- --------------------------------------------------------

--
-- Table structure for table `product_hide290822`
--

CREATE TABLE `product_hide290822` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `product_hide290822`
--

INSERT INTO `product_hide290822` (`id`, `userid`, `supplierid`, `productid`, `status`) VALUES
(1, 1, 51, 5, 1),
(2, 1, 51, 3, 1),
(47, 1, 53, 58, 1),
(48, 1, 53, 7, 1),
(50, 1, 53, 1, 1),
(51, 1, 53, 24, 1),
(52, 1, 53, 61, 1),
(53, 1, 53, 70, 1),
(54, 1, 53, 69, 1),
(55, 1, 53, 66, 1),
(56, 1, 53, 47, 1),
(57, 1, 53, 33, 1),
(58, 1, 53, 12, 1),
(59, 1, 53, 56, 1),
(60, 1, 53, 14, 1),
(61, 1, 53, 57, 1),
(62, 1, 53, 2, 1),
(63, 1, 53, 4, 1),
(64, 1, 53, 5, 1),
(65, 1, 53, 9, 1),
(66, 1, 53, 10, 1),
(67, 1, 53, 11, 1),
(68, 1, 53, 62, 1),
(69, 1, 53, 63, 1),
(70, 1, 53, 64, 1),
(71, 1, 53, 65, 1),
(72, 1, 53, 67, 1),
(73, 1, 53, 68, 1),
(138, 1, 1, 24, 1),
(139, 1, 1, 3, 1),
(140, 1, 1, 7, 1),
(141, 1, 1, 13, 1),
(142, 1, 1, 16, 1),
(143, 1, 1, 26, 1),
(144, 1, 1, 1, 1),
(145, 1, 1, 2, 1),
(146, 1, 1, 4, 1),
(147, 1, 1, 5, 1),
(148, 1, 1, 9, 1),
(149, 1, 1, 10, 1),
(150, 1, 1, 11, 1),
(151, 1, 1, 57, 1),
(152, 1, 1, 12, 1),
(153, 1, 61, 362, 1),
(154, 1, 61, 369, 1),
(155, 10, 0, 542, 1),
(156, 10, 0, 512, 1),
(157, 10, 0, 735, 1),
(158, 10, 0, 723, 1),
(159, 10, 0, 747, 1),
(160, 10, 0, 541, 1),
(161, 10, 0, 540, 1),
(162, 10, 0, 533, 1),
(163, 10, 0, 532, 1),
(164, 10, 0, 531, 1),
(165, 10, 0, 530, 1),
(166, 10, 0, 509, 1),
(167, 10, 0, 507, 1),
(168, 10, 0, 506, 1),
(169, 10, 0, 504, 1),
(170, 10, 0, 508, 1),
(171, 10, 0, 503, 1),
(172, 10, 0, 502, 1),
(173, 10, 0, 492, 1),
(174, 10, 0, 440, 1),
(175, 10, 0, 480, 1),
(176, 10, 0, 490, 1),
(177, 10, 0, 498, 1),
(178, 10, 0, 505, 1),
(179, 10, 0, 497, 1),
(184, 10, 0, 496, 1),
(185, 10, 0, 495, 1),
(186, 10, 0, 494, 1),
(187, 10, 0, 493, 1),
(188, 10, 0, 491, 1),
(189, 10, 0, 489, 1),
(190, 10, 0, 488, 1),
(191, 10, 0, 487, 1),
(192, 10, 0, 486, 1),
(193, 10, 0, 485, 1),
(194, 10, 0, 484, 1),
(195, 10, 0, 483, 1),
(196, 10, 0, 482, 1),
(197, 10, 0, 481, 1),
(198, 10, 0, 479, 1),
(199, 10, 0, 478, 1),
(200, 10, 0, 477, 1),
(201, 10, 0, 476, 1),
(202, 10, 0, 475, 1),
(203, 10, 0, 474, 1),
(204, 10, 0, 473, 1),
(205, 10, 0, 471, 1),
(206, 10, 0, 467, 1),
(207, 10, 0, 466, 1),
(208, 10, 0, 460, 1),
(209, 10, 0, 458, 1),
(214, 1, 136, 594, 1),
(215, 1, 136, 594, 1),
(216, 1, 137, 942, 1),
(217, 1, 137, 942, 1),
(222, 1, 129, 942, 1),
(223, 1, 129, 943, 1),
(224, 1, 129, 944, 1),
(225, 1, 129, 973, 1),
(226, 1, 129, 974, 1),
(227, 1, 129, 951, 1),
(228, 1, 129, 952, 1),
(229, 1, 129, 910, 1),
(230, 1, 129, 923, 1),
(231, 1, 129, 940, 1),
(232, 1, 129, 941, 1),
(233, 1, 129, 980, 1),
(234, 1, 129, 981, 1),
(235, 1, 129, 982, 1),
(236, 1, 129, 983, 1),
(237, 1, 129, 975, 1),
(238, 1, 129, 972, 1),
(239, 1, 129, 971, 1),
(240, 1, 129, 970, 1),
(241, 1, 129, 969, 1),
(242, 1, 129, 968, 1),
(243, 1, 129, 1017, 1),
(244, 1, 129, 1016, 1),
(245, 1, 129, 993, 1),
(246, 1, 129, 959, 1),
(247, 1, 129, 958, 1),
(248, 1, 129, 957, 1),
(249, 1, 129, 956, 1),
(250, 1, 129, 986, 1),
(251, 1, 129, 984, 1),
(252, 1, 129, 985, 1),
(253, 1, 129, 985, 1),
(254, 1, 129, 964, 1),
(255, 1, 129, 965, 1);

-- --------------------------------------------------------

--
-- Table structure for table `profit_split`
--

CREATE TABLE `profit_split` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `profit` float(13,2) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `profit_split`
--

INSERT INTO `profit_split` (`id`, `userid`, `profit`, `status`) VALUES
(1, 1, 10.00, 1);

-- --------------------------------------------------------

--
-- Table structure for table `punchlist`
--

CREATE TABLE `punchlist` (
  `punchitems` varchar(50) NOT NULL DEFAULT '',
  `color` varchar(7) NOT NULL DEFAULT '',
  `in_or_out` tinyint(1) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `punchlist`
--

INSERT INTO `punchlist` (`punchitems`, `color`, `in_or_out`) VALUES
('in', '#009900', 1),
('out', '#FF0000', 0),
('break', '#FF9900', 0),
('lunch', '#0000FF', 0);

-- --------------------------------------------------------

--
-- Table structure for table `quality`
--

CREATE TABLE `quality` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `quality`
--

INSERT INTO `quality` (`id`, `userid`, `name`, `status`) VALUES
(1, 1, 'Class A', 1),
(2, 1, 'Class B', 1),
(3, 1, 'Class C', 1),
(4, 1, 'Class M', 1);

-- --------------------------------------------------------

--
-- Table structure for table `quotedetail`
--

CREATE TABLE `quotedetail` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `categoryid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `sub` int(11) NOT NULL,
  `size` varchar(100) NOT NULL,
  `sheet` int(11) NOT NULL,
  `unit_pack` varchar(100) NOT NULL,
  `quantity` int(11) NOT NULL,
  `qmt` float NOT NULL,
  `qmtshipped` float(13,2) NOT NULL,
  `qmtremaining` float(13,2) NOT NULL,
  `remarks` varchar(255) NOT NULL,
  `supplierquoteno` int(11) NOT NULL,
  `priceriteriaid` int(11) NOT NULL,
  `unitprice` float(13,2) NOT NULL,
  `origin` varchar(100) NOT NULL,
  `currencyid` int(11) NOT NULL,
  `gross` float(13,2) NOT NULL,
  `insp_totalpallet` int(11) NOT NULL,
  `damagedreams` int(11) NOT NULL,
  `insp_remarks` varchar(255) NOT NULL,
  `usedpaletts` int(11) NOT NULL,
  `availablepallets` int(11) NOT NULL,
  `insp_containerno` varchar(255) NOT NULL,
  `insp_date` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `quotes`
--

CREATE TABLE `quotes` (
  `id` int(11) NOT NULL,
  `mainquoteid` int(11) NOT NULL,
  `quotetextid` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `supplierid` int(11) NOT NULL,
  `supcontactid` int(11) NOT NULL,
  `manufacturing` int(11) NOT NULL,
  `packing` int(11) NOT NULL,
  `quality` int(11) NOT NULL,
  `paymentterm` int(11) NOT NULL,
  `shippingmethod` int(11) NOT NULL,
  `shippingto` int(11) NOT NULL,
  `priceterm` int(11) NOT NULL,
  `noofshipmentlot` int(11) NOT NULL,
  `gapshippinglot` int(11) NOT NULL,
  `totalprice` float(13,2) NOT NULL,
  `quotevalue` float(13,2) NOT NULL,
  `quotefile` varchar(255) NOT NULL,
  `quotedate` date NOT NULL,
  `supplierquoteno` int(11) NOT NULL,
  `quoteaccepted` int(11) NOT NULL,
  `orderconfirmationid` int(11) NOT NULL,
  `confirmationdate` date NOT NULL,
  `agentid` int(11) NOT NULL,
  `estimatedshippingdate` date NOT NULL,
  `noofcontainers` int(11) NOT NULL,
  `validityofoc` date NOT NULL,
  `partialshipmentid` int(11) NOT NULL,
  `transshipmentid` int(11) NOT NULL,
  `lastshipmentdate` date NOT NULL,
  `managerapprovalneeded` int(11) NOT NULL,
  `managerapproved` int(11) NOT NULL,
  `totalgross` float(13,2) NOT NULL,
  `pinumber` varchar(100) NOT NULL,
  `pidate` date NOT NULL,
  `pipdf` varchar(255) NOT NULL,
  `originofgoodid` int(11) NOT NULL,
  `loadingportid` int(11) NOT NULL,
  `shippingterms` varchar(255) NOT NULL,
  `poneedadvance` int(11) NOT NULL,
  `advanceispaid` int(11) NOT NULL,
  `poadvancedetails` varchar(255) NOT NULL,
  `approvedpi` int(11) NOT NULL,
  `piaccepted` int(11) NOT NULL,
  `amountpaid` float(13,2) NOT NULL,
  `balanceamount` float(13,2) NOT NULL,
  `orderisship` int(11) NOT NULL,
  `shipmentlotno` varchar(100) NOT NULL,
  `expectedarrivaldate` date NOT NULL,
  `actualshipmentdate` date NOT NULL,
  `shipnoofcontainers` int(11) NOT NULL,
  `shippinglineid` int(11) NOT NULL,
  `shippingagentid` int(11) NOT NULL,
  `shiploadingportid` int(11) NOT NULL,
  `blno` varchar(100) NOT NULL,
  `shipmentevaluationid` int(11) NOT NULL,
  `shipdocument` varchar(255) NOT NULL,
  `shipapprovelneeded` int(11) NOT NULL,
  `shipapproved` int(11) NOT NULL,
  `rfqsent` int(11) NOT NULL,
  `ocsent` int(11) NOT NULL,
  `pisent` int(11) NOT NULL,
  `mediatorid` int(11) NOT NULL,
  `status` int(11) NOT NULL,
  `StopSendingEmailAlerts` int(11) NOT NULL,
  `ReminderSent` date NOT NULL,
  `currencyid` int(11) NOT NULL,
  `Bargainamount` varchar(255) NOT NULL,
  `ast_sdcr` int(11) NOT NULL,
  `shipmenttype` varchar(100) NOT NULL,
  `shipmentlot` int(11) NOT NULL,
  `Shipment1Date` date NOT NULL,
  `Shipment2Date` date NOT NULL,
  `Shipment3Date` date NOT NULL,
  `Shipment1received` int(11) NOT NULL,
  `Shipment2received` int(11) NOT NULL,
  `Shipment3received` int(11) NOT NULL,
  `ast_shipmentupdate` int(11) NOT NULL,
  `ast_shipment2rec` int(11) NOT NULL,
  `ast_shipment3rec` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `quoteterms`
--

CREATE TABLE `quoteterms` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `termsid` int(11) NOT NULL,
  `termsdetailid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `quotetext`
--

CREATE TABLE `quotetext` (
  `id` int(11) NOT NULL,
  `details` text NOT NULL,
  `regards` text NOT NULL,
  `email` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `rateselection`
--

CREATE TABLE `rateselection` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `saleleadsimage`
--

CREATE TABLE `saleleadsimage` (
  `id` int(11) NOT NULL,
  `adminid` int(11) NOT NULL,
  `inventoryid` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `image` varchar(255) NOT NULL,
  `dataset` varchar(255) NOT NULL,
  `totalprice` float(13,3) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `saleleadsimage`
--

INSERT INTO `saleleadsimage` (`id`, `adminid`, `inventoryid`, `supplierid`, `image`, `dataset`, `totalprice`, `sysdate`, `status`) VALUES
(1, 0, 0, 2, '', '', 0.000, '2019-02-21', 1),
(2, 0, 0, 2, '', '', 0.000, '2019-02-21', 1),
(3, 0, 0, 2, '', '', 0.000, '2019-02-21', 1),
(4, 0, 0, 2, '', '', 0.000, '2019-02-21', 1),
(5, 0, 0, 2, '', '', 0.000, '2019-02-21', 1),
(6, 0, 0, 3, '20190221041149_proc.jpeg', 'ICN1352050014989540777', 0.000, '2019-02-21', 1),
(7, 0, 0, 3, '20190221041149_processor.jpeg', 'ICN1352050014989540777', 0.000, '2019-02-21', 1),
(8, 0, 0, 3, '20190221041149_cellphone.jpeg', 'ICN5124169819646411186', 0.000, '2019-02-21', 1),
(9, 0, 0, 3, '20190221041149_ramimg.jpeg', 'ICN9055675874563173188', 0.000, '2019-02-21', 1),
(10, 0, 0, 3, '20190221041149_ramimg.jpeg', 'ICN9055675874563173188', 0.000, '2019-02-21', 1),
(11, 0, 0, 4, '20190224064542_1.jpg', 'ICN5262563530192074018', 0.000, '2019-02-24', 1),
(12, 0, 0, 4, '', 'ICN4797712617434078908', 0.000, '2019-02-24', 1),
(13, 0, 0, 4, '', 'ICN4797712617434078908', 0.000, '2019-02-24', 1),
(14, 0, 0, 4, '', 'ICN4797712617434078908', 0.000, '2019-02-24', 1),
(15, 0, 0, 4, '', 'ICN4797712617434078908', 0.000, '2019-02-24', 1),
(16, 0, 0, 5, '20190225075400_3.PNG', 'ICN4797712617434078908', 0.000, '2019-02-25', 1),
(17, 0, 0, 5, '', 'ICN4797712617434078908', 0.000, '2019-02-25', 1),
(18, 0, 0, 5, '', 'ICN4797712617434078908', 0.000, '2019-02-25', 1),
(19, 0, 0, 5, '', 'ICN4797712617434078908', 0.000, '2019-02-25', 1),
(20, 0, 0, 5, '', 'ICN4797712617434078908', 0.000, '2019-02-25', 1);

-- --------------------------------------------------------

--
-- Table structure for table `saleleadsimgdetail`
--

CREATE TABLE `saleleadsimgdetail` (
  `id` int(11) NOT NULL,
  `imageid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `dataset` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `score` float(13,3) NOT NULL,
  `percent` float(13,3) NOT NULL,
  `finalpercent` float(13,2) NOT NULL,
  `offerprice` float(13,3) NOT NULL,
  `total` float(13,3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `saleleadsmember`
--

CREATE TABLE `saleleadsmember` (
  `id` int(11) NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `packageid` int(11) NOT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `weightunit` varchar(255) NOT NULL,
  `agentid` varchar(255) NOT NULL,
  `agentname` varchar(255) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `saleleadsmember`
--

INSERT INTO `saleleadsmember` (`id`, `name`, `company`, `packageid`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `currencyid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `weightunit`, `agentid`, `agentname`, `sysdate`, `status`) VALUES
(1, 'Smart Webbers', 1, 1, '', '', '', '', '', '', NULL, '', NULL, '', '', 1, '', '', '', '', '', '', '', 'malikmasif@hotmail.com', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '2019-02-21', 1),
(2, 'Smart Webbers', 1, 1, '', '', '', '', '', '', NULL, '', NULL, '', '', 1, '', '', '', '', '', '', '', 'malikmasif@hotmail.com', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '2019-02-21', 1),
(3, 'Smart Webbers', 1, 1, 'EPA3341', '', 'Smartwebbers', '12-56537', 'Ayub Park', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@hotmail.com', '123456', 'malikmasif@hotmail.com', 'my.bannit.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kgs', '', '', '2019-02-21', 1),
(4, 'Pfane', 1, 1, '', '', '', '', '', '', NULL, '', NULL, '', '', 1, '', '', '', '', '', '', '', 'mine@pfane.com', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '2019-02-24', 1),
(5, 'Jerico Technologies', 1, 1, '', '', '', '', '', '', NULL, '', NULL, '', '', 1, '', '', '', '', '', '', '', 'dale@pfane.com', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', '', '2019-02-25', 1);

-- --------------------------------------------------------

--
-- Table structure for table `saleleads_products`
--

CREATE TABLE `saleleads_products` (
  `id` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `memberid` int(11) NOT NULL,
  `datasetid` varchar(500) NOT NULL,
  `offerprice` float(13,3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sendemails`
--

CREATE TABLE `sendemails` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `subject` varchar(500) DEFAULT NULL,
  `details` text DEFAULT NULL,
  `sysdate` datetime DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `sendemails`
--

INSERT INTO `sendemails` (`id`, `userid`, `subject`, `details`, `sysdate`, `status`) VALUES
(4, 1, 'Proforma Invoice Received', '<p>\r\n	Thank you for notifying Pfane of the proforma invoice in the amount of &#39;.$acceptamount.&#39; &#39;.$symbol.&#39;. It has been accepted and added to our accounting records.</p>\r\n', '2019-02-18 13:40:00', 1),
(5, 1, 'Supplier Account Login', '<p>\r\n	Pfane Scientific Is proud to launch its real time quotation system based on the assayed values of electronic components. Our system automatically updates our offer prices in real time every 5 minutes.</p>\r\n<p>\r\n	When logging into our system, you will have free access to: <br />\r\n	1. Real Time Market prices for precious and base metals, streaming to your Management Home Page. </p>\r\n<p>\r\n	2. The industries most accurate realtime pricing on numerous common components, group assayed, offering the best prices in the industy. </p>\r\n<p>\r\n	3. The ability to setup, send and fully track your orders with real time notifications each time your order moves within our system.</p>\r\n<p>\r\n	You are welcome to try our system without creating a contract for 2 weeks. If you have any questions or would like to be put in touch with a Pfane recycling specialist, please do not hesitate to contact one of the contacts listed on our website.</p>\r\n<p>\r\n	Your login details are as follows.</p>\r\n<p>\r\n	Login to your Pfane RealTime Recycling Manager here: <a href=\"https://viewpas.com/soft/suppliers/index.php\" target=\"_blank\">Click Here to Login</a></p>\r\n<p>\r\n	Your User Name:&#39;.$rowsup-&gt;company_email.&#39;</p>\r\n<p>\r\n	Your Password:&#39;.$rowsup-&gt;password.&#39;</p>\r\n', '2019-02-18 13:39:00', 1),
(6, 1, 'Supplier Login Details', '<p>\r\n	Thank you for contact Pfane Scientific SRL</p>\r\n<p style=\"background-color: transparent; box-sizing: border-box; color: rgb(0, 0, 0); font-family: &amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	Your login details are as follows.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p style=\"background-color: transparent; box-sizing: border-box; color: rgb(0, 0, 0); font-family: &amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	Login to your Pfane RealTime Recycling Manager here: <a href=\"https://viewpas.com/soft/suppliers/index.php\" style=\"background-color: transparent; box-sizing: border-box; color: rgb(51, 122, 183); text-decoration: none; transition-delay: 0s; transition-duration: 0.3s; transition-property: all; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);\" target=\"_blank\">Click Here to Login</a></p>\r\n<p>\r\n	&nbsp;</p>\r\n<p style=\"background-color: transparent; box-sizing: border-box; color: rgb(0, 0, 0); font-family: &amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	Your User Name:&#39;.$rowsup-&gt;company_email.&#39;</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p style=\"background-color: transparent; box-sizing: border-box; color: rgb(0, 0, 0); font-family: &amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; margin-bottom: 10px; margin-left: 0px; margin-right: 0px; margin-top: 0px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">\r\n	Your Password:&#39;.$rowsup-&gt;password.&#39;</p>', '2019-02-18 13:41:00', 1),
(7, 1, 'You have received an offer for materials sent.', '<p>\r\n	We have created a new contract for the items you have sent. The contract along with the complete list of products are available to view in your supplier management system. Please use the link below and click on VIEW CONTRACT next to the corresponding order ID. Use this link to LogIn to your management system.</p>\r\n<p>\r\n	<span helvetica=\"\" style=\"display: inline !important; float: none; background-color: transparent; color: rgb(0, 0, 0); font-family: \">Login to your Recycling Manager here: </span><a helvetica=\"\" href=\"https://viewpas.com/soft/suppliers/index.php\" style=\"background-color: transparent; box-sizing: border-box; color: rgb(51, 122, 183); font-family: \" target=\"_blank\">Click Here to Login</a></p>\r\n', '2019-05-11 08:41:00', 1),
(8, 1, 'Delivery Notice', 'Please see attached delivery notification for \'.$receivingdate.\' - which will arrive between the hours of 6am and 2pm local time.<br><br>\n				This email was generated by an automated server, to reply please use office@pfane.com as the recipient.', '2019-02-05 00:00:00', 1),
(9, 1, 'Processing Complete', 'Your materials have been fully processed, and the resulting materials are ready for refinement and sale. You may log in to your account to view the full processing report available under your MyContracts tab.', '2019-02-05 00:00:00', 1),
(10, 1, 'Sorting Is Complete', '<p>\r\n	Sorting is complete. Please see your sorting report available by logging in to the link below.</p>\r\n', '2019-02-18 13:43:00', 1),
(11, 1, 'Invoice for Contract Number', '<p>\r\n	Please find attached the Proforma invoice for delivery number &#39;..&#39;shipped on &#39;.$receivingdate.&#39; As per usual, when the final invoice is sent, this invoice shall be void and canceled.</p>\r\n<p>\r\n	&nbsp;</p>\r\n<p>\r\n	Thank you</p>\r\n<p>\r\n	Pfane Scientific SRL</p>\r\n', '2019-02-18 13:44:00', 1);

-- --------------------------------------------------------

--
-- Table structure for table `shipchecklist`
--

CREATE TABLE `shipchecklist` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `shipmentdetailid` int(11) NOT NULL,
  `poid` int(11) NOT NULL,
  `ocdate` date NOT NULL,
  `saleinvoice` int(11) NOT NULL,
  `packinglist` int(11) NOT NULL,
  `billoflading` int(11) NOT NULL,
  `certificateoforigin` int(11) NOT NULL,
  `insurancepolicy` int(11) NOT NULL,
  `technicalsheet` int(11) NOT NULL,
  `benfdetail` int(11) NOT NULL,
  `benfremarks` varchar(255) NOT NULL,
  `quantity` int(11) NOT NULL,
  `quantityremarks` varchar(255) NOT NULL,
  `rate` int(11) NOT NULL,
  `rateremarks` varchar(255) NOT NULL,
  `amount` int(11) NOT NULL,
  `amountremarks` varchar(255) NOT NULL,
  `breakdown` int(11) NOT NULL,
  `breakdownremarks` varchar(255) NOT NULL,
  `seal` int(11) NOT NULL,
  `sealremarks` varchar(255) NOT NULL,
  `packing_benfdetail` int(11) NOT NULL,
  `packing_benfremarks` varchar(255) NOT NULL,
  `packing_quantity` int(11) NOT NULL,
  `packing_quantityremarks` varchar(255) NOT NULL,
  `packing_hscode` int(11) NOT NULL,
  `packing_hscoderemarks` varchar(255) NOT NULL,
  `packing_noofpallets` int(11) NOT NULL,
  `packing_noofpalletsremarks` varchar(255) NOT NULL,
  `packing_detail` int(11) NOT NULL,
  `packing_detailremarks` varchar(255) NOT NULL,
  `packing_breakdown` int(11) NOT NULL,
  `packing_breakdownremarks` varchar(255) NOT NULL,
  `bill_consignee` int(11) NOT NULL,
  `bill_consigneeremarks` varchar(255) NOT NULL,
  `bill_notify` int(11) NOT NULL,
  `bill_notifyremarks` varchar(255) NOT NULL,
  `bill_product` int(11) NOT NULL,
  `bill_productremarks` varchar(255) NOT NULL,
  `bill_noofpallets` int(11) NOT NULL,
  `bill_noofpalletsremarks` varchar(255) NOT NULL,
  `certificate_product` int(11) NOT NULL,
  `certificate_productremarks` varchar(255) NOT NULL,
  `certificate_origin` int(11) NOT NULL,
  `certificate_originremarks` varchar(255) NOT NULL,
  `pipreaparedby` varchar(255) NOT NULL,
  `preperationdate` date NOT NULL,
  `pireviewedby` varchar(255) NOT NULL,
  `pireviewdate` date NOT NULL,
  `piaccepted` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shipmentdetail`
--

CREATE TABLE `shipmentdetail` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `shipmentlotno` varchar(255) NOT NULL,
  `expectedarrivaldate` date NOT NULL,
  `actualshipmentdate` date NOT NULL,
  `actualshipmentarrivaldate` date NOT NULL,
  `shipnoofcontainers` int(11) NOT NULL,
  `shippinglineid` int(11) NOT NULL,
  `shippingagentid` int(11) NOT NULL,
  `shiploadingportid` int(11) NOT NULL,
  `blno` varchar(255) NOT NULL,
  `shipmentevaluationid` int(11) NOT NULL,
  `shipdocument` varchar(255) NOT NULL,
  `shipapprovelneeded` int(11) NOT NULL,
  `shipapproved` int(11) NOT NULL,
  `receivedate` date NOT NULL,
  `courierid` int(11) NOT NULL,
  `addressid` int(11) NOT NULL,
  `trackno` varchar(255) NOT NULL,
  `docspdf` varchar(255) NOT NULL,
  `bankrefno` varchar(100) NOT NULL,
  `docneeded` varchar(30) NOT NULL,
  `bankdate` date NOT NULL,
  `comments` varchar(500) NOT NULL,
  `bankpdf` varchar(255) NOT NULL,
  `modeofdeliveryid` int(11) NOT NULL,
  `modedetails` varchar(500) NOT NULL,
  `productdescription` varchar(500) NOT NULL,
  `hscode` varchar(255) NOT NULL,
  `totalvalue` float(13,2) NOT NULL,
  `grosstotal` float(13,2) NOT NULL,
  `noofpallets` int(11) NOT NULL,
  `docapprovalneeded` int(11) NOT NULL,
  `docapproved` int(11) NOT NULL,
  `docstatus` int(11) NOT NULL,
  `claimgoodspdf` varchar(255) NOT NULL,
  `docdeliverymodeid` int(11) NOT NULL,
  `dovalue` float(13,2) NOT NULL,
  `paymentamount` float(13,2) NOT NULL,
  `paymentdate` date NOT NULL,
  `paymentmodeid` int(11) NOT NULL,
  `paymentdetails` varchar(500) NOT NULL,
  `dono` varchar(100) NOT NULL,
  `dovalues` float(13,2) NOT NULL,
  `rotationno` varchar(100) NOT NULL,
  `lastfreedate` date NOT NULL,
  `dopdf` varchar(255) NOT NULL,
  `actualarrivaldate` date NOT NULL,
  `dopayacksent` int(11) NOT NULL,
  `declarationvalue` varchar(255) NOT NULL,
  `declarationnumber` varchar(100) NOT NULL,
  `declarationvaluesent` int(11) NOT NULL,
  `decdateofissue` date NOT NULL,
  `decpdf` varchar(255) NOT NULL,
  `portlastfreedate` date NOT NULL,
  `portlastfreedatedoc` date NOT NULL,
  `isguarantee` int(11) NOT NULL,
  `guaranteeid` int(11) NOT NULL,
  `guaranteepdf` varchar(255) NOT NULL,
  `agentguaranteepdf` varchar(255) NOT NULL,
  `agentacknowledge` int(11) NOT NULL,
  `transporterid` int(11) NOT NULL,
  `pickupfrom` int(11) NOT NULL,
  `deliverto` int(11) NOT NULL,
  `returnto` int(11) NOT NULL,
  `deliverydate` date NOT NULL,
  `deliverytime` varchar(100) NOT NULL,
  `returndate` date NOT NULL,
  `returntime` varchar(100) NOT NULL,
  `transporteremail` int(11) NOT NULL,
  `agentrefrenceno` varchar(255) NOT NULL,
  `agentrefrencedate` date NOT NULL,
  `agentcustompdf` varchar(255) NOT NULL,
  `customchk` int(11) NOT NULL,
  `originid` int(11) NOT NULL,
  `tpdateisset` int(11) NOT NULL,
  `tpdate` date NOT NULL,
  `dwpcharges` float(13,2) NOT NULL,
  `dwpcurrencyid` int(11) NOT NULL,
  `dwpfile` varchar(255) NOT NULL,
  `ast_shipmentupdate` int(11) NOT NULL,
  `amendment` varchar(500) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shipmentdetails`
--

CREATE TABLE `shipmentdetails` (
  `id` int(11) NOT NULL,
  `supplierorderid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `kgreceived` float(13,2) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `shipmentdetails`
--

INSERT INTO `shipmentdetails` (`id`, `supplierorderid`, `productid`, `kgreceived`, `baskets`, `status`) VALUES
(4, 36, 1, 5000.00, 1, NULL),
(5, 36, 2, 4000.00, 1, 1),
(6, 37, 3, 3000.00, 4, NULL),
(7, 37, 1, 1000.00, 1, NULL),
(8, 39, 14, 12000.00, 10, NULL),
(9, 41, 3, 3000.00, 0, NULL),
(10, 43, 60, 6000.00, 0, NULL),
(11, 45, 58, 13450.00, 0, NULL),
(12, 46, 1, 5000.00, 2, NULL),
(13, 46, 2, 2000.00, 1, NULL),
(14, 47, 60, 10000.00, 0, NULL),
(15, 48, 2, 3000.00, 1, NULL),
(16, 49, 60, 150000.00, 0, NULL),
(17, 50, 60, 6450.00, 5, NULL),
(18, 51, 42, 6000.00, 0, 1),
(19, 51, 8, 130.00, 1, NULL),
(20, 51, 46, 20.00, 1, NULL),
(21, 51, 24, 6000.00, 0, NULL),
(22, 51, 68, 1025.00, 1, NULL),
(23, 51, 67, 850.00, 1, NULL),
(24, 51, 64, 525.00, 1, NULL),
(25, 51, 66, 470.00, 1, NULL),
(26, 51, 65, 1775.00, 4, NULL),
(27, 51, 63, 3300.00, 7, NULL),
(28, 51, 61, 300.00, 0, NULL),
(29, 51, 62, 3000.00, 3, NULL),
(30, 53, 69, 12000.00, 0, NULL),
(31, 53, 68, 1025.00, 0, NULL),
(32, 53, 8, 130.00, 0, NULL),
(33, 53, 46, 20.00, 0, NULL),
(34, 53, 62, 3000.00, 0, NULL),
(35, 53, 63, 3300.00, 0, NULL),
(36, 53, 65, 1775.00, 0, NULL),
(37, 53, 64, 525.00, 0, NULL),
(38, 53, 66, 470.00, 0, NULL),
(39, 53, 67, 850.00, 0, NULL),
(40, 53, 61, 300.00, 0, NULL),
(41, 55, 3, 5555.00, 5, NULL),
(42, 56, 69, 10200.00, 10, NULL),
(43, 57, 42, 5000.00, 0, NULL),
(44, 58, 3, 5000.00, 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `shipmentevaluation`
--

CREATE TABLE `shipmentevaluation` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shipmentstatus`
--

CREATE TABLE `shipmentstatus` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippers`
--

CREATE TABLE `shippers` (
  `id` int(11) NOT NULL,
  `userid` int(11) DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) DEFAULT NULL,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `shipping_name` varchar(255) DEFAULT NULL,
  `shipping_address` varchar(255) DEFAULT NULL,
  `shipping_city` varchar(255) DEFAULT NULL,
  `shipping_province` varchar(255) DEFAULT NULL,
  `shipping_country` varchar(255) DEFAULT NULL,
  `shipping_postalcode` varchar(255) DEFAULT NULL,
  `shipping_email` varchar(255) DEFAULT NULL,
  `shipping_invoice_email` varchar(255) DEFAULT NULL,
  `shipping_price_email` varchar(255) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippingagent`
--

CREATE TABLE `shippingagent` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `details` text NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippingline`
--

CREATE TABLE `shippingline` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippingmethod`
--

CREATE TABLE `shippingmethod` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippingto`
--

CREATE TABLE `shippingto` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippmentlot`
--

CREATE TABLE `shippmentlot` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shippmentot`
--

CREATE TABLE `shippmentot` (
  `id` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `shipqmt`
--

CREATE TABLE `shipqmt` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `quotedetailid` int(11) NOT NULL,
  `shipmentid` int(11) NOT NULL,
  `qmt` float(13,2) NOT NULL,
  `qmtshipped` float(13,2) NOT NULL,
  `qmtremaining` float(13,2) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `stockaddedissue`
--

CREATE TABLE `stockaddedissue` (
  `id` int(11) NOT NULL,
  `quoteid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `dateadded` date NOT NULL,
  `containerid` varchar(255) NOT NULL,
  `reamsqty` int(11) NOT NULL,
  `substance` int(11) NOT NULL,
  `size` varchar(255) NOT NULL,
  `sheets` int(11) NOT NULL,
  `code` varchar(255) NOT NULL,
  `netweight` float(13,2) NOT NULL,
  `grossweight` float(13,2) NOT NULL,
  `palletlocationid` int(11) NOT NULL,
  `transactioncancelled` int(11) NOT NULL,
  `palletshippedout` int(11) NOT NULL,
  `truckid` varchar(255) NOT NULL,
  `truckplacementlocation` varchar(255) NOT NULL,
  `shippedto` int(11) NOT NULL,
  `shippedtodate` datetime NOT NULL,
  `remarks` varchar(500) NOT NULL,
  `status` int(11) NOT NULL,
  `truckscheduleid` int(11) NOT NULL,
  `VerticalPosition` int(11) NOT NULL DEFAULT 0,
  `usedinstockmovement` int(11) NOT NULL DEFAULT 0,
  `usedinloadscheme` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `stockmovementproductdetails`
--

CREATE TABLE `stockmovementproductdetails` (
  `id` int(11) NOT NULL,
  `stockmovementscheduleid` int(11) NOT NULL,
  `shipmentid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `categoryid` int(11) NOT NULL,
  `declarationno` varchar(100) NOT NULL,
  `hscode` varchar(100) NOT NULL,
  `noofpallets` int(11) NOT NULL,
  `quantityinkg` float NOT NULL,
  `origin` varchar(100) NOT NULL,
  `unitpriceperkg` float(13,5) NOT NULL,
  `gross` float(13,5) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `stockmovementproductpalettes`
--

CREATE TABLE `stockmovementproductpalettes` (
  `id` int(11) NOT NULL,
  `productdetailid` int(11) NOT NULL,
  `stockmovementscheduleid` int(11) NOT NULL,
  `stockaddedissueid` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `stockmovementschedule`
--

CREATE TABLE `stockmovementschedule` (
  `id` int(11) NOT NULL,
  `consigneeid` int(11) NOT NULL,
  `contactpersonid` int(11) NOT NULL,
  `warehouseid` int(11) NOT NULL,
  `consigneedate` date NOT NULL,
  `COOSRSNumber` varchar(100) NOT NULL,
  `COOComments` varchar(900) NOT NULL,
  `COOAmount` float(13,2) NOT NULL,
  `COONumber` varchar(100) NOT NULL,
  `COOIssueDate` date NOT NULL,
  `COOAttachment` varchar(255) NOT NULL,
  `DeclarationNumber` varchar(100) NOT NULL,
  `DeclarationValue` float(13,2) NOT NULL,
  `PaymentDone` int(11) NOT NULL,
  `DeclarationStamped` int(11) NOT NULL,
  `DeclarationPaymentReceipt` varchar(100) NOT NULL,
  `Maqas` varchar(100) NOT NULL,
  `shipmentacknowledged` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `stockmovementtracking`
--

CREATE TABLE `stockmovementtracking` (
  `id` int(11) NOT NULL,
  `stockmovementid` int(11) NOT NULL,
  `sysdatetime` datetime NOT NULL,
  `shipmentstatusid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `supcontacts`
--

CREATE TABLE `supcontacts` (
  `id` int(11) NOT NULL,
  `supplierid` int(11) DEFAULT NULL,
  `contact_name` varchar(100) DEFAULT NULL,
  `contact_mobile` varchar(100) DEFAULT NULL,
  `contact_office` varchar(100) DEFAULT NULL,
  `contact_email` varchar(100) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `supcontacts`
--

INSERT INTO `supcontacts` (`id`, `supplierid`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `status`) VALUES
(2, 64, 'Mike Rodgers', '(252) 325-5503', '919-771-0744', 'mike.rodgers@blueskysolutions.us', 1),
(4, 132, 'Avi Lecker', '5148269901', 'Avi Lecker', 'alecker@teamupcycle.com', 1),
(5, 130, 'Suntech Recycle Inc,', '5148084061', 'Nick Hoxha', 'nick@suntechrecycle.com', 0),
(6, 153, 'Janko Jakovljevic', '+381646488324', '+381646488324', 'janko@ereciklaca.com', 1),
(7, 0, 'Janko Jakovljevic', '+381646488324', '+381646488324', 'janko@ereciklaca.com', 1),
(8, 154, 'Igor Petrovic', '+381 668950', '+', 'igor@ereciklaza.com', 1);

-- --------------------------------------------------------

--
-- Table structure for table `superusers`
--

CREATE TABLE `superusers` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `mobile` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `supplierdetail`
--

CREATE TABLE `supplierdetail` (
  `id` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `supplierdetail`
--

INSERT INTO `supplierdetail` (`id`, `supplierid`, `userid`, `status`) VALUES
(1, 56, 1, 1),
(2, 57, 1, 1),
(3, 58, 1, 1),
(4, 59, 1, 1),
(5, 60, 4, 1),
(6, 61, 7, 1),
(7, 64, 10, 1),
(8, 66, 11, 1),
(9, 67, 11, 1),
(10, 68, 11, 1),
(11, 69, 11, 1),
(13, 71, 7, 1),
(14, 72, 12, 1),
(15, 73, 10, 1),
(16, 75, 10, 1),
(17, 76, 11, 1),
(18, 77, 10, 1),
(19, 78, 11, 1),
(20, 79, 11, 1),
(21, 80, 10, 1),
(43, 91, 14, 1),
(44, 80, 14, 1),
(24, 68, 14, 1),
(40, 56, 11, 1),
(92, 141, 15, 1),
(77, 127, 11, 1),
(28, 69, 14, 1),
(29, 90, 11, 1),
(30, 91, 11, 1),
(35, 91, 14, 1),
(32, 93, 7, 1),
(33, 69, 14, 1),
(34, 69, 14, 1),
(46, 96, 14, 1),
(90, 139, 15, 1),
(45, 99, 11, 1),
(47, 100, 14, 1),
(48, 101, 14, 1),
(49, 102, 14, 1),
(50, 103, 11, 1),
(51, 104, 11, 1),
(61, 112, 11, 1),
(55, 106, 11, 1),
(57, 108, 11, 1),
(58, 109, 11, 1),
(60, 111, 11, 1),
(64, 115, 11, 1),
(63, 114, 11, 1),
(66, 117, 11, 1),
(67, 118, 11, 1),
(79, 129, 15, 1),
(71, 122, 15, 1),
(76, 126, 11, 1),
(78, 128, 11, 1),
(80, 130, 0, 1),
(81, 130, 15, 1),
(82, 131, 11, 1),
(83, 132, 15, 1),
(84, 133, 15, 1),
(85, 134, 11, 1),
(86, 135, 15, 1),
(87, 136, 11, 1),
(88, 137, 15, 1),
(89, 138, 15, 1),
(91, 140, 15, 1),
(93, 142, 15, 1),
(94, 143, 15, 1),
(95, 144, 15, 1),
(96, 145, 15, 1),
(97, 146, 15, 1),
(98, 147, 15, 1),
(99, 148, 15, 1),
(100, 149, 15, 1),
(101, 150, 11, 1),
(102, 151, 11, 1),
(103, 152, 11, 1),
(104, 153, 16, 1),
(105, 154, 16, 1),
(106, 155, 16, 1);

-- --------------------------------------------------------

--
-- Table structure for table `supplierorderdetail`
--

CREATE TABLE `supplierorderdetail` (
  `id` int(11) NOT NULL,
  `supplierorderid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `offerprice` float(13,4) DEFAULT NULL,
  `kgreceived` float(13,3) DEFAULT NULL,
  `proimage` varchar(255) DEFAULT NULL,
  `completed` int(11) DEFAULT NULL,
  `orignalqty` float(13,3) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `supplierorderdetail`
--

INSERT INTO `supplierorderdetail` (`id`, `supplierorderid`, `productid`, `baskets`, `offerprice`, `kgreceived`, `proimage`, `completed`, `orignalqty`, `status`) VALUES
(1, 1, 36, 0, 0.0000, 800.000, 'Noimage.png', 0, 800.000, 1),
(2, 1, 86, 0, 1.1800, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(4, 2, 84, 0, 3.0000, 2500.000, '4_INV_48992727_2468596616488156_7459016733131538432_n.jpg', 0, 2500.000, 1),
(5, 3, 104, 0, 0.2600, 19000.000, '5_INV_7.jpeg', 0, 19000.000, 1),
(9, 7, 86, 0, 1.1900, 22000.000, '9_INV_Canada.jpg', 0, 22000.000, 1),
(10, 7, 100, 0, 2.6000, 300.000, '10_INV_phone_hand_png232.png', 0, 300.000, 1),
(11, 7, 101, 0, 1.0300, 990.000, '11_INV_ROM.jpg', 0, 990.000, 1),
(12, 7, 84, 0, 4.6800, 10.000, '12_INV_UK.jpg', 0, 10.000, 1),
(13, 7, 85, 0, 2.4900, 10.000, '13_INV_cells.jpg', 0, 10.000, 1),
(14, 7, 93, 0, 2.5800, 1200.000, '14_INV_PortablePlant-Screening.jpg', 0, 1200.000, 1),
(15, 7, 103, 0, 0.4200, 24510.000, '15_INV_Canada.jpg', 0, 24510.000, 1),
(16, 7, 84, 0, 4.6800, 980.000, '16_INV_PEA.jpg', 0, 980.000, 1),
(18, 8, 86, 0, 1.1900, 15000.000, '18_INV_P80801-144943.jpg', 0, 15000.000, 1),
(19, 8, 89, 0, 2.9400, 4000.000, '19_INV_1_c697c5fbdca6753548cc4db305418836.jpg', 0, 4000.000, 1),
(20, 10, 106, 0, 21.3000, 223.000, 'Noimage.png', 0, 223.000, 1),
(21, 10, 86, 0, 1.1900, 7621.000, 'Noimage.png', 0, 7621.000, 1),
(22, 11, 86, 0, 1.1900, 4000.000, '22_INV_motherb.jpg', 0, 4000.000, 1),
(23, 11, 96, 0, 0.5200, 1000.000, '23_INV_123123.jpeg', 0, 1000.000, 1),
(24, 15, 137, 0, 0.9400, 2.000, '24_INV_germanshit.jpeg', 0, 2.000, 1),
(284, 136, 485, 0, 73.2500, 113.398, 'Noimage.png', 0, 113.398, 1),
(285, 136, 543, 0, 116.5900, 113.398, 'Noimage.png', 0, 113.398, 1),
(289, 140, 515, 0, 230.2900, 90.718, 'Noimage.png', 0, 90.718, 1),
(376, 200, 401, 0, 11.8300, 12222.000, 'Noimage.png', 0, 12222.000, 1),
(471, 275, 429, 0, 1.0500, 1330.000, '471_INV_126_color_resize.jpg', 0, 1330.000, 1),
(472, 275, 869, 0, 0.8400, 210.000, '472_INV_copier.jpeg', 0, 210.000, 1),
(473, 275, 882, 0, 1.1000, 2150.000, '473_INV_allinone.jpg', 0, 2150.000, 1),
(474, 275, 899, 0, 0.0000, 2490.000, '474_INV_cellphones.jpg', 0, 2490.000, 1),
(475, 275, 898, 0, 0.0000, 40.000, '475_INV_pileremotes.jpg', 0, 40.000, 1),
(595, 366, 599, 0, 1.1900, 8800.000, '595_INV_img2222222.jpeg', 0, 8800.000, 1),
(596, 366, 593, 0, 2.2900, 2477.000, '596_INV_gold.jpeg', 0, 2477.000, 1),
(598, 368, 599, 0, 1.2800, 18100.000, '598_INV_WhatsApp Image 2021-11-01 at 12.45.27.jpeg', 0, 18100.000, 1),
(599, 369, 599, 0, 1.1400, 23590.000, '599_INV_alcufer 12.10.2021.jpeg', 0, 23590.000, 1),
(600, 370, 622, 0, 1.0600, 23943.000, '600_INV_lowe grade pcb serbia.jfif', 0, 23943.000, 1),
(606, 374, 599, 0, 1.2700, 23100.000, '606_INV_WhatsApp Image 2021-11-01 at 12.45.27.jpeg', 0, 23100.000, 1),
(607, 375, 599, 0, 1.1900, 24040.000, '607_INV_weeedeee s.r.o 15.11.2021 24040 kg.jpeg', 0, 24040.000, 1),
(608, 376, 599, 0, 1.2800, 13829.000, '608_INV_frames serbia.jfif', 0, 13829.000, 1),
(611, 377, 599, 0, 1.1400, 23740.000, 'Noimage.png', 0, 23740.000, 1),
(612, 378, 599, 0, 1.1900, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(613, 379, 600, 0, 0.5100, 24200.000, '613_INV_material aurenis 22.11.2021.jpeg', 0, 24200.000, 1),
(615, 381, 599, 0, 1.1300, 19295.000, 'Noimage.png', 0, 19295.000, 1),
(616, 382, 600, 0, 0.5100, 3960.000, '616_INV_LOACKER 12.14.2021.jpeg', 0, 3960.000, 1),
(617, 383, 600, 0, 0.8200, 15235.000, '617_INV_12.01.2022 dusan led material.jfif', 0, 15235.000, 1),
(618, 389, 993, 1, 0.3300, 33.000, 'Noimage.png', 0, 33.000, 1),
(619, 389, 994, 2, 0.3800, 36.000, 'Noimage.png', 0, 36.000, 1),
(620, 389, 992, 0, 0.3500, 63.000, 'Noimage.png', 0, 63.000, 1),
(621, 391, 600, 0, 0.8100, 5551.000, '621_INV_WhatsApp Image 2022-02-02 aurenis.jpeg', 0, 5551.000, 1),
(622, 392, 994, 0, 0.5700, 50.000, 'Noimage.png', 0, 50.000, 1),
(623, 393, 973, 0, 5.5500, 1.000, 'Noimage.png', 0, 1.000, 1),
(628, 391, 897, 0, 0.2100, 5311.000, '628_INV_WhatsApp Image 2022-02-03 aurenis.jpeg', 0, 5311.000, 1),
(629, 391, 995, 0, 0.6100, 10898.000, 'Noimage.png', 0, 10898.000, 1),
(630, 396, 601, 0, 0.2700, 21356.000, '630_INV_aurenis 14.01.2022.jpeg', 0, 21356.000, 1),
(632, 396, 897, 0, 0.2100, 1214.000, '632_INV_WhatsApp Image 2022-02-03 aurenis.jpeg', 0, 1214.000, 1),
(633, 397, 992, 12, 0.4400, 16405.000, '633_INV_Remore Controls.jpeg', 0, 16405.000, 1),
(634, 397, 993, 2, 0.3300, 1376.000, '634_INV_Keyboards_.jpeg', 0, 1376.000, 1),
(635, 397, 961, 2, 1.0100, 1811.000, '635_INV_Copper Frames and Blanks _600T.jpeg', 0, 1811.000, 1),
(640, 399, 599, 0, 1.5700, 22000.000, 'Noimage.png', 0, 22000.000, 1),
(643, 400, 600, 0, 0.8100, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(644, 397, 909, 0, 0.0000, 8.000, 'Noimage.png', 0, 8.000, 1),
(645, 401, 996, 0, 0.2500, 16000.000, 'Noimage.png', 0, 16000.000, 1),
(646, 401, 897, 0, 0.2100, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(647, 402, 600, 0, 0.8300, 12541.000, '647_INV_dusan 14.02.2022.jpeg', 0, 12541.000, 1),
(648, 402, 599, 0, 1.6100, 1624.000, '648_INV_dusan 14.02.2022.jpeg', 0, 1624.000, 1),
(649, 403, 1012, 0, 1.9500, 1000.000, '649_INV_WhatsApp Image 2022-02-22 at 08.25.33.jpeg', 0, 1000.000, 1),
(650, 403, 599, 0, 1.5900, 22760.000, '650_INV_dusan 16.02.2022.jpeg', 0, 22760.000, 1),
(651, 405, 599, 0, 1.7000, 21960.000, 'Noimage.png', 0, 21960.000, 1),
(652, 406, 994, 23, 0.5700, 7284.000, 'Noimage.png', 0, 7284.000, 1),
(654, 407, 992, 0, 0.3800, 15422.000, 'Noimage.png', 0, 15422.000, 1),
(655, 409, 993, 0, 0.2800, 1.000, 'Noimage.png', 0, 1.000, 1),
(656, 408, 993, 0, 0.2800, 16.100, 'Noimage.png', 0, 16.100, 1),
(657, 408, 1016, 0, 0.0000, 34.300, 'Noimage.png', 0, 34.300, 1),
(658, 408, 1015, 0, 0.0000, 257.700, 'Noimage.png', 0, 257.700, 1),
(659, 408, 1017, 0, 0.0000, 12.900, 'Noimage.png', 0, 12.900, 1),
(660, 408, 1013, 0, 0.0000, 6.100, 'Noimage.png', 0, 6.100, 1),
(661, 408, 932, 0, 0.9800, 6.700, 'Noimage.png', 0, 6.700, 1),
(662, 408, 994, 0, 0.5700, 390.100, 'Noimage.png', 0, 390.100, 1),
(663, 408, 918, 0, 0.0000, 18.700, 'Noimage.png', 0, 18.700, 1),
(664, 408, 920, 0, 0.0000, 8.400, 'Noimage.png', 0, 8.400, 1),
(665, 410, 961, 50, 0.5900, 19900.000, 'Noimage.png', 0, 19900.000, 1),
(666, 412, 600, 0, 0.8600, 22700.000, '666_INV_aurenis 22.03.2022.jpeg', 0, 22700.000, 1),
(667, 413, 600, 0, 0.8600, 20750.000, '667_INV_serbia 15.03.2022.jpeg', 0, 20750.000, 1),
(668, 410, 994, 25, 0.5700, 9950.000, 'Noimage.png', 0, 9950.000, 1),
(669, 410, 992, 25, 0.3800, 9950.000, 'Noimage.png', 0, 9950.000, 1),
(670, 414, 994, 0, 0.5700, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(671, 415, 599, 0, 1.4600, 0.000, 'Noimage.png', 0, 0.000, 1),
(672, 416, 599, 0, 1.5000, 17474.000, '672_INV_femker 19.05.2022.jpeg', 0, 17474.000, 1),
(673, 417, 622, 0, 0.8700, 17656.000, '673_INV_C-class E-reciclaza d o o  14.04.2022.jpeg', 0, 17656.000, 1),
(674, 418, 600, 0, 0.7500, 16065.000, '674_INV_dusan weee deee 06.05.2022.jpeg', 0, 16065.000, 1),
(676, 419, 897, 0, 0.2100, 3561.000, 'Noimage.png', 0, 3561.000, 1),
(677, 419, 995, 0, 0.6100, 6368.000, 'Noimage.png', 0, 6368.000, 1),
(678, 419, 600, 0, 0.7500, 8805.000, 'Noimage.png', 0, 8805.000, 1),
(679, 420, 971, 25, 1.5000, 10750.000, 'Noimage.png', 0, 10750.000, 1),
(680, 421, 622, 0, 0.8900, 5000.000, 'Noimage.png', 0, 5000.000, 1),
(681, 422, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(682, 423, 599, 0, 1.5000, 22500.000, 'Noimage.png', 0, 22500.000, 1),
(684, 424, 599, 0, 1.2700, 22320.000, '684_INV_3re.spzoospk poland 01.07.2022.jpeg', 0, 22320.000, 1),
(685, 425, 549, 0, 2.5300, 300000.000, 'Noimage.png', 0, 300000.000, 1),
(686, 426, 599, 0, 1.4300, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(687, 427, 599, 0, 1.4300, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(688, 427, 622, 0, 0.8500, 14000.000, 'Noimage.png', 0, 14000.000, 1),
(689, 428, 599, 0, 1.4300, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(690, 429, 599, 0, 1.4400, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(691, 429, 622, 0, 0.8600, 14000.000, 'Noimage.png', 0, 14000.000, 1),
(692, 430, 599, 0, 1.2400, 23960.000, 'Noimage.png', 0, 23960.000, 1),
(693, 431, 622, 0, 0.8000, 3000.000, 'Noimage.png', 0, 3000.000, 1),
(694, 433, 622, 0, 0.8000, 3000.000, 'Noimage.png', 0, 3000.000, 1),
(696, 435, 599, 0, 1.2400, 14750.000, '696_INV_femker 07.06.2022.jpeg', 0, 14750.000, 1),
(698, 437, 600, 0, 0.6300, 8278.000, '698_INV_deeweee 07.07.2022.jpeg', 0, 8278.000, 1),
(699, 438, 1012, 0, 1.7700, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(700, 439, 961, 0, 0.5300, 5000.000, '700_INV_IMG-20220725-WA0012.jpg', 0, 5000.000, 1),
(701, 440, 599, 0, 1.2500, 21786.000, 'Noimage.png', 0, 21786.000, 1),
(702, 441, 599, 0, 1.2300, 20400.000, '702_INV_3re.spzoospk poland 09.09.2022.jpeg', 0, 20400.000, 1),
(705, 443, 599, 0, 1.2800, 22940.000, '705_INV_3re.spzoospk poland 18.08.2022.jpeg', 0, 22940.000, 1),
(706, 444, 599, 0, 1.2900, 20000.000, '706_INV_1.jpeg', 0, 20000.000, 1),
(707, 440, 1012, 0, 1.7700, 1594.000, '707_INV_3re.spzoospk poland 16.09.2022 folie neagra.jpeg', 0, 1594.000, 1),
(710, 447, 961, 40, 0.5400, 19920.000, '710_INV_stuffy.jpeg', 0, 19920.000, 1),
(711, 447, 0, 0, 0.0000, 80.000, 'Noimage.png', 0, 80.000, 1),
(712, 448, 599, 0, 1.2300, 21700.000, '712_INV_3re.spzoospk poland 24.09.2022.jpeg', 0, 21700.000, 1),
(713, 449, 429, 0, 1.1200, 800.000, '713_INV_126_color_resize.jpg', 0, 800.000, 1),
(714, 449, 357, 0, 2.6400, 450.000, '714_INV_bruce1.jpeg', 0, 450.000, 1),
(715, 449, 414, 0, 0.1500, 2150.000, '715_INV_20220928082910_IMG-20220928-WA0022.jpg', 0, 2150.000, 1),
(716, 449, 368, 0, 8.7900, 100.000, '716_INV_34_color_depop-withgld.jpg', 0, 100.000, 1),
(717, 450, 961, 19, 0.5300, 252.000, '717_INV_1231231.jpeg', 0, 252.000, 1),
(718, 450, 909, 0, 0.0000, 38.000, 'Noimage.png', 0, 38.000, 1),
(719, 451, 961, 16, 0.3300, 13906.000, 'Noimage.png', 0, 13906.000, 1),
(720, 451, 909, 0, 0.0000, 966.000, 'Noimage.png', 0, 966.000, 1),
(721, 451, 0, 0, 0.0000, 92.000, 'Noimage.png', 0, 92.000, 1),
(722, 452, 1021, 0, 0.0000, 300.000, 'Noimage.png', 0, 300.000, 1),
(723, 453, 1022, 1, 0.0000, 41.000, '723_INV_Weldon Computers_001.jpg', 0, 41.000, 1),
(725, 454, 1022, 0, 0.0000, 159.000, '725_INV_Sewage Treatment Plant_IT.jpeg', 0, 159.000, 1),
(726, 453, 909, 0, 0.0000, 2.000, 'Noimage.png', 0, 2.000, 1),
(728, 455, 1022, 2, 0.0000, 583.000, 'Noimage.png', 0, 583.000, 1),
(731, 456, 1022, 1, 0.0000, 147.000, '731_INV_Computer Center_149kg.jpg', 0, 147.000, 1),
(732, 456, 909, 0, 0.0000, 2.000, 'Noimage.png', 0, 2.000, 1),
(733, 455, 909, 0, 0.0000, 10.000, 'Noimage.png', 0, 10.000, 1),
(734, 457, 600, 0, 0.4000, 20233.000, '734_INV_aurenis 10.11.2022.jpeg', 0, 20233.000, 1),
(735, 457, 897, 0, 0.1100, 3455.000, '735_INV_aurenis 10.11.2022 remotes.jpeg', 0, 3455.000, 1),
(736, 458, 1012, 0, 0.9800, 23480.000, '736_INV_trenalux 11.11.2022 folia black.jpeg', 0, 23480.000, 1),
(737, 459, 600, 0, 0.4000, 11287.000, '737_INV_elettrometal timis 21.12.2022.jpeg', 0, 11287.000, 1),
(738, 460, 0, 0, 0.0000, 19240.000, '738_INV_e-reciclaza 26.01.2023.jpeg', 0, 19240.000, 1),
(740, 461, 0, 0, 0.0000, 12809.000, '740_INV_weeedeee 31.01.2023.jpeg', 0, 12809.000, 1),
(741, 461, 0, 0, 0.0000, 3780.000, '741_INV_31.01.2023 weeedeee.jpeg', 0, 3780.000, 1),
(742, 464, 600, 0, 0.4400, 7020.000, 'Noimage.png', 0, 7020.000, 1),
(743, 464, 622, 0, 0.4700, 2927.000, 'Noimage.png', 0, 2927.000, 1),
(744, 465, 1012, 0, 1.8000, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(745, 466, 841, 0, 0.4700, 10460.000, 'Noimage.png', 0, 10460.000, 1),
(746, 467, 1012, 0, 1.8000, 12622.000, 'Noimage.png', 0, 12622.000, 1),
(749, 468, 1012, 0, 1.8000, 23210.000, 'Noimage.png', 0, 23210.000, 1),
(750, 469, 1012, 0, 1.8000, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(751, 470, 0, 5, 0.0000, 490.000, 'Noimage.png', 0, 490.000, 1),
(752, 470, 0, 1, 0.0000, 498.000, 'Noimage.png', 0, 498.000, 1),
(753, 471, 1066, 1, 5.3900, 798.000, 'Noimage.png', 0, 798.000, 1),
(754, 473, 1055, 2, 2.4400, 996.000, 'Noimage.png', 0, 996.000, 1),
(755, 473, 1025, 1, 9.8900, 98.000, 'Noimage.png', 0, 98.000, 1),
(756, 474, 1055, 0, 2.4400, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(757, 475, 0, 0, 0.0000, 1000.000, 'Noimage.png', 0, 1000.000, 1);

-- --------------------------------------------------------

--
-- Table structure for table `supplierorderdetailnew`
--

CREATE TABLE `supplierorderdetailnew` (
  `id` int(11) NOT NULL,
  `supplierorderid` int(11) DEFAULT NULL,
  `productid` int(11) DEFAULT NULL,
  `baskets` int(11) DEFAULT NULL,
  `offerprice` float(13,4) DEFAULT NULL,
  `kgreceived` float(13,3) DEFAULT NULL,
  `proimage` varchar(255) DEFAULT NULL,
  `completed` int(11) DEFAULT NULL,
  `orignalqty` float(13,3) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `supplierorderdetailnew`
--

INSERT INTO `supplierorderdetailnew` (`id`, `supplierorderid`, `productid`, `baskets`, `offerprice`, `kgreceived`, `proimage`, `completed`, `orignalqty`, `status`) VALUES
(1, 1, 36, 0, NULL, 800.000, NULL, 0, 800.000, 1),
(2, 1, 86, 0, 1.1800, 2000.000, NULL, 1, 2000.000, 1),
(3, 1, 93, 0, 2.5600, 2600.000, NULL, 1, 2600.000, 1),
(4, 1, 30, 0, NULL, 196.000, NULL, NULL, NULL, 1),
(5, 1, 49, 0, NULL, 362.000, NULL, NULL, NULL, 1),
(6, 1, 29, 0, NULL, 41.000, NULL, NULL, NULL, 1),
(7, 1, 38, 0, NULL, 1043.650, NULL, NULL, NULL, 1),
(8, 1, 18, 0, NULL, 68.000, NULL, 1, NULL, 1),
(9, 1, 32, 0, NULL, 15.000, NULL, NULL, NULL, 1),
(10, 1, 33, 0, NULL, 2722.000, NULL, 1, NULL, 1),
(11, 1, 15, 0, NULL, 220.000, NULL, 1, NULL, 1),
(12, 1, 43, 0, NULL, 0.350, NULL, NULL, NULL, 1),
(13, 1, 55, 0, NULL, 632.000, NULL, NULL, NULL, 1),
(14, 1, 52, 0, NULL, 522.000, NULL, 1, NULL, 1),
(15, 1, 54, 0, NULL, 468.500, NULL, NULL, NULL, 1),
(16, 1, 40, 0, NULL, 1341.500, NULL, NULL, NULL, 1),
(17, 1, 53, 0, NULL, 500.000, NULL, NULL, NULL, 1),
(18, 2, 84, 0, 3.0000, 2500.000, 'Noimage.png', 1, 2500.000, 1),
(20, 3, 54, 0, NULL, 1000.000, NULL, NULL, NULL, 1),
(21, 3, 52, 0, NULL, 2200.000, NULL, NULL, NULL, 1),
(22, 3, 55, 0, NULL, 1000.000, NULL, NULL, NULL, 1),
(23, 3, 40, 0, NULL, 14800.000, NULL, NULL, NULL, 1),
(24, 6, 24, 0, 0.9400, 5.000, 'Noimage.png', 0, 5.000, 1),
(25, 6, 109, 0, 3.3500, 20.000, 'Noimage.png', 0, 20.000, 1),
(26, 5, 91, 0, 20.5600, 20.000, 'Noimage.png', 1, 20.000, 1),
(27, 7, 86, 0, 1.1900, 22000.000, 'Noimage.png', 1, 22000.000, 1),
(28, 7, 100, 0, 2.6000, 300.000, 'Noimage.png', 0, 300.000, 1),
(29, 7, 101, 0, 1.0300, 990.000, 'Noimage.png', 1, 990.000, 1),
(30, 7, 84, 0, 4.6800, 10.000, 'Noimage.png', 1, 10.000, 1),
(31, 7, 85, 0, 2.4900, 10.000, 'Noimage.png', 0, 10.000, 1),
(32, 7, 93, 0, 2.5800, 1200.000, 'Noimage.png', 0, 1200.000, 1),
(33, 7, 103, 0, 0.4200, 24510.000, 'Noimage.png', 0, 24510.000, 1),
(34, 7, 84, 0, 4.6800, 980.000, '316_pcd_15_procedure_2x4-Shaker-Table.jpg', 1, 980.000, 1),
(35, 7, 110, 0, 1.9700, 5.000, 'Noimage.png', 0, 5.000, 1),
(36, 2, 54, 0, NULL, 2000.000, NULL, NULL, NULL, 1),
(37, 2, 52, 0, NULL, 211.000, NULL, NULL, NULL, 1),
(38, 2, 91, 0, NULL, 3.000, NULL, 1, NULL, 1),
(39, 2, 110, 0, NULL, 40.000, NULL, NULL, NULL, 1),
(40, 2, 19, 0, NULL, 246.000, NULL, NULL, NULL, 1),
(41, 8, 86, 0, 1.1900, 15000.000, 'Noimage.png', 1, 15000.000, 1),
(42, 8, 89, 0, 2.9400, 4000.000, 'Noimage.png', 1, 4000.000, 1),
(43, 8, 15, 0, NULL, 3000.000, NULL, 1, NULL, 1),
(44, 8, 33, 0, NULL, 12000.000, NULL, 1, NULL, 1),
(45, 8, 18, 0, NULL, 1000.000, NULL, 1, NULL, 1),
(46, 8, 40, 0, NULL, 4800.000, NULL, NULL, NULL, 1),
(48, 8, 55, 0, NULL, 12000.000, NULL, NULL, NULL, 1),
(52, 11, 86, 0, 1.1900, 4000.000, 'Noimage.png', 1, 4000.000, 1),
(54, 11, 15, 16, NULL, 872.000, NULL, 1, NULL, 1),
(55, 11, 18, 0, NULL, 750.000, NULL, 1, NULL, 1),
(56, 11, 33, 0, NULL, 3877.000, NULL, 1, NULL, 1),
(57, 11, 43, 0, NULL, 5.000, NULL, NULL, NULL, 1),
(58, 11, 40, 0, NULL, 2463.500, NULL, NULL, NULL, 1),
(59, 11, 38, 0, NULL, 746.000, NULL, NULL, NULL, 1),
(60, 11, 52, 0, NULL, 600.000, NULL, NULL, NULL, 1),
(61, 11, 55, 0, NULL, 1185.500, NULL, NULL, NULL, 1),
(62, 2, 15, 0, NULL, 1.000, NULL, NULL, NULL, 1),
(63, 2, 77, 0, NULL, 2.000, NULL, NULL, NULL, 1),
(64, 5, 84, 0, 6.9700, 20.000, 'Noimage.png', 1, 20.000, 1),
(65, 5, 84, 0, 6.9700, 10.000, 'Noimage.png', 1, 10.000, 1),
(67, 7, 37, 0, NULL, 1970.000, '174_pcd_18_procedure_Screen Shot 2017-03-25 at 15.47.43.png', NULL, NULL, 1),
(69, 15, 137, 0, 0.9400, 2.000, 'Noimage.png', 0, 2.000, 1),
(72, 17, 396, 0, 1.1900, 300.000, 'Noimage.png', 0, 300.000, 1),
(75, 18, 15, 0, NULL, 100.000, '322_pcd_download.jpg', 1, NULL, 1),
(78, 18, 55, 0, NULL, 100.000, '', NULL, NULL, 1),
(79, 16, 358, 0, 4.3900, 300.000, 'Noimage.png', 1, 300.000, 1),
(80, 16, 29, 0, NULL, 75.000, '176_pcd_PVI1.jpeg', NULL, NULL, 1),
(81, 16, 39, 0, NULL, 165.000, '177_pcd_Ram1.jpeg', NULL, NULL, 1),
(82, 16, 40, 0, NULL, 600.000, '', 1, NULL, 1),
(84, 16, 43, 0, NULL, 2.850, '', NULL, NULL, 1),
(85, 16, 127, 0, NULL, 600.000, '', NULL, NULL, 1),
(87, 70, 515, 0, 230.0500, 2198.000, 'Noimage.png', 0, 2198.000, 1),
(105, 27, 515, 0, 208.3800, 10.000, 'Noimage.png', 0, 10.000, 1),
(106, 29, 515, 0, 208.3800, 10.000, 'Noimage.png', 1, 10.000, 1),
(107, 29, 416, 0, NULL, 5.000, '348_pcd_CPU1.jpg', NULL, NULL, 1),
(108, 29, 106, 0, NULL, 5.000, '349_pcd_CPU1.jpg', NULL, NULL, 1),
(152, 41, 599, 0, 0.4900, 21921.000, 'Noimage.png', 0, 21921.000, 1),
(153, 41, 548, 0, 0.0000, 69.000, 'Noimage.png', 0, 69.000, 1),
(154, 42, 599, 0, 0.4900, 21990.000, 'Noimage.png', 0, 21990.000, 1),
(215, 70, 515, 1, 230.0500, 2198.000, 'Noimage.png', 0, 2198.000, 1),
(216, 71, 582, 1, 1.8500, 2197.500, 'Noimage.png', 0, 2197.500, 1),
(217, 70, 20, 1, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(218, 71, 20, 0, 0.0000, 2.500, 'Noimage.png', 0, 2.500, 1),
(220, 73, 287, 0, 0.9400, 2200.000, 'Noimage.png', 0, 2200.000, 1),
(222, 77, 188, 0, 0.4200, 21990.000, 'Noimage.png', 0, 21990.000, 1),
(223, 78, 262, 0, 0.5400, 20120.000, 'Noimage.png', 0, 20120.000, 1),
(268, 87, 501, 0, 45.5500, 181.440, 'Noimage.png', 0, 181.440, 1),
(271, 90, 708, 0, 261.9400, 90.720, 'Noimage.png', 0, 90.720, 1),
(272, 88, 599, 0, 0.7100, 22700.000, 'Noimage.png', 0, 22700.000, 1),
(273, 130, 500, 0, 282.1600, 6.813, 'Noimage.png', 0, 6.813, 1),
(274, 91, 709, 0, 281.9200, 272.160, 'Noimage.png', 0, 272.160, 1),
(310, 160, 599, 0, 0.9500, 9120.000, 'Noimage.png', 0, 9120.000, 1),
(311, 88, 602, 0, -0.2900, 820.950, '20191020070528_IMG_20191019_092527.jpg', 0, 21050.000, 1),
(312, 88, 599, 0, 0.5900, 8041.100, '20191020070528_IMG_20191019_092527.jpg', 0, 21050.000, 1),
(313, 88, 601, 0, 0.2000, 6041.350, '20191020070528_IMG_20191019_092527.jpg', 0, 21050.000, 1),
(314, 88, 600, 0, 0.2400, 6167.650, '20191020070528_IMG_20191019_092527.jpg', 0, 21050.000, 1),
(315, 88, 601, 0, 0.2000, 1628.950, 'Noimage.png', 0, 1628.950, 1),
(320, 167, 788, 0, 2.5200, 200.000, 'Noimage.png', 0, 200.000, 1),
(323, 95, 708, 0, 260.9000, 226.800, 'Noimage.png', 0, 226.800, 1),
(324, 96, 515, 0, 226.6100, 90.720, 'Noimage.png', 0, 90.720, 1),
(325, 97, 442, 0, 1.6300, 0.450, 'Noimage.png', 0, 0.450, 1),
(327, 99, 484, 0, 34.1100, 0.450, 'Noimage.png', 0, 0.450, 1),
(328, 99, 499, 0, 140.4800, 0.450, 'Noimage.png', 0, 0.450, 1),
(329, 99, 445, 0, 3.0500, 0.450, 'Noimage.png', 0, 0.450, 1),
(330, 99, 477, 0, 10.2000, 0.454, 'Noimage.png', 0, 0.454, 1),
(332, 176, 835, 0, 0.5700, 1111.000, 'Noimage.png', 0, 1111.000, 1),
(333, 99, 445, 0, 3.0500, 0.454, 'Noimage.png', 0, 0.454, 1),
(334, 99, 709, 0, 282.2800, 0.454, 'Noimage.png', 0, 0.454, 1),
(335, 99, 442, 0, 1.6300, 0.454, 'Noimage.png', 0, 0.454, 1),
(336, 99, 442, 0, 1.6300, 0.454, 'Noimage.png', 0, 0.454, 1),
(337, 100, 484, 0, 34.1600, 90.718, 'Noimage.png', 0, 90.718, 1),
(338, 101, 445, 0, 3.0500, 6.804, 'Noimage.png', 0, 6.804, 1),
(342, 102, 475, 0, 2.7900, 6.804, 'Noimage.png', 0, 6.804, 1),
(343, 103, 485, 0, 73.6200, 90.718, 'Noimage.png', 0, 90.718, 1),
(344, 184, 845, 0, 0.0000, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(345, 104, 484, 0, 34.3900, 226.796, 'Noimage.png', 0, 226.796, 1),
(346, 105, 499, 0, 141.4700, 113.398, 'Noimage.png', 0, 113.398, 1),
(348, 107, 499, 0, 141.4100, 34.383, '20191025043157_cpu.jpg', 0, 45.360, 1),
(349, 107, 502, 0, 25.0600, 2.722, '20191025043157_cpu.jpg', 0, 45.360, 1),
(350, 107, 501, 0, 46.3600, 0.816, '20191025043157_cpu.jpg', 0, 45.360, 1),
(351, 107, 500, 0, 284.6500, 7.439, '20191025043157_cpu.jpg', 0, 45.360, 1),
(352, 184, 849, 0, 0.0000, 4305.000, 'Noimage.png', 0, 4305.000, 1),
(353, 109, 483, 0, 29.8700, 18.779, '20191025041650_20181219085058_ramimg.jpeg', 0, 90.720, 1),
(354, 184, 768, 0, 1.8500, 650.000, 'Noimage.png', 0, 650.000, 1),
(355, 109, 445, 0, 3.0800, 0.454, 'Noimage.png', 0, 0.454, 1),
(356, 109, 445, 0, 3.0800, 0.454, 'Noimage.png', 0, 0.454, 1),
(357, 109, 445, 0, 3.0800, 0.454, 'Noimage.png', 0, 0.454, 1),
(358, 108, 487, 0, 9.4600, 13.994, '20191025090644_IMG_6967.jpg', 0, 22.680, 1),
(359, 108, 486, 0, 6.6700, 8.686, '20191025090644_IMG_6967.jpg', 0, 22.680, 1),
(360, 108, 442, 0, 1.7100, 204.121, 'Noimage.png', 0, 204.121, 1),
(363, 110, 451, 0, 10.4600, 5.897, 'Noimage.png', 0, 5.897, 1),
(364, 111, 484, 0, 34.4500, 45.359, 'Noimage.png', 0, 45.359, 1),
(366, 113, 445, 0, 3.0800, 4.536, 'Noimage.png', 0, 4.536, 1),
(367, 114, 477, 0, 10.2900, 90.718, 'Noimage.png', 0, 90.718, 1),
(368, 114, 445, 0, 3.0800, 45.359, 'Noimage.png', 0, 45.359, 1),
(383, 115, 445, 0, 3.0800, 1102.311, 'Noimage.png', 0, 1102.311, 1),
(384, 116, 477, 0, 10.3200, 4409.245, 'Noimage.png', 0, 4409.245, 1),
(386, 117, 477, 0, 10.3200, 4409.245, 'Noimage.png', 0, 4409.245, 1),
(387, 117, 478, 0, 4.9000, 440.925, 'Noimage.png', 0, 440.925, 1),
(388, 118, 508, 0, 10.5000, 113.398, 'Noimage.png', 0, 113.398, 1),
(389, 118, 709, 0, 35.9500, 113.398, 'Noimage.png', 0, 113.398, 1),
(390, 119, 483, 0, 29.6200, 113.398, 'Noimage.png', 0, 113.398, 1),
(391, 119, 484, 0, 34.1100, 113.398, 'Noimage.png', 0, 113.398, 1),
(392, 120, 499, 0, 140.4800, 907.185, 'Noimage.png', 0, 907.185, 1),
(393, 120, 501, 0, 45.9900, 90.718, 'Noimage.png', 0, 90.718, 1),
(394, 121, 499, 0, 140.5100, 907.185, 'Noimage.png', 0, 907.185, 1),
(395, 121, 501, 0, 45.9900, 100.698, 'Noimage.png', 0, 100.698, 1),
(396, 122, 485, 0, 73.1900, 923.736, '20191027103306_ram.jpeg', 0, 1102.310, 1),
(397, 122, 483, 0, 29.6300, 77.162, '20191027103306_ram.jpeg', 0, 1102.310, 1),
(398, 122, 484, 0, 34.1200, 101.413, '20191027103306_ram.jpeg', 0, 1102.310, 1),
(399, 122, 485, 0, 73.1900, 190.058, '20191027103306_ram.jpeg', 0, 226.800, 1),
(400, 122, 483, 0, 29.6300, 15.876, '20191027103306_ram.jpeg', 0, 226.800, 1),
(401, 122, 484, 0, 34.1200, 20.866, '20191027103306_ram.jpeg', 0, 226.800, 1),
(402, 226, 583, 20, 1.3000, 3960.000, 'Noimage.png', 0, 3960.000, 1),
(403, 122, 483, 0, 29.6300, 15.876, '20191027103306_ram.jpeg', 0, 226.796, 1),
(404, 227, 599, 30, 0.7600, 18940.000, 'Noimage.png', 0, 18940.000, 1),
(405, 123, 445, 0, 3.0600, 2204.623, 'Noimage.png', 0, 2204.623, 1),
(406, 227, 548, 0, 0.0000, 102.000, 'Noimage.png', 0, 102.000, 1),
(407, 124, 445, 0, 3.0600, 453.592, 'Noimage.png', 0, 453.592, 1),
(408, 125, 445, 0, 3.0600, 453.592, 'Noimage.png', 0, 453.592, 1),
(409, 125, 477, 0, 10.2600, 90.718, 'Noimage.png', 0, 90.718, 1),
(410, 125, 445, 0, 3.0600, 0.454, 'Noimage.png', 0, 0.454, 1),
(411, 126, 485, 0, 73.2200, 1025.352, '20191027103306_ram.jpeg', 0, 1223.570, 1),
(412, 126, 483, 0, 29.6400, 85.650, '20191027103306_ram.jpeg', 0, 1223.570, 1),
(413, 126, 484, 0, 34.1400, 112.568, '20191027103306_ram.jpeg', 0, 1223.570, 1),
(414, 126, 485, 0, 73.2200, 210.958, '20191027103306_ram.jpeg', 0, 251.740, 1),
(415, 126, 483, 0, 29.6400, 17.622, '20191027103306_ram.jpeg', 0, 251.740, 1),
(416, 126, 484, 0, 34.1400, 23.160, '20191027103306_ram.jpeg', 0, 251.740, 1),
(417, 126, 485, 0, 73.2200, 210.958, '20191027103306_ram.jpeg', 0, 251.740, 1),
(418, 126, 483, 0, 29.6400, 17.622, '20191027103306_ram.jpeg', 0, 251.740, 1),
(419, 126, 484, 0, 34.1400, 23.160, '20191027103306_ram.jpeg', 0, 251.740, 1),
(420, 126, 485, 0, 73.2200, 210.961, '20191027103306_ram.jpeg', 0, 251.744, 1),
(421, 126, 483, 0, 29.6400, 17.622, '20191027103306_ram.jpeg', 0, 251.744, 1),
(422, 126, 484, 0, 34.1400, 23.160, '20191027103306_ram.jpeg', 0, 251.744, 1),
(423, 127, 485, 0, 73.2200, 206.780, '20191027103306_ram.jpeg', 0, 246.754, 1),
(424, 237, 599, 0, 0.8300, 17000.000, 'Noimage.png', 0, 17000.000, 1),
(425, 127, 484, 0, 34.1400, 22.701, '20191027103306_ram.jpeg', 0, 246.754, 1),
(426, 128, 708, 0, 262.4800, 90.718, 'Noimage.png', 0, 90.718, 1),
(427, 128, 543, 0, 116.5300, 181.437, 'Noimage.png', 0, 181.437, 1),
(428, 129, 497, 0, 0.7200, 453.592, 'Noimage.png', 0, 453.592, 1),
(429, 130, 499, 0, 140.1400, 30.753, '20191029044145_huge-quantity-pentium-pro-ceramic-cpu-scrap-for-sale-500x500.jpg', 0, 90.718, 1),
(430, 130, 502, 0, 24.7800, 2.812, '20191029044145_huge-quantity-pentium-pro-ceramic-cpu-scrap-for-sale-500x500.jpg', 0, 90.718, 1),
(431, 130, 501, 0, 45.8700, 5.443, '20191029044145_huge-quantity-pentium-pro-ceramic-cpu-scrap-for-sale-500x500.jpg', 0, 90.718, 1),
(432, 130, 500, 0, 282.1600, 51.619, '20191029044145_huge-quantity-pentium-pro-ceramic-cpu-scrap-for-sale-500x500.jpg', 0, 90.718, 1),
(433, 130, 499, 0, 140.1400, 16.099, '20191029044059_ceramic-computer-cpu-scrap-500x500.jpg', 0, 25.038, 1),
(434, 130, 502, 0, 24.7800, 0.726, '20191029044059_ceramic-computer-cpu-scrap-500x500.jpg', 0, 25.038, 1),
(435, 130, 501, 0, 45.8700, 1.402, '20191029044059_ceramic-computer-cpu-scrap-500x500.jpg', 0, 25.038, 1),
(436, 130, 500, 0, 282.1600, 6.810, '20191029044059_ceramic-computer-cpu-scrap-500x500.jpg', 0, 25.038, 1),
(437, 131, 708, 0, 261.7200, 113.398, 'Noimage.png', 0, 113.398, 1),
(438, 131, 500, 0, 282.1000, 113.398, 'Noimage.png', 0, 113.398, 1),
(439, 132, 499, 0, 140.1700, 68.039, 'Noimage.png', 0, 68.039, 1),
(440, 132, 708, 0, 261.7700, 68.039, 'Noimage.png', 0, 68.039, 1),
(441, 132, 485, 0, 73.0200, 90.718, 'Noimage.png', 0, 90.718, 1),
(442, 133, 485, 0, 73.0600, 90.718, 'Noimage.png', 0, 90.718, 1),
(443, 133, 484, 0, 34.0400, 136.078, 'Noimage.png', 0, 136.078, 1),
(444, 134, 485, 0, 73.0600, 117.934, 'Noimage.png', 1, 117.934, 1),
(445, 134, 483, 0, 29.5800, 113.398, 'Noimage.png', 1, 113.398, 1),
(446, 135, 484, 0, 34.0000, 50.349, 'Noimage.png', 1, 50.349, 1),
(447, 135, 441, 0, NULL, 23.000, '502_pcd_12.jpeg', 1, NULL, 1),
(448, 261, 599, 0, 0.9600, 9600.000, 'Noimage.png', 0, 9600.000, 1),
(449, 135, 443, 0, NULL, 8.600, '504_pcd_IMG_20190814_215507 (1).jpg', 1, NULL, 1),
(450, 135, 442, 0, NULL, 11.500, '505_pcd_motherboards1.jpg', 1, NULL, 1),
(451, 134, 520, 0, NULL, 113.400, '', NULL, NULL, 1),
(452, 136, 485, 0, 73.2500, 113.398, 'Noimage.png', 1, 113.398, 1),
(453, 136, 543, 0, 116.5900, 113.398, 'Noimage.png', 1, 113.398, 1),
(455, 136, 520, 0, NULL, 226.800, '', NULL, NULL, 1),
(456, 137, 485, 0, 74.0200, 453.592, 'Noimage.png', 0, 453.592, 1),
(457, 138, 515, 0, 230.2900, 90.718, 'Noimage.png', 0, 90.718, 1),
(458, 139, 484, 0, 34.6500, 90.718, 'Noimage.png', 0, 90.718, 1),
(459, 140, 515, 0, 230.2900, 90.718, 'Noimage.png', 0, 90.718, 1),
(460, 141, 515, 0, 230.2900, 90.718, 'Noimage.png', 0, 90.718, 1),
(464, 144, 713, 0, 0.0000, 6.804, 'Noimage.png', 1, 6.804, 1),
(477, 148, 515, 0, 224.2700, 226.796, 'Noimage.png', 0, 226.796, 1),
(478, 149, 708, 0, 258.8200, 0.000, 'Noimage.png', 0, 0.000, 1),
(484, 154, 515, 0, 224.2700, 453.592, 'Noimage.png', 0, 453.592, 1),
(485, 155, 543, 0, 114.7700, 226.796, 'Noimage.png', 0, 226.796, 1),
(486, 156, 515, 0, 224.2700, 11.340, 'Noimage.png', 0, 11.340, 1),
(489, 158, 835, 0, 0.5900, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(491, 160, 599, 0, 0.9500, 10220.000, 'Noimage.png', 0, 10220.000, 1),
(493, 162, 515, 0, 224.2700, 226.796, 'Noimage.png', 0, 226.796, 1),
(494, 163, 500, 0, 278.9400, 260.362, '20200205105732_CPU4.JPG', 0, 453.592, 1),
(495, 163, 502, 0, 24.4300, 25.401, '20200205105732_CPU4.JPG', 0, 453.592, 1),
(496, 163, 499, 0, 138.4900, 141.974, '20200205105732_CPU4.JPG', 0, 453.592, 1),
(497, 292, 904, 0, 0.0000, 1500.000, 'Noimage.png', 0, 1500.000, 1),
(498, 164, 515, 0, 224.2700, 249.476, 'Noimage.png', 0, 249.476, 1),
(499, 165, 362, 0, 2.2500, 1200.000, 'Noimage.png', 0, 1200.000, 1),
(500, 166, 787, 0, 5.2700, 1500.000, 'Noimage.png', 0, 1500.000, 1),
(501, 167, 788, 0, 2.5200, 200.000, 'Noimage.png', 0, 200.000, 1),
(502, 167, 818, 0, 14.0300, 10.000, 'Noimage.png', 0, 10.000, 1),
(503, 168, 788, 0, 2.4700, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(504, 169, 362, 0, 2.2600, 1500.000, 'Noimage.png', 0, 1500.000, 1),
(513, 311, 599, 0, 1.2800, 1100.000, 'Noimage.png', 0, 1100.000, 1),
(519, 171, 822, 0, 1.0600, 23119.000, 'Noimage.png', 0, 23119.000, 1),
(521, 173, 788, 0, 2.5700, 1234.000, 'Noimage.png', 0, 1234.000, 1),
(526, 176, 835, 0, 0.5700, 100000.000, 'Noimage.png', 0, 100000.000, 1),
(527, 177, 835, 0, 0.5700, 100000.000, 'Noimage.png', 0, 100000.000, 1),
(528, 178, 835, 0, 0.5700, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(533, 183, 822, 0, 1.0300, 100.000, 'Noimage.png', 1, 100.000, 1),
(534, 183, 756, 0, NULL, 3.000, '649_pcd_unnamed.png', 1, NULL, 1),
(535, 183, 765, 1, NULL, 60.000, '650_pcd_card.png', NULL, NULL, 1),
(536, 183, 788, 0, NULL, 37.000, '', NULL, NULL, 1),
(537, 183, 763, 0, NULL, 3.000, '', NULL, NULL, 1),
(540, 184, 822, 0, 1.0500, 2270.000, 'Noimage.png', 0, 2270.000, 1),
(541, 184, 788, 0, 2.5000, 450.000, 'Noimage.png', 0, 450.000, 1),
(542, 184, 789, 0, 1.4000, 375.000, 'Noimage.png', 0, 375.000, 1),
(544, 184, 778, 0, 0.7500, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(545, 184, 779, 0, 2.0400, 450.000, 'Noimage.png', 0, 450.000, 1),
(546, 184, 754, 0, 0.0000, 13365.000, 'Noimage.png', 0, 13365.000, 1),
(547, 184, 843, 0, 0.0000, 6500.000, 'Noimage.png', 0, 6500.000, 1),
(548, 184, 847, 0, 0.0000, 2260.000, 'Noimage.png', 0, 2260.000, 1),
(549, 184, 844, 0, 0.0000, 200.000, 'Noimage.png', 0, 200.000, 1),
(550, 184, 846, 0, 0.0000, 450.000, 'Noimage.png', 0, 450.000, 1),
(551, 184, 848, 0, 0.0000, 2500.000, 'Noimage.png', 0, 2500.000, 1),
(552, 184, 849, 0, 0.0000, 1455.000, 'Noimage.png', 0, 1455.000, 1),
(553, 184, 788, 0, 2.4900, 1.000, 'Noimage.png', 0, 1.000, 1),
(554, 184, 755, 0, 2.0500, 600.000, 'Noimage.png', 0, 600.000, 1),
(555, 185, 835, 0, 0.5600, 46000.000, 'Noimage.png', 0, 46000.000, 1),
(559, 184, 851, 0, 0.0000, 200.000, 'Noimage.png', 0, 200.000, 1),
(560, 187, 708, 1, 290.8100, 135.078, 'Noimage.png', 0, 135.078, 1),
(561, 187, 500, 0, 314.4800, 91.716, 'Noimage.png', 0, 91.716, 1),
(562, 188, 515, 0, 252.2200, 453.592, 'Noimage.png', 0, 453.592, 1),
(576, 194, 843, 0, 0.3700, 18000.000, 'Noimage.png', 0, 18000.000, 1),
(577, 195, 843, 0, 0.3700, 18000.000, 'Noimage.png', 1, 18000.000, 1),
(578, 195, 844, 0, NULL, 1800.000, '702_pcd_Screenshot 2020-03-24 at 11.47.55 am.png', 1, NULL, 1),
(581, 195, 765, 0, NULL, 5300.000, '', NULL, NULL, 1),
(586, 197, 843, 0, 0.3700, 50000.000, 'Noimage.png', 1, 50000.000, 1),
(587, 197, 853, 0, NULL, 35000.000, '', 1, NULL, 1),
(588, 197, 844, 0, NULL, 15000.000, '', 1, NULL, 1),
(589, 197, 775, 0, NULL, 35000.000, '', NULL, NULL, 1),
(590, 197, 852, 0, NULL, 15000.000, '', NULL, NULL, 1),
(591, 199, 843, 0, 0.3800, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(592, 199, 843, 0, 0.3800, 100.000, 'Noimage.png', 0, 100.000, 1),
(593, 199, 843, 0, 0.3800, 100.000, 'Noimage.png', 0, 100.000, 1),
(594, 199, 843, 0, 0.3800, 100.000, 'Noimage.png', 0, 100.000, 1),
(595, 199, 843, 0, 0.3800, 100.000, 'Noimage.png', 0, 100.000, 1),
(612, 200, 401, 0, 11.8300, 12222.000, 'Noimage.png', 1, 12222.000, 1),
(613, 200, 358, 3, NULL, 6111.000, '', 1, NULL, 1),
(614, 200, 405, 5, NULL, 6111.000, '', 1, NULL, 1),
(615, 200, 380, 0, NULL, 6111.000, '', NULL, NULL, 1),
(616, 200, 376, 0, NULL, 1.000, '', NULL, NULL, 1),
(617, 200, 412, 0, NULL, 6110.000, '', 1, NULL, 1),
(618, 200, 379, 0, NULL, 2000.000, '', NULL, NULL, 1),
(619, 200, 374, 0, NULL, 4110.000, '', 1, NULL, 1),
(620, 200, 430, 0, NULL, 4110.000, '', NULL, NULL, 1),
(655, 213, 599, 0, 0.6700, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(656, 214, 599, 0, 0.6800, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(684, 225, 599, 30, 0.7600, 18940.000, 'Noimage.png', 0, 18940.000, 1),
(685, 225, 583, 10, 1.3000, 3980.000, 'Noimage.png', 0, 3980.000, 1),
(686, 225, 548, 0, 0.0000, 80.000, 'Noimage.png', 0, 80.000, 1),
(687, 226, 599, 30, 0.7600, 18940.000, 'Noimage.png', 0, 18940.000, 1),
(688, 226, 583, 20, 1.3000, 4260.000, 'Noimage.png', 0, 4260.000, 1),
(689, 226, 548, 0, 0.0000, 100.000, 'Noimage.png', 0, 100.000, 1),
(690, 227, 599, 30, 0.7600, 18440.000, 'Noimage.png', 0, 18440.000, 1),
(691, 227, 583, 21, 1.3000, 4458.000, 'Noimage.png', 0, 4458.000, 1),
(692, 227, 0, 0, 0.0000, 102.000, 'Noimage.png', 0, 102.000, 1),
(693, 228, 599, 36, 0.7600, 17928.000, 'Noimage.png', 0, 17928.000, 1),
(694, 228, 583, 20, 1.3000, 3960.000, 'Noimage.png', 0, 3960.000, 1),
(695, 228, 548, 0, 0.0000, 112.000, 'Noimage.png', 0, 112.000, 1),
(696, 229, 582, 0, 1.9500, 15000.000, 'Noimage.png', 0, 15000.000, 1),
(697, 230, 599, 0, 0.7600, 47288.000, 'Noimage.png', 0, 47288.000, 1),
(698, 230, 600, 0, 0.4400, 34776.000, 'Noimage.png', 0, 34776.000, 1),
(699, 230, 601, 0, 0.2100, 5336.000, 'Noimage.png', 0, 5336.000, 1),
(700, 230, 602, 0, -0.2400, 4600.000, 'Noimage.png', 0, 4600.000, 1),
(701, 231, 599, 0, 0.7600, 47288.000, 'Noimage.png', 0, 47288.000, 1),
(702, 231, 600, 0, 0.4400, 34776.000, 'Noimage.png', 0, 34776.000, 1),
(703, 231, 601, 0, 0.2100, 5336.000, 'Noimage.png', 0, 5336.000, 1),
(704, 231, 602, 0, -0.2400, 4600.000, 'Noimage.png', 0, 4600.000, 1),
(705, 232, 599, 0, 0.8200, 8000.000, 'Noimage.png', 0, 8000.000, 1),
(706, 233, 600, 0, 0.4800, 8000.000, 'Noimage.png', 0, 8000.000, 1),
(707, 234, 599, 0, 0.8200, 8000.000, 'Noimage.png', 0, 8000.000, 1),
(708, 235, 599, 0, 0.8123, 8000.000, 'Noimage.png', 0, 8000.000, 1),
(710, 237, 599, 0, 0.8300, 18000.000, 'Noimage.png', 0, 18000.000, 1),
(711, 237, 622, 0, 0.7700, 5000.000, 'Noimage.png', 0, 5000.000, 1),
(717, 238, 599, 0, 0.9400, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(718, 239, 599, 0, 0.9400, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(719, 240, 599, 0, 0.9400, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(720, 241, 599, 0, 0.9400, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(721, 242, 599, 0, 0.9400, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(722, 243, 599, 0, 0.9300, 22500.000, 'Noimage.png', 0, 22500.000, 1),
(723, 245, 599, 0, 0.9400, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(728, 248, 599, 0, 0.9500, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(734, 251, 599, 0, 1.0000, 70000.000, 'Noimage.png', 0, 70000.000, 1),
(740, 254, 599, 0, 0.9900, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(741, 257, 599, 0, 0.9900, 22000.000, 'Noimage.png', 0, 22000.000, 1),
(745, 258, 599, 0, 0.9900, 22000.000, 'Noimage.png', 0, 22000.000, 1),
(750, 260, 601, 0, 0.2400, 80000.000, 'Noimage.png', 0, 80000.000, 1),
(752, 261, 599, 0, 0.9500, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(766, 258, 549, 0, 2.7200, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(769, 266, 599, 0, 1.0500, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(770, 266, 599, 0, 1.0500, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(771, 266, 599, 0, 1.0500, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(775, 269, 599, 0, 1.1700, 22500.000, 'Noimage.png', 0, 22500.000, 1),
(784, 273, 599, 1, 1.1400, 498.000, 'Noimage.png', 0, 498.000, 1),
(785, 273, 548, 0, 0.0000, 2.000, 'Noimage.png', 0, 2.000, 1),
(788, 275, 429, 0, 1.0500, 1330.000, 'Noimage.png', 1, 1330.000, 1),
(789, 275, 869, 0, 0.8400, 210.000, 'Noimage.png', 1, 210.000, 1),
(790, 275, 882, 0, 1.1000, 2150.000, 'Noimage.png', 1, 2150.000, 1),
(791, 275, 899, 0, 0.0000, 2490.000, 'Noimage.png', 1, 2490.000, 1),
(792, 275, 898, 0, 0.0000, 40.000, 'Noimage.png', 1, 40.000, 1),
(793, 275, 373, 0, NULL, 1797.000, '1098_pcd_plastic.jpg', NULL, NULL, 1),
(794, 275, 900, 0, NULL, 739.500, '1099_pcd_computermetal.jpg', NULL, NULL, 1),
(795, 275, 357, 0, NULL, 1658.000, '1100_pcd_circuitboardspile.jpg', 1, NULL, 1),
(796, 275, 378, 0, NULL, 122.500, '1101_pcd_aluminum.jpg', NULL, NULL, 1),
(797, 275, 901, 0, NULL, 141.000, '1102_pcd_wires.jpg', 1, NULL, 1),
(798, 275, 372, 0, NULL, 746.000, '1105_pcd_computermetal.jpg', NULL, NULL, 1),
(799, 275, 902, 0, NULL, 1016.000, '1111_pcd_libats.jpg', NULL, NULL, 1),
(800, 275, 381, 0, NULL, 977.300, '1118_pcd_0304s3.jpg', 1, NULL, 1),
(801, 275, 430, 0, NULL, 820.000, '1119_pcd_download.jpg', NULL, NULL, 1),
(802, 275, 361, 0, NULL, 1.700, '', NULL, NULL, 1),
(803, 275, 427, 0, NULL, 887.400, '1124_pcd_FinalPro111.jpeg', NULL, NULL, 1),
(804, 275, 903, 0, NULL, 89.900, '1125_pcd_blackstones.jpg', NULL, NULL, 1),
(811, 280, 599, 0, 1.1400, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(812, 281, 599, 0, 1.1400, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(813, 282, 599, 0, 1.2200, 15000.000, 'Noimage.png', 0, 15000.000, 1),
(814, 283, 599, 0, 1.2200, 15000.000, 'Noimage.png', 0, 15000.000, 1),
(815, 283, 622, 0, 1.0200, 5000.000, 'Noimage.png', 0, 5000.000, 1),
(825, 291, 622, 0, 1.0800, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(826, 292, 904, 0, 0.0000, 5000.000, 'Noimage.png', 0, 5000.000, 1),
(828, 296, 622, 0, 1.0800, 3000.000, 'Noimage.png', 0, 3000.000, 1),
(833, 304, 599, 0, 1.4100, 48000.000, 'Noimage.png', 0, 48000.000, 1),
(834, 305, 599, 0, 1.4100, 48000.000, 'Noimage.png', 0, 48000.000, 1),
(835, 306, 599, 0, 1.4100, 23500.000, 'Noimage.png', 0, 23500.000, 1),
(836, 307, 904, 0, 0.0000, 1500.000, 'Noimage.png', 0, 1500.000, 1),
(842, 311, 599, 0, 1.2800, 1100.000, 'Noimage.png', 0, 1100.000, 1),
(843, 311, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(844, 313, 599, 0, 1.2800, 1100.000, 'Noimage.png', 0, 1100.000, 1),
(845, 314, 599, 0, 1.2800, 1100.000, 'Noimage.png', 0, 1100.000, 1),
(852, 326, 599, 0, 1.2400, 12000.000, 'Noimage.png', 0, 12000.000, 1),
(853, 327, 599, 0, 1.2400, 12000.000, 'Noimage.png', 0, 12000.000, 1),
(854, 327, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(857, 332, 599, 0, 1.2200, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(858, 332, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(863, 336, 600, 0, 0.6700, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(868, 343, 961, 0, 0.6600, 21046.686, 'Noimage.png', 0, 21046.686, 1),
(869, 344, 960, 0, 1.3800, 21092.045, 'Noimage.png', 0, 21092.045, 1),
(870, 345, 960, 0, 1.3800, 21062.107, 'Noimage.png', 0, 21062.107, 1),
(871, 347, 600, 0, 0.6600, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(873, 349, 600, 0, 0.6600, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(889, 351, 910, 0, 2.5500, 11339.809, 'Noimage.png', 0, 11339.809, 1),
(890, 353, 910, 0, 2.5500, 24947.580, 'Noimage.png', 0, 24947.580, 1),
(891, 353, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(892, 352, 910, 0, 2.4800, 20159.459, 'Noimage.png', 0, 20159.459, 1),
(893, 354, 960, 0, 1.3800, 5443.108, 'Noimage.png', 0, 5443.108, 1),
(894, 355, 960, 0, 1.3400, 23000.000, 'Noimage.png', 0, 23000.000, 1),
(895, 356, 960, 0, 1.3400, 23111.000, 'Noimage.png', 0, 23111.000, 1),
(931, 366, 599, 0, 1.1900, 8800.000, 'Noimage.png', 1, 8800.000, 1),
(932, 366, 593, 0, 2.2900, 2477.000, 'Noimage.png', 1, 2477.000, 1),
(934, 368, 599, 0, 1.2800, 18100.000, 'Noimage.png', 1, 18100.000, 1),
(935, 369, 599, 0, 1.1400, 23590.000, 'Noimage.png', 1, 23590.000, 1),
(936, 370, 622, 0, 1.0600, 23943.000, 'Noimage.png', 0, 23943.000, 1),
(942, 374, 599, 0, 1.2700, 23100.000, 'Noimage.png', 1, 23100.000, 1),
(943, 375, 599, 0, 1.1900, 24040.000, 'Noimage.png', 1, 24040.000, 1),
(944, 376, 599, 0, 1.2800, 13829.000, 'Noimage.png', 1, 13829.000, 1),
(947, 377, 599, 0, 1.1400, 23740.000, 'Noimage.png', 1, 23740.000, 1),
(948, 378, 599, 0, 1.1900, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(949, 379, 600, 0, 0.5100, 24200.000, 'Noimage.png', 1, 24200.000, 1),
(951, 381, 599, 0, 1.1300, 19295.000, 'Noimage.png', 1, 19295.000, 1),
(952, 382, 600, 0, 0.5100, 3960.000, 'Noimage.png', 1, 3960.000, 1),
(953, 383, 600, 0, 0.8200, 15235.000, 'Noimage.png', 1, 15235.000, 1),
(954, 389, 993, 1, 0.3300, 33.000, 'Noimage.png', 0, 33.000, 1),
(955, 389, 994, 2, 0.3800, 36.000, 'Noimage.png', 0, 36.000, 1),
(956, 389, 992, 0, 0.3500, 63.000, 'Noimage.png', 0, 63.000, 1),
(957, 391, 600, 0, 0.8100, 5551.000, 'Noimage.png', 1, 5551.000, 1),
(958, 392, 994, 0, 0.5700, 50.000, 'Noimage.png', 1, 50.000, 1),
(959, 393, 973, 0, 5.5500, 1.000, 'Noimage.png', 1, 1.000, 1),
(964, 391, 897, 0, 0.2100, 5311.000, 'Noimage.png', 1, 5311.000, 1),
(965, 391, 995, 0, 0.6100, 10898.000, 'Noimage.png', 0, 10898.000, 1),
(966, 396, 601, 0, 0.2700, 21356.000, 'Noimage.png', 1, 21356.000, 1),
(967, 396, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(968, 396, 897, 0, 0.2100, 1214.000, 'Noimage.png', 1, 1214.000, 1),
(969, 397, 992, 12, 0.4400, 16405.000, 'Noimage.png', 0, 16405.000, 1),
(970, 397, 993, 2, 0.3300, 1376.000, 'Noimage.png', 0, 1376.000, 1),
(971, 397, 961, 2, 1.0100, 1811.000, 'Noimage.png', 0, 1811.000, 1),
(976, 399, 599, 0, 1.5700, 22000.000, 'Noimage.png', 0, 22000.000, 1),
(977, 391, 1004, 0, NULL, 1318.000, '', 1, NULL, 1),
(978, 391, 1001, 0, NULL, 2407.000, '', 1, NULL, 1),
(979, 391, 1006, 0, NULL, 587.000, '', NULL, NULL, 1),
(980, 391, 1005, 0, NULL, 268.000, '', NULL, NULL, 1),
(981, 391, 561, 0, NULL, 2046.000, '', NULL, NULL, 1),
(982, 400, 600, 0, 0.8100, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(983, 400, 599, 0, 1.5700, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(984, 400, 600, 0, 0.8100, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(985, 397, 909, 0, 0.0000, 8.000, 'Noimage.png', 0, 8.000, 1),
(986, 401, 996, 0, 0.2500, 16000.000, 'Noimage.png', 0, 16000.000, 1),
(987, 401, 897, 0, 0.2100, 2000.000, 'Noimage.png', 0, 2000.000, 1),
(988, 402, 600, 0, 0.8300, 12541.000, 'Noimage.png', 1, 12541.000, 1),
(989, 402, 599, 0, 1.6100, 1624.000, 'Noimage.png', 1, 1624.000, 1),
(990, 403, 1012, 0, 1.9500, 1000.000, 'Noimage.png', 1, 1000.000, 1),
(991, 403, 599, 0, 1.5900, 22760.000, 'Noimage.png', 1, 22760.000, 1),
(992, 396, 1006, 0, NULL, 190.000, '1366_pcd_WhatsApp Image 2022-02-28 at 13.46.54.jpeg', NULL, NULL, 1),
(993, 396, 1004, 0, NULL, 250.000, '1367_pcd_WhatsApp Image 2022-02-28 at 13.48.04.jpeg', 1, NULL, 1),
(994, 396, 1001, 0, NULL, 606.000, '1368_pcd_WhatsApp Image 2022-02-28 at 13.48.04 (1).jpeg', 1, NULL, 1),
(995, 396, 1005, 0, NULL, 48.000, '1369_pcd_WhatsApp Image 2022-02-28 at 14.07.32.jpeg', NULL, NULL, 1),
(996, 396, 561, 0, NULL, 378.000, '1370_pcd_WhatsApp Image 2022-02-28 at 14.11.35.jpeg', NULL, NULL, 1),
(997, 405, 599, 0, 1.7000, 21960.000, 'Noimage.png', 1, 21960.000, 1),
(998, 406, 994, 23, 0.5700, 7284.000, 'Noimage.png', 0, 7284.000, 1),
(1000, 407, 992, 0, 0.3800, 15422.000, 'Noimage.png', 0, 15422.000, 1),
(1001, 409, 993, 0, 0.2800, 1.000, 'Noimage.png', 0, 1.000, 1),
(1002, 408, 993, 0, 0.2800, 16.100, 'Noimage.png', 0, 16.100, 1),
(1003, 408, 1016, 0, 0.0000, 34.300, 'Noimage.png', 0, 34.300, 1),
(1004, 408, 1015, 0, 0.0000, 257.700, 'Noimage.png', 0, 257.700, 1),
(1005, 408, 1017, 0, 0.0000, 12.900, 'Noimage.png', 0, 12.900, 1),
(1006, 408, 1013, 0, 0.0000, 6.100, 'Noimage.png', 0, 6.100, 1),
(1007, 408, 932, 0, 0.9800, 6.700, 'Noimage.png', 0, 6.700, 1),
(1008, 408, 994, 0, 0.5700, 390.100, 'Noimage.png', 0, 390.100, 1),
(1009, 408, 918, 0, 0.0000, 18.700, 'Noimage.png', 0, 18.700, 1),
(1010, 408, 920, 0, 0.0000, 8.400, 'Noimage.png', 0, 8.400, 1),
(1011, 410, 961, 50, 0.5900, 19900.000, 'Noimage.png', 0, 19900.000, 1),
(1012, 412, 600, 0, 0.8600, 22700.000, 'Noimage.png', 1, 22700.000, 1),
(1013, 413, 600, 0, 0.8600, 20750.000, 'Noimage.png', 1, 20750.000, 1),
(1014, 410, 994, 25, 0.5700, 9950.000, 'Noimage.png', 0, 9950.000, 1),
(1015, 410, 992, 25, 0.3800, 9950.000, 'Noimage.png', 0, 9950.000, 1),
(1016, 393, 1008, 0, NULL, 0.100, '', NULL, NULL, 1),
(1017, 393, 1010, 0, NULL, 0.200, '', 1, NULL, 1),
(1018, 393, 1018, 0, NULL, 0.500, '', 1, NULL, 1),
(1019, 393, 1009, 0, NULL, 0.200, '', 1, NULL, 1),
(1020, 393, 920, 0, NULL, 0.100, '', NULL, NULL, 1),
(1021, 393, 1007, 0, NULL, 0.100, '', NULL, NULL, 1),
(1022, 393, 927, 0, NULL, 0.200, '', NULL, NULL, 1),
(1023, 393, 922, 0, NULL, 0.300, '', NULL, NULL, 1),
(1024, 393, 921, 0, NULL, 0.200, '', NULL, NULL, 1),
(1025, 392, 1018, 0, NULL, 12.000, '', 1, NULL, 1),
(1026, 392, 918, 0, NULL, 38.000, '', 1, NULL, 1),
(1027, 392, 928, 0, NULL, 6.000, '', NULL, NULL, 1),
(1028, 392, 0, 0, NULL, 6.000, '', NULL, NULL, 1),
(1029, 392, 1007, 0, NULL, 30.000, '', NULL, NULL, 1),
(1030, 392, 920, 0, NULL, 5.000, '', NULL, NULL, 1),
(1031, 392, 909, 0, NULL, 3.000, '', NULL, NULL, 1),
(1032, 414, 994, 0, 0.5700, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(1033, 415, 549, 0, 2.5200, 17000.000, 'Noimage.png', 0, 17000.000, 1),
(1034, 416, 0, 0, 0.0000, 17000.000, 'Noimage.png', 0, 17000.000, 1),
(1035, 417, 545, 0, 8.0300, 17656.000, 'Noimage.png', 1, 17656.000, 1),
(1036, 418, 546, 0, 8.9100, 16065.000, 'Noimage.png', 1, 16065.000, 1),
(1038, 419, 545, 0, 8.0600, 0.000, 'Noimage.png', 0, 0.000, 1),
(1039, 419, 546, 0, 8.9200, 0.000, 'Noimage.png', 0, 0.000, 1),
(1040, 419, 563, 0, 15854.3301, 0.000, 'Noimage.png', 0, 0.000, 1),
(1043, 391, 566, 0, NULL, 280.000, '', NULL, NULL, 1),
(1044, 391, 999, 0, NULL, 2130.000, '', NULL, NULL, 1),
(1045, 396, 566, 0, NULL, 34.000, '', NULL, NULL, 1),
(1046, 396, 999, 0, NULL, 564.000, '', NULL, NULL, 1),
(1047, 420, 0, 25, 0.0000, 10950.000, 'Noimage.png', 0, 10950.000, 1),
(1048, 421, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(1049, 422, 0, 0, 0.0000, 0.000, 'Noimage.png', 0, 0.000, 1),
(1050, 423, 0, 0, 0.0000, 22500.000, 'Noimage.png', 0, 22500.000, 1),
(1052, 424, 599, 0, 1.2700, 22320.000, 'Noimage.png', 1, 22320.000, 1),
(1053, 425, 549, 0, 2.5300, 300000.000, 'Noimage.png', 0, 300000.000, 1),
(1054, 426, 0, 0, 0.0000, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(1055, 427, 599, 0, 1.4300, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(1056, 427, 622, 0, 0.8500, 14000.000, 'Noimage.png', 0, 14000.000, 1),
(1057, 428, 599, 0, 1.4300, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(1058, 429, 599, 0, 1.4400, 10000.000, 'Noimage.png', 0, 10000.000, 1),
(1059, 429, 622, 0, 0.8600, 14000.000, 'Noimage.png', 0, 14000.000, 1),
(1060, 430, 599, 0, 1.2400, 23960.000, 'Noimage.png', 1, 23960.000, 1),
(1061, 431, 622, 0, 0.8000, 3000.000, 'Noimage.png', 0, 3000.000, 1),
(1062, 433, 622, 0, 0.8000, 3000.000, 'Noimage.png', 0, 3000.000, 1),
(1064, 435, 599, 0, 1.2400, 14750.000, 'Noimage.png', 1, 14750.000, 1),
(1066, 437, 600, 0, 0.6300, 8278.000, 'Noimage.png', 1, 8278.000, 1),
(1067, 438, 1012, 0, 1.7700, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(1068, 439, 961, 0, 0.5300, 5000.000, 'Noimage.png', 0, 5000.000, 1),
(1069, 440, 599, 0, 1.2500, 21786.000, 'Noimage.png', 1, 21786.000, 1),
(1070, 441, 599, 0, 1.2300, 20400.000, 'Noimage.png', 1, 20400.000, 1),
(1073, 443, 599, 0, 1.2800, 22940.000, 'Noimage.png', 1, 22940.000, 1),
(1074, 444, 599, 0, 1.2900, 20000.000, 'Noimage.png', 0, 20000.000, 1),
(1075, 440, 1012, 0, 1.7700, 1594.000, 'Noimage.png', 1, 1594.000, 1),
(1078, 447, 961, 40, 0.5400, 19920.000, 'Noimage.png', 0, 19920.000, 1),
(1079, 447, 0, 0, 0.0000, 80.000, 'Noimage.png', 0, 80.000, 1),
(1080, 448, 599, 0, 1.2300, 21700.000, 'Noimage.png', 1, 21700.000, 1),
(1081, 449, 429, 0, 1.1200, 800.000, 'Noimage.png', 0, 800.000, 1),
(1082, 449, 357, 0, 2.6400, 450.000, 'Noimage.png', 0, 450.000, 1),
(1083, 449, 414, 0, 0.1500, 2150.000, 'Noimage.png', 0, 2150.000, 1),
(1084, 449, 368, 0, 8.7900, 100.000, 'Noimage.png', 0, 100.000, 1),
(1085, 450, 961, 19, 0.5300, 252.000, 'Noimage.png', 0, 252.000, 1),
(1086, 450, 909, 0, 0.0000, 38.000, 'Noimage.png', 0, 38.000, 1),
(1087, 451, 961, 16, 0.3300, 13906.000, 'Noimage.png', 1, 13906.000, 1),
(1088, 451, 909, 0, 0.0000, 966.000, 'Noimage.png', 0, 966.000, 1),
(1089, 451, 0, 0, 0.0000, 92.000, 'Noimage.png', 0, 92.000, 1),
(1090, 452, 1021, 0, 0.0000, 300.000, 'Noimage.png', 1, 300.000, 1),
(1091, 453, 1022, 1, 0.0000, 41.000, 'Noimage.png', 1, 41.000, 1),
(1093, 454, 1022, 0, 0.0000, 159.000, 'Noimage.png', 1, 159.000, 1),
(1094, 453, 909, 0, 0.0000, 2.000, 'Noimage.png', 0, 2.000, 1),
(1095, 452, 921, 0, NULL, 175.000, '', NULL, NULL, 1),
(1096, 452, 920, 0, NULL, 80.000, '', NULL, NULL, 1),
(1097, 452, 1009, 0, NULL, 20.000, '', NULL, NULL, 1),
(1098, 452, 915, 0, NULL, 25.000, '', 1, NULL, 1),
(1099, 452, 929, 0, NULL, 20.000, '1570_pcd_Copper_1000KG.jpg', 1, NULL, 1),
(1100, 452, 922, 0, NULL, 5.000, '1571_pcd_Copper_1000KG.jpg', NULL, NULL, 1),
(1101, 452, 927, 0, NULL, 20.000, '', NULL, NULL, 1),
(1102, 453, 921, 0, NULL, 11.000, '1573_pcd_received_635882348220777.jpeg', NULL, NULL, 1),
(1103, 453, 911, 0, NULL, 5.000, '1574_pcd_received_468834342017408.jpeg', 1, NULL, 1),
(1104, 453, 920, 0, NULL, 15.000, '1575_pcd_received_796905574931429.jpeg', NULL, NULL, 1),
(1105, 453, 1008, 0, NULL, 1.000, '1576_pcd_received_537608714392448.jpeg', NULL, NULL, 1),
(1106, 453, 1014, 0, NULL, 2.000, '1577_pcd_received_637427161264896.jpeg', 1, NULL, 1),
(1107, 453, 922, 0, NULL, 8.000, '1578_pcd_P_20221109_062957.jpg', NULL, NULL, 1),
(1108, 453, 929, 0, NULL, 6.000, '1580_pcd_WhatsApp Image 2022-11-07 at 7.37.43 AM.jpeg', 1, NULL, 1),
(1113, 456, 1022, 1, 0.0000, 147.000, 'Noimage.png', 1, 147.000, 1),
(1114, 456, 909, 0, 0.0000, 2.000, 'Noimage.png', 0, 2.000, 1),
(1115, 455, 909, 0, 0.0000, 10.000, 'Noimage.png', 0, 10.000, 1),
(1116, 454, 1007, 0, NULL, 133.000, '', NULL, NULL, 1),
(1117, 454, 911, 0, NULL, 20.000, '', 1, NULL, 1),
(1118, 454, 920, 0, NULL, 133.000, '', NULL, NULL, 1),
(1119, 454, 1014, 0, NULL, 12.000, '', 1, NULL, 1),
(1120, 454, 922, 0, NULL, 32.800, '1585_pcd_P_20221109_062957.jpg', NULL, NULL, 1),
(1121, 454, 929, 0, NULL, 19.200, '1586_pcd_1000kg_Copper.jpeg', 1, NULL, 1),
(1122, 457, 600, 0, 0.4000, 20233.000, 'Noimage.png', 1, 20233.000, 1),
(1123, 457, 897, 0, 0.1100, 3455.000, 'Noimage.png', 0, 3455.000, 1),
(1124, 458, 1012, 0, 0.9800, 23480.000, 'Noimage.png', 1, 23480.000, 1),
(1125, 459, 600, 0, 0.4000, 11287.000, 'Noimage.png', 1, 11287.000, 1),
(1128, 461, 0, 0, 0.0000, 12809.000, 'Noimage.png', 0, 12809.000, 1),
(1129, 461, 0, 0, 0.0000, 3780.000, 'Noimage.png', 0, 3780.000, 1),
(1130, 456, 1007, 0, NULL, 8.000, '1621_pcd_ABS_Plastic_2045KG.jpeg', NULL, NULL, 1),
(1131, 456, 905, 0, NULL, 26.000, '1622_pcd_Circuit Boards.jpg', 1, NULL, 1),
(1132, 456, 920, 0, NULL, 83.010, '1625_pcd_Metal.jpg', NULL, NULL, 1),
(1133, 456, 1014, 0, NULL, 4.000, '1626_pcd_received_637427161264896.jpeg', 1, NULL, 1),
(1134, 456, 922, 0, NULL, 41.210, '1627_pcd_Green_Fiber.jpg', NULL, NULL, 1),
(1135, 456, 929, 0, NULL, 14.780, '1628_pcd_Copper sample 5.jpeg', 1, NULL, 1),
(1136, 456, 975, 0, NULL, 14.780, '1632_pcd_Copper sample 5.jpeg', NULL, NULL, 1),
(1137, 454, 1023, 0, NULL, 6.000, '', 1, NULL, 1),
(1138, 454, 917, 0, NULL, 13.200, '1637_pcd_Copper sample 5.jpeg', NULL, NULL, 1),
(1139, 453, 1023, 0, NULL, 1.600, '1641_pcd_Wire_Cables.jpg', 1, NULL, 1),
(1140, 453, 917, 0, NULL, 4.400, '1643_pcd_Copper sample 5.jpeg', NULL, NULL, 1),
(1141, 464, 600, 0, 0.4400, 7020.000, 'Noimage.png', 0, 7020.000, 1),
(1142, 464, 622, 0, 0.4700, 2927.000, 'Noimage.png', 0, 2927.000, 1),
(1143, 465, 1012, 0, 1.8000, 10000.000, 'Noimage.png', 1, 10000.000, 1),
(1144, 466, 841, 0, 0.4700, 10460.000, 'Noimage.png', 0, 10460.000, 1),
(1145, 467, 1012, 0, 1.8000, 12622.000, 'Noimage.png', 1, 12622.000, 1),
(1146, 467, 566, 0, NULL, 5536.000, '1647_pcd_cupru folia din 10.000 kg 11.07.2023.jpg', NULL, NULL, 1),
(1147, 467, 1111, 0, NULL, 7086.000, '1648_pcd_graphite powder.jpg', NULL, NULL, 1),
(1151, 468, 1012, 0, 1.8000, 23210.000, 'Noimage.png', 0, 23210.000, 1),
(1152, 469, 1012, 0, 1.8000, 24000.000, 'Noimage.png', 0, 24000.000, 1),
(1153, 470, 0, 5, 0.0000, 490.000, 'Noimage.png', 0, 490.000, 1),
(1154, 470, 0, 1, 0.0000, 498.000, 'Noimage.png', 0, 498.000, 1),
(1155, 471, 1066, 1, 5.3900, 798.000, 'Noimage.png', 0, 798.000, 1),
(1156, 473, 1055, 2, 2.4400, 996.000, 'Noimage.png', 0, 996.000, 1),
(1157, 473, 1025, 1, 9.8900, 98.000, 'Noimage.png', 0, 98.000, 1),
(1158, 474, 1055, 0, 2.4400, 1000.000, 'Noimage.png', 0, 1000.000, 1),
(1159, 475, 0, 0, 0.0000, 1000.000, 'Noimage.png', 0, 1000.000, 1);

-- --------------------------------------------------------

--
-- Table structure for table `suppliers`
--

CREATE TABLE `suppliers` (
  `id` int(11) NOT NULL,
  `userid` int(11) DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) DEFAULT 1,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `username` varchar(2500) NOT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `suppliers`
--

INSERT INTO `suppliers` (`id`, `userid`, `name`, `company`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `zipcode`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `username`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(56, 1, 'Evergreen Recycling LLC', 1, 'HJ54', '', 'GreenSeed', '302555621', '332 Evergreen Rd', '10024', NULL, 'Untied States', NULL, 'Hasholt', 'Wilonoma', NULL, 3, 1, '6153234584', '6153458988', 'Jason Dulap', '6153435585', '6153584675', 'jason@pfane.com', 'jason@pfane.com', 'jason111', 'jason@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, 'A', NULL, NULL, NULL, NULL, NULL, 1),
(57, 1, 'BIanatt', 1, 'GC19', '', 'Bianatt', 'GC1142482', '2-4 Mesogeion Ave', '11527', NULL, 'Greece', NULL, 'Athens', 'Greece', NULL, 2, 1, ' +30 210 5596010-12', ' +30 210 5596013', 'Oarie Husach', ' +30 210 5596010', ' +30 210 5596010', 'contact@bianatt.gr', 'contact@bianatt.gr', 'bianatt131$!', 'contact@bianatt.gr', 'https://www.vianatt.gr', 'A', NULL, NULL, NULL, NULL, '1', '57_logo_vianatt_en.jpg', NULL, NULL, NULL, NULL, 1),
(58, 1, 'ALKU GMBH', 1, 'GC19', '', 'ALKU', 'GE466859', 'Hans-Böckler-Straße 6', '93142', NULL, 'Germany', NULL, 'Maxhütte-Haidhof ', 'Germany', NULL, 2, 1, '+49 9471 / 60194-0', '+49 9471 / 60194-0', 'Pawel Zubrzycki', '+49 1512 1402684', '+49 1512 1402684', 'Pawel.Zubrzycki@alku-gmbh.de', 'Pawel.Zubrzycki@alku-gmbh.de', '13313414alkupawel', 'Pawel.Zubrzycki@alku-gmbh.de', 'alku-gmbh.de', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(59, 1, 'Walts Scrap', 1, 'EPA3341', '', 'Walts', 'TAXID123', '123 Santamonica Blvd', '90210', NULL, 'United States', NULL, 'Progressive', 'California', NULL, 3, 1, '766903531', '7475564565', 'Raymond Langevoort', '766903531', '7475564586', 'sample@pfane.com', 'sample@pfane.com', '123123', 'sample@pfane.com', 'none', 'M', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(60, 4, 'Smartwebbers', 1, 'EPA3341', '', 'Smartwebbers', 'PKR', 'ayub rawalpindi', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', NULL, 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@hotmail.com', 'malikmasif@hotmail.com', '123456', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, NULL, NULL, NULL, 1),
(61, 7, 'Velinci Scrap', 1, 'EPA3341', '', 'Velinci', 'RO335142', '21a Strada Decembrie', '543432', NULL, 'Romania', NULL, 'Oradea', 'Bihor', NULL, 2, 2, '+40725584541', '0', 'Alex Smecu', '+4037525424', '+ 46 8 610 15 00', 'donate@pfane.com', 'donate@pfane.com', '123456', 'donate@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, '1', '61_Evotus_Inc_fs.png', NULL, NULL, NULL, NULL, 1),
(64, 10, 'Blue Sky Solutions', 1, '', '', 'Wei, Guy & Mike', '', '309 Chapanoke Road #114 ', '27603', NULL, 'USA', NULL, 'Raleigh', 'North Carolina', NULL, 3, 2, '(252) 325-5503', '', 'Wei, Guy, Mike', '', '(252) 325-5503', 'd.ramsell@evotusinc.com', 'd.ramsell@evotusinc.com', 'Lll4433#', 'd.ramsell@evotusinc.com', 'https://blueskysolutions.us', 'A', NULL, NULL, NULL, NULL, '100', NULL, NULL, NULL, NULL, NULL, 1),
(66, 11, 'ALKU METALS GMBH', 1, '8114472', '', 'ALKU', '103006_60', '6 Hans Bockler', '93142', NULL, 'Germany', NULL, 'Maxhute', 'Haidholf', NULL, 3, 1, '+49.9471601.940', '+49.9471.601.94.20', 'Pawell', '+49 1512 1402684', '+49 1512 1402684', 'Zubrzycki@icloud.com', 'Zubrzycki@icloud.com', '123456', 'Zubrzycki@icloud.com', 'Alku.de', 'A', 'DE60 7505 1040 0380 0302 39', 'Sparkasse Schwandorf', 'Sparkasse Schwandorf ', '', '2', '66_alku-logo-2013-10-17.jpg', NULL, '66_AEV-Formular.pdf', '66_Efb 2018 - englisch.pdf', NULL, 1),
(67, 11, 'Remat S.A.', 1, '21', '', 'Remat', 'RO15705409', 'Piatza Cipariu nr15', '400191', NULL, 'Romania', NULL, 'Cluj-Napoca', 'Cluj', NULL, 3, 1, '+40733070195', '+40264450873', 'Andre Nita', '+40733070195', '+40733070195', 'andre.nita@rematinvest.ro', 'andre.nita@rematinvest.ro', '123456', 'andre.nita@rematinvest.ro', 'Rematinvest.to', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(68, 11, 'Aurenis D.o.o Slovenia', 1, '1', '', 'Aurenis ', '1', '5220 Tolmin', 'Poljubinj 112', NULL, 'Slovenia', NULL, 'Tolmin', 'Slovenia', 'Poljubinj 112', 2, 1, '+386082052174', '+386082052174', 'Jure Skoberne', '+386082052174', '+386082052174', 'j.skoberne@aurenis.si', 'j.skoberne@aurenis.si', '', 'zoltan@pfane.org', 'Aurenis.si', 'A', '', '', '', '', '2', NULL, NULL, NULL, NULL, NULL, 1),
(71, 7, 'EMGH Semiconductors', 1, '6718', '', 'Electronic Recycling', 'DE562817', '456 Deuseldorf Eiens', '56644', NULL, 'Germany', NULL, 'Frankfurt', 'Frankfurt', '56644', 3, 1, '+359951152', '+359951152', 'George Heisneit', '+359951152', '+359951152', 'mike@pfane.com', 'dale@pfane.com', '123456789', 'dale@pfane.com', 'none', 'B', '', '', '', '', '3', NULL, NULL, '71_1aContract-Marion-1-signed.pdf', NULL, NULL, 1),
(72, 12, 'Amazing Electronic Recycling', 1, '22', '', 'Amazing', '447354', '34 Rhodes Drive', '24GAH421', NULL, 'UK', NULL, 'NewHamptonField', 'Hampton', NULL, 3, 1, '446453458456', '445648795648', 'Jasper Lemmon', '+448766879644', '+448799978565', 'jasper@pfane.com', 'jasper@pfane.com', '123123', 'jasper@pfane.com', 'pfane.com', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(73, 10, 'Sean ', 1, '', '', 'Sean', '1234567', 'tree streeet', '27601', NULL, 'usa', NULL, 'place', 'nc', NULL, 3, 2, '7243888709', '', 'sean', '7243888709', '7243888709', 'lssadler@gmail.com', 's.sadler@evotusinc.com', 'SeanSadler', 's.sadler@evotusinc.com', '', '', '', '', '', '', '', '73_IMG_20190728_150623.jpg', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(75, 10, 'TestCO', 1, '', '', '', '', 'TBD', '12345', NULL, 'USa', NULL, 'xyz', 'Ak', NULL, 3, 2, '12345689', '', 'Justin Case', '123456', '', 'testbox@evotusinc.com', 'testbox@evotusinc.com', 'Lll4433#', 'testbox@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '75_AML 2019 Standard Form.docx', 'noimage.jpg', 'noimage.jpg', 1),
(76, 11, 'SC Electroschrott Ankauf SRL', 1, '', '', '', '', 'Str. Raului ,nr. 34', '550081', NULL, 'ROMANIA', NULL, 'Sibiu', 'ROMANIA', NULL, 3, 1, '0745702317', '', 'Mihai Coman', '0745702317', '', 'coman.mihai81@icloud.com', 'mihai.elektroschrott@gmail.com', '', 'mihai.elektroschrott@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(77, 10, 'TestCO 2', 1, 'EPA3342', '', 'Evotus', '559334', '123 street street', '27601', NULL, 'USA', NULL, 'raleigh', 'nc', NULL, 3, 2, '9195346298', 'n/a', 'Derek ', '9195346298', '', 'testco2@evotusinc.com', 'testco2@evotusinc.com', 'Lll4433#', 'testco2@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '77_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(78, 11, 'Central European Scrap Trading Kft', 1, '', '', '', '', 'H-1148 Budapest, Fogarasi Str. 64 , Floor 2', '', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', NULL, 2, 1, '+36306601496', '', 'Emil Svendor', '', '+36306601496', 'svendor.emil@cest.hu', 'svendor.emil@cest.hu', '', 'svendor.emil@cest.hu', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(79, 11, 'SC METALROM SRL', 1, '65', '', 'METALROM', 'RO790465', 'Strada Muncet 95', '00000', NULL, 'Romani', NULL, 'Sibui', 'Sibiu', NULL, 1, 1, '+40744585386', '0', 'Ovidiu', '+40744585386', '+40744585386', 'dale@pfane.com', 'dale@pfane.com', '123123', 'dale@pfane.com', 'metalrom.ro', 'A', 'RO30RZBR0000600004427224', 'Reiferson', 'Sibiu', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(80, 10, 'Pfane Scientific', 1, '45SJ0008', '', 'Pfane', 'RO36023056', '30j Strada Garii', '458530', NULL, 'Romania', NULL, 'Nusfalau', 'Salaj', '458530', 2, 1, '+40766009393', '+40766009393', 'Dale Marion', '+40766009393', '+40766009393', 'cell@pfane.com', 'cell@pfane.com', 'dalemarion', 'cell@pfane.com', 'pfane.com', 'A', 'RO27BTRLEURCRT0347441601', 'Banca Transilvania Cluj Napoca', 'Avram Iancu, Simleu Silvaniei, 455300', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(90, 11, 'Cunsult Paper SRL', 1, '45', '', 'Consult Paper', 'RO15952344', '12 Strada Ioan V Socec', '500030', NULL, 'Romania', NULL, 'Brasov', 'Brasov', '500030', 1, 1, '+40744502331', '+40744502331', 'Constantin Holomei', '+40744502331', '+40744502331', 'consultpaper@gmail.com', 'consultpaper@gmail.com', '1276HTg1', 'consultpaper@gmail.com', 'none', 'A', 'RO29BTRLRONCRT0388462601', 'Banca Transilvania', 'Brasov', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(91, 11, 'Metalex 2001 Kft.', 1, '1267', '', 'Metalex Hungary', '1268-7/2015', '17 Rozsa utca', '1214', NULL, 'HU', NULL, 'Budapest', 'Hungary', '1214', 2, 1, '+36304878848', '+36304878848', 'Balika Istvan', '+36304878848', '+36304878848', 'balika.istvan@metalex2001.hu', 'balika.istvan@metalex2001.hu', 'MetalExHu112', 'balika.istvan@metalex2001.hu', 'metalex2001.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(95, 14, 'Dale', 1, '', '', 'Dale', 'Dale', 'Dale', 'Dale', NULL, 'Dale', NULL, 'Dale', 'Dale', 'Dale', 2, 1, 'Dale', 'Dale', 'Dale', 'Dale', 'Dale', 'dale@dalemarion.com', 'dale@dalemarion.com', '1234', 'dale@dalemarion.com', 'Dale', 'A', 'Dale', 'Dale', 'Dale', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(96, 14, 'Enviroserve Test Client', 1, '', '', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 3, 1, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Dustin@enviroserve.ae', 'Dustin@enviroserve.ae', '123123123', 'Dustin@enviroserve.ae', 'Dustin@enviroserve.ae', 'a', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(97, 7, 'Malik', 1, '', '', 'Malik', '123', 'Gulistan colony', '46600', NULL, 'Pakistan', NULL, 'Rawalpindi', 'Punjab', '46600', 3, 1, '03322527187', '03322527187', 'Asif', '03322527187', '03322527187', 'malikmasif@hotmail.com', 'malikmasif@hotmail.com', '12345678', 'malikmasif@hotmail.com', '', 'A', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(99, 11, 'EMR European Metal Recycling GMBH', 1, '120201138', '', 'EMR', 'DE00000000', '2-4 Breslauer St.', 'D-20457', NULL, 'Germany', NULL, 'Hamburg', 'Germany', 'D-20457', 2, 1, '+491774740003', '+491774740003', 'Ronald Druemmer', '+491774740003', '+491774740003', 'Ronald.Druemmer@emrgroup.com', 'Ronald.Druemmer@emrgroup.com', 'rdEMR13r2', 'Ronald.Druemmer@emrgroup.com', 'www.emrgroup.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(100, 14, 'Enviroserve Kuwait', 1, '', '', '', '', '14th Floor, February 25 tower', '', NULL, 'Kuwait', NULL, 'Kuwait', '', '', 3, 1, '+96555335055', '+96555335055', 'Waleed Esbaiteh', '+96555335055', '+96555335055', 'dustin@enviroserve.ae', 'dustin@enviroserve.ae', '', 'dustin@enviroserve.ae', '', '', 'KW80NBOK000000000000201900090', 'National Bank of Kuwait', ' Al Raya, Omar Ibn Al Khattab street', '', '', '100_Enviroserve Logo - Arrows - Colour - Transparent.png', NULL, '100_Auht signatory (1-2).pdf.pdf', '100_ES CL.pdf.pdf', 'noimage.jpg', 1),
(101, 14, 'Elektro Recycling Nord GMBH', 1, '121212DE', '', 'Elektro Recycling Nord GMBH', 'DE206184964', 'PeutestraÃŸe 21', '20539', NULL, 'Germany', NULL, 'Hamburg', 'Germany', '20539', 2, 1, '+491725140901', '+491725140901', 'Serdar Korkusuz', '+491725140901', '+491725140901', 's.korkusuz@ern-gmbh.de', 's.korkusuz@ern-gmbh.de', 'FHU187gf31RT', 's.korkusuz@ern-gmbh.de', 'ren-gmbh.de', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(102, 14, 'A&N Computer Recycling-Buntmetalle-Containerdienst OHG', 1, '27665', '', 'A&N Computer Recycling', 'DE276265604', 'Franz-Grashofstrause 15-17', '68199', NULL, 'Germany', NULL, 'Mannheim', 'Frankfurt', '68199', 2, 1, '0000000000', '0000000000', 'Adem Coban', '0000000000', '0000000000', 'vertneb@an-compiterrecycling.de', 'vertneb@an-compiterrecycling.de', '19hH85K5E2dahF', 'vertneb@an-compiterrecycling.de', 'www.an-compiterrecycling.de', 'A', '', '', '', '', '1', NULL, NULL, '102_Verleihungsurkunde und Zertifikat 2020.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(103, 11, 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 1, '23', '', 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 'RO0000000', 'strada Turda  , nr 15', '550077', NULL, 'Romania', NULL, 'Sibiu', 'Sibiu', '550077', 1, 1, '0757 837 636', '0757 837 636', 'Danus', '0757 837 636', '0757 837 636', 'danus@pfane.com', 'danus@pfane.com', '123123123123123123123123', 'danus@pfane.com', 'none', 'B', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(104, 11, 'OFIR - JULIO TABI Ltd.', 1, '833', '', 'OFIR - JULIO TABI Ltd.', '36527581', '460 Lehota', '95136', NULL, 'Slovak Republic', NULL, 'Lehota', 'Slovakia', '95136', 2, 1, '+421905536989', '+421905536989', 'Dagmara Tabiova', '+421905536989', '+421905536989', 'ofir@ofir.sk', 'ofir@ofir.sk', '188ofirsk', 'ofir@ofir.sk', 'ofir.sk', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(106, 11, 'Serenity Solution Kft.', 1, 'HU214', '', 'Serenity', '10344985-2-41', 'Teve utca 24-28.', '1139', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', '1139', 2, 1, '+36 30 463 2448 ', '+36 30 463 2448 ', 'JuhÃ¡sz MiklÃ³s', '+36 30 463 2448 ', '+36 30 463 2448 ', 'zoltan@pfane.org', 'juhasz.miklos@serenityrecycling.hu', '1a6Fe9UytG0oo1', 'zoltan@pfane.org', 'none', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(108, 11, 'FÃ©mker Kft.', 1, 'HU0802', '', 'FÃ©mker', '10454273-2-08', 'HÅ±tÅ‘hÃ¡z u. 6.', '9027 ', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9027 ', 2, 1, '+36 (30) 326 0983', '+36 (30) 326 0983', 'VÃ©gh GergÅ‘', '+36 (30) 326 0983', '+36 (30) 326 0983', 'zoltan@pfane.org', 'vegh.gergo@femker.hu', '13qe24wr', 'zoltan@pfane.org', 'https://www.femker.hu/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(109, 11, 'Trenalux HungÃ¡ria Kft.', 1, '01-09-193199', '', 'Trenalux HungÃ¡ria Kft.', '13042503-2-43', 'VÃ¡sÃ¡rhelyi Ãºt 169', '6600', NULL, 'Hungaary', NULL, 'Szentes', 'Hungary', '6600', 2, 1, '36-70-316-316', '36-70-316-316', 'HorvÃ¡t MiklÃ³s', '36-70-316-316', '36-70-316-316', 'zoltan@pfane.com', 'alexandra.trenalux@gmail.com', '111222333444', 'zoltan@pfane.org', 'https://www.trenalux.hu/', 'A', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(111, 11, 'PPUH EUROSCRAP', 1, '', '', 'EUROSCRAP', '573-011-72-37', 'ul. Podkolejowa 25/31', '42-202', NULL, 'Poland', NULL, 'CzÄ™stochowa', '', '42-202', 2, 1, '+48 884727877', '+48 884727877', 'Rafal', '+48 884727877', '+48 884727877', 'zoltan@pfane.org', 'euroscrap33@gmail.com', '', 'euroscrap33@gmail.com', 'http://www.euroscrap.pl', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '111_Legal form and VAT No.pdf', 1),
(112, 11, 'Alcufer Kft.', 1, '0000', '', 'Alcufer', '10356962-2-08', 'MÃ©szÃ¡ros L. u. 13', '9023', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9023', 2, 1, '+36 30 538 0470', '+36 30 538 0470', 'Steininger BÃ¡lint', '+36 30 538 0470', '+36 30 538 0470', 'zoltan@pfane.org', 'steininger.balint@alcufer.hu', '', 'zoltan@pfane.org', 'alcufer.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(114, 11, 'NOVA METAL MRF SRL', 1, 'HD-237', '', 'NOVA METAL', 'RO34082196', 'str. Florilor, bl. 10, sc. A, et. P, ap. 5', '335300', NULL, 'Romania', NULL, 'CÄƒlan, jud. Hunedoara', '', '335300', 1, 1, '0756 562 927', '0756 562 927', 'Dan', '0756 562 927', '0756 562 927', 'zoltan@pfane.org', 'zoltan@pfane.org', '', 'zoltan@pfane.org', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(115, 11, 'CCR Logistics Systems RO S.R.L.', 1, '186/03.12.2018', '', 'CCR', 'RO23321450', 'Str. PolonÄƒ, nr 95-99, et. 2, Sector 1', '010507', NULL, 'Romania', NULL, 'BucureÈ™ti', '', '010507', 1, 1, '+40 21 2000 493', '+40 21 2000 493', 'George Andrei Plumbuitu', '+40 21 2000 493', '+40 21 2000 493', 'zoltan@pfane.org', 'george.plumbuitu@ccrromania.ro', '', 'george.plumbuitu@ccrromania.ro', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '115_Licenta EEE CCR Logistics Systems 2020.pdf', 1),
(117, 11, 'E-RECIKLAZA 2010 D.O.O.', 1, '', '', 'E-RECIKLAZA', '106452850', 'Bul. Sv. Cara Konstantina 82-86', '18000', NULL, 'Serbia', NULL, 'Nis', '', '18000', 2, 1, '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'Ninoslav Milenkovic', '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'zoltan@pfane.org', 'milos@ereciklaza.com', '', 'zoltan@pfane.org', 'https://www.ereciklaza.com/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(118, 11, 'CCR RO WASTE MANAGEMENT SYSTEMS S.R.L.', 1, '', '', 'CCR WASTE MANAGEMENT', 'RO25303212', 'Calea Dorobantilor nr. 53, parter, sector 1', '010555', NULL, 'Romania', NULL, 'Bucuresti', '', '010555', 2, 1, '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'George Pliumbuitu-Andrei', '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'zoltan@pfane.org', 'george.plumbuitu@ccrromania.ro', '', 'george.plumbuitu@ccrromania.ro', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(121, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 6, 2, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'info@lmgmetals.ca', 'info@lmgmetals.ca', '123123', 'info@lmgmetals.ca', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(122, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 3, 1, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'dale@pfane.com', 'Dale', '123123', 'dale@pfane.com', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(123, 15, 'Triple R Inc.', 1, 'NA', '', 'Triple R', '700 896 517', '43 D Greenham Drive', 'T4P 2X7', NULL, 'Canada', NULL, 'Red Deer', 'Alberta', 'T4P 2X7', 6, 2, '1-403-872-5581', '1-403-872-5581', 'Graham Towns', '1-403-872-5581', '1-403-872-5581', 'TripleRinc2019@outlook.com', 'TripleRinc2019@outlook.com', '812WhG9DE', 'TripleRinc2019@outlook.com', 'https://resell-reuse-recycle.co', 'B', '', '', '', '', '2', '123_logo.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(126, 11, 'Syntom Metal Recycling Sp. z o.o', 1, '', '', '', '5242680231', 'ul. Wysoka 61/65', '97-200', NULL, 'Poland', NULL, 'TomaszÃ³w Mazowiecki', '', '97-200', 2, 1, '+48 506 264 257', '+48 506 264 257', 'Paulina KamiÅ„ska', '+48 506 264 257', '+48 506 264 257', 'zoltan@pfane.org', 'paulina@syntom.pl', '', 'paulina@syntom.pl', 'https://syntom.pl/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(127, 11, 'WEEEDEEE s.r.o.', 1, '', '', 'Dusan', 'SK2120765944', 'DrieÅˆovÃ¡ 16940/1J', '821 01', NULL, 'Slovakia', NULL, 'Bratislava (RuÅ¾inov)', '', '821 01', 2, 1, '+43 664 1777232', '+43 664 1777232', 'DuÅ¡an HudÃ¡k', '+43 664 1777232', '+43 664 1777232', 'zoltan@pfane.org', 'dusan@weee-deee.com', '', 'zoltan@pfane.org', '', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(128, 11, 'Loacker HulladÃ©khasznosÃ­tÃ³ Kft.', 1, '101931496', '', 'Loacker', '12530119-2-43', 'HÃ­dÃ©pÃ­tÅ‘ u. 15', '1095', NULL, 'Hungary', NULL, 'Budapest', '', '1095', 2, 1, '+36 30 371 7888', '+36 30 371 7888', 'Kisbenedek Alex', '+36 30 371 7888', '+36 30 371 7888', 'zoltan@pfane.org', 'alex.kisbenedek@loacker.hu', '', 'zoltan@pfane.org', 'https://www.loacker.hu', '', 'HU47109180010000000337450028', 'Unicredit Bank Hungary Zrt.', '1054 Budpaest, SzabadsÃ¡g tÃ©r 5-6.', 'BACXHUHB', '', NULL, NULL, '128_PE-KTFO-01503-8-2021-szall-hullgazd-eng-2021.pdf', '128_PE-KTFO-06736-13-2019-Hulladek-kereskedelmi-engedely.pdf', 'noimage.jpg', 1),
(129, 15, 'Quantum Lifecycle Partners LP ', 1, 'CAD', '', 'Quantum Lifecycle Partners LP ', '', '700 Ormont Drive', 'M9L 2V4', NULL, 'Canada', NULL, 'North York', 'Ontario', 'M9L 2V4', 6, 1, '+1 450-506-0220', '+1 450-506-0220', 'Raymond Choi', '+1 450-506-0220', '+1 450-506-0220', 'info@quantumlifecycle.com', 'RoyChoiQuan212', 'quant8240L4', 'rchoi@quantumlifecycle.com', 'https://www.quantumlifecycle.com', 'A', '', '', '', '', '1', '129_quant.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(130, 15, 'Suntech Recycle Inc,', 1, '850047028 ', '', 'Suntech Recycle Inc,', '850047028RC0001', '2193 Rue de la Metropole', 'J4G 1S5', NULL, 'Canada', NULL, 'Longuel', 'Quebec', 'J4G 1S5', 6, 1, '514-808-4061', '514-808-4061', 'Nick Hoxha', '514-808-4061', '514-808-4061', 'nick@suntechrecycle.com', 'SuntechRec', '123e456f789nh', 'nick@suntechrecycle.com', 'www.suntechrecycle.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(131, 11, 'Tesla Recycling Sp. z o.o.', 1, '000013739', '', 'Tesla', 'PL5291779484', 'ul. Traugutta 42', '05-825', NULL, 'Poland', NULL, 'Grodzisk Mazowiecki', '', '05-825', 2, 1, '+48Â 515Â 996Â 164', '+48Â 515Â 996Â 164', 'Zuzanna ChomaÄ‡', '+48Â 515Â 996Â 164', '+48Â 515Â 996Â 164', 'z.chomac@elemental.biz', 'z.chomac@elemental.biz', '', 'zoltan@pfane.org', 'http://www.teslarecycling.pl', '', '', '', '', '', '', NULL, NULL, '131_dwp.pdf', '131_dwp2.pdf', '131_decyzje3.pdf', 1),
(132, 15, 'Upcycle Solutions, Inc.', 1, '', '', '', 'EIN # : 47-28880320', '9 Tinkham Avenue', '03038', NULL, 'United States', NULL, 'Derry', 'NH', '03038', 3, 1, '5148269901', '5148269901', 'Avi Lecker', '5148269901', '5148269901', 'alecker@teamupcycle.com', 'alecker@teamupcycle.com', '', 'alecker@teamupcycle.com', 'www.teamupcycle.com', '', '', 'Enterprise Bank', '222 Merrimack Street, Lowell, MA, 01852', '', '', NULL, NULL, '132_Accepted ewaste products list.pdf', '132_UPCYCLE SOLUTIONS WIRE INFO- ENTERPRISE.pdf', 'noimage.jpg', 1),
(133, 15, 'Kinney Drugs', 1, 'N/A', '', 'Kinney', '', '520 East Main Street', '13642', NULL, 'United States', NULL, 'Gouverneur ', 'NY', '13642', 3, 1, '(315) 287-3600 x 2241', '(315) 287-3600 x 2241', 'Jeff Butzer', '(315) 287-3600 x 2241', '(315) 287-3600 x 2241', 'Eric@pfane.com', 'Jeff B', 'LesPaulDc21 ', 'jeffbutzer@kphealthcareservices.com', 'https://www.kinneydrugs.com/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(134, 11, 'ECO Remarketing GmbH', 1, '', '', 'ECO Remarketing', 'DE265523230', 'Westkirchener Str. 67 (Werk3)', '59320', NULL, 'Germany', NULL, 'Ennigerloh', '', '59320', 2, 1, '+48 533 326 546', '+48 533 326 546', 'PaweÅ‚ Stolarczyk', '+48 533 326 546', '+48 533 326 546', 'zoltan@pfane.org', 'pawel.stolarczyk@3re.co', '', 'zoltan@pfane.org', 'https://www.eco-remarketing.de/en/', '', '', '', '', '', '', NULL, NULL, '134_efb-2021-ger.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(135, 15, 'Hi-Tech Recycling Ltd.', 1, '', '', '', '', '1000 Magnetic Drive', 'M3J 2C4', NULL, 'Canada', NULL, 'Toronto', 'Ontario', 'M3J 2C4', 6, 1, '416-636-7420', '416-636-7420', 'Jeff Caplan', '416-636-7420', '416-636-7420', '', '', '', '', 'www.hitechrecycling.com', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(136, 11, '3RE SPÃ“ÅKA Z O. O. SP. K.', 1, '', '', '3Re.co', '594-160-41-35', 'ul. DrawieÅ„ska 63', '73-200', NULL, 'Poland', NULL, 'Choszczno', '', '73-200', 2, 1, '+48 533 326 546', '+48 533 326 546', 'PaweÅ‚ Stolarczyk', '+48 533 326 546', '+48 533 326 546', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'http://3re.co/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(137, 15, 'Integrated Recycling Technologies', 1, '43354MN', '', 'IRT', 'NA', '660 Mayhew Lake Rd NE', '56304', NULL, 'United States', NULL, 'St Cloud', 'MN ', '56304', 3, 1, '+1 320-251-7400', '+1 320-251-7400', 'Tony Celt', '+1 320-251-7400', '+1 320-251-7400', 'tcelt@irtmn.com', 'TCeltViewPass', '10qpalzmW#4', 'tcelt@irtmn.com', 'https://irtmn.com/', '1', '', '', '', '', 'A', '137_IRT_Logo_w.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(138, 15, 'West Parishville Metals', 1, '', '', '', '', '495 West Parishville rd. ', '13676', NULL, 'United States', NULL, 'Potsdam', 'NY', '13676', 3, 2, '3152441163', '3152441163', 'Ronnie', '3152441163', '3152441163', 'romiewpmetals.com', 'WPMetals88!f^6d', 'h&gg8KKt4E#s0001', 'romie@wpmetals.com', 'https://www.wpmetals.com', 'A', '', '', '', '', '0', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(139, 15, 'EMcom Inc.', 1, 'Not Applicable', '', 'EMcom', '', '62 Columbus St.', '13021', NULL, 'United States', NULL, 'Auburn', 'NY', '13021', 3, 2, '315.255.5300', '315.255.5300', 'Shawn Church', '315.255.5300', '315.255.5300', 'schurch@em-com.com', 'ShawnEMcom8^g&', 'c4flKGh&er!3pQ8d', 'schurch@em-com.com', 'http://em-com.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(140, 15, 'Galaxy Electronics', 1, 'Not Applicable', '', 'Galaxy Electronics', 'NA', '9885 Washington Blvd N.', '20723', NULL, 'United States', NULL, ' Laurel', 'MD', '20723', 3, 2, '+13013623100', '+13013623100', 'Agee', '+13013623100', '+13013623100', 'agee@galaxyelectronics.net', 'GalaxyE8G6jK&e', 'lectronics8H%nMMJ2', 'agee@galaxyelectronics.net', 'galaxyelectronics.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(141, 15, 'Sandhills Gaming', 1, 'Not Applicable', '', 'Sandhills_Gaming', 'NA', '3916 Potsdam Ave', '57104-7048', NULL, 'United States', NULL, 'Sioux Falls', 'South Dakota', '57104-7048', 3, 2, '6477722725', '6477722725', 'James Boyden', '6477722725', '6477722725', 'jamie@sandhillsgaming.com', 'SandHill7Yt6', 'v&ygf*eJt3%f', 'jamie@sandhillsgaming.com', 'https://www.sandhillsgaming.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(142, 15, 'Case & Leader, LLP', 1, 'N/A', '', '', '', '107 E Main Street', '13642', NULL, 'United States', NULL, 'Gouverneur', 'New York', '13642', 3, 1, '(315) 287-2000', '(315) 287-2000', 'Henry Leader', '(315) 287-2000', '(315) 287-2000', '', 'caseleaderlawyer@gmail.com', 'caseleaderlawyer_2022', 'caseleaderlawyer@gmail.com', 'https://www.caseandleader.com/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(143, 15, 'Rent-A-Center', 1, 'N/A', '', '', '', '7473 US-11', '13676', NULL, 'United States', NULL, 'Potsdam', 'New York', '13676', 3, 1, '(315) 265-2046', '(315) 265-2046', 'Matthew Dailey', '(315) 265-2046', '(315) 265-2046', 'store.0491@rentacenter.com', 'store.0491@rentacenter.com', 'rent-a-center_2022', 'store.0491@rentacenter.com', 'https://locations.rentacenter.com/new-york/potsdam/7473-us-hwy-11/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(144, 15, 'Circuit Board Medics', 1, 'N/A', '', '', '', '15-C, Pelham Ridge Dr', '29615', NULL, 'United States', NULL, 'Greenville', 'South Carolina', '29615', 3, 1, '(864) 671-0509', '(864) 671-0509', 'Cody Ellison', '(864) 671-0509', '(864) 671-0509', 'codyellison92@gmail.com', 'codyellison92@gmail.com', 'codyellison_2022', 'codyellison92@gmail.com', 'https://circuitboardmedics.com/', 'A', '', '', '', '', '1', '144_CircuitBoardMedics_Logo.jpg', NULL, '144_Electronics Manufacturing e-waste Recycling Agreement.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(147, 15, 'Weldon Computers, Inc.', 1, 'N/A', '', '', '', '45 Little Bow Rd', '13642', NULL, 'United States', NULL, 'Gouverneur', 'New York', '13642', 3, 1, '(315) 287-1619', '(315) 287-1619', 'Larry Weldon', '(315) 287-1619', '(315) 287-1619', 'lweldon@weldoncomputers.com', 'lweldon@weldoncomputers.com', 'lweldon_2022', 'lweldon@weldoncomputers.com', 'http://www.welcoin.com/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(148, 15, 'Wastewater Treatment', 1, 'N/A', '', '', '', '4727 NY-58', '13642', NULL, 'United States', NULL, 'Gouverneur', 'New York', '13642', 3, 1, '(315) 287-2133', '(315) 287-2133', 'Bruce Hotaling', '(315) 287-2133', '(315) 287-2133', '', 'bhotaling@villageofgouverneurny.gov', 'bhotaling_2022', 'bhotaling@villageofgouverneurny.gov', 'https://www.villageofgouverneur.org/waste-water-treatment.html', 'A', '', '', '', '', '1', NULL, NULL, '148_Wastewater Treatment Agreement.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(149, 15, 'Computer Center', 1, 'N/A', '', '', '', '400 S Massey St', '13601', NULL, 'United States', NULL, 'Watertown', 'New York', '13601', 3, 1, '(315) 788-8830', '(315) 788-8830', 'Taylor Carey', '(315) 788-8830', '(315) 788-8830', 'taylor@ccnny.us', 'taylor@ccnny.us', 'taylor_2022', 'taylor@ccnny.us', 'https://ccnny.us/', 'A', '', '', '', '', '1', '149_ccnylogo.jpg', NULL, '149_Computer Center Agreement.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(150, 11, 'Elettrometal Recycling SRL', 1, '', '', 'Elettrometal', '40245867', 'Str. Ion Ionescu de la Brad, nr.15', '300254', NULL, 'Romania', NULL, 'TimiÈ™oara', '', '300254', 2, 1, '0723597262', '0723597262', 'Stanila Adrian', '0723597262', '0723597262', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(151, 11, 'Inter-Metal Recycling Kft.', 1, '', '', 'Inter-Metal', '12266355-2-44', 'Budafoki út 5-7.', '1211', NULL, 'Hungary', NULL, 'Budapest', '', '1211', 2, 1, '+36 30 488 5899', '+36 30 488 5899', 'Tihanyi Ervin', '+36 30 488 5899', '+36 30 488 5899', 'intermetal@intermetal.hu', 'intermetal@intermetal.hu', '', 'zoltan@pfane.org', 'https://intermetal.hu/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(152, 11, 'HWD Recycling Kft.', 1, '', '', 'HWD', '13925415-2-07', 'Dinnyési út 2.', '8111', NULL, 'Hungary', NULL, 'Seregélyes', '', '8111', 2, 1, '+36 70/ 311-8-111', '+36 70/ 311-8-111', '', '+36 70/ 311-8-111', '+36 70/ 311-8-111', 'zoltan@pfane.org', 'info@hulladekotkezelunk.hu', '', 'zoltan@pfane.org', 'https://hulladekotkezelunk.hu/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(153, 16, 'Janko Jakovljevic', 2, '', '', 'Janko', '1508990720050', 'Stara Zeleznička kolonija 3a/7', '', NULL, 'Srbija', NULL, 'Niš', 'Srbija', '', 8, 1, '+381646488324', '+381646488324', 'Janko', '+381646488324', '+381646488324', 'Janko@ereciklaza.com', 'Janko', 'Janko1', 'Janko@ereciklaza.com', '', '1', '1', 'Unicredit', '2', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(154, 16, 'E reciklaza Ni d.o.o', 1, '', '', 'E-reciklaza NIs', '107291948', 'Bulevar Cara Konstantina 82-86', '18000', NULL, 'Srbija', NULL, 'Niš', 'Srbija', '18000', 2, 1, '', '', '', '', '', 'igor@ereciklaza.com', 'Igor Petrovic', 'Erec101', 'jankobjakovljevic@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(155, 16, 'ZG Lighting SRB', 1, '11007399', '', 'ZG lighting SRB', '111111111', 'Ulica Brzobrodska 4', '18000', NULL, 'Serbia', NULL, 'Nis', 'Serbia', '18000', 2, 1, '+381646488324', '+381646488324', 'Janko Jakovljevic', '+381646488324', '+381646488324', 'janko', 'Janko.Jakovljevic', 'Erec101', 'janko', '', '1', 'IBAN1111 1111 1111 1111', 'Unicredit ', 'Rajiceva 32', '', '1', '155_преузимање.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1);

-- --------------------------------------------------------

--
-- Table structure for table `suppliers-10-2-2020`
--

CREATE TABLE `suppliers-10-2-2020` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) NOT NULL DEFAULT 1,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `suppliers-10-2-2020`
--

INSERT INTO `suppliers-10-2-2020` (`id`, `userid`, `name`, `company`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `zipcode`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(56, 1, 'Evergreen Recycling LLC', 1, 'HJ54', '', 'GreenSeed', '302555621', '332 Evergreen Rd', '10024', NULL, 'Untied States', NULL, 'Hasholt', 'Wilonoma', NULL, 3, 1, '6153234584', '6153458988', 'Jason Dulap', '6153435585', '6153584675', 'jason@pfane.com', 'jason111', 'jason@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, 'A', NULL, NULL, NULL, NULL, NULL, 1),
(57, 1, 'BIanatt', 1, 'GC19', '', 'Bianatt', 'GC1142482', '2-4 Mesogeion Ave', '11527', NULL, 'Greece', NULL, 'Athens', 'Greece', NULL, 2, 1, ' +30 210 5596010-12', ' +30 210 5596013', 'Oarie Husach', ' +30 210 5596010', ' +30 210 5596010', 'contact@bianatt.gr', 'bianatt131$!', 'contact@bianatt.gr', 'https://www.vianatt.gr', 'A', NULL, NULL, NULL, NULL, '1', '57_logo_vianatt_en.jpg', NULL, NULL, NULL, NULL, 1),
(58, 1, 'ALKU GMBH', 1, 'GC19', '', 'ALKU', 'GE466859', 'Hans-Böckler-Straße 6', '93142', NULL, 'Germany', NULL, 'Maxhütte-Haidhof ', 'Germany', NULL, 2, 1, '+49 9471 / 60194-0', '+49 9471 / 60194-0', 'Pawel Zubrzycki', '+49 1512 1402684', '+49 1512 1402684', 'Pawel.Zubrzycki@alku-gmbh.de', '13313414alkupawel', 'Pawel.Zubrzycki@alku-gmbh.de', 'alku-gmbh.de', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(59, 1, 'Walts Scrap', 1, 'EPA3341', '', 'Walts', 'TAXID123', '123 Santamonica Blvd', '90210', NULL, 'United States', NULL, 'Progressive', 'California', NULL, 3, 1, '766903531', '7475564565', 'Raymond Langevoort', '766903531', '7475564586', 'sample@pfane.com', '123123', 'sample@pfane.com', 'none', 'M', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(60, 4, 'Smartwebbers', 1, 'EPA3341', '', 'Smartwebbers', 'PKR', 'ayub rawalpindi', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', NULL, 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@hotmail.com', '123456', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, NULL, NULL, NULL, 1),
(61, 7, 'Velinci Scrap', 1, 'EPA3341', '', 'Velinci', 'RO335142', '21a Strada Decembrie', '543432', NULL, 'Romania', NULL, 'Oradea', 'Bihor', NULL, 2, 2, '+40725584541', '0', 'Alex Smecu', '+4037525424', '+ 46 8 610 15 00', 'donate@pfane.com', '123456', 'donate@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, '1', '61_Evotus_Inc_fs.png', NULL, NULL, NULL, NULL, 1),
(64, 10, 'Blue Sky Solutions', 1, '', '', 'Wei, Guy & Mike', '', '309 Chapanoke Road #114 ', '27603', NULL, 'USA', NULL, 'Raleigh', 'North Carolina', NULL, 3, 2, '(252) 325-5503', '', 'Wei, Guy, Mike', '', '(252) 325-5503', 'd.ramsell@evotusinc.com', 'Lll4433#', 'd.ramsell@evotusinc.com', 'https://blueskysolutions.us', 'A', NULL, NULL, NULL, NULL, '100', NULL, NULL, NULL, NULL, NULL, 1),
(66, 11, 'ALKU METALS GMBH', 1, '8114472', '', 'ALKU', '103006_60', '6 Hans Bockler', '93142', NULL, 'Germany', NULL, 'Maxhute', 'Haidholf', NULL, 3, 1, '+49.9471601.940', '+49.9471.601.94.20', 'Pawell', '+49 1512 1402684', '+49 1512 1402684', 'Zubrzycki@icloud.com', '123456', 'Zubrzycki@icloud.com', 'Alku.de', 'A', 'DE60 7505 1040 0380 0302 39', 'Sparkasse Schwandorf', 'Sparkasse Schwandorf ', '', '2', '66_alku-logo-2013-10-17.jpg', NULL, '66_AEV-Formular.pdf', '66_Efb 2018 - englisch.pdf', NULL, 1),
(67, 11, 'Remat S.A.', 1, '21', '', 'Remat', 'RO15705409', 'Piatza Cipariu nr15', '400191', NULL, 'Romania', NULL, 'Cluj-Napoca', 'Cluj', NULL, 3, 1, '+40733070195', '+40264450873', 'Andre Nita', '+40733070195', '+40733070195', 'andre.nita@rematinvest.ro', '123456', 'andre.nita@rematinvest.ro', 'Rematinvest.to', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(68, 11, 'Aurenis D.o.o Slovenia', 1, '1', '', 'Aurenis ', '1', '5220 Tolmin', 'Poljubinj 112', NULL, 'Slovenia', NULL, 'Tolmin', 'Slovenia', NULL, 2, 1, '+386082052174', '+386053810387', 'Jure Skoberne', '+386031530424', '+386031530424', 'j.skoberne@aurenis.si', '', 'j.skoberne@aurenis.si', 'Aurenis.si', 'A', '', '', '', '', '2', NULL, NULL, NULL, NULL, NULL, 1),
(69, 11, 'Dale Marion', 2, '', '43342', 'Dale', 'none', '43 Strada Principal', '457272', NULL, 'Romania', NULL, 'Iaz', 'Salaj', NULL, 3, 1, '0766903531', '0766903531', 'Dale Marion', '0766903531', '0766903531', 'cell@pfane.com', '123123', 'cell@pfane.com', 'none', 'none', NULL, NULL, NULL, NULL, 'none', NULL, NULL, NULL, NULL, NULL, 1),
(70, 11, 'Tesla Recycling Poland', 1, '000013739', '', 'Tesla', 'PL5291779484', '4J8C+V6', '05-825', NULL, 'Poland', NULL, 'Grodzisk', 'Mazowiecki', NULL, 3, 1, '+48 506 263 728', '+48 506 263 728', 'Scibior Pawel', '+48 506 263 728', '+48 506 263 728', 'p.scibior@pcbtech.pl', 'tesla1812', 'p.scibior@pcbtech.pl', 'http://www.teslarecycling.pl', 'A', '', '', '', '', '1', '70_Capture.PNG', NULL, '70_decyzja_na_zbieranie_odpadow..pdf', '70_Confirmation of company registration as a taxpayer - ENGLISH.pdf', '70_REGON certificate - ENGLISH.pages', 1),
(71, 7, 'Electronic Recycling GMBH', 1, '6718', '', 'Electronic Recycling', 'DE562817', '456 Deuseldorf Eiens', '56644', NULL, 'Germany', NULL, 'Frankfurt', 'Frankfurt', NULL, 3, 1, '+359951152', '+359951152', 'George Heisneit', '+359951152', '+359951152', 'mike@pfane.com', '123456789', 'mike@pfane.com', 'none', 'B', NULL, NULL, NULL, NULL, '3', NULL, NULL, '71_1aContract-Marion-1-signed.pdf', NULL, NULL, 1),
(72, 12, 'Amazing Electronic Recycling', 1, '22', '', 'Amazing', '447354', '34 Rhodes Drive', '24GAH421', NULL, 'UK', NULL, 'NewHamptonField', 'Hampton', NULL, 3, 1, '446453458456', '445648795648', 'Jasper Lemmon', '+448766879644', '+448799978565', 'jasper@pfane.com', '123123', 'jasper@pfane.com', 'pfane.com', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(73, 10, 'Sean ', 1, '', '', 'Sean', '1234567', 'tree streeet', '27601', NULL, 'usa', NULL, 'place', 'nc', NULL, 3, 2, '7243888709', '', 'sean', '7243888709', '7243888709', 'lssadler@gmail.com', 'SeanSadler', 's.sadler@evotusinc.com', '', '', '', '', '', '', '', '73_IMG_20190728_150623.jpg', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(75, 10, 'TestCO', 1, '', '', '', '', 'TBD', '12345', NULL, 'USa', NULL, 'xyz', 'Ak', NULL, 3, 2, '12345689', '', 'Justin Case', '123456', '', 'testbox@evotusinc.com', 'Lll4433#', 'testbox@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '75_AML 2019 Standard Form.docx', 'noimage.jpg', 'noimage.jpg', 1),
(76, 11, 'SC Electroschrott Ankauf SRL', 1, '', '', '', '', 'Str. Raului ,nr. 34', '550081', NULL, 'ROMANIA', NULL, 'Sibiu', 'ROMANIA', NULL, 3, 1, '0745702317', '', 'Mihai Coman', '0745702317', '', 'coman.mihai81@icloud.com', '', 'mihai.elektroschrott@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(77, 10, 'TestCO 2', 1, 'EPA3342', '', 'Evotus', '559334', '123 street street', '27601', NULL, 'USA', NULL, 'raleigh', 'nc', NULL, 3, 2, '9195346298', 'n/a', 'Derek ', '9195346298', '', 'testco2@evotusinc.com', 'Lll4433#', 'testco2@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '77_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(78, 11, 'Central European Scrap Trading Kft', 1, '', '', '', '', 'H-1148 Budapest, Fogarasi Str. 64 , Floor 2', '', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', NULL, 2, 1, '+36306601496', '', 'Emil Svendor', '', '+36306601496', 'svendor.emil@cest.hu', '', 'svendor.emil@cest.hu', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(79, 11, 'SC METALROM SRL', 1, '65', '', 'METALROM', 'RO790465', 'Strada Muncet 95', '00000', NULL, 'Romani', NULL, 'Sibui', 'Sibiu', NULL, 1, 1, '+40744585386', '0', 'Ovidiu', '+40744585386', '+40744585386', 'dale@pfane.com', '123123', 'dale@pfane.com', 'metalrom.ro', 'A', 'RO30RZBR0000600004427224', 'Reiferson', 'Sibiu', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(80, 10, 'Pfane Scientific', 1, '45SJ0008', '', 'Pfane', 'RO36023056', '43 Strada Principal', '457272', NULL, 'Romania', NULL, 'Iaz', 'Salaj', 'ZIPCODE', 3, 2, '0766009393', '0766009393', 'Dale Marion', '0766009393', '0766009393', 'cell@pfane.com', 'dalemarion', 'cell@pfane.com', 'pfane.com', 'A', 'HFUE111ID28371', 'BCR', 'Simleu', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(81, 14, 'ALKU METALS GMBH', 1, '8114472', NULL, 'ALKU', '103006_60', '6 Hans Bockler', '93142', NULL, NULL, NULL, 'Maxhute', 'Haidholf', NULL, 3, 1, '+49.9471601.940', '+49.9471.601.94.20', 'Pawell', '+49 1512 1402684', '+49 1512 1402684', 'Zubrzycki@icloud.com', '123456', 'Zubrzycki@icloud.com', 'Alku.de', 'A', 'DE60 7505 1040 0380 0302 39', 'Sparkasse Schwandorf ', 'Sparkasse Schwandorf ', '', '2', '66_alku-logo-2013-10-17.jpg', NULL, '66_AEV-Formular.pdf', '66_Efb 2018 - englisch.pdf', ' ', 1),
(82, 14, 'Remat S.A.', 1, '21', '', 'Remat', 'RO15705409', 'Piatza Cipariu nr15', '400191', NULL, 'Romania', NULL, 'Cluj-Napoca', 'Cluj', NULL, 3, 1, '+40733070195', '+40264450873', 'Andre Nita', '+40733070195', '+40733070195', 'andre.nita@rematinvest.ro', '123456', 'andre.nita@rematinvest.ro', 'Rematinvest.to', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(83, 14, 'Aurenis D.o.o Slovenia', 1, '1', '', 'Aurenis ', '1', '5220 Tolmin', 'Poljubinj 112', NULL, 'Slovenia', NULL, 'Tolmin', 'Slovenia', NULL, 2, 1, '+386082052174', '+386053810387', 'Jure Skoberne', '+386031530424', '+386031530424', 'j.skoberne@aurenis.si', '', 'j.skoberne@aurenis.si', 'Aurenis.si', 'A', '', '', '', '', '2', NULL, NULL, NULL, NULL, NULL, 1),
(85, 14, 'Tesla Recycling Poland', 1, '000013739', '', 'Tesla', 'PL5291779484', '4J8C+V6', '05-825', NULL, 'Poland', NULL, 'Grodzisk', 'Mazowiecki', NULL, 3, 1, '+48 506 263 728', '+48 506 263 728', 'Scibior Pawel', '+48 506 263 728', '+48 506 263 728', 'p.scibior@pcbtech.pl', 'tesla1812', 'p.scibior@pcbtech.pl', 'http://www.teslarecycling.pl', 'A', '', '', '', '', '1', '70_Capture.PNG', NULL, '70_decyzja_na_zbieranie_odpadow..pdf', '70_Confirmation of company registration as a taxpayer - ENGLISH.pdf', '70_REGON certificate - ENGLISH.pages', 1),
(86, 14, 'SC Electroschrott Ankauf SRL', 1, '', '', '', '', 'Str. Raului ,nr. 34', '550081', NULL, 'ROMANIA', NULL, 'Sibiu', 'ROMANIA', NULL, 3, 1, '0745702317', '', 'Mihai Coman', '0745702317', '', 'coman.mihai81@icloud.com', '', 'mihai.elektroschrott@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(87, 14, 'Central European Scrap Trading Kft', 1, '', '', '', '', 'H-1148 Budapest, Fogarasi Str. 64 , Floor 2', '', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', NULL, 2, 1, '+36306601496', '', 'Emil Svendor', '', '+36306601496', 'svendor.emil@cest.hu', '', 'svendor.emil@cest.hu', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(89, 14, 'Dale', 1, 'Dale', '', 'Dale', 'Dale', 'Dale', 'Dale', NULL, 'Dale', NULL, 'Dale', 'Dale', 'Dale', 3, 1, 'Dale', 'Dale', 'Dale', 'Dale', 'Dale', 'dale@dalemarion.com', 'Dale', 'dale@dalemarion.com', 'Dale', 'Dale', 'Dale', 'Dale', 'Dale', '', 'Dale', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(90, 11, 'Cunsult Paper SRL', 1, '45', '', 'Consult Paper', 'RO15952344', '12 Strada Ioan V Socec', '500030', NULL, 'Romania', NULL, 'Brasov', 'Brasov', '500030', 1, 1, '+40744502331', '+40744502331', 'Constantin Holomei', '+40744502331', '+40744502331', 'consultpaper@gmail.com', '1276HTg1', 'consultpaper@gmail.com', 'none', 'A', 'RO29BTRLRONCRT0388462601', 'Banca Transilvania', 'Brasov', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(91, 11, 'Metalex 2001 Kft.', 1, '1267', '', 'Metalex Hungary', '1268-7/2015', '17 Rozsa utca', '1214', NULL, 'HU', NULL, 'Budapest', 'Hungary', '1214', 2, 1, '+36304878848', '+36304878848', 'Balika Istvan', '+36304878848', '+36304878848', 'balika.istvan@metalex2001.hu', 'MetalExHu112', 'balika.istvan@metalex2001.hu', 'metalex2001.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(92, 14, 'Metalex 2001 Kft.', 1, '', '', 'Metalex Hungary', '1268-7/2015', '17 Rozsa utca', '1214', NULL, 'HU', NULL, 'Budapest', 'Hungary', '1214', 2, 1, '+36304878848', '+36304878848', 'Balika Istvan', '+36304878848', '+36304878848', 'balika.istvan@metalex2001.hu', 'MetalExHu112', 'balika.istvan@metalex2001.hu', 'metalex2001.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(93, 7, 'Dale Marion', 1, '', '', 'Dale', 'none', '43 Strada Principal', '457272', NULL, 'Romania', NULL, 'Iaz', 'Salaj', '457272', 3, 1, '0766903531', '0766903531', 'Dale Marion', '0766903531', '0766903531', 'cell@pfane.com', '123123', 'cell@pfane.com', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1);

-- --------------------------------------------------------

--
-- Table structure for table `suppliers15dec2021`
--

CREATE TABLE `suppliers15dec2021` (
  `id` int(11) NOT NULL,
  `userid` int(11) DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) DEFAULT 1,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `username` varchar(2500) NOT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `suppliers15dec2021`
--

INSERT INTO `suppliers15dec2021` (`id`, `userid`, `name`, `company`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `zipcode`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `username`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(56, 1, 'Evergreen Recycling LLC', 1, 'HJ54', '', 'GreenSeed', '302555621', '332 Evergreen Rd', '10024', NULL, 'Untied States', NULL, 'Hasholt', 'Wilonoma', NULL, 3, 1, '6153234584', '6153458988', 'Jason Dulap', '6153435585', '6153584675', 'jason@pfane.com', '', 'jason111', 'jason@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, 'A', NULL, NULL, NULL, NULL, NULL, 1),
(57, 1, 'BIanatt', 1, 'GC19', '', 'Bianatt', 'GC1142482', '2-4 Mesogeion Ave', '11527', NULL, 'Greece', NULL, 'Athens', 'Greece', NULL, 2, 1, ' +30 210 5596010-12', ' +30 210 5596013', 'Oarie Husach', ' +30 210 5596010', ' +30 210 5596010', 'contact@bianatt.gr', '', 'bianatt131$!', 'contact@bianatt.gr', 'https://www.vianatt.gr', 'A', NULL, NULL, NULL, NULL, '1', '57_logo_vianatt_en.jpg', NULL, NULL, NULL, NULL, 1),
(58, 1, 'ALKU GMBH', 1, 'GC19', '', 'ALKU', 'GE466859', 'Hans-Böckler-Straße 6', '93142', NULL, 'Germany', NULL, 'Maxhütte-Haidhof ', 'Germany', NULL, 2, 1, '+49 9471 / 60194-0', '+49 9471 / 60194-0', 'Pawel Zubrzycki', '+49 1512 1402684', '+49 1512 1402684', 'Pawel.Zubrzycki@alku-gmbh.de', '', '13313414alkupawel', 'Pawel.Zubrzycki@alku-gmbh.de', 'alku-gmbh.de', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(59, 1, 'Walts Scrap', 1, 'EPA3341', '', 'Walts', 'TAXID123', '123 Santamonica Blvd', '90210', NULL, 'United States', NULL, 'Progressive', 'California', NULL, 3, 1, '766903531', '7475564565', 'Raymond Langevoort', '766903531', '7475564586', 'sample@pfane.com', '', '123123', 'sample@pfane.com', 'none', 'M', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(60, 4, 'Smartwebbers', 1, 'EPA3341', '', 'Smartwebbers', 'PKR', 'ayub rawalpindi', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', NULL, 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@hotmail.com', '', '123456', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, NULL, NULL, NULL, 1),
(61, 7, 'Velinci Scrap', 1, 'EPA3341', '', 'Velinci', 'RO335142', '21a Strada Decembrie', '543432', NULL, 'Romania', NULL, 'Oradea', 'Bihor', NULL, 2, 2, '+40725584541', '0', 'Alex Smecu', '+4037525424', '+ 46 8 610 15 00', 'donate@pfane.com', '', '123456', 'donate@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, '1', '61_Evotus_Inc_fs.png', NULL, NULL, NULL, NULL, 1),
(64, 10, 'Blue Sky Solutions', 1, '', '', 'Wei, Guy & Mike', '', '309 Chapanoke Road #114 ', '27603', NULL, 'USA', NULL, 'Raleigh', 'North Carolina', NULL, 3, 2, '(252) 325-5503', '', 'Wei, Guy, Mike', '', '(252) 325-5503', 'd.ramsell@evotusinc.com', '', 'Lll4433#', 'd.ramsell@evotusinc.com', 'https://blueskysolutions.us', 'A', NULL, NULL, NULL, NULL, '100', NULL, NULL, NULL, NULL, NULL, 1),
(66, 11, 'ALKU METALS GMBH', 1, '8114472', '', 'ALKU', '103006_60', '6 Hans Bockler', '93142', NULL, 'Germany', NULL, 'Maxhute', 'Haidholf', NULL, 3, 1, '+49.9471601.940', '+49.9471.601.94.20', 'Pawell', '+49 1512 1402684', '+49 1512 1402684', 'Zubrzycki@icloud.com', '', '123456', 'Zubrzycki@icloud.com', 'Alku.de', 'A', 'DE60 7505 1040 0380 0302 39', 'Sparkasse Schwandorf', 'Sparkasse Schwandorf ', '', '2', '66_alku-logo-2013-10-17.jpg', NULL, '66_AEV-Formular.pdf', '66_Efb 2018 - englisch.pdf', NULL, 1),
(67, 11, 'Remat S.A.', 1, '21', '', 'Remat', 'RO15705409', 'Piatza Cipariu nr15', '400191', NULL, 'Romania', NULL, 'Cluj-Napoca', 'Cluj', NULL, 3, 1, '+40733070195', '+40264450873', 'Andre Nita', '+40733070195', '+40733070195', 'andre.nita@rematinvest.ro', '', '123456', 'andre.nita@rematinvest.ro', 'Rematinvest.to', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(68, 11, 'Aurenis D.o.o Slovenia', 1, '1', '', 'Aurenis ', '1', '5220 Tolmin', 'Poljubinj 112', NULL, 'Slovenia', NULL, 'Tolmin', 'Slovenia', NULL, 2, 1, '+386082052174', '+386053810387', 'Jure Skoberne', '+386031530424', '+386031530424', 'j.skoberne@aurenis.si', '', '', 'j.skoberne@aurenis.si', 'Aurenis.si', 'A', '', '', '', '', '2', NULL, NULL, NULL, NULL, NULL, 1),
(71, 7, 'Electronic Recycling GMBH', 1, '6718', '', 'Electronic Recycling', 'DE562817', '456 Deuseldorf Eiens', '56644', NULL, 'Germany', NULL, 'Frankfurt', 'Frankfurt', NULL, 3, 1, '+359951152', '+359951152', 'George Heisneit', '+359951152', '+359951152', 'mike@pfane.com', '', '123456789', 'mike@pfane.com', 'none', 'B', NULL, NULL, NULL, NULL, '3', NULL, NULL, '71_1aContract-Marion-1-signed.pdf', NULL, NULL, 1),
(72, 12, 'Amazing Electronic Recycling', 1, '22', '', 'Amazing', '447354', '34 Rhodes Drive', '24GAH421', NULL, 'UK', NULL, 'NewHamptonField', 'Hampton', NULL, 3, 1, '446453458456', '445648795648', 'Jasper Lemmon', '+448766879644', '+448799978565', 'jasper@pfane.com', '', '123123', 'jasper@pfane.com', 'pfane.com', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(73, 10, 'Sean ', 1, '', '', 'Sean', '1234567', 'tree streeet', '27601', NULL, 'usa', NULL, 'place', 'nc', NULL, 3, 2, '7243888709', '', 'sean', '7243888709', '7243888709', 'lssadler@gmail.com', '', 'SeanSadler', 's.sadler@evotusinc.com', '', '', '', '', '', '', '', '73_IMG_20190728_150623.jpg', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(75, 10, 'TestCO', 1, '', '', '', '', 'TBD', '12345', NULL, 'USa', NULL, 'xyz', 'Ak', NULL, 3, 2, '12345689', '', 'Justin Case', '123456', '', 'testbox@evotusinc.com', '', 'Lll4433#', 'testbox@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '75_AML 2019 Standard Form.docx', 'noimage.jpg', 'noimage.jpg', 1),
(76, 11, 'SC Electroschrott Ankauf SRL', 1, '', '', '', '', 'Str. Raului ,nr. 34', '550081', NULL, 'ROMANIA', NULL, 'Sibiu', 'ROMANIA', NULL, 3, 1, '0745702317', '', 'Mihai Coman', '0745702317', '', 'coman.mihai81@icloud.com', '', '', 'mihai.elektroschrott@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(77, 10, 'TestCO 2', 1, 'EPA3342', '', 'Evotus', '559334', '123 street street', '27601', NULL, 'USA', NULL, 'raleigh', 'nc', NULL, 3, 2, '9195346298', 'n/a', 'Derek ', '9195346298', '', 'testco2@evotusinc.com', '', 'Lll4433#', 'testco2@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '77_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(78, 11, 'Central European Scrap Trading Kft', 1, '', '', '', '', 'H-1148 Budapest, Fogarasi Str. 64 , Floor 2', '', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', NULL, 2, 1, '+36306601496', '', 'Emil Svendor', '', '+36306601496', 'svendor.emil@cest.hu', '', '', 'svendor.emil@cest.hu', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(79, 11, 'SC METALROM SRL', 1, '65', '', 'METALROM', 'RO790465', 'Strada Muncet 95', '00000', NULL, 'Romani', NULL, 'Sibui', 'Sibiu', NULL, 1, 1, '+40744585386', '0', 'Ovidiu', '+40744585386', '+40744585386', 'dale@pfane.com', '', '123123', 'dale@pfane.com', 'metalrom.ro', 'A', 'RO30RZBR0000600004427224', 'Reiferson', 'Sibiu', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(80, 10, 'Pfane Scientific', 1, '45SJ0008', '', 'Pfane', 'RO36023056', '30j Strada Garii', '458530', NULL, 'Romania', NULL, 'Nusfalau', 'Salaj', '458530', 2, 1, '+40766009393', '+40766009393', 'Dale Marion', '+40766009393', '+40766009393', 'cell@pfane.com', '', 'dalemarion', 'cell@pfane.com', 'pfane.com', 'A', 'RO27BTRLEURCRT0347441601', 'Banca Transilvania Cluj Napoca', 'Avram Iancu, Simleu Silvaniei, 455300', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(90, 11, 'Cunsult Paper SRL', 1, '45', '', 'Consult Paper', 'RO15952344', '12 Strada Ioan V Socec', '500030', NULL, 'Romania', NULL, 'Brasov', 'Brasov', '500030', 1, 1, '+40744502331', '+40744502331', 'Constantin Holomei', '+40744502331', '+40744502331', 'consultpaper@gmail.com', '', '1276HTg1', 'consultpaper@gmail.com', 'none', 'A', 'RO29BTRLRONCRT0388462601', 'Banca Transilvania', 'Brasov', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(91, 11, 'Metalex 2001 Kft.', 1, '1267', '', 'Metalex Hungary', '1268-7/2015', '17 Rozsa utca', '1214', NULL, 'HU', NULL, 'Budapest', 'Hungary', '1214', 2, 1, '+36304878848', '+36304878848', 'Balika Istvan', '+36304878848', '+36304878848', 'balika.istvan@metalex2001.hu', '', 'MetalExHu112', 'balika.istvan@metalex2001.hu', 'metalex2001.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(95, 14, 'Dale', 1, '', '', 'Dale', 'Dale', 'Dale', 'Dale', NULL, 'Dale', NULL, 'Dale', 'Dale', 'Dale', 2, 1, 'Dale', 'Dale', 'Dale', 'Dale', 'Dale', 'dale@dalemarion.com', '', '1234', 'dale@dalemarion.com', 'Dale', 'A', 'Dale', 'Dale', 'Dale', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(96, 14, 'Enviroserve Test Client', 1, '', '', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 3, 1, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Dustin@enviroserve.ae', '', '123123123', 'Dustin@enviroserve.ae', 'Dustin@enviroserve.ae', 'a', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(97, 7, 'Malik', 1, '', '', 'Malik', '123', 'Gulistan colony', '46600', NULL, 'Pakistan', NULL, 'Rawalpindi', 'Punjab', '46600', 3, 1, '03322527187', '03322527187', 'Asif', '03322527187', '03322527187', 'malikmasif@hotmail.com', '', '12345678', 'malikmasif@hotmail.com', '', 'A', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(99, 11, 'EMR European Metal Recycling GMBH', 1, '120201138', '', 'EMR', 'DE00000000', '2-4 Breslauer St.', 'D-20457', NULL, 'Germany', NULL, 'Hamburg', 'Germany', 'D-20457', 2, 1, '+491774740003', '+491774740003', 'Ronald Druemmer', '+491774740003', '+491774740003', 'Ronald.Druemmer@emrgroup.com', '', 'rdEMR13r2', 'Ronald.Druemmer@emrgroup.com', 'www.emrgroup.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(100, 14, 'Enviroserve Kuwait', 1, '', '', '', '', '14th Floor, February 25 tower', '', NULL, 'Kuwait', NULL, 'Kuwait', '', '', 3, 1, '+96555335055', '+96555335055', 'Waleed Esbaiteh', '+96555335055', '+96555335055', 'dustin@enviroserve.ae', '', '', 'dustin@enviroserve.ae', '', '', 'KW80NBOK000000000000201900090', 'National Bank of Kuwait', ' Al Raya, Omar Ibn Al Khattab street', '', '', '100_Enviroserve Logo - Arrows - Colour - Transparent.png', NULL, '100_Auht signatory (1-2).pdf.pdf', '100_ES CL.pdf.pdf', 'noimage.jpg', 1),
(101, 14, 'Elektro Recycling Nord GMBH', 1, '121212DE', '', 'Elektro Recycling Nord GMBH', 'DE206184964', 'PeutestraÃŸe 21', '20539', NULL, 'Germany', NULL, 'Hamburg', 'Germany', '20539', 2, 1, '+491725140901', '+491725140901', 'Serdar Korkusuz', '+491725140901', '+491725140901', 's.korkusuz@ern-gmbh.de', '', 'FHU187gf31RT', 's.korkusuz@ern-gmbh.de', 'ren-gmbh.de', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(102, 14, 'A&N Computer Recycling-Buntmetalle-Containerdienst OHG', 1, '27665', '', 'A&N Computer Recycling', 'DE276265604', 'Franz-Grashofstrause 15-17', '68199', NULL, 'Germany', NULL, 'Mannheim', 'Frankfurt', '68199', 2, 1, '0000000000', '0000000000', 'Adem Coban', '0000000000', '0000000000', 'vertneb@an-compiterrecycling.de', '', '19hH85K5E2dahF', 'vertneb@an-compiterrecycling.de', 'www.an-compiterrecycling.de', 'A', '', '', '', '', '1', NULL, NULL, '102_Verleihungsurkunde und Zertifikat 2020.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(103, 11, 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 1, '23', '', 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 'RO0000000', 'strada Turda  , nr 15', '550077', NULL, 'Romania', NULL, 'Sibiu', 'Sibiu', '550077', 1, 1, '0757 837 636', '0757 837 636', 'Danus', '0757 837 636', '0757 837 636', 'danus@pfane.com', '', '123123123123123123123123', 'danus@pfane.com', 'none', 'B', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(104, 11, 'OFIR - JULIO TABI Ltd.', 1, '833', '', 'OFIR - JULIO TABI Ltd.', '36527581', '460 Lehota', '95136', NULL, 'Slovak Republic', NULL, 'Lehota', 'Slovakia', '95136', 2, 1, '+421905536989', '+421905536989', 'Dagmara Tabiova', '+421905536989', '+421905536989', 'ofir@ofir.sk', '', '188ofirsk', 'ofir@ofir.sk', 'ofir.sk', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(106, 11, 'Serenity Solution Kft.', 1, 'HU214', '', 'Serenity', '10344985-2-41', 'Teve utca 24-28.', '1139', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', '1139', 2, 1, '+36 30 463 2448 ', '+36 30 463 2448 ', 'JuhÃ¡sz MiklÃ³s', '+36 30 463 2448 ', '+36 30 463 2448 ', 'zoltan@pfane.org', '', '1a6Fe9UytG0oo1', 'zoltan@pfane.org', 'none', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(108, 11, 'FÃ©mker Kft.', 1, 'HU0802', '', 'FÃ©mker', '10454273-2-08', 'HÅ±tÅ‘hÃ¡z u. 6.', '9027 ', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9027 ', 2, 1, '+36 (30) 326 0983', '+36 (30) 326 0983', 'VÃ©gh GergÅ‘', '+36 (30) 326 0983', '+36 (30) 326 0983', 'zoltan@pfane.org', '', '13qe24wr', 'zoltan@pfane.org', 'https://www.femker.hu/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(109, 11, 'Trenalux HungÃ¡ria Kft.', 1, '01-09-193199', '', 'Trenalux HungÃ¡ria Kft.', '13042503-2-43', 'VÃ¡sÃ¡rhelyi Ãºt 169', '6600', NULL, 'Hungaary', NULL, 'Szentes', 'Hungary', '6600', 2, 1, '36-70-316-316', '36-70-316-316', 'HorvÃ¡t MiklÃ³s', '36-70-316-316', '36-70-316-316', 'zoltan@pfane.com', '', '111222333444', 'zoltan@pfane.com', 'https://www.trenalux.hu/', 'A', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(111, 11, 'PPUH EUROSCRAP', 1, '', '', 'EUROSCRAP', '573-011-72-37', 'ul. Podkolejowa 25/31', '42-202', NULL, 'Poland', NULL, 'CzÄ™stochowa', '', '42-202', 2, 1, '+48 884727877', '+48 884727877', 'Rafal', '+48 884727877', '+48 884727877', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'http://www.euroscrap.pl', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '111_Legal form and VAT No.pdf', 1),
(112, 11, 'Alcufer Kft.', 1, '0000', '', 'Alcufer', '10356962-2-08', 'MÃ©szÃ¡ros L. u. 13', '9023', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9023', 2, 1, '+36 30 538 0470', '+36 30 538 0470', 'Steininger BÃ¡lint', '+36 30 538 0470', '+36 30 538 0470', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'alcufer.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(114, 11, 'NOVA METAL MRF SRL', 1, 'HD-237', '', 'NOVA METAL', 'RO34082196', 'str. Florilor, bl. 10, sc. A, et. P, ap. 5', '335300', NULL, 'Romania', NULL, 'CÄƒlan, jud. Hunedoara', '', '335300', 1, 1, '0756 562 927', '0756 562 927', 'Dan', '0756 562 927', '0756 562 927', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(115, 11, 'CCR Logistics Systems RO S.R.L.', 1, '186/03.12.2018', '', 'CCR', 'RO23321450', 'Str. PolonÄƒ, nr 95-99, et. 2, Sector 1', '010507', NULL, 'Romania', NULL, 'BucureÈ™ti', '', '010507', 1, 1, '+40 21 2000 493', '+40 21 2000 493', 'George Andrei Plumbuitu', '+40 21 2000 493', '+40 21 2000 493', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '115_Licenta EEE CCR Logistics Systems 2020.pdf', 1),
(117, 11, 'E-RECIKLAZA 2010 D.O.O.', 1, '', '', 'E-RECIKLAZA', '106452850', 'Bul. Sv. Cara Konstantina 82-86', '18000', NULL, 'Serbia', NULL, 'Nis', '', '18000', 2, 1, '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'Ninoslav Milenkovic', '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'https://www.ereciklaza.com/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(118, 11, 'CCR RO WASTE MANAGEMENT SYSTEMS S.R.L.', 1, '', '', 'CCR WASTE MANAGEMENT', 'RO25303212', 'Calea Dorobantilor nr. 53, parter, sector 1', '010555', NULL, 'Romania', NULL, 'Bucuresti', '', '010555', 2, 1, '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'George Pliumbuitu-Andrei', '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(121, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 6, 2, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'info@lmgmetals.ca', '', '123123', 'info@lmgmetals.ca', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(122, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 6, 2, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'lmg@pfane.com', '', '123123', 'lmg@pfane.com', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(123, 15, 'Triple R Inc.', 1, 'NA', '', 'Triple R', '700 896 517', '43 D Greenham Drive', 'T4P 2X7', NULL, 'Canada', NULL, 'Red Deer', 'Alberta', 'T4P 2X7', 6, 2, '1-403-872-5581', '1-403-872-5581', 'Graham Towns', '1-403-872-5581', '1-403-872-5581', 'TripleRinc2019@outlook.com', '', '812WhG9DE', 'TripleRinc2019@outlook.com', 'https://resell-reuse-recycle.co', 'B', '', '', '', '', '2', '123_logo.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(126, 11, 'Syntom Metal Recycling Sp. z o.o', 1, '', '', '', '5242680231', 'ul. Wysoka 61/65', '97-200', NULL, 'Poland', NULL, 'TomaszÃ³w Mazowiecki', '', '97-200', 2, 1, '+48 506 264 257', '+48 506 264 257', 'Paulina KamiÅ„ska', '+48 506 264 257', '+48 506 264 257', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'https://syntom.pl/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(127, 11, 'WEEEDEEE s.r.o.', 1, '', '', 'Dusan', 'SK2120765944', 'DrieÅˆovÃ¡ 16940/1J', '821 01', NULL, 'Slovakia', NULL, 'Bratislava (RuÅ¾inov)', '', '821 01', 2, 1, '+43 664 1777232', '+43 664 1777232', 'DuÅ¡an HudÃ¡k', '+43 664 1777232', '+43 664 1777232', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', '', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(128, 11, 'Loacker HulladÃ©khasznosÃ­tÃ³ Kft.', 1, '101931496', '', 'Loacker', '12530119-2-43', 'HÃ­dÃ©pÃ­tÅ‘ u. 15', '1095', NULL, 'Hungary', NULL, 'Budapest', '', '1095', 2, 1, '+36 30 371 7888', '+36 30 371 7888', 'Kisbenedek Alex', '+36 30 371 7888', '+36 30 371 7888', 'zoltan@pfane.org', '', '', 'zoltan@pfane.org', 'https://www.loacker.hu', '', 'HU47109180010000000337450028', 'Unicredit Bank Hungary Zrt.', '1054 Budpaest, SzabadsÃ¡g tÃ©r 5-6.', 'BACXHUHB', '', NULL, NULL, '128_PE-KTFO-01503-8-2021-szall-hullgazd-eng-2021.pdf', '128_PE-KTFO-06736-13-2019-Hulladek-kereskedelmi-engedely.pdf', 'noimage.jpg', 1);

-- --------------------------------------------------------

--
-- Table structure for table `suppliers18nov2021`
--

CREATE TABLE `suppliers18nov2021` (
  `id` int(11) NOT NULL,
  `userid` int(11) DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `zipcode` varchar(100) DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) DEFAULT 1,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `suppliers18nov2021`
--

INSERT INTO `suppliers18nov2021` (`id`, `userid`, `name`, `company`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `zipcode`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `docimg1`, `docimg2`, `docimg3`, `status`) VALUES
(56, 1, 'Evergreen Recycling LLC', 1, 'HJ54', '', 'GreenSeed', '302555621', '332 Evergreen Rd', '10024', NULL, 'Untied States', NULL, 'Hasholt', 'Wilonoma', NULL, 3, 1, '6153234584', '6153458988', 'Jason Dulap', '6153435585', '6153584675', 'jason@pfane.com', 'jason111', 'jason@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, 'A', NULL, NULL, NULL, NULL, NULL, 1),
(57, 1, 'BIanatt', 1, 'GC19', '', 'Bianatt', 'GC1142482', '2-4 Mesogeion Ave', '11527', NULL, 'Greece', NULL, 'Athens', 'Greece', NULL, 2, 1, ' +30 210 5596010-12', ' +30 210 5596013', 'Oarie Husach', ' +30 210 5596010', ' +30 210 5596010', 'contact@bianatt.gr', 'bianatt131$!', 'contact@bianatt.gr', 'https://www.vianatt.gr', 'A', NULL, NULL, NULL, NULL, '1', '57_logo_vianatt_en.jpg', NULL, NULL, NULL, NULL, 1),
(58, 1, 'ALKU GMBH', 1, 'GC19', '', 'ALKU', 'GE466859', 'Hans-Böckler-Straße 6', '93142', NULL, 'Germany', NULL, 'Maxhütte-Haidhof ', 'Germany', NULL, 2, 1, '+49 9471 / 60194-0', '+49 9471 / 60194-0', 'Pawel Zubrzycki', '+49 1512 1402684', '+49 1512 1402684', 'Pawel.Zubrzycki@alku-gmbh.de', '13313414alkupawel', 'Pawel.Zubrzycki@alku-gmbh.de', 'alku-gmbh.de', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(59, 1, 'Walts Scrap', 1, 'EPA3341', '', 'Walts', 'TAXID123', '123 Santamonica Blvd', '90210', NULL, 'United States', NULL, 'Progressive', 'California', NULL, 3, 1, '766903531', '7475564565', 'Raymond Langevoort', '766903531', '7475564586', 'sample@pfane.com', '123123', 'sample@pfane.com', 'none', 'M', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(60, 4, 'Smartwebbers', 1, 'EPA3341', '', 'Smartwebbers', 'PKR', 'ayub rawalpindi', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', NULL, 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@hotmail.com', '123456', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, NULL, NULL, NULL, 1),
(61, 7, 'Velinci Scrap', 1, 'EPA3341', '', 'Velinci', 'RO335142', '21a Strada Decembrie', '543432', NULL, 'Romania', NULL, 'Oradea', 'Bihor', NULL, 2, 2, '+40725584541', '0', 'Alex Smecu', '+4037525424', '+ 46 8 610 15 00', 'donate@pfane.com', '123456', 'donate@pfane.com', 'none', 'A', NULL, NULL, NULL, NULL, '1', '61_Evotus_Inc_fs.png', NULL, NULL, NULL, NULL, 1),
(64, 10, 'Blue Sky Solutions', 1, '', '', 'Wei, Guy & Mike', '', '309 Chapanoke Road #114 ', '27603', NULL, 'USA', NULL, 'Raleigh', 'North Carolina', NULL, 3, 2, '(252) 325-5503', '', 'Wei, Guy, Mike', '', '(252) 325-5503', 'd.ramsell@evotusinc.com', 'Lll4433#', 'd.ramsell@evotusinc.com', 'https://blueskysolutions.us', 'A', NULL, NULL, NULL, NULL, '100', NULL, NULL, NULL, NULL, NULL, 1),
(66, 11, 'ALKU METALS GMBH', 1, '8114472', '', 'ALKU', '103006_60', '6 Hans Bockler', '93142', NULL, 'Germany', NULL, 'Maxhute', 'Haidholf', NULL, 3, 1, '+49.9471601.940', '+49.9471.601.94.20', 'Pawell', '+49 1512 1402684', '+49 1512 1402684', 'Zubrzycki@icloud.com', '123456', 'Zubrzycki@icloud.com', 'Alku.de', 'A', 'DE60 7505 1040 0380 0302 39', 'Sparkasse Schwandorf', 'Sparkasse Schwandorf ', '', '2', '66_alku-logo-2013-10-17.jpg', NULL, '66_AEV-Formular.pdf', '66_Efb 2018 - englisch.pdf', NULL, 1),
(67, 11, 'Remat S.A.', 1, '21', '', 'Remat', 'RO15705409', 'Piatza Cipariu nr15', '400191', NULL, 'Romania', NULL, 'Cluj-Napoca', 'Cluj', NULL, 3, 1, '+40733070195', '+40264450873', 'Andre Nita', '+40733070195', '+40733070195', 'andre.nita@rematinvest.ro', '123456', 'andre.nita@rematinvest.ro', 'Rematinvest.to', 'A', NULL, NULL, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, 1),
(68, 11, 'Aurenis D.o.o Slovenia', 1, '1', '', 'Aurenis ', '1', '5220 Tolmin', 'Poljubinj 112', NULL, 'Slovenia', NULL, 'Tolmin', 'Slovenia', NULL, 2, 1, '+386082052174', '+386053810387', 'Jure Skoberne', '+386031530424', '+386031530424', 'j.skoberne@aurenis.si', '', 'j.skoberne@aurenis.si', 'Aurenis.si', 'A', '', '', '', '', '2', NULL, NULL, NULL, NULL, NULL, 1),
(70, 11, 'Tesla Recycling Poland', 1, '000013739', '', 'Tesla', 'PL5291779484', '4J8C+V6', '05-825', NULL, 'Poland', NULL, 'Grodzisk', 'Mazowiecki', NULL, 3, 1, '+48 506 263 728', '+48 506 263 728', 'Scibior Pawel', '+48 506 263 728', '+48 506 263 728', 'p.scibior@pcbtech.pl', 'tesla1812', 'p.scibior@pcbtech.pl', 'http://www.teslarecycling.pl', 'A', '', '', '', '', '1', '70_Capture.PNG', NULL, '70_decyzja_na_zbieranie_odpadow..pdf', '70_Confirmation of company registration as a taxpayer - ENGLISH.pdf', '70_REGON certificate - ENGLISH.pages', 1),
(71, 7, 'Electronic Recycling GMBH', 1, '6718', '', 'Electronic Recycling', 'DE562817', '456 Deuseldorf Eiens', '56644', NULL, 'Germany', NULL, 'Frankfurt', 'Frankfurt', NULL, 3, 1, '+359951152', '+359951152', 'George Heisneit', '+359951152', '+359951152', 'mike@pfane.com', '123456789', 'mike@pfane.com', 'none', 'B', NULL, NULL, NULL, NULL, '3', NULL, NULL, '71_1aContract-Marion-1-signed.pdf', NULL, NULL, 1),
(72, 12, 'Amazing Electronic Recycling', 1, '22', '', 'Amazing', '447354', '34 Rhodes Drive', '24GAH421', NULL, 'UK', NULL, 'NewHamptonField', 'Hampton', NULL, 3, 1, '446453458456', '445648795648', 'Jasper Lemmon', '+448766879644', '+448799978565', 'jasper@pfane.com', '123123', 'jasper@pfane.com', 'pfane.com', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(73, 10, 'Sean ', 1, '', '', 'Sean', '1234567', 'tree streeet', '27601', NULL, 'usa', NULL, 'place', 'nc', NULL, 3, 2, '7243888709', '', 'sean', '7243888709', '7243888709', 'lssadler@gmail.com', 'SeanSadler', 's.sadler@evotusinc.com', '', '', '', '', '', '', '', '73_IMG_20190728_150623.jpg', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(75, 10, 'TestCO', 1, '', '', '', '', 'TBD', '12345', NULL, 'USa', NULL, 'xyz', 'Ak', NULL, 3, 2, '12345689', '', 'Justin Case', '123456', '', 'testbox@evotusinc.com', 'Lll4433#', 'testbox@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '75_AML 2019 Standard Form.docx', 'noimage.jpg', 'noimage.jpg', 1),
(76, 11, 'SC Electroschrott Ankauf SRL', 1, '', '', '', '', 'Str. Raului ,nr. 34', '550081', NULL, 'ROMANIA', NULL, 'Sibiu', 'ROMANIA', NULL, 3, 1, '0745702317', '', 'Mihai Coman', '0745702317', '', 'coman.mihai81@icloud.com', '', 'mihai.elektroschrott@gmail.com', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(77, 10, 'TestCO 2', 1, 'EPA3342', '', 'Evotus', '559334', '123 street street', '27601', NULL, 'USA', NULL, 'raleigh', 'nc', NULL, 3, 2, '9195346298', 'n/a', 'Derek ', '9195346298', '', 'testco2@evotusinc.com', 'Lll4433#', 'testco2@evotusinc.com', '', '', '', '', '', '', '', NULL, NULL, '77_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(78, 11, 'Central European Scrap Trading Kft', 1, '', '', '', '', 'H-1148 Budapest, Fogarasi Str. 64 , Floor 2', '', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', NULL, 2, 1, '+36306601496', '', 'Emil Svendor', '', '+36306601496', 'svendor.emil@cest.hu', '', 'svendor.emil@cest.hu', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(79, 11, 'SC METALROM SRL', 1, '65', '', 'METALROM', 'RO790465', 'Strada Muncet 95', '00000', NULL, 'Romani', NULL, 'Sibui', 'Sibiu', NULL, 1, 1, '+40744585386', '0', 'Ovidiu', '+40744585386', '+40744585386', 'dale@pfane.com', '123123', 'dale@pfane.com', 'metalrom.ro', 'A', 'RO30RZBR0000600004427224', 'Reiferson', 'Sibiu', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(80, 10, 'Pfane Scientific', 1, '45SJ0008', '', 'Pfane', 'RO36023056', '30j Strada Garii', '458530', NULL, 'Romania', NULL, 'Nusfalau', 'Salaj', '458530', 2, 1, '+40766009393', '+40766009393', 'Dale Marion', '+40766009393', '+40766009393', 'cell@pfane.com', 'dalemarion', 'cell@pfane.com', 'pfane.com', 'A', 'RO27BTRLEURCRT0347441601', 'Banca Transilvania Cluj Napoca', 'Avram Iancu, Simleu Silvaniei, 455300', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(90, 11, 'Cunsult Paper SRL', 1, '45', '', 'Consult Paper', 'RO15952344', '12 Strada Ioan V Socec', '500030', NULL, 'Romania', NULL, 'Brasov', 'Brasov', '500030', 1, 1, '+40744502331', '+40744502331', 'Constantin Holomei', '+40744502331', '+40744502331', 'consultpaper@gmail.com', '1276HTg1', 'consultpaper@gmail.com', 'none', 'A', 'RO29BTRLRONCRT0388462601', 'Banca Transilvania', 'Brasov', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(91, 11, 'Metalex 2001 Kft.', 1, '1267', '', 'Metalex Hungary', '1268-7/2015', '17 Rozsa utca', '1214', NULL, 'HU', NULL, 'Budapest', 'Hungary', '1214', 2, 1, '+36304878848', '+36304878848', 'Balika Istvan', '+36304878848', '+36304878848', 'balika.istvan@metalex2001.hu', 'MetalExHu112', 'balika.istvan@metalex2001.hu', 'metalex2001.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(95, 14, 'Dale', 1, '', '', 'Dale', 'Dale', 'Dale', 'Dale', NULL, 'Dale', NULL, 'Dale', 'Dale', 'Dale', 2, 1, 'Dale', 'Dale', 'Dale', 'Dale', 'Dale', 'dale@dalemarion.com', '1234', 'dale@dalemarion.com', 'Dale', 'A', 'Dale', 'Dale', 'Dale', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(96, 14, 'Enviroserve Test Client', 1, '', '', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', NULL, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 3, 1, 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Enviroserve Test Client', 'Dustin@enviroserve.ae', '123123123', 'Dustin@enviroserve.ae', 'Dustin@enviroserve.ae', 'a', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(97, 7, 'Malik', 1, '', '', 'Malik', '123', 'Gulistan colony', '46600', NULL, 'Pakistan', NULL, 'Rawalpindi', 'Punjab', '46600', 3, 1, '03322527187', '03322527187', 'Asif', '03322527187', '03322527187', 'malikmasif@hotmail.com', '12345678', 'malikmasif@hotmail.com', '', 'A', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(98, 11, 'WeeeDeee sdo', 1, '000444', '', 'WeeeDeee', 'SK', 'SK', '45711', NULL, 'SK', NULL, 'SK', 'SK', '45711', 2, 1, '5555555555', '5555555555', 'Dusan', '5555555555', '5555555555', 'dusan@weeedeee.com', 'Dusan1315', 'dusan@weeedeee.com', 'weeedeee.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(99, 11, 'EMR European Metal Recycling GMBH', 1, '120201138', '', 'EMR', 'DE00000000', '2-4 Breslauer St.', 'D-20457', NULL, 'Germany', NULL, 'Hamburg', 'Germany', 'D-20457', 2, 1, '+491774740003', '+491774740003', 'Ronald Druemmer', '+491774740003', '+491774740003', 'Ronald.Druemmer@emrgroup.com', 'rdEMR13r2', 'Ronald.Druemmer@emrgroup.com', 'www.emrgroup.com', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(100, 14, 'Enviroserve Kuwait', 1, '', '', '', '', '14th Floor, February 25 tower', '', NULL, 'Kuwait', NULL, 'Kuwait', '', '', 3, 1, '+96555335055', '+96555335055', 'Waleed Esbaiteh', '+96555335055', '+96555335055', 'dustin@enviroserve.ae', '', 'dustin@enviroserve.ae', '', '', 'KW80NBOK000000000000201900090', 'National Bank of Kuwait', ' Al Raya, Omar Ibn Al Khattab street', '', '', '100_Enviroserve Logo - Arrows - Colour - Transparent.png', NULL, '100_Auht signatory (1-2).pdf.pdf', '100_ES CL.pdf.pdf', 'noimage.jpg', 1),
(101, 14, 'Elektro Recycling Nord GMBH', 1, '121212DE', '', 'Elektro Recycling Nord GMBH', 'DE206184964', 'PeutestraÃŸe 21', '20539', NULL, 'Germany', NULL, 'Hamburg', 'Germany', '20539', 2, 1, '+491725140901', '+491725140901', 'Serdar Korkusuz', '+491725140901', '+491725140901', 's.korkusuz@ern-gmbh.de', 'FHU187gf31RT', 's.korkusuz@ern-gmbh.de', 'ren-gmbh.de', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(102, 14, 'A&N Computer Recycling-Buntmetalle-Containerdienst OHG', 1, '27665', '', 'A&N Computer Recycling', 'DE276265604', 'Franz-Grashofstrause 15-17', '68199', NULL, 'Germany', NULL, 'Mannheim', 'Frankfurt', '68199', 2, 1, '0000000000', '0000000000', 'Adem Coban', '0000000000', '0000000000', 'vertneb@an-compiterrecycling.de', '19hH85K5E2dahF', 'vertneb@an-compiterrecycling.de', 'www.an-compiterrecycling.de', 'A', '', '', '', '', '1', NULL, NULL, '102_Verleihungsurkunde und Zertifikat 2020.pdf', 'noimage.jpg', 'noimage.jpg', 1),
(103, 11, 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 1, '23', '', 'SISTEM LOCAL DE COLECTARE - CENTRU  S.R.L', 'RO0000000', 'strada Turda  , nr 15', '550077', NULL, 'Romania', NULL, 'Sibiu', 'Sibiu', '550077', 1, 1, '0757 837 636', '0757 837 636', 'Danus', '0757 837 636', '0757 837 636', 'danus@pfane.com', '123123123123123123123123', 'danus@pfane.com', 'none', 'B', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(104, 11, 'OFIR - JULIO TABI Ltd.', 1, '833', '', 'OFIR - JULIO TABI Ltd.', '36527581', '460 Lehota', '95136', NULL, 'Slovak Republic', NULL, 'Lehota', 'Slovakia', '95136', 2, 1, '+421905536989', '+421905536989', 'Dagmara Tabiova', '+421905536989', '+421905536989', 'ofir@ofir.sk', '188ofirsk', 'ofir@ofir.sk', 'ofir.sk', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(105, 11, 'Serenity Solution Kft.', 1, '04199', '', 'Serenity Solution', '10344985-2-41', 'Teve utca 24-28', '1139', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', '1139', 2, 1, '+36 30 463 2448', '+36 30 463 2448', 'JuhÃ¡sz MiklÃ³s', '+36 30 463 2448', '+36 30 463 2448', 'dale@dalemarion.com', '123123123', 'dale@dalemarion.com', 'none', 'A', 'none', 'None', 'none', 'none', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(106, 11, 'Serenity Solution Kft.', 1, 'HU214', '', 'Serenity', '10344985-2-41', 'Teve utca 24-28.', '1139', NULL, 'Hungary', NULL, 'Budapest', 'Hungary', '1139', 2, 1, '+36 30 463 2448 ', '+36 30 463 2448 ', 'JuhÃ¡sz MiklÃ³s', '+36 30 463 2448 ', '+36 30 463 2448 ', 'zoltan@pfane.org', '1a6Fe9UytG0oo1', 'zoltan@pfane.org', 'none', 'A', 'none', 'none', 'none', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(107, 11, 'Alcufer Kft.', 1, '0000', '', 'Alcufer', '10356962-2-08', 'MÃ©szÃ¡ros L. u. 13', '9023', NULL, 'EU', NULL, 'GyÅ‘r', 'Hungary', '9023', 2, 1, '+36 30 538 0470', '+36 30 538 0470', 'Steininger BÃ¡lint', '+36 30 538 0470', '+36 30 538 0470', 'steininger.balint@alcufer.hu', '13qe24wr', 'steininger.balint@alcufer.hu', 'alcufer.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(108, 11, 'FÃ©mker Kft.', 1, 'HU0802', '', 'FÃ©mker', '10454273-2-08', 'HÅ±tÅ‘hÃ¡z u. 6.', '9027 ', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9027 ', 2, 1, '+36 (30) 326 0983', '+36 (30) 326 0983', 'VÃ©gh GergÅ‘', '+36 (30) 326 0983', '+36 (30) 326 0983', 'zoltan@pfane.org', '13qe24wr', 'zoltan@pfane.org', 'https://www.femker.hu/', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(109, 11, 'Trenalux HungÃ¡ria Kft.', 1, '01-09-193199', '', 'Trenalux HungÃ¡ria Kft.', '13042503-2-43', 'VÃ¡sÃ¡rhelyi Ãºt 169', '6600', NULL, 'Hungaary', NULL, 'Szentes', 'Hungary', '6600', 2, 1, '36-70-316-316', '36-70-316-316', 'HorvÃ¡t MiklÃ³s', '36-70-316-316', '36-70-316-316', 'zoltan@pfane.com', '111222333444', 'zoltan@pfane.com', 'https://www.trenalux.hu/', 'A', '', '', '', '', '2', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(110, 11, 'PPUH EUROSCRAP', 1, '', '', 'EUROSCRAP', '573-011-72-37', 'ul. Podkolejowa 25/31', '42-202', NULL, 'Poland', NULL, 'CzÄ™stochowa', '', '42-202', 2, 1, '+48 884727877', '+48 884727877', 'Rafal', '+48 884727877', '+48 884727877', 'euroscrap33@gmail.com', '', 'euroscrap33@gmail.com', 'http://www.euroscrap.pl', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '110_Legal form and VAT No.pdf', 1),
(111, 11, 'PPUH EUROSCRAP', 1, '', '', 'EUROSCRAP', '573-011-72-37', 'ul. Podkolejowa 25/31', '42-202', NULL, 'Poland', NULL, 'CzÄ™stochowa', '', '42-202', 2, 1, '+48 884727877', '+48 884727877', 'Rafal', '+48 884727877', '+48 884727877', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'http://www.euroscrap.pl', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '111_Legal form and VAT No.pdf', 1),
(112, 11, 'Alcufer Kft.', 1, '0000', '', 'Alcufer', '10356962-2-08', 'MÃ©szÃ¡ros L. u. 13', '9023', NULL, 'Hungary', NULL, 'GyÅ‘r', '', '9023', 2, 1, '+36 30 538 0470', '+36 30 538 0470', 'Steininger BÃ¡lint', '+36 30 538 0470', '+36 30 538 0470', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'alcufer.hu', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(113, 11, 'NOVA METAL MRF SRL', 1, '', '', 'NOVA METAL', 'RO34082196', 'Loc. CÄƒlan, oraÈ™ CÄƒlan, str. Florilor, bl. 10, sc. A, et. P, ap. 5, jud. Hunedoara', '335300', NULL, 'Romania', NULL, 'CÄƒlan', '', '335300', 2, 1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(114, 11, 'NOVA METAL MRF SRL', 1, 'HD-237', '', 'NOVA METAL', 'RO34082196', 'str. Florilor, bl. 10, sc. A, et. P, ap. 5', '335300', NULL, 'Romania', NULL, 'CÄƒlan, jud. Hunedoara', '', '335300', 1, 1, '0756 562 927', '0756 562 927', 'Dan', '0756 562 927', '0756 562 927', 'zoltan@pfane.org', '', 'zoltan@pfane.org', '', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(115, 11, 'CCR Logistics Systems RO S.R.L.', 1, '186/03.12.2018', '', 'CCR', 'RO23321450', 'Str. PolonÄƒ, nr 95-99, et. 2, Sector 1', '010507', NULL, 'Romania', NULL, 'BucureÈ™ti', '', '010507', 1, 1, '+40 21 2000 493', '+40 21 2000 493', 'George Andrei Plumbuitu', '+40 21 2000 493', '+40 21 2000 493', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', '115_Licenta EEE CCR Logistics Systems 2020.pdf', 1),
(116, 11, 'E-RECIKLAZA 2010 D.O.O.', 1, '', '', 'E-RECIKLAZA', '106452850', 'Bul. Sv. Cara Konstantina 82-86', '18000', NULL, 'Serbia', NULL, 'Nis', '', '18000', 2, 1, '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'Ninoslav Milenkovic', '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'ninoslav@ereciklaza.com', '', 'ninoslav@ereciklaza.com', 'https://www.ereciklaza.com/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(117, 11, 'E-RECIKLAZA 2010 D.O.O.', 1, '', '', 'E-RECIKLAZA', '106452850', 'Bul. Sv. Cara Konstantina 82-86', '18000', NULL, 'Serbia', NULL, 'Nis', '', '18000', 2, 1, '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'Ninoslav Milenkovic', '+ 381 (0) 18 415 0 130', '+ 381 (0) 18 415 0 130', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://www.ereciklaza.com/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(118, 11, 'CCR RO WASTE MANAGEMENT SYSTEMS S.R.L.', 1, '', '', 'CCR WASTE MANAGEMENT', 'RO25303212', 'Calea Dorobantilor nr. 53, parter, sector 1', '010555', NULL, 'Romania', NULL, 'Bucuresti', '', '010555', 2, 1, '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'George Pliumbuitu-Andrei', '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(119, 11, 'CCR RO WASTE MANAGEMENT SYSTEMS S.R.L.', 1, '', '', 'CCR WASTE MANAGEMENT', 'RO25303212', 'Calea Dorobantilor nr. 53, parter, sector 1', '010555', NULL, 'Romania', NULL, 'Bucuresti', '', '010555', 2, 1, '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'George Pliumbuitu-Andrei', '021.201.08.08, 021.200.04.93', '021.201.08.08, 021.200.04.93', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(120, 11, 'CCR RO WASTE MANAGEMENT SYSTEMS S.R.L.', 1, '', '', 'CCR WASTE MANAGEMENT', 'RO25303212', 'Calea Dorobantilor nr. 53, parter, sector 1', '010555', NULL, 'Romania', NULL, 'Bucuresti', '', '010555', 2, 1, '021.201.08.08', '021.201.08.08', 'George Pliumbuitu-Andrei', '021.201.08.08', '021.201.08.08', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://www.ccr-revlog.ro/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(121, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 6, 2, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'info@lmgmetals.ca', '123123', 'info@lmgmetals.ca', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(122, 15, 'LMG METALS Manitoba', 1, 'CAMA311', '', 'LMG Metals', '41650002135', '1410 4 Ave NE,', 'R1N 3P1', NULL, 'Canada', NULL, ' Portage la Prairie', 'MB', 'R1N 3P1', 6, 2, '+13554945588', '+13554945588', 'Dwayne Johnson', '+13554945588', '+13554945588', 'lmg@pfane.com', '123123', 'lmg@pfane.com', 'none', 'none', '', '', '', '', 'none', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(123, 15, 'Triple R Inc.', 1, 'NA', '', 'Triple R', '700 896 517', '43 D Greenham Drive', 'T4P 2X7', NULL, 'Canada', NULL, 'Red Deer', 'Alberta', 'T4P 2X7', 6, 2, '1-403-872-5581', '1-403-872-5581', 'Graham Towns', '1-403-872-5581', '1-403-872-5581', 'TripleRinc2019@outlook.com', '812WhG9DE', 'TripleRinc2019@outlook.com', 'https://resell-reuse-recycle.co', 'B', '', '', '', '', '2', '123_logo.png', NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(124, 11, 'Syntom Metal Recycling Sp. z o.o', 1, '', '', '', '5242680231', 'ul. Wysoka 61/65', '97-200', NULL, 'Poland', NULL, 'TomaszÃ³w Mazowiecki', '', '97-200', 2, 1, '+48 506 264 257', '+48 506 264 257', 'Paulina KamiÅ„ska', '+48 506 264 257', '+48 506 264 257', 'biuro@syntom.pl, paulina@syntom.pl', '', 'biuro@syntom.pl, paulina@syntom.pl', 'https://syntom.pl/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(125, 11, 'Syntom Metal Recycling Sp. z o.o', 1, '', '', '', '5242680231', 'ul. Wysoka 61/65', '97-200', NULL, 'Poland', NULL, 'TomaszÃ³w Mazowiecki', '', '97-200', 2, 1, '+48 506 264 257', '+48 506 264 257', 'Paulina KamiÅ„ska', '+48 506 264 257', '+48 506 264 257', 'paulina@syntom.pl', '', 'paulina@syntom.pl', 'https://syntom.pl/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(126, 11, 'Syntom Metal Recycling Sp. z o.o', 1, '', '', '', '5242680231', 'ul. Wysoka 61/65', '97-200', NULL, 'Poland', NULL, 'TomaszÃ³w Mazowiecki', '', '97-200', 2, 1, '+48 506 264 257', '+48 506 264 257', 'Paulina KamiÅ„ska', '+48 506 264 257', '+48 506 264 257', 'zoltan@pfane.org', '', 'zoltan@pfane.org', 'https://syntom.pl/en/', '', '', '', '', '', '', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1),
(127, 11, 'WEEEDEEE s.r.o.', 1, '', '', 'Dusan', 'SK2120765944', 'DrieÅˆovÃ¡ 16940/1J', '821 01', NULL, 'Slovakia', NULL, 'Bratislava (RuÅ¾inov)', '', '821 01', 2, 1, '+43 664 1777232', '+43 664 1777232', 'DuÅ¡an HudÃ¡k', '+43 664 1777232', '+43 664 1777232', 'zoltan@pfane.org', '', 'zoltan@pfane.org', '', 'A', '', '', '', '', '1', NULL, NULL, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1);

-- --------------------------------------------------------

--
-- Table structure for table `suppliertax`
--

CREATE TABLE `suppliertax` (
  `id` int(11) NOT NULL,
  `supplierid` int(11) DEFAULT NULL,
  `supplyorderid` int(11) DEFAULT NULL,
  `offerprice` float(13,3) DEFAULT NULL,
  `amount` float(13,3) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `suppliertax`
--

INSERT INTO `suppliertax` (`id`, `supplierid`, `supplyorderid`, `offerprice`, `amount`, `sysdate`, `status`) VALUES
(1, 153, 470, 0.000, 0.000, '2023-11-06', 1);

-- --------------------------------------------------------

--
-- Table structure for table `supplyorder`
--

CREATE TABLE `supplyorder` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `supplierid` int(11) DEFAULT NULL,
  `receivingdate` date DEFAULT NULL,
  `receivingtime` varchar(100) DEFAULT NULL,
  `receivedkilos` float(13,3) DEFAULT NULL,
  `qrcode` varchar(255) DEFAULT NULL,
  `orderstatus` varchar(100) DEFAULT NULL,
  `sentdate` date DEFAULT NULL,
  `advance` int(11) DEFAULT NULL,
  `acceptdate` date DEFAULT NULL,
  `suppliername` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `amountaccept` float(13,2) DEFAULT NULL,
  `offerprice` float(13,3) DEFAULT NULL,
  `adminofferset` float(13,3) DEFAULT 0.000,
  `completedate` date DEFAULT NULL,
  `details` varchar(500) DEFAULT NULL,
  `shipmentdetails` text DEFAULT NULL,
  `truckplateno` varchar(255) DEFAULT NULL,
  `ondelivery` int(11) DEFAULT NULL,
  `contractid` int(11) DEFAULT 0,
  `newqr` int(11) DEFAULT 0,
  `docimg1` varchar(255) DEFAULT 'noimage.jpg',
  `docimg2` varchar(255) DEFAULT 'noimage.jpg',
  `docimg3` varchar(255) DEFAULT 'noimage.jpg',
  `showreport` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `supplyorder`
--

INSERT INTO `supplyorder` (`id`, `userid`, `supplierid`, `receivingdate`, `receivingtime`, `receivedkilos`, `qrcode`, `orderstatus`, `sentdate`, `advance`, `acceptdate`, `suppliername`, `amountaccept`, `offerprice`, `adminofferset`, `completedate`, `details`, `shipmentdetails`, `truckplateno`, `ondelivery`, `contractid`, `newqr`, `docimg1`, `docimg2`, `docimg3`, `showreport`, `status`) VALUES
(1, 1, 56, '2018-12-28', '01:01 PM', 5400.000, 'supplierorder_3fea12beeb6d38eb641b2272410b00811.png', 'ACCEPTED', '2019-01-31', 1, '2018-12-28', '', 0.00, 0.000, 0.000, '2018-12-28', 'Computer Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(2, 1, 56, '2019-01-14', '01:01 AM', 2500.000, 'supplierorder_10a14919c8e65de7de5366f3a12aac5e2.png', 'ACCEPTED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Motherboards', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(3, 1, 56, '2019-01-21', '08:01 AM', 19000.000, 'supplierorder_edee2fdd5f7d1527bb56ef6492201a8a3.png', 'Processing Completed', '2019-01-21', NULL, NULL, NULL, NULL, NULL, 0.000, '2019-02-06', 'Copper Blanks and Frames', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(7, 1, 56, '2019-01-25', '01:01 AM', 50000.000, 'supplierorder_d0bf1eb7d337c321cb42147740759c657.png', 'OFFER SENT', '2021-12-15', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Copper Blanks and Frames', NULL, NULL, NULL, 1, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(8, 1, 57, '2019-01-31', '10:01 PM', 19000.000, 'supplierorder_191b381357439dc0731ff0ad3a9572538.png', 'Processing Completed', '2019-01-31', NULL, NULL, NULL, NULL, NULL, 0.000, '2019-01-31', 'Mixed Computer Boards', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(9, 1, 57, '2019-02-09', '11:01 AM', 12000.000, 'supplierorder_0a0519527bddfe6cd3f42565f867c5389.png', 'UNSORTED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Mixed Computer Boards', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(10, 1, 58, '2019-02-05', '10:26 AM', 7844.000, 'supplierorder_49bf35d45ac10664488f4c401669201810.png', 'SORTING COMPLETE', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Mixed Computer Components', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(11, 1, 59, '2019-02-15', '03:55 AM', 5000.000, 'supplierorder_d18e546a9c2ce0c4f83733c69469884d11.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, '2019-02-14', 'Mixed Computer Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(12, 1, 56, '2019-03-09', '09:25 AM', 21900.000, 'supplierorder_5406fb018b358d58e8f92272d0d7320f12.png', 'UNSORTED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Mixed Manufacturing Rejects', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(13, 1, 60, '2019-05-09', '11:17 AM', 1200.000, 'supplierorder_27edb3e5de1d2403094aca3f0917a21413.png', 'UNSORTED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'CPUs and Ram ', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(14, 1, 60, '2019-05-08', '05:01 AM', 50.000, 'supplierorder_c028b13a5ab16a29fd07120f18a8d44e14.png', 'UNSORTED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'LAPTOP', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(15, 4, 60, '2019-05-08', '06:01 AM', 2.000, 'supplierorder_9f19486450c1aa2d8f8e182380f0fdcc15.png', 'SORTING COMPLETE', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'LAPTOP', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(136, 10, 80, '2019-10-30', '01:00 AM', 226.796, 'supplierorder_58a68c655cf67bf436cdbe5a21d2ec96136.png', 'Processing Completed', '2019-10-30', 1, '2019-10-30', 'Pfane Scientific', 500.00, NULL, 0.000, '2019-10-30', '500', NULL, NULL, NULL, 7, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(200, 7, 61, '2020-04-07', '01:00 AM', 12222.000, 'supplierorder_b80898c5849c7ffa3c289f5298f61a83200.png', 'Processing Completed', '2020-04-07', 1, '2020-04-07', 'Velinci Scrap', 132030.02, NULL, 0.000, '2020-04-07', 'Ram', NULL, NULL, NULL, 16, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(275, 7, 71, '2021-03-24', '10:15 AM', 6220.000, 'supplierorder_9db9e29121e15b368181795e18ced612275.png', 'Processing Completed', '2021-03-24', 1, '2021-03-24', 'Electronic Recycling GMBH', 0.00, NULL, 0.000, '2021-03-24', 'Small Electronic IT&E', NULL, NULL, NULL, 16, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(366, 11, 106, '2021-09-28', '07:01 AM', 11277.000, 'supplierorder_c833ab77cde575d7692e8f9f9b688575366.png', 'Processing Completed', '2021-09-28', 1, '2021-09-28', 'Serenity Solution Kft.', 0.00, NULL, 0.000, '2022-05-19', 'Manufacturing Frames and Gold Plates', NULL, NULL, NULL, 34, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(368, 11, 112, '2021-10-08', '09:01 AM', 18100.000, 'supplierorder_6e976d5df0719bf2e59b41a2af0bfee4368.png', 'Processing Completed', '2021-10-15', NULL, NULL, NULL, NULL, NULL, 0.000, '2021-11-11', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(369, 11, 112, '2021-12-10', '10:30 AM', 23590.000, 'supplierorder_dc67c054c00fc641a9ce153c88caca61369.png', 'Processing Completed', '2021-10-15', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-01-07', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(370, 11, 117, '2021-10-27', '09:01 AM', 23943.000, 'supplierorder_334d39bac612aa83fa5c1bea4f3813e5370.png', 'PROCESSING ADDED', '2021-10-21', 1, '2021-10-27', 'E-RECIKLAZA 2010 D.O.O.', 0.00, NULL, 0.000, NULL, 'Class C PCB', NULL, NULL, NULL, 34, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(374, 11, 127, '2021-10-01', '11:01 AM', 23100.000, 'supplierorder_ec6223c4a44f1eab08478c44ee42dfcd374.png', 'Processing Completed', '2021-10-27', NULL, NULL, NULL, NULL, NULL, 0.000, '2021-11-09', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(375, 11, 127, '2021-11-15', '09:01 AM', 24040.000, 'supplierorder_326e718a95fda26ae4a9a22d62572b1c375.png', 'Processing Completed', '2021-10-27', NULL, NULL, NULL, NULL, NULL, 0.000, '2021-11-23', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(376, 11, 117, '2021-10-27', '05:00 PM', 13829.000, 'supplierorder_469b9d8afafe2106fa5f96715c763da5376.png', 'Processing Completed', '2021-10-28', 1, '2021-10-28', 'E-RECIKLAZA 2010 D.O.O.', 0.00, NULL, 0.000, '2021-11-09', 'Manufacturing frames', NULL, NULL, NULL, 34, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(377, 11, 127, '2021-12-09', '09:01 AM', 23740.000, 'supplierorder_9a8aac44b8905c57c4d8c641fed87b5c377.png', 'Processing Completed', '2021-11-16', NULL, NULL, NULL, NULL, NULL, 0.000, '2021-12-14', 'PCB Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(378, 11, 127, '2021-11-19', '09:00 AM', 24000.000, 'supplierorder_0a1fc484f5f5a5837aa348c9feb5ce36378.png', 'CONTRACT SENT', '2021-11-16', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(379, 11, 68, '2021-11-22', '09:01 AM', 24200.000, 'supplierorder_f07e8a74a55c8164a2f33d634386d69b379.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, '2021-11-26', 'PCB frames', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(381, 11, 108, '2021-12-14', '12:14 AM', 19295.000, 'supplierorder_8e5be919084929bed730d0886ac91c6c381.png', 'Processing Completed', '2021-12-03', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-01-07', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(382, 11, 128, '2021-12-14', '12:14 AM', 3960.000, 'supplierorder_057ad2f7ccf4af734aa09a53aa141c57382.png', 'Processing Completed', '2021-12-03', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-01-04', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(383, 11, 127, '2022-01-12', '09:01 AM', 15235.000, 'supplierorder_74bb60d148961245cbf775f3e666ed80383.png', 'Processing Completed', '2022-01-13', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-02-02', 'Manufacturing frame LED Lights', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(389, 15, 122, '2022-01-17', '09:00 AM', 132.000, 'supplierorder_c56561537c22c8813488ebe52a227c31389.png', 'ACCEPTED', '2022-01-13', 1, '2022-03-15', 'LMG METALS Manitoba', 0.00, NULL, 0.000, NULL, 'Electronic Waste', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(391, 11, 68, '2022-02-02', '09:01 AM', 21760.000, 'supplierorder_4d8282f0ce63d492c67dd642ef0caef2391.png', 'PROCESSING', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB frames, remotes, laminates', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(392, 15, 122, '2022-01-20', '01:01 AM', 50.000, 'supplierorder_5305d61de6998692ec4ba7dd298319f2392.png', 'Processing Completed', '2022-01-20', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-04-22', 'Telephones', NULL, NULL, NULL, 44, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(393, 15, 122, '2022-01-21', '01:00 AM', 1.000, 'supplierorder_1141498c3044b508fca85888b04155d1393.png', 'Processing Completed', '2022-01-21', 1, '2022-02-15', 'LMG METALS Manitoba', 0.00, NULL, 0.000, '2022-04-22', 'Keyboard', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(395, 15, 122, '2022-02-11', '01:00 AM', 1.000, 'supplierorder_1dcce6c60e9805b2b3602f8fa48f5d47395.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'test', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(396, 11, 68, '2022-01-14', '09:01 AM', 22570.000, 'supplierorder_60efb14e05c8d999b0b873f297dc30cf396.png', 'Processing Completed', '2022-02-03', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-19', 'PCB frames,remotes , laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(397, 15, 130, '2022-02-03', '10:00 AM', 19600.000, 'supplierorder_165d799b9445e76f95f9df4bcc7cf693397.png', 'PROCESSING ADDED', '2022-02-03', 1, '2022-02-11', 'Suntech Recycle Inc,', 0.00, NULL, 0.000, NULL, 'Electronic scrap remote control, Keyboards, copper frames and blanks', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(399, 11, 127, '2022-02-07', '01:00 AM', 23000.000, 'supplierorder_78c8fba5e4e7ffb9c3d0fd91346145e1399.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames + foil', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(400, 11, 128, '2022-02-18', '09:00 AM', 2000.000, 'supplierorder_30e485e6b857cd220a0dacd4bf9ca0ca400.png', 'CONTRACT SENT', '2022-02-14', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(401, 11, 131, '2022-02-16', '09:00 AM', 18000.000, 'supplierorder_51d8ef0515acea935ace7cee379a48f6401.png', 'CONTRACT SENT', '2022-02-16', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Keyboards + remote controls', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(402, 11, 127, '2022-02-14', '09:01 AM', 14165.000, 'supplierorder_7e54ced2959c89b0ce41d39dd310594f402.png', 'Processing Completed', '2022-02-21', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-03-10', 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(403, 11, 127, '2022-02-16', '09:01 AM', 23760.000, 'supplierorder_72b1561df9ce746988ff54c180a647d9403.png', 'Processing Completed', '2022-02-22', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-02-28', 'PCB manufacturing frame + foil', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(404, 11, 127, '2022-03-07', '09:01 AM', 21960.000, 'supplierorder_b380f39fe9ecf35f43fd58d997feafae404.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames + laminates', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(405, 11, 127, '2022-02-25', '09:00 AM', 21960.000, 'supplierorder_1ffb062e953645ee1cdd8f9aae911d03405.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-19', 'PCB manufacturing frames + laminates', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(406, 15, 130, '2022-03-08', '11:00 AM', 7284.000, 'supplierorder_5550d9c8977800cca077ed22ef5e7984406.png', 'ACCEPTED', '2022-03-08', 1, '2022-03-09', 'Suntech Recycle Inc,', 0.00, NULL, 0.000, NULL, 'Electronic scrap office telephomes', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(407, 15, 132, '2022-03-14', '12:45 AM', 15422.000, 'supplierorder_946ef9d835447be183713e085b75da1b407.png', 'PROCESSING ADDED', '2022-03-11', 1, '2022-03-16', 'Upcycle Solutions, Inc.', 0.00, NULL, 0.000, NULL, 'Remote controls - ', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(408, 15, 133, '2022-03-11', '11:30 AM', 751.000, 'supplierorder_5a25825ff7281cde1787044c35059ccb408.png', 'PROCESSING ADDED', '2022-03-16', 1, '2022-03-16', 'Kinney Drugs', 0.00, NULL, 0.000, NULL, 'Electronic scrap.', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(409, 15, 122, '2022-03-03', '05:11 AM', 5.000, 'supplierorder_19441df6bddfaae00b2aea5aadaf9476409.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'none', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(410, 15, 130, '2022-04-13', '01:00 PM', 38500.000, 'supplierorder_96a53eeb24e9769945067631613705ab410.png', 'CONTRACT SENT', '2022-04-07', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Circuit board rejects, frames, blanks, trims.  Office telephones and remote controls', NULL, NULL, NULL, 44, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(411, 11, 68, '2022-03-29', '09:00 AM', 22700.000, 'supplierorder_08c0011502ef2622cb30e369a8162677411.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(412, 11, 68, '2022-03-22', '09:00 AM', 22700.000, 'supplierorder_fac481d0356c632a380d1cd745ef88c5412.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-09', 'PCB manufacturing frames', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(413, 11, 117, '2022-03-15', '09:00 AM', 20750.000, 'supplierorder_4327bad337f414550464e988a0fa4a43413.png', 'Processing Completed', '2022-03-29', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-09', 'PCB manufacturing frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(414, 15, 122, '0000-00-00', '01:00 AM', 1000.000, 'supplierorder_d5c89c59b1329da38995cde5f0e95767414.png', 'CONTRACT SENT', '2022-05-10', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Desktop Phones Demo', NULL, NULL, NULL, 44, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(415, 11, 108, '2022-05-18', '09:00 AM', 17000.000, 'supplierorder_5f7323520f8dab9ebb6fb4a992f6af72415.png', 'CONTRACT SENT', '2022-05-12', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Manufacturing Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(416, 11, 108, '2022-05-19', '09:01 AM', 17474.000, 'supplierorder_2d8b34c0be86fccdcd55f32eab2eed0b416.png', 'PROCESSING ADDED', '2022-05-12', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Manufacturing Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(417, 11, 117, '2022-04-14', '09:01 AM', 17656.000, 'supplierorder_3a7c275c52450da924eceb2efaaa6c3c417.png', 'Processing Completed', '2022-05-13', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-19', 'PCB class C', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(418, 11, 127, '2022-05-06', '09:01 AM', 16065.000, 'supplierorder_4f98bb75dec07902e024cb791692feb7418.png', 'Processing Completed', '2022-05-13', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-05-19', 'PCB manufacturing frames, laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(419, 11, 68, '2022-05-12', '09:01 AM', 18734.000, 'supplierorder_2c7d4185a27f56c44c1b101a0a107397419.png', 'PROCESSING ADDED', '2022-05-13', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB laminates, remote controles, telephones', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(420, 15, 130, '2022-06-10', '05:00 PM', 11000.000, 'supplierorder_1d047a49dff78d4ba8e838951be09122420.png', 'Processing Completed', '2022-06-07', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Grade_B_Low_PMs', NULL, NULL, NULL, 44, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(421, 11, 112, '2022-06-17', '09:00 AM', 5000.000, 'supplierorder_12c21a1a26e4febf31f418db1fc5fe2a421.png', 'CONTRACT SENT', '2022-06-14', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Class C scrap', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(422, 11, 112, '2022-06-14', '01:00 AM', 6000.000, 'supplierorder_138f279a14c6d00ba50e01433958aa37422.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(423, 11, 136, '2022-06-15', '01:00 AM', 22500.000, 'supplierorder_11cccd3ce7a2d947a06abd58924a1560423.png', 'CONTRACT SENT', '2022-06-15', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(424, 11, 136, '2022-07-01', '11:01 AM', 22320.000, 'supplierorder_1102fc9e5c4d7134523ea1bab846de00424.png', 'Processing Completed', '2022-06-15', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-07-08', 'E-scrap - PCB Manufacturing Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(425, 11, 117, '2022-06-16', '01:00 AM', 300000.000, 'supplierorder_81d70af17ea202551afd9e553674f63b425.png', 'CONTRACT SENT', '2022-06-16', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Circuit boards and blanks', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(426, 11, 136, '2022-07-05', '09:00 AM', 24000.000, 'supplierorder_414949747d5eed6dca0c3bcf94facb53426.png', 'CONTRACT SENT', '2022-06-21', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(427, 11, 136, '2022-07-12', '09:00 AM', 24000.000, 'supplierorder_c3a9c93068a8480c12f03e40a189b5be427.png', 'CONTRACT SENT', '2022-06-21', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(428, 11, 136, '2022-07-13', '09:00 AM', 24000.000, 'supplierorder_4720e7a5e99e1fd6d762f81e0707fb81428.png', 'CONTRACT SENT', '2022-06-21', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Manufacturing Frames - Laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(429, 11, 136, '2022-07-06', '09:00 AM', 24000.000, 'supplierorder_59497b7fc2e68b22cf687929197c0ff6429.png', 'CONTRACT SENT', '2022-06-21', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Laminates + Low Grade Boards', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(430, 11, 136, '2022-07-29', '05:30 AM', 23960.000, 'supplierorder_be20f66a37eeeaa8060e492077508763430.png', 'Processing Completed', '2022-06-27', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-08-10', 'PCB laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(431, 11, 106, '2022-07-06', '09:00 AM', 3000.000, 'supplierorder_6a4be472b2e44d2b54130ff155d2c151431.png', 'CONTRACT SENT', '2022-06-30', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(432, 11, 106, '2022-07-06', '09:00 AM', 3000.000, 'supplierorder_2bdcf4462932995a30c1bbd1d2fbc4fc432.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'DELETE THIS', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(433, 11, 106, '2022-07-06', '09:00 AM', 3000.000, 'supplierorder_428320d643fd99d75d055766a09d9fc3433.png', 'CONTRACT SENT', '2022-06-30', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Class C', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(435, 11, 108, '2022-07-07', '09:01 AM', 14750.000, 'supplierorder_39231524228dc6c23865eec5c0aa48cd435.png', 'Processing Completed', '2022-07-01', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-07-25', 'PCB Manufacturing Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(437, 11, 127, '2022-07-07', '09:01 AM', 8278.000, 'supplierorder_cd4672c1811896c50dbac6436a02bb87437.png', 'Processing Completed', '2022-07-11', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-08-11', 'PCB manufacturing frames/laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(438, 11, 136, '2022-08-05', '09:30 AM', 24000.000, 'supplierorder_441c2f2f72c3d3836a6e2794d6827084438.png', 'CONTRACT SENT', '2022-07-26', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Copper foil/laminate', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(439, 15, 137, '0000-00-00', '01:00 AM', 5000.000, 'supplierorder_9b8c9fd87cb4d81422375edc7e634d83439.png', 'Processing Completed', '2022-07-27', 1, '2022-07-27', 'Integrated Recycling Technologies', 5000.00, NULL, 0.000, NULL, 'Manufacturing Trims and off runs', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(440, 11, 136, '2022-09-16', '09:01 AM', 23380.000, 'supplierorder_47aad2a134294acae365fa91acb0647e440.png', 'Processing Completed', '2022-08-04', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-10-12', 'PCB Frames + foil', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(441, 11, 136, '2022-09-09', '09:01 AM', 20400.000, 'supplierorder_10ce9aa1dfc96f15b756845a612c975c441.png', 'Processing Completed', '2022-08-16', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-10-12', 'PCB manufacturing frames/laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(442, 11, 136, '2022-08-22', '09:00 AM', 24000.000, 'supplierorder_5520754d235e0f57916e71cc7e51e54f442.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames/laminates', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(443, 11, 136, '2022-08-18', '09:01 AM', 22940.000, 'supplierorder_d288ece65168eacf5e3136a97d1efe4d443.png', 'Processing Completed', '2022-08-22', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-09-05', 'PCB manufacturing frames/laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(444, 11, 136, '2022-09-16', '08:00 AM', 20000.000, 'supplierorder_8aac904a0fb5e1f4cd6291fcb245563f444.png', 'CONTRACT SENT', '2022-09-12', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Manufacturing Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(447, 15, 139, '2022-10-07', '01:00 PM', 20000.000, 'supplierorder_ac7762c47b3e071da60b8d01f843e52f447.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Manufacturing Trim Waste', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(448, 11, 136, '2022-09-24', '09:01 AM', 21700.000, 'supplierorder_1519e3d5b79a8e12b0bf6b6ef0fdf96c448.png', 'Processing Completed', '2022-10-06', NULL, NULL, NULL, NULL, NULL, 0.000, '2022-10-12', 'PCB manufacturing frames/laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(449, 7, 71, '2022-10-10', '04:00 PM', 3500.000, 'supplierorder_752833142d0d68fc4db1ffcdc1790273449.png', 'PROCESSING', '2022-10-10', 1, '2022-10-10', 'EMGH Semiconductors', 2581.50, NULL, 0.000, NULL, 'Electronic scrap / Circuitboard Rejects / Trims', NULL, NULL, NULL, 16, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(450, 15, 135, '2022-10-26', '03:00 PM', 290.000, 'supplierorder_3407155851f30859c1aa98d9571c9168450.png', 'Processing Completed', '2022-10-25', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Manufacturing Frames and Blanks', NULL, NULL, NULL, 44, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(451, 15, 137, '2022-11-09', '01:01 PM', 13938.000, 'supplierorder_e4b5edd4166e67f0de04cd98c2517f2a451.png', 'Processing Completed', '2022-11-02', 1, '2022-11-02', 'Integrated Recycling Technologies', 9360.00, NULL, 0.000, NULL, 'PCB Manufacturing Cutoffs / Trims', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(452, 15, 143, '2022-10-19', '07:00 AM', 300.000, 'supplierorder_6fb72f25472eb3e3887cbad3ad5d87af452.png', 'Processing Completed', '2022-11-03', 1, '2022-11-03', 'Rent-A-Center', 0.00, NULL, 0.000, '2022-11-08', 'Flat Screen Televisions ', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(453, 15, 147, '2022-11-07', '10:30 AM', 43.000, 'supplierorder_4096e17f8c63f7be71151917934e8fb9453.png', 'Processing Completed', '2022-11-08', 1, '2022-11-08', 'Weldon Computers, Inc.', 0.00, NULL, 0.000, '2023-02-16', 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(454, 15, 148, '2022-11-07', '12:00 PM', 159.000, 'supplierorder_73e56bd58edee3db583963d07eb113fc454.png', 'Processing Completed', '2022-11-07', 1, '2022-11-07', 'Sewage Treatment Plant', 0.00, NULL, 0.000, NULL, 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 44, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 1, 1),
(455, 15, 133, '2022-10-20', '11:30 AM', 593.000, 'supplierorder_be962be9f2c93c5024c7e5f8d7433041455.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(456, 15, 149, '2022-11-14', '11:55 AM', 149.000, 'supplierorder_8e290a39ffe90f2848fd8b97fc0e7594456.png', 'Processing Completed', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, '2023-02-16', 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(457, 11, 68, '2022-11-10', '09:00 AM', 23688.000, 'supplierorder_8b99979db7acbfbdc2307d4823e117f1457.png', 'ACCEPTED', '2023-01-05', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB Frames + Remote Controls', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(458, 11, 109, '2022-11-11', '09:01 AM', 23480.000, 'supplierorder_80016e67a9a2b77461718e6b39b3346b458.png', 'Processing Completed', '2023-01-05', NULL, NULL, NULL, NULL, NULL, 0.000, '2023-01-05', 'Metal Copper Foil', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(459, 11, 150, '2022-12-21', '09:00 AM', 11287.000, 'supplierorder_0deb7338a894189265814718a12247d7459.png', 'Processing Completed', '2023-01-05', NULL, NULL, NULL, NULL, NULL, 0.000, '2023-01-19', 'PCB Frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(460, 11, 117, '2023-01-26', '02:10 AM', 19240.000, 'supplierorder_d1648c2fc615111e11dc6ac865b85cfa460.png', 'ACCEPTED', '2023-02-06', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB frames', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(461, 11, 127, '2023-01-31', '03:00 AM', 16589.000, 'supplierorder_cb767b599b63d6e31dae8b87c0548297461.png', 'ACCEPTED', '2023-02-06', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB frames , laminates', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(462, 15, 149, '2023-02-14', '02:00 PM', 85.729, 'supplierorder_a77403a5abcea761805999221324b9d7462.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(463, 15, 144, '2022-11-17', '10:30 AM', 1234.225, 'supplierorder_f8cd826033a50baf622641fa9dd193ae463.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Class M - Component - Mixed Computer / IT Scrap', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(464, 11, 106, '2023-05-05', '09:00 AM', 10000.000, 'supplierorder_f96f28c03874e686aad59817d1ed1641464.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'PCB manufacturing frames + shredded boards', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(465, 11, 106, '2023-05-23', '09:01 AM', 10000.000, 'supplierorder_ae5ff2a6c2486d6d07c28cba44712213465.png', 'Processing Completed', '2023-07-11', NULL, NULL, NULL, NULL, NULL, 0.000, '2023-07-11', 'Copper foil with graphite', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(466, 11, 106, '2023-06-09', '09:01 AM', 10460.000, 'supplierorder_dc35ad9a346e4240ce81cd92a3479797466.png', 'PROCESSING', '2023-07-11', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Computers', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(467, 11, 106, '2023-06-30', '09:00 AM', 12622.000, 'supplierorder_84204b183298b6b43405b167a8c0ce4d467.png', 'Processing Completed', '2023-07-11', NULL, NULL, NULL, NULL, NULL, 0.000, '2023-07-12', 'Copper foil with graphite', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(468, 11, 109, '2023-07-19', '04:01 AM', 23210.000, 'supplierorder_55a9cdf5c28fb76a9c1ecaaecd0a438c468.png', 'PROCESSING ADDED', '2023-07-25', NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Copper-Graphite foil', NULL, NULL, NULL, 34, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(469, 11, 117, '2023-10-05', '01:00 AM', 24.000, 'supplierorder_fd3308030ace586439b615430c0016ae469.png', 'QUOTATION ADDED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'Boards', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(470, 16, 153, '2023-11-06', '08:00 AM', 1000.000, 'supplierorder_6781ded62becb9f4df038b0dccac9103470.png', 'ACCEPTED', NULL, 1, '2023-11-06', 'Janko Jakovljevic', 0.00, NULL, 0.000, NULL, 'Rashlada', NULL, NULL, NULL, 0, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(471, 16, 153, '2023-11-06', '01:00 AM', 2000.000, 'supplierorder_b779f507f0984a164f8476b63feb3de2471.png', 'DECLINE', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, '16 02 16', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(472, 11, 68, '2023-11-06', '01:00 AM', 0.000, 'supplierorder_b7650d54a287ef492f2a0fefced58dd9472.png', 'QUOTATION ADDED', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, 'vvv', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(473, 16, 154, '2023-11-06', '10:00 AM', 2000.000, 'supplierorder_ed8343b496953c9d1e766e220d222139473.png', 'QUOTATION', NULL, NULL, NULL, NULL, NULL, NULL, 0.000, NULL, '16 02 16', NULL, NULL, NULL, 0, 0, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', NULL, 1),
(474, 16, 154, '2023-11-08', '01:00 AM', 1000.000, 'supplierorder_791c00567d295af61a277d18e0c78b50474.png', 'ACCEPTED', '2023-11-08', 1, '2023-11-08', 'E reciklaza Ni d.o.o', 0.00, NULL, 0.000, NULL, 'Rashlada', NULL, NULL, NULL, 46, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1),
(475, 16, 155, '2023-11-21', '01:00 AM', 1000.000, 'supplierorder_7f8d80205a4a400fce829ffe45e53f67475.png', 'ACCEPTED', '2023-11-21', 1, '2023-11-21', 'ZG Lighting SRB', 9100.00, NULL, 0.000, NULL, 'rashlada', NULL, NULL, NULL, 46, 1, 'noimage.jpg', 'noimage.jpg', 'noimage.jpg', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `supplyorder_files`
--

CREATE TABLE `supplyorder_files` (
  `id` int(11) NOT NULL,
  `title` varchar(500) DEFAULT NULL,
  `supplyorderid` int(11) DEFAULT NULL,
  `image` varchar(500) DEFAULT NULL,
  `sysdate` date DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `supplyorder_files`
--

INSERT INTO `supplyorder_files` (`id`, `title`, `supplyorderid`, `image`, `sysdate`, `status`) VALUES
(1, NULL, 175, '1_buy_20190613025231_WhatsApp2.jpeg', '2020-03-03', 1),
(2, NULL, 175, '2_buy_admission form.pdf', '2020-03-04', 1),
(3, 'This is test doc', 175, '3_buy_admission form.pdf', '2020-03-04', 1),
(4, 'Large Image', 185, '4_buy_22.jpeg', '2020-03-04', 1),
(5, 'Large Image Of Devices Opened', 185, '5_buy_222.jpeg', '2020-03-04', 1),
(6, 'Image Of FeedStock', 185, '6_buy_2222.jpeg', '2020-03-04', 1),
(7, 'PO #1234', 187, '7_buy_Purchase Order Hampton & associates.pdf', '2020-03-10', 1),
(8, 'Copper Frames and Blanks', 397, '8_buy_Copper Frames and Blanks _600T.jpeg', '2022-02-03', 1),
(9, 'Copper Frames and Blanks', 397, '9_buy_Copper Frames and Blanks _610T.jpeg', '2022-02-03', 1),
(10, 'Keyboards', 397, '10_buy_Keyboards_.jpeg', '2022-02-03', 1),
(11, 'Remote Controls', 397, '11_buy_Remore Controls.jpeg', '2022-02-03', 1),
(12, 'Keyboards', 398, '12_buy_Keyboards.jpeg', '2022-02-03', 1),
(13, 'Scrap Office Phones', 398, '13_buy_Scrap office phones_QT1.jpg', '2022-02-03', 1),
(14, 'Scrap Remote controls', 398, '14_buy_Remore Controls_QT1.jpeg', '2022-02-03', 1),
(15, 'Suntech Recycle Invoice for 1st Truck to Gouverneur', 397, '15_buy_Suntech Recycle Invoice 2feb22 pfane[452].pdf', '2022-02-09', 1),
(16, 'Bill of Lading Truck # 1 Gouverneur NY 20 Tons Received', 397, '16_buy_Bill of Lading Truck_1_ 20_Tons_20220209.jpeg', '2022-02-09', 1),
(17, 'Gaylords and Material Supply Boxes  - 20 Ton delivery complete', 397, '17_buy_T 1 unload (10).jpeg', '2022-02-09', 1),
(18, 'Power of Attorney for CB Customs Brokerage LLC to clear supply from Canada to USA', 397, '18_buy_US POA Final.pdf', '2022-02-09', 1),
(19, '1st truck load delivery to Gouverneur, NY 20 Tons from Suntech Recycle Canada', 397, '19_buy_T 1 unload (3).jpeg', '2022-02-09', 1),
(20, 'Continuous Bond for inbound ewaste shipments to Gouverneur, NY ', 397, '20_buy_Pfane Continuous Bond for USA Customs clearance of ewaste.png', '2022-02-09', 1),
(21, 'Delivered Materials_Keyboards_Remote controls and Boards', 397, '21_buy_T 1 unload (8).jpeg', '2022-02-09', 1),
(22, 'Scrap Office Phones', 406, '22_buy_Phones to GUV March 8 2022.jpeg', '2022-03-10', 1),
(23, 'Bill of Lading Delivery confirmation Pfane Gouverneur LLC', 406, '23_buy_BILL OF LADING MAR 10 SUNTECH - PFANE BOL[740].pdf', '2022-03-10', 1),
(24, 'Suntech Recycle Invoice for 2nd Truck to Gouverneur', 406, '24_buy_Pfane GouverneurLLC-SalesInvoice-7 Mar2022 TO PFANE.pdf', '2022-03-10', 1),
(25, 'Wire transfer info', 407, '25_buy_UPCYCLE SOLUTIONS WIRE INFO- ENTERPRISE.pdf', '2022-03-11', 1),
(26, 'Products list submitted', 407, '26_buy_Accepted ewaste products list.pdf', '2022-03-11', 1),
(27, '1st Invoice_2495_from_Upcycle_Solutions_Inc[764]', 407, '27_buy_1st Invoice_2495_from_Upcycle_Solutions_Inc[764].pdf', '2022-03-16', 1),
(28, 'Delivery of Remotes _ Unsafely packed  from shipper 1', 407, '28_buy_Unsafe Freight loaded no shrinkwrap1.jpeg', '2022-03-16', 1),
(29, 'Unsafe Freight loaded no shrinkwrap2', 407, '29_buy_Unsafe Freight loaded no shrinkwrap2.jpeg', '2022-03-16', 1),
(30, 'Unsafe Freight loaded no shrinkwrap3', 407, '30_buy_Unsafe Freight loaded no shrinkwrap3.jpeg', '2022-03-16', 1),
(31, 'BOL', 407, '31_buy_Bill_Of_Lading_LDS_13827422_Mar_11_2022_100834580[761].pdf', '2022-03-16', 1),
(32, 'Copper Frames and Blanks', 410, '32_buy_CBRJ_2.jpeg', '2022-03-18', 1),
(33, 'Copper Frames and Blanks', 410, '33_buy_CBRJ_1.jpeg', '2022-03-18', 1),
(34, 'Copper Frames and Blanks', 410, '34_buy_CBRJ_3.jpeg', '2022-03-18', 1),
(35, 'Copper Frames and Blanks', 410, '35_buy_CBRJ_6.jpeg', '2022-03-18', 1),
(36, 'Copper Frames and Blanks', 410, '36_buy_CBRJ_7.jpeg', '2022-03-18', 1),
(37, 'Copper Frames and Blanks', 0, NULL, '2022-03-18', 1),
(38, 'Copper Frames and Blanks', 410, '38_buy_CBRJ_10.jpeg', '2022-03-18', 1),
(40, 'prilog', 471, '40_buy_Ponuda E reciklaza.pdf', '2023-11-06', 1);

-- --------------------------------------------------------

--
-- Table structure for table `supplyproductprocedures`
--

CREATE TABLE `supplyproductprocedures` (
  `id` int(11) NOT NULL,
  `supplierorderid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `processingid` int(11) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- --------------------------------------------------------

--
-- Table structure for table `termsconditiondetail`
--

CREATE TABLE `termsconditiondetail` (
  `id` int(11) NOT NULL,
  `termsid` int(11) DEFAULT NULL,
  `name` varchar(500) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `termsconditiondetail`
--

INSERT INTO `termsconditiondetail` (`id`, `termsid`, `name`, `status`) VALUES
(1, 1, '30 days', 1);

-- --------------------------------------------------------

--
-- Table structure for table `termsconditions`
--

CREATE TABLE `termsconditions` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(500) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `termsconditions`
--

INSERT INTO `termsconditions` (`id`, `userid`, `name`, `status`) VALUES
(1, 1, 'Terms And Conditions', 1);

-- --------------------------------------------------------

--
-- Table structure for table `threshold`
--

CREATE TABLE `threshold` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `difference` float(13,2) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `threshold`
--

INSERT INTO `threshold` (`id`, `userid`, `difference`, `status`) VALUES
(1, 1, 0.90, 1),
(2, 2, 0.90, 1),
(3, 3, 0.90, 1),
(4, 4, 0.85, 1),
(5, 5, 0.90, 1),
(6, 6, 0.90, 1),
(7, 7, 1.00, 1),
(8, 8, 0.90, 1),
(9, 9, 0.90, 1),
(10, 10, 0.90, 1),
(11, 11, 0.90, 1),
(12, 12, 0.90, 1),
(13, 14, 0.90, 1),
(14, 15, 0.85, 1),
(15, 16, 0.90, 1);

-- --------------------------------------------------------

--
-- Table structure for table `transporter`
--

CREATE TABLE `transporter` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `contact_name` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `mobile` varchar(25) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `transshipment`
--

CREATE TABLE `transshipment` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tripcost`
--

CREATE TABLE `tripcost` (
  `id` int(11) NOT NULL,
  `tripcost` float(13,2) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `truckschedule`
--

CREATE TABLE `truckschedule` (
  `id` int(11) NOT NULL,
  `prepareschemeid` int(11) NOT NULL,
  `stockissueid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `itemname` varchar(100) NOT NULL,
  `sub` varchar(100) NOT NULL,
  `size` varchar(100) NOT NULL,
  `sheets` varchar(100) NOT NULL,
  `origin` varchar(100) NOT NULL,
  `reams` int(11) NOT NULL,
  `palletid` int(11) NOT NULL,
  `remarks` varchar(255) NOT NULL,
  `locationid` int(11) NOT NULL,
  `dispatched` int(11) NOT NULL,
  `dispatcheddate` datetime NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `userlog`
--

CREATE TABLE `userlog` (
  `id` int(11) NOT NULL,
  `Contract_But_Press` int(11) DEFAULT NULL,
  `Contract_ID` varchar(100) DEFAULT NULL,
  `check_boxed` int(11) DEFAULT NULL,
  `ip` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `sysdatetime` datetime DEFAULT NULL,
  `logtype` varchar(255) DEFAULT NULL,
  `usertype` varchar(100) DEFAULT NULL,
  `contractaccept` varchar(500) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `userlog`
--

INSERT INTO `userlog` (`id`, `Contract_But_Press`, `Contract_ID`, `check_boxed`, `ip`, `username`, `sysdatetime`, `logtype`, `usertype`, `contractaccept`, `status`) VALUES
(1, 0, '', 0, '109.102.102.56', 'cristian.talos@ave.cz', '2018-07-17 14:28:00', 'login', 'Supplier', '', 1),
(2, 0, '', 0, '109.102.102.56', 'cristian.talos@ave.cz', '2018-07-17 14:28:00', 'logout', 'Supplier', '', 1),
(3, 0, '', 0, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 03:35:00', 'login', 'Supplier', '', 1),
(4, 0, '', 0, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 05:36:00', 'login', 'Supplier', '', 1),
(5, 0, '', 0, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 10:01:00', 'login', 'Supplier', '', 1),
(7, 0, '', 0, '109.102.102.56', 'danielstrajan@yahoo.com', '2018-07-20 21:56:00', 'login', 'Supplier', '', 1),
(8, 0, '', 0, '109.102.202.245', 'danielstrajan@yahoo.com', '2018-07-21 01:08:00', 'login', 'Supplier', '', 1),
(9, 0, '', 0, '109.102.202.245', 'danielstrajan@yahoo.com', '2018-07-21 01:13:00', 'login', 'Supplier', '', 1),
(16, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-07-25 10:56:00', 'login', 'Supplier', '', 1),
(20, 0, '', 0, '94.52.213.20', 'cristian.talos@ave.cz', '2018-08-02 10:56:00', 'login', 'Supplier', '', 1),
(21, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-03 01:21:00', 'login', 'Supplier', '', 1),
(22, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-06 02:22:00', 'login', 'Supplier', '', 1),
(25, 0, '', 0, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-06 04:21:00', 'login', 'Supplier', '', 1),
(26, 1, '59', 1, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-06 08:13:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(27, 0, '', 0, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-06 16:29:00', 'login', 'Supplier', '', 1),
(28, 0, '', 0, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-07 14:54:00', 'login', 'Supplier', '', 1),
(30, 0, '', 0, '84.232.240.238', 'cristian.talos@ave.cz', '2018-08-14 07:47:00', 'login', 'Supplier', '', 1),
(31, 0, '', 0, '213.233.104.231', 'Razvanflorin19@gmail.com', '2018-08-14 08:04:00', 'login', 'Supplier', '', 1),
(32, 0, '', 0, '92.81.18.217', 'Razvanflorin19@gmail.com', '2018-08-14 12:27:00', 'login', 'Supplier', '', 1),
(33, 0, '', 0, '92.81.18.217', 'Razvanflorin19@gmail.com', '2018-08-14 12:30:00', 'login', 'Supplier', '', 1),
(40, 0, '', 0, '109.166.136.225', 'razvanflorin19@gmail.com', '2018-08-16 07:20:00', 'login', 'Supplier', '', 1),
(41, 0, '', 0, '46.97.152.52', 'Razvanflorin19@gmail.com', '2018-08-16 14:13:00', 'login', 'Supplier', '', 1),
(42, 1, '60', 1, '213.233.103.180', 'Razvanflorin19@gmail.com', '2018-08-20 13:40:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(50, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-24 02:22:00', 'login', 'Supplier', '', 1),
(51, 0, '', 0, '213.233.104.144', 'Razvanflorin19@gmail.com', '2018-08-24 06:39:00', 'login', 'Supplier', '', 1),
(52, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-08-29 18:22:00', 'login', 'Supplier', '', 1),
(53, 0, '', 0, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-30 06:54:00', 'login', 'Supplier', '', 1),
(54, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 12:56:00', 'login', 'Supplier', '', 1),
(55, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 13:24:00', 'login', 'Supplier', '', 1),
(56, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 13:25:00', 'login', 'Supplier', '', 1),
(57, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-12 02:44:00', 'login', 'Supplier', '', 1),
(59, 0, '', 0, '213.233.104.51', 'Razvanflorin19@gmail.com', '2018-09-12 18:09:00', 'login', 'Supplier', '', 1),
(60, 0, '', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-13 08:29:00', 'login', 'Supplier', '', 1),
(61, 0, '', 0, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-09-15 02:48:00', 'login', 'Supplier', '', 1),
(62, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 03:14:00', 'login', 'Supplier', '', 1),
(63, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 04:08:00', 'login', 'Supplier', '', 1),
(64, 0, '', 0, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 04:09:00', 'login', 'Supplier', '', 1),
(65, 0, '', 0, '213.233.64.154', 'Razvanflorin19@gmail.com', '2018-09-30 22:28:00', 'login', 'Supplier', NULL, 1),
(66, 1, '55', 1, '109.102.102.56', 'adrian@pfane.com', '2018-10-04 03:25:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(67, 0, '0', 0, '203.82.63.231', 'adrian@pfane.com', '2018-10-04 03:25:00', 'login', 'Supplier', NULL, 1),
(68, 0, '0', 0, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-10-17 07:59:00', 'login', 'Supplier', NULL, 1),
(69, 0, '0', 0, '109.102.102.56', 'adrian@pfane.com', '2018-10-17 15:12:00', 'login', 'Supplier', NULL, 1),
(70, 0, '0', 0, '109.166.136.45', 'adrian@pfane.com', '2018-10-18 02:18:00', 'login', 'Supplier', NULL, 1),
(71, 0, '0', 0, '213.233.92.159', 'Razvanflorin19@gmail.com', '2018-10-23 04:05:00', 'login', 'Supplier', NULL, 1),
(72, 0, '0', 0, '213.233.84.159', 'Razvanflorin19@gmail.com', '2018-10-23 04:10:00', 'login', 'Supplier', NULL, 1),
(73, 0, '0', 0, '213.233.92.159', 'razvanflorin19@gmail.com', '2018-10-23 06:46:00', 'login', 'Supplier', NULL, 1),
(74, 1, '273', 1, '103.255.6.102', 'jason@pfane.com', '2018-12-31 16:15:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(75, 0, '0', 0, '103.255.5.97', 'dale@pfane.com', '2019-01-05 06:53:00', 'login', 'Supplier', NULL, 1),
(76, 0, '0', 0, '109.166.136.232', 'dale@pfane.com', '2019-01-05 08:52:00', 'login', 'Supplier', NULL, 1),
(77, 0, '0', 0, '103.255.4.53', 'dale@pfane.com', '2019-01-06 06:25:00', 'login', 'Supplier', NULL, 1),
(78, 0, '0', 0, '109.166.137.79', 'dale@pfane.com', '2019-01-06 15:02:00', 'login', 'Supplier', NULL, 1),
(79, 0, '0', 0, '109.166.136.232', 'dale@pfane.com', '2019-01-07 07:25:00', 'login', 'Supplier', NULL, 1),
(80, 0, '0', 0, '109.166.137.79', 'dale@pfane.com', '2019-01-07 08:02:00', 'login', 'Supplier', NULL, 1),
(81, 0, '0', 0, '109.166.137.79', 'dale@pfane.com', '2019-01-07 09:08:00', 'login', 'Supplier', NULL, 1),
(82, 0, '0', 0, '109.166.137.79', 'dale@pfane.com', '2019-01-07 11:30:00', 'login', 'Supplier', NULL, 1),
(83, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-09 09:58:00', 'login', 'Supplier', NULL, 1),
(84, 0, '0', 0, '109.166.139.107', 'dale@pfane.com', '2019-01-09 11:08:00', 'login', 'Supplier', NULL, 1),
(85, 0, '0', 0, '109.166.139.107', 'dale@pfane.com', '2019-01-09 11:21:00', 'login', 'Supplier', NULL, 1),
(86, 0, '0', 0, '103.255.7.33', 'dale@pfane.com', '2019-01-09 17:05:00', 'login', 'Supplier', NULL, 1),
(87, 0, '0', 0, '109.166.139.197', 'dale@pfane.com', '2019-01-09 17:43:00', 'login', 'Supplier', NULL, 1),
(88, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-10 06:36:00', 'login', 'Supplier', NULL, 1),
(89, 0, '0', 0, '109.166.139.197', 'dale@pfane.com', '2019-01-10 13:27:00', 'login', 'Supplier', NULL, 1),
(90, 0, '0', 0, '109.166.139.197', 'dale@pfane.com', '2019-01-10 13:30:00', 'login', 'Supplier', NULL, 1),
(91, 0, '0', 0, '103.255.6.108', 'dale@pfane.com', '2019-01-10 15:11:00', 'login', 'Supplier', NULL, 1),
(92, 0, '0', 0, '109.166.137.38', 'dale@pfane.com', '2019-01-11 06:28:00', 'login', 'Supplier', NULL, 1),
(93, 0, '0', 0, '109.166.137.38', 'dale@pfane.com', '2019-01-11 13:11:00', 'login', 'Supplier', NULL, 1),
(94, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-11 13:14:00', 'login', 'Supplier', NULL, 1),
(95, 0, '0', 0, '109.166.137.38', 'dale@pfane.com', '2019-01-11 13:25:00', 'login', 'Supplier', NULL, 1),
(96, 0, '0', 0, '109.166.131.141', 'dale@pfane.com', '2019-01-11 17:09:00', 'login', 'Supplier', NULL, 1),
(97, 0, '0', 0, '109.166.131.141', 'dale@pfane.com', '2019-01-11 17:11:00', 'login', 'Supplier', NULL, 1),
(98, 0, '0', 0, '103.255.6.108', 'dale@pfane.com', '2019-01-11 17:12:00', 'login', 'Supplier', NULL, 1),
(99, 0, '0', 0, '109.166.131.141', 'dale@pfane.com', '2019-01-11 17:27:00', 'login', 'Supplier', NULL, 1),
(100, 0, '0', 0, '103.255.6.108', 'dale@pfane.com', '2019-01-11 19:24:00', 'login', 'Supplier', NULL, 1),
(101, 0, '0', 0, '103.255.7.44', 'dale@pfane.com', '2019-01-12 13:18:00', 'login', 'Supplier', NULL, 1),
(102, 0, '0', 0, '109.166.131.141', 'dale@pfane.com', '2019-01-13 01:50:00', 'login', 'Supplier', NULL, 1),
(103, 0, '0', 0, '103.255.6.70', 'dale@pfane.com', '2019-01-13 08:42:00', 'login', 'Supplier', NULL, 1),
(104, 0, '0', 0, '109.166.131.141', 'dale@pfane.com', '2019-01-13 11:24:00', 'login', 'Supplier', NULL, 1),
(105, 0, '0', 0, '103.255.6.70', 'dale@pfane.com', '2019-01-13 12:30:00', 'login', 'Supplier', NULL, 1),
(106, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-13 12:40:00', 'login', 'Supplier', NULL, 1),
(107, 0, '0', 0, '103.255.6.70', 'dale@pfane.com', '2019-01-13 12:41:00', 'login', 'Supplier', NULL, 1),
(108, 0, '0', 0, '103.255.6.70', 'dale@pfane.com', '2019-01-13 12:44:00', 'login', 'Supplier', NULL, 1),
(109, 0, '0', 0, '43.245.9.97', 'dale@pfane.com', '2019-01-13 12:53:00', 'login', 'Supplier', NULL, 1),
(110, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-13 12:56:00', 'login', 'Supplier', NULL, 1),
(111, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-13 12:58:00', 'login', 'Supplier', NULL, 1),
(112, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-13 13:34:00', 'login', 'Supplier', NULL, 1),
(113, 0, '0', 0, '103.255.7.46', 'dale@pfane.com', '2019-01-14 06:17:00', 'login', 'Supplier', NULL, 1),
(114, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-14 08:41:00', 'login', 'Supplier', NULL, 1),
(115, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-14 08:42:00', 'login', 'Supplier', NULL, 1),
(116, 0, '0', 0, '103.255.7.46', 'dale@pfane.com', '2019-01-14 09:53:00', 'login', 'Supplier', NULL, 1),
(117, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-14 11:45:00', 'login', 'Supplier', NULL, 1),
(118, 0, '0', 0, '103.255.7.46', 'dale@pfane.com', '2019-01-14 11:47:00', 'login', 'Supplier', NULL, 1),
(119, 0, '0', 0, '103.255.6.247', 'dale@pfane.com', '2019-01-14 15:18:00', 'login', 'Supplier', NULL, 1),
(120, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-14 16:29:00', 'login', 'Supplier', NULL, 1),
(121, 0, '0', 0, '103.255.6.247', 'dale@pfane.com', '2019-01-14 19:06:00', 'login', 'Supplier', NULL, 1),
(122, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-15 06:06:00', 'login', 'Supplier', NULL, 1),
(123, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-15 09:38:00', 'login', 'Supplier', NULL, 1),
(124, 0, '0', 0, '103.255.7.24', 'dale@pfane.com', '2019-01-15 16:55:00', 'login', 'Supplier', NULL, 1),
(125, 0, '0', 0, '109.166.138.35', 'dale@pfane.com', '2019-01-15 17:13:00', 'login', 'Supplier', NULL, 1),
(126, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 03:54:00', 'login', 'Supplier', NULL, 1),
(127, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 03:55:00', 'login', 'Supplier', NULL, 1),
(128, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-16 08:29:00', 'login', 'Supplier', NULL, 1),
(129, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 08:36:00', 'login', 'Supplier', NULL, 1),
(130, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 09:53:00', 'login', 'Supplier', NULL, 1),
(131, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 09:55:00', 'login', 'Supplier', NULL, 1),
(132, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-16 05:05:00', 'login', 'Supplier', NULL, 1),
(133, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-16 10:37:00', 'login', 'Supplier', NULL, 1),
(134, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-16 12:30:00', 'login', 'Supplier', NULL, 1),
(135, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-16 14:55:00', 'login', 'Supplier', NULL, 1),
(136, 0, '0', 0, '103.255.6.109', 'dale@pfane.com', '2019-01-16 14:56:00', 'login', 'Supplier', NULL, 1),
(137, 0, '0', 0, '103.255.6.109', 'dale@pfane.com', '2019-01-16 15:29:00', 'login', 'Supplier', NULL, 1),
(138, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-16 17:01:00', 'login', 'Supplier', NULL, 1),
(139, 0, '0', 0, '103.255.6.109', 'dale@pfane.com', '2019-01-16 17:06:00', 'login', 'Supplier', NULL, 1),
(140, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 06:21:00', 'login', 'Supplier', NULL, 1),
(141, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-17 09:32:00', 'login', 'Supplier', NULL, 1),
(142, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 10:37:00', 'login', 'Supplier', NULL, 1),
(143, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 12:32:00', 'login', 'Supplier', NULL, 1),
(144, 0, '0', 0, '103.255.7.61', 'dale@pfane.com', '2019-01-17 14:54:00', 'login', 'Supplier', NULL, 1),
(145, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 15:17:00', 'login', 'Supplier', NULL, 1),
(146, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 15:40:00', 'login', 'Supplier', NULL, 1),
(147, 0, '0', 0, '103.255.7.61', 'dale@pfane.com', '2019-01-17 16:01:00', 'login', 'Supplier', NULL, 1),
(148, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-17 19:24:00', 'login', 'Supplier', NULL, 1),
(149, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-18 04:06:00', 'login', 'Supplier', NULL, 1),
(150, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-18 05:15:00', 'login', 'Supplier', NULL, 1),
(151, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-18 06:09:00', 'login', 'Supplier', NULL, 1),
(152, 0, '0', 0, '109.166.139.254', 'dale@pfane.com', '2019-01-18 11:07:00', 'login', 'Supplier', NULL, 1),
(153, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-18 11:23:00', 'login', 'Supplier', NULL, 1),
(154, 0, '0', 0, '109.166.139.235', 'dale@pfane.com', '2019-01-18 12:01:00', 'login', 'Supplier', NULL, 1),
(155, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-18 17:14:00', 'login', 'Supplier', NULL, 1),
(156, 0, '0', 0, '103.255.6.109', 'dale@pfane.com', '2019-01-18 17:22:00', 'login', 'Supplier', NULL, 1),
(157, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-18 18:15:00', 'login', 'Supplier', NULL, 1),
(158, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-18 20:31:00', 'login', 'Supplier', NULL, 1),
(159, 0, '0', 0, '109.166.139.254', 'dale@pfane.com', '2019-01-19 00:47:00', 'login', 'Supplier', NULL, 1),
(160, 0, '0', 0, '103.255.7.59', 'dale@pfane.com', '2019-01-19 04:52:00', 'login', 'Supplier', NULL, 1),
(161, 0, '0', 0, '109.166.138.255', 'dale@pfane.com', '2019-01-19 09:30:00', 'login', 'Supplier', NULL, 1),
(162, 0, '0', 0, '109.166.139.254', 'dale@pfane.com', '2019-01-19 11:12:00', 'login', 'Supplier', NULL, 1),
(163, 0, '0', 0, '103.255.6.79', 'dale@pfane.com', '2019-01-19 11:40:00', 'login', 'Supplier', NULL, 1),
(164, 0, '0', 0, '103.255.6.105', 'dale@pfane.com', '2019-01-19 13:35:00', 'login', 'Supplier', NULL, 1),
(165, 0, '0', 0, '109.166.139.254', 'dale@pfane.com', '2019-01-19 14:15:00', 'login', 'Supplier', NULL, 1),
(166, 0, '0', 0, '109.166.139.254', 'dale@pfane.com', '2019-01-19 18:59:00', 'login', 'Supplier', NULL, 1),
(167, 0, '0', 0, '109.166.139.254', 'bannit@pfane.com', '2019-01-19 19:08:00', 'login', 'Supplier', NULL, 1),
(168, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-20 21:02:00', 'login', 'Supplier', NULL, 1),
(169, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-20 22:04:00', 'login', 'Supplier', NULL, 1),
(170, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-21 05:31:00', 'login', 'Supplier', NULL, 1),
(171, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 05:45:00', 'login', 'Supplier', NULL, 1),
(172, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 06:28:00', 'login', 'Supplier', NULL, 1),
(173, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 07:34:00', 'login', 'Supplier', NULL, 1),
(174, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 07:49:00', 'login', 'Supplier', NULL, 1),
(175, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 10:03:00', 'login', 'Supplier', NULL, 1),
(176, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-21 10:20:00', 'login', 'Supplier', NULL, 1),
(177, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 12:19:00', 'login', 'Supplier', NULL, 1),
(178, 0, '0', 0, '103.255.7.26', 'dale@pfane.com', '2019-01-21 16:22:00', 'login', 'Supplier', NULL, 1),
(179, 0, '0', 0, '109.166.136.80', 'dale@pfane.com', '2019-01-21 16:35:00', 'login', 'Supplier', NULL, 1),
(180, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-24 09:52:00', 'login', 'Supplier', NULL, 1),
(181, 0, '0', 0, '103.255.7.55', 'dale@pfane.com', '2019-01-24 15:30:00', 'login', 'Supplier', NULL, 1),
(182, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-26 06:41:00', 'login', 'Supplier', NULL, 1),
(183, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-26 09:15:00', 'login', 'Supplier', NULL, 1),
(184, 0, '0', 0, '109.166.137.17', 'dale@pfane.com', '2019-01-26 10:20:00', 'login', 'Supplier', NULL, 1),
(185, 0, '0', 0, '109.166.137.56', 'bannit@pfane.com', '2019-01-27 10:00:00', 'login', 'Supplier', NULL, 1),
(186, 0, '0', 0, '103.255.7.30', 'dale@pfane.com', '2019-01-27 17:19:00', 'login', 'Supplier', NULL, 1),
(187, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-27 17:51:00', 'login', 'Supplier', NULL, 1),
(188, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-28 18:48:00', 'login', 'Supplier', NULL, 1),
(189, 0, '0', 0, '109.166.137.56', 'dale@pfane.com', '2019-01-28 20:09:00', 'login', 'Supplier', NULL, 1),
(190, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-29 03:53:00', 'login', 'Supplier', NULL, 1),
(191, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-01-29 04:52:00', 'login', 'Supplier', NULL, 1),
(192, 0, '0', 0, '109.166.138.19', 'dale@pfane.com', '2019-01-29 06:00:00', 'login', 'Supplier', NULL, 1),
(193, 0, '0', 0, '203.175.68.128', 'bannit@pfane.com', '2019-01-30 08:04:00', 'login', 'Supplier', NULL, 1),
(194, 0, '0', 0, '109.166.138.19', 'bannit@pfane.com', '2019-01-30 08:06:00', 'login', 'Supplier', NULL, 1),
(195, 0, '0', 0, '109.166.138.19', 'dale@pfane.com', '2019-01-30 11:30:00', 'login', 'Viewpas', NULL, 1),
(196, 0, '0', 0, '109.166.138.19', 'demo@pfane.com', '2019-01-30 13:25:00', 'login', 'Viewpas', NULL, 1),
(197, 0, '0', 0, '72.186.12.221', 'demo@pfane.com', '2019-01-30 13:32:00', 'login', 'Viewpas', NULL, 1),
(198, 0, '0', 0, '109.166.138.19', 'dale@pfane.com', '2019-01-30 14:07:00', 'login', 'Viewpas', NULL, 1),
(199, 0, '0', 0, '107.77.90.116', 'Demo@pfane.com', '2019-01-30 14:46:00', 'login', 'Viewpas', NULL, 1),
(200, 0, '0', 0, '109.166.138.19', 'demo@pfane.com', '2019-01-30 16:46:00', 'login', 'Viewpas', NULL, 1),
(201, 0, '0', 0, '109.166.138.19', 'dale@pfane.com', '2019-01-31 06:22:00', 'login', 'Viewpas', NULL, 1),
(202, 0, '0', 0, '109.166.139.220', 'dale@pfane.com', '2019-02-02 08:39:00', 'login', 'Viewpas', NULL, 1),
(203, 0, '0', 0, '109.166.139.220', 'dale@pfane.com', '2019-02-02 09:12:00', 'login', 'Viewpas', NULL, 1),
(204, 0, '0', 0, '109.166.139.220', 'dale@pfane.com', '2019-02-02 09:13:00', 'login', 'Viewpas', NULL, 1),
(205, 0, '0', 0, '109.166.139.220', 'dale@pfane.com', '2019-02-02 09:14:00', 'login', 'Viewpas', NULL, 1),
(206, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-03 16:40:00', 'login', 'Viewpas', NULL, 1),
(207, 0, '0', 0, '109.166.139.141', 'sales@pfane.ca', '2019-02-05 14:09:00', 'login', 'Viewpas', NULL, 1),
(208, 0, '0', 0, '72.186.12.221', 'demo@pfane.com', '2019-02-05 15:23:00', 'login', 'Viewpas', NULL, 1),
(209, 0, '0', 0, '72.185.140.147', 'demo@pfane.com', '2019-02-05 15:32:00', 'login', 'Viewpas', NULL, 1),
(210, 0, '0', 0, '99.228.105.156', 'sales@pfane.ca', '2019-02-06 14:59:00', 'login', 'Viewpas', NULL, 1),
(211, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-06 15:13:00', 'login', 'Viewpas', NULL, 1),
(212, 0, '0', 0, '109.166.139.141', 'sales@pfane.ca', '2019-02-06 20:33:00', 'login', 'Viewpas', NULL, 1),
(213, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-02-07 05:09:00', 'login', 'Viewpas', NULL, 1),
(214, 0, '0', 0, '109.166.139.141', 'sales@pfane.ca', '2019-02-07 05:09:00', 'login', 'Viewpas', NULL, 1),
(215, 0, '0', 0, '203.175.68.128', 'sales@pfane.ca', '2019-02-07 06:03:00', 'login', 'Viewpas', NULL, 1),
(216, 1, '19', 1, '203.175.68.128', '', '2019-02-07 06:28:00', 'logout', 'Viewpas', 'PRESSED ACCEPT IN CONTRACT', 1),
(217, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-02-07 06:28:00', 'login', 'Viewpas', NULL, 1),
(218, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-02-07 06:29:00', 'logout', 'Viewpas', NULL, 1),
(219, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 12:18:00', 'login', 'Viewpas', NULL, 1),
(220, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 13:35:00', 'login', 'Viewpas', NULL, 1),
(221, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 15:50:00', 'login', 'Viewpas', NULL, 1),
(222, 0, '0', 0, '103.255.7.4', 'dale@pfane.com', '2019-02-07 16:18:00', 'login', 'Viewpas', NULL, 1),
(223, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 17:05:00', 'login', 'Viewpas', NULL, 1),
(224, 0, '0', 0, '103.255.7.4', 'dale@pfane.com', '2019-02-07 17:14:00', 'login', 'Viewpas', NULL, 1),
(225, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 17:26:00', 'logout', 'Viewpas', NULL, 1),
(226, 0, '0', 0, '109.166.139.141', 'sales@pfane.ca', '2019-02-07 17:28:00', 'login', 'Viewpas', NULL, 1),
(227, 0, '0', 0, '103.255.7.4', 'dale@pfane.com', '2019-02-07 18:31:00', 'login', 'Viewpas', NULL, 1),
(228, 0, '0', 0, '109.166.139.141', 'dale@pfane.com', '2019-02-07 19:38:00', 'login', 'Viewpas', NULL, 1),
(229, 0, '0', 0, '203.175.68.128', 'dale@pfane.com', '2019-02-08 04:37:00', 'login', 'Viewpas', NULL, 1),
(230, 0, '0', 0, '99.228.105.156', 'sales@pfane.ca', '2019-02-08 14:11:00', 'login', 'Viewpas', NULL, 1),
(231, 0, '0', 0, '109.166.137.151', 'dale@pfane.com', '2019-02-08 14:39:00', 'login', 'Viewpas', NULL, 1),
(232, 0, '0', 0, '103.255.6.103', 'dale@pfane.com', '2019-02-08 15:00:00', 'login', 'Viewpas', NULL, 1),
(233, 0, '0', 0, '72.186.150.198', 'demo@pfane.com', '2019-02-08 16:15:00', 'login', 'Viewpas', NULL, 1),
(234, 0, '0', 0, '99.228.105.156', 'sales@pfane.ca', '2019-02-08 22:37:00', 'login', 'Viewpas', NULL, 1),
(235, 0, '0', 0, '109.166.137.242', 'dale@pfane.com', '2019-02-10 18:58:00', 'login', 'Viewpas', NULL, 1),
(236, 0, '0', 0, '109.166.137.242', 'dale@pfane.com', '2019-02-12 08:00:00', 'login', 'Viewpas', NULL, 1),
(237, 0, '0', 0, '109.166.137.242', 'dale@pfane.com', '2019-02-12 15:17:00', 'login', 'Viewpas', NULL, 1),
(238, 0, '0', 0, '103.255.7.60', 'dale@pfane.com', '2019-02-12 18:40:00', 'login', 'Viewpas', NULL, 1),
(239, 0, '0', 0, '109.166.137.242', 'dale@pfane.com', '2019-02-14 02:53:00', 'login', 'Viewpas', NULL, 1),
(240, 0, '0', 0, '109.166.137.242', 'dale@pfane.com', '2019-02-14 03:08:00', 'logout', 'Viewpas', NULL, 1),
(241, 0, '0', 0, '109.166.137.242', 'sales@pfane.ca', '2019-02-14 03:09:00', 'login', 'Viewpas', NULL, 1),
(242, 0, '0', 0, '109.166.138.56', 'dale@pfane.com', '2019-02-14 10:01:00', 'login', 'Viewpas', NULL, 1),
(243, 0, '0', 0, '109.166.138.56', 'dale@pfane.com', '2019-02-14 10:46:00', 'login', 'Viewpas', NULL, 1),
(244, 0, '0', 0, '109.166.137.242', 'sales@pfane.ca', '2019-02-15 15:22:00', 'login', 'Viewpas', NULL, 1),
(245, 0, '0', 0, '109.166.138.109', 'dale@pfane.com', '2019-02-19 07:48:00', 'login', 'Viewpas', NULL, 1),
(246, 0, '0', 0, '109.166.138.109', 'dale@pfane.com', '2019-02-19 07:51:00', 'logout', 'Viewpas', NULL, 1),
(247, 0, '0', 0, '109.166.136.178', 'dale@pfane.com', '2019-02-28 05:58:00', 'login', 'Viewpas', NULL, 1),
(248, 0, '0', 0, '45.115.84.147', 'dale@pfane.com', '2019-02-28 07:30:00', 'login', 'Viewpas', NULL, 1),
(249, 0, '0', 0, '45.115.84.147', 'dale@pfane.com', '2019-03-01 04:12:00', 'login', 'Viewpas', NULL, 1),
(250, 0, '0', 0, '103.255.6.72', 'dale@pfane.com', '2019-03-01 16:13:00', 'login', 'Viewpas', NULL, 1),
(251, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-02 22:30:00', 'login', 'Viewpas', NULL, 1),
(252, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-02 22:32:00', 'login', 'Viewpas', NULL, 1),
(253, 0, '0', 0, '103.255.7.9', 'dale@pfane.com', '2019-03-03 09:27:00', 'login', 'Viewpas', NULL, 1),
(254, 0, '0', 0, '103.255.7.9', 'dale@pfane.com', '2019-03-03 10:13:00', 'login', 'Viewpas', NULL, 1),
(255, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-03 10:44:00', 'login', 'Viewpas', NULL, 1),
(256, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-03 17:38:00', 'login', 'Viewpas', NULL, 1),
(257, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-05 19:01:00', 'login', 'Viewpas', NULL, 1),
(258, 0, '0', 0, '109.166.137.31', 'dale@pfane.com', '2019-03-06 21:00:00', 'login', 'Viewpas', NULL, 1),
(259, 0, '0', 0, '103.255.6.255', 'dale@pfane.com', '2019-03-07 01:35:00', 'login', 'Viewpas', NULL, 1),
(260, 0, '0', 0, '45.115.84.147', 'dale@pfane.com', '2019-03-07 04:32:00', 'login', 'Viewpas', NULL, 1),
(261, 0, '0', 0, '109.166.136.131', 'dale@pfane.com', '2019-03-11 11:06:00', 'login', 'Viewpas', NULL, 1),
(262, 0, '0', 0, '109.166.139.193', 'dale@pfane.com', '2019-03-12 15:27:00', 'login', 'Viewpas', NULL, 1),
(263, 0, '0', 0, '109.166.139.193', 'dale@pfane.com', '2019-03-13 21:59:00', 'login', 'Viewpas', NULL, 1),
(264, 0, '0', 0, '109.166.139.193', 'dale@pfane.com', '2019-03-14 15:46:00', 'login', 'Viewpas', NULL, 1),
(265, 0, '0', 0, '203.175.73.164', 'dale@pfane.com', '2019-03-15 05:08:00', 'login', 'Viewpas', NULL, 1),
(266, 0, '0', 0, '109.166.137.114', 'dale@pfane.com', '2019-03-19 21:29:00', 'login', 'Viewpas', NULL, 1),
(267, 0, '0', 0, '101.50.103.45', 'dale@pfane.com', '2019-04-05 12:51:00', 'login', 'Viewpas', NULL, 1),
(268, 0, '0', 0, '101.50.103.45', 'dale@pfane.com', '2019-04-05 12:52:00', 'logout', 'Viewpas', NULL, 1),
(269, 0, '0', 0, '101.50.103.45', 'dale@pfane.com', '2019-04-05 12:54:00', 'login', 'Viewpas', NULL, 1),
(270, 0, '0', 0, '86.136.206.249', 'dale@pfane.com', '2019-04-08 19:22:00', 'login', 'Viewpas', NULL, 1),
(271, 0, '0', 0, '86.183.187.53', 'dale@pfane.com', '2019-04-08 21:00:00', 'login', 'Viewpas', NULL, 1),
(272, 0, '0', 0, '86.183.187.53', 'dale@pfane.com', '2019-04-08 21:01:00', 'login', 'Viewpas', NULL, 1),
(273, 0, '0', 0, '82.132.212.66', 'dale@pfane.com', '2019-04-09 13:19:00', 'login', 'Viewpas', NULL, 1),
(274, 0, '0', 0, '79.66.137.245', 'dale@pfane.com', '2019-04-16 09:48:00', 'login', 'Viewpas', NULL, 1),
(275, 0, '0', 0, '79.66.137.245', 'dale@pfane.com', '2019-04-16 09:54:00', 'login', 'Viewpas', NULL, 1),
(276, 0, '0', 0, '109.166.139.194', 'dale@pfane.com', '2019-04-22 06:49:00', 'login', 'Viewpas', NULL, 1),
(277, 0, '0', 0, '109.166.139.194', 'dale@pfane.com', '2019-04-22 12:32:00', 'login', 'Viewpas', NULL, 1),
(278, 0, '0', 0, '93.122.251.20', 'dale@pfane.com', '2019-04-26 06:57:00', 'login', 'Viewpas', NULL, 1),
(279, 0, '0', 0, '45.115.86.91', 'dale@pfane.com', '2019-04-26 07:05:00', 'login', 'Viewpas', NULL, 1),
(280, 0, '0', 0, '93.122.251.20', 'dale@pfane.com', '2019-04-26 10:01:00', 'login', 'Viewpas', NULL, 1),
(281, 0, '0', 0, '45.115.86.91', 'dale@pfane.com', '2019-04-26 10:08:00', 'login', 'Viewpas', NULL, 1),
(282, 0, '0', 0, '45.115.86.91', 'dale@pfane.com', '2019-04-26 10:30:00', 'login', 'Viewpas', NULL, 1),
(283, 0, '0', 0, '45.115.86.91', 'malikmasif@hotmail.com', '2019-05-08 04:08:00', 'login', 'Supplier', NULL, 1),
(284, 0, '0', 0, '45.115.86.91', 'malikmasif@hotmail.com', '2019-05-08 06:10:00', 'login', 'Supplier', NULL, 1),
(285, 0, '0', 0, '109.166.136.165', 'dale@pfane.com', '2019-05-09 20:12:00', 'login', 'Viewpas', NULL, 1),
(286, 0, '0', 0, '103.255.6.95', 'alex@pfane.com', '2019-05-11 07:28:00', 'login', 'Supplier', NULL, 1),
(287, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-11 22:47:00', 'login', 'Supplier', NULL, 1),
(288, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-12 07:24:00', 'login', 'Supplier', NULL, 1),
(289, 0, '0', 0, '103.255.6.255', 'donate@pfane.com', '2019-05-12 07:46:00', 'login', 'Supplier', NULL, 1),
(290, 0, '0', 0, '103.255.6.255', 'donate@pfane.com', '2019-05-12 08:07:00', 'logout', 'Viewpas', NULL, 1),
(291, 0, '0', 0, '103.255.6.255', 'donate@pfane.com', '2019-05-12 08:07:00', 'logout', 'Viewpas', NULL, 1),
(292, 0, '0', 0, '103.255.6.255', 'donate@pfane.com', '2019-05-12 08:07:00', 'login', 'Supplier', NULL, 1),
(293, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-12 08:16:00', 'logout', 'Viewpas', NULL, 1),
(294, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-12 08:16:00', 'logout', 'Viewpas', NULL, 1),
(295, 1, '16', 1, '109.166.137.29', 'donate@pfane.com', '2019-05-12 08:16:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(296, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-13 05:10:00', 'logout', 'Viewpas', NULL, 1),
(297, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-13 05:10:00', 'logout', 'Viewpas', NULL, 1),
(298, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-13 19:47:00', 'login', 'Supplier', NULL, 1),
(299, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-13 19:49:00', 'login', 'Supplier', NULL, 1),
(300, 0, '0', 0, '103.255.7.52', 'donate@pfane.com', '2019-05-13 19:50:00', 'login', 'Supplier', NULL, 1),
(301, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-13 19:53:00', 'login', 'Supplier', NULL, 1),
(302, 0, '0', 0, '103.255.7.52', 'donate@pfane.com', '2019-05-13 19:55:00', 'login', 'Supplier', NULL, 1),
(303, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-14 15:51:00', 'login', 'Supplier', NULL, 1),
(304, 1, '23', 1, '103.255.7.36', 'donate@pfane.com', '2019-05-14 15:52:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(305, 1, '20', 1, '109.166.137.29', 'donate@pfane.com', '2019-05-14 18:13:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(306, 0, '0', 0, '45.115.86.91', 'donate@pfane.com', '2019-05-15 05:09:00', 'login', 'Supplier', NULL, 1),
(307, 0, '0', 0, '45.115.86.91', 'donate@pfane.com', '2019-05-15 07:47:00', 'login', 'Supplier', NULL, 1),
(308, 0, '0', 0, '45.115.86.91', 'donate@pfane.com', '2019-05-15 08:01:00', 'login', 'Supplier', NULL, 1),
(309, 0, '0', 0, '103.255.7.63', 'donate@pfane.com', '2019-05-15 13:04:00', 'login', 'Supplier', NULL, 1),
(310, 0, '0', 0, '103.255.7.63', 'donate@pfane.com', '2019-05-15 13:04:00', 'login', 'Supplier', NULL, 1),
(311, 0, '0', 0, '103.255.7.63', 'donate@pfane.com', '2019-05-15 15:14:00', 'login', 'Supplier', NULL, 1),
(312, 1, '22', 1, '103.255.7.35', 'donate@pfane.com', '2019-05-15 17:34:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(313, 0, '0', 0, '109.166.137.29', 'donate@pfane.com', '2019-05-16 05:21:00', 'login', 'Supplier', NULL, 1),
(314, 1, '24', 1, '45.115.86.91', 'donate@pfane.com', '2019-05-16 05:40:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(315, 1, '25', 1, '109.166.137.29', 'donate@pfane.com', '2019-05-16 08:50:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(316, 0, '0', 0, '45.115.84.166', 'donate@pfane.com', '2019-05-17 06:51:00', 'login', 'Supplier', NULL, 1),
(317, 0, '0', 0, '109.166.137.29', 'dale@pfane.com', '2019-05-17 16:39:00', 'login', 'Viewpas', NULL, 1),
(318, 0, '0', 0, '103.255.7.35', 'bannit@pfane.com', '2019-05-18 09:38:00', 'login', 'Viewpas', NULL, 1),
(319, 0, '0', 0, '45.115.84.166', 'donate@pfane.com', '2019-05-21 11:10:00', 'login', 'Supplier', NULL, 1),
(320, 0, '0', 0, '109.166.138.50', 'donate@pfane.com', '2019-05-21 13:52:00', 'login', 'Supplier', NULL, 1),
(321, 0, '0', 0, '76.218.233.206', 'mike.rodgers@blueskytradinginc.com', '2019-05-21 14:56:00', 'login', 'Supplier', NULL, 1),
(322, 0, '0', 0, '76.218.233.206', '', '2019-05-21 14:57:00', 'logout', 'Viewpas', NULL, 1),
(323, 0, '0', 0, '76.218.233.206', '', '2019-05-21 14:57:00', 'logout', 'Viewpas', NULL, 1),
(324, 0, '0', 0, '109.166.138.50', 'mike.rodgers@blueskytradinginc.com', '2019-05-21 14:57:00', 'login', 'Supplier', NULL, 1),
(325, 0, '0', 0, '76.218.233.206', 'mike.rodgers@blueskytradinginc.com', '2019-05-21 14:58:00', 'login', 'Supplier', NULL, 1),
(326, 0, '0', 0, '109.166.138.50', 'd.ramsell@evotusinc.com', '2019-05-21 19:07:00', 'login', 'Supplier', NULL, 1),
(327, 1, '29', 1, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-05-21 19:07:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(328, 1, '30', 1, '109.166.138.50', 'd.ramsell@evotusinc.com', '2019-05-21 19:39:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(329, 1, '26', 1, '109.166.138.50', 'donate@pfane.com', '2019-05-21 22:46:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(330, 0, '0', 0, '109.166.138.50', 'donate@pfane.com', '2019-05-21 23:13:00', 'login', 'Supplier', NULL, 1),
(331, 0, '0', 0, '37.251.220.50', 'dale@pfane.com', '2019-05-23 21:05:00', 'login', 'Viewpas', NULL, 1),
(332, 0, '0', 0, '109.166.137.14', 'dale@pfane.com', '2019-05-24 08:44:00', 'login', 'Viewpas', NULL, 1),
(333, 1, '32', 1, '37.251.220.50', 'donate@pfane.com', '2019-05-27 14:50:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(334, 0, '0', 0, '109.166.138.154', 'dale@pfane.com', '2019-05-31 16:29:00', 'login', 'Viewpas', NULL, 1),
(335, 0, '0', 0, '103.255.6.69', 'dale@pfane.com', '2019-06-03 19:18:00', 'login', 'Viewpas', NULL, 1),
(336, 0, '0', 0, '103.255.7.62', 'dale@pfane.com', '2019-06-04 08:22:00', 'login', 'Viewpas', NULL, 1),
(337, 0, '0', 0, '103.255.7.39', 'dale@pfane.com', '2019-06-04 17:13:00', 'login', 'Viewpas', NULL, 1),
(338, 0, '0', 0, '109.166.136.66', 'dale@pfane.com', '2019-06-04 17:23:00', 'login', 'Viewpas', NULL, 1),
(339, 0, '0', 0, '193.77.91.39', 'dale@pfane.com', '2019-06-04 19:32:00', 'login', 'Viewpas', NULL, 1),
(340, 0, '0', 0, '109.166.136.66', 'dale@pfane.com', '2019-06-05 07:23:00', 'login', 'Viewpas', NULL, 1),
(341, 0, '0', 0, '103.255.6.85', 'dale@pfane.com', '2019-06-05 07:46:00', 'login', 'Viewpas', NULL, 1),
(342, 1, '35', 1, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-06-05 19:23:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(343, 1, '36', 1, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-06-05 19:55:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(344, 0, '0', 0, '109.166.136.120', 'dale@pfane.com', '2019-06-10 20:31:00', 'login', 'Viewpas', NULL, 1),
(345, 0, '0', 0, '109.166.137.134', 'dale@pfane.com', '2019-06-17 10:02:00', 'login', 'Viewpas', NULL, 1),
(346, 0, '0', 0, '109.166.137.134', 'dale@pfane.com', '2019-06-17 10:19:00', 'logout', 'Viewpas', NULL, 1),
(347, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-06-19 22:29:00', 'login', 'Supplier', NULL, 1),
(348, 0, '0', 0, '12.133.212.60', 'dale@pfane.com', '2019-07-18 06:06:00', 'login', 'Viewpas', NULL, 1),
(349, 0, '0', 0, '103.225.50.90', 'donate@pfane.com', '2019-07-18 10:32:00', 'login', 'Supplier', NULL, 1),
(350, 0, '0', 0, '12.133.212.60', 'dale@pfane.com', '2019-07-18 14:07:00', 'login', 'Viewpas', NULL, 1),
(351, 0, '0', 0, '109.166.139.44', 'donate@pfane.com', '2019-07-19 08:20:00', 'login', 'Supplier', NULL, 1),
(352, 0, '0', 0, '103.255.6.87', 'donate@pfane.com', '2019-07-19 15:21:00', 'login', 'Supplier', NULL, 1),
(353, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-07-24 12:52:00', 'login', 'Supplier', NULL, 1),
(354, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:53:00', 'logout', 'Viewpas', NULL, 1),
(355, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:53:00', 'logout', 'Viewpas', NULL, 1),
(356, 0, '0', 0, '37.251.223.63', 'donate@pfane.com', '2019-07-24 12:53:00', 'login', 'Supplier', NULL, 1),
(357, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-07-24 12:54:00', 'login', 'Supplier', NULL, 1),
(358, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:54:00', 'logout', 'Viewpas', NULL, 1),
(359, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:54:00', 'logout', 'Viewpas', NULL, 1),
(360, 0, '0', 0, '37.251.223.63', '', '2019-07-24 12:56:00', 'logout', 'Viewpas', NULL, 1),
(361, 0, '0', 0, '37.251.223.63', '', '2019-07-24 12:56:00', 'logout', 'Viewpas', NULL, 1),
(362, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-07-24 12:56:00', 'login', 'Supplier', NULL, 1),
(363, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:57:00', 'logout', 'Viewpas', NULL, 1),
(364, 0, '0', 0, '76.218.233.206', '', '2019-07-24 12:57:00', 'logout', 'Viewpas', NULL, 1),
(365, 0, '0', 0, '37.251.223.63', 'donate@pfane.com', '2019-07-24 12:58:00', 'login', 'Supplier', NULL, 1),
(366, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-07-24 12:59:00', 'login', 'Supplier', NULL, 1),
(367, 0, '0', 0, '77.94.132.123', 'j.skoberne@aurenis.si', '2019-07-26 09:05:00', 'login', 'Supplier', NULL, 1),
(368, 0, '0', 0, '77.94.132.123', '', '2019-07-26 09:05:00', 'logout', 'Viewpas', NULL, 1),
(369, 0, '0', 0, '77.94.132.123', '', '2019-07-26 09:05:00', 'logout', 'Viewpas', NULL, 1),
(370, 0, '0', 0, '87.105.139.23', 'Zubrzycki@icloud.com', '2019-07-28 10:36:00', 'login', 'Supplier', NULL, 1),
(371, 0, '0', 0, '103.255.7.55', 'Zubrzycki@icloud.com', '2019-07-29 18:11:00', 'login', 'Supplier', NULL, 1),
(372, 0, '0', 0, '103.255.7.55', 'donate@pfane.com', '2019-07-29 18:13:00', 'login', 'Supplier', NULL, 1),
(373, 0, '0', 0, '101.50.97.121', 'donate@pfane.com', '2019-07-30 06:43:00', 'login', 'Supplier', NULL, 1),
(374, 0, '0', 0, '101.50.97.121', 'donate@pfane.com', '2019-07-30 07:20:00', 'login', 'Supplier', NULL, 1),
(375, 0, '0', 0, '109.166.136.192', 'donate@pfane.com', '2019-07-30 07:22:00', 'login', 'Supplier', NULL, 1),
(376, 0, '0', 0, '185.53.197.64', 'cell@pfane.com', '2019-07-30 12:49:00', 'login', 'Supplier', NULL, 1),
(377, 0, '0', 0, '101.50.97.121', 'donate@pfane.com', '2019-07-30 12:58:00', 'login', 'Supplier', NULL, 1),
(378, 1, '42', 1, '185.53.196.139', 'Zubrzycki@icloud.com', '2019-08-02 09:25:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(379, 0, '0', 0, '185.53.196.139', 'Zubrzycki@icloud.com', '2019-08-02 09:47:00', 'login', 'Supplier', NULL, 1),
(380, 1, '43', 1, '185.53.196.139', 'Zubrzycki@icloud.com', '2019-08-02 09:49:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(381, 0, '0', 0, '185.53.196.139', 'Zubrzycki@icloud.com', '2019-08-02 10:00:00', 'login', 'Supplier', NULL, 1),
(382, 0, '0', 0, '37.251.222.219', 'p.scibior@pcbtech.pl', '2019-08-05 12:59:00', 'login', 'Supplier', NULL, 1),
(383, 0, '0', 0, '91.234.13.209', 'p.scibior@pcbtech.pl', '2019-08-06 08:41:00', 'login', 'Supplier', NULL, 1),
(384, 0, '0', 0, '91.234.13.209', '', '2019-08-06 08:44:00', 'logout', 'Viewpas', NULL, 1),
(385, 0, '0', 0, '91.234.13.209', '', '2019-08-06 08:44:00', 'logout', 'Viewpas', NULL, 1),
(386, 0, '0', 0, '109.166.136.35', 'p.scibior@pcbtech.pl', '2019-08-09 09:46:00', 'login', 'Supplier', NULL, 1),
(387, 0, '0', 0, '37.111.128.198', 'dale@pfane.com', '2019-08-11 14:12:00', 'login', 'Viewpas', NULL, 1),
(388, 0, '0', 0, '93.122.248.204', 'dale@pfane.com', '2019-08-11 15:00:00', 'login', 'Viewpas', NULL, 1),
(389, 1, '45', 1, '37.251.222.244', 'andre.nita@rematinvest.ro', '2019-08-14 08:18:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(390, 1, '44', 1, '109.166.138.47', 'p.scibior@pcbtech.pl', '2019-08-14 08:59:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(391, 0, '0', 0, '109.166.138.47', 'andre.nita@rematinvest.ro', '2019-08-14 08:59:00', 'login', 'Supplier', NULL, 1),
(392, 1, '46', 1, '109.166.138.47', 'Zubrzycki@icloud.com', '2019-08-14 09:22:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(393, 1, '47', 1, '109.166.138.47', 'j.skoberne@aurenis.si', '2019-08-14 09:38:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(394, 0, '0', 0, '77.94.132.123', 'j.skoberne@aurenis.si', '2019-08-14 10:30:00', 'login', 'Supplier', NULL, 1),
(395, 0, '0', 0, '77.94.132.123', '', '2019-08-14 10:32:00', 'logout', 'Viewpas', NULL, 1),
(396, 0, '0', 0, '77.94.132.123', '', '2019-08-14 10:32:00', 'logout', 'Viewpas', NULL, 1),
(397, 0, '0', 0, '109.166.137.46', 'Zubrzycki@icloud.com', '2019-08-14 17:47:00', 'login', 'Supplier', NULL, 1),
(398, 0, '0', 0, '109.166.137.18', 'donate@pfane.com', '2019-08-18 21:03:00', 'login', 'Supplier', NULL, 1),
(399, 0, '0', 0, '109.166.137.7', 'mike@pfane.com', '2019-08-19 07:36:00', 'login', 'Supplier', NULL, 1),
(400, 0, '0', 0, '101.50.97.121', 'p.scibior@pcbtech.pl', '2019-08-19 08:05:00', 'login', 'Supplier', NULL, 1),
(401, 0, '0', 0, '101.50.97.121', 'mike@pfane.com', '2019-08-19 08:11:00', 'login', 'Supplier', NULL, 1),
(402, 0, '0', 0, '109.166.137.7', 'donate@pfane.com', '2019-08-19 08:39:00', 'login', 'Supplier', NULL, 1),
(403, 0, '0', 0, '109.166.137.7', 'mike@pfane.com', '2019-08-19 09:28:00', 'login', 'Supplier', NULL, 1),
(404, 0, '0', 0, '109.166.137.18', 'mike@pfane.com', '2019-08-19 18:37:00', 'login', 'Supplier', NULL, 1),
(405, 0, '0', 0, '109.166.136.161', 'mike@pfane.com', '2019-08-23 06:41:00', 'login', 'Supplier', NULL, 1),
(406, 0, '0', 0, '77.94.132.123', 'j.skoberne@aurenis.si', '2019-08-30 12:52:00', 'login', 'Supplier', NULL, 1),
(407, 0, '0', 0, '109.166.138.37', 'jasper@pfane.com', '2019-09-03 06:37:00', 'login', 'Supplier', NULL, 1),
(408, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-09-03 17:54:00', 'login', 'Supplier', NULL, 1),
(409, 0, '0', 0, '76.218.233.206', '', '2019-09-03 17:55:00', 'logout', 'Viewpas', NULL, 1),
(410, 0, '0', 0, '76.218.233.206', '', '2019-09-03 17:55:00', 'logout', 'Viewpas', NULL, 1),
(411, 0, '0', 0, '76.218.233.206', 'd.ramsell@evotusinc.com', '2019-09-03 18:26:00', 'login', 'Supplier', NULL, 1),
(412, 0, '0', 0, '76.218.233.206', '', '2019-09-03 18:26:00', 'logout', 'Viewpas', NULL, 1),
(413, 0, '0', 0, '76.218.233.206', '', '2019-09-03 18:26:00', 'logout', 'Viewpas', NULL, 1),
(414, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:02:00', 'login', 'Supplier', NULL, 1),
(415, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:02:00', 'login', 'Supplier', NULL, 1),
(416, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:17:00', 'login', 'Supplier', NULL, 1),
(417, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:20:00', 'login', 'Supplier', NULL, 1),
(418, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:20:00', 'login', 'Supplier', NULL, 1),
(419, 0, '0', 0, '76.218.233.206', 's.sadler@evotusinc.com', '2019-09-03 19:25:00', 'login', 'Supplier', NULL, 1),
(420, 1, '55', 1, '76.218.233.206', 's.sadler@evotusinc.com', '2019-09-03 19:34:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(421, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:46:00', 'login', 'Supplier', NULL, 1),
(422, 0, '0', 0, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:47:00', 'login', 'Supplier', NULL, 1),
(423, 1, '55', 1, '174.194.0.215', 'S.sadler@evotusinc.com', '2019-09-03 19:48:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(424, 0, '0', 0, '82.79.115.237', 'sales@pfane.ca', '2019-09-04 04:43:00', 'login', 'Viewpas', NULL, 1),
(425, 0, '0', 0, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 15:45:00', 'login', 'Supplier', NULL, 1),
(426, 1, '58', 1, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 15:56:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(427, 0, '0', 0, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 16:16:00', 'login', 'Supplier', NULL, 1),
(428, 0, '0', 0, '76.218.233.206', '', '2019-09-04 16:18:00', 'logout', 'Viewpas', NULL, 1),
(429, 0, '0', 0, '76.218.233.206', '', '2019-09-04 16:18:00', 'logout', 'Viewpas', NULL, 1),
(430, 0, '0', 0, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 16:18:00', 'login', 'Supplier', NULL, 1),
(431, 1, '59', 1, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 22:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(432, 0, '0', 0, '76.218.233.206', 'testbox@evotusinc.com', '2019-09-04 22:47:00', 'login', 'Supplier', NULL, 1),
(433, 1, '60', 1, '82.79.115.237', 'mihai.elektroschrott@gmail.com', '2019-09-06 09:23:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(434, 1, '61', 1, '76.218.233.206', 'testco2@evotusinc.com', '2019-09-10 15:09:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(435, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-09-10 17:11:00', 'login', 'Supplier', NULL, 1),
(436, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-09-10 20:05:00', 'login', 'Supplier', NULL, 1),
(437, 0, '0', 0, '82.79.115.237', 'mihai.elektroschrott@gmail.com', '2019-09-11 10:47:00', 'login', 'Supplier', NULL, 1),
(438, 1, '54', 1, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 11:56:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(439, 0, '0', 0, '107.15.113.112', '', '2019-09-11 11:58:00', 'logout', 'Viewpas', NULL, 1),
(440, 0, '0', 0, '107.15.113.112', '', '2019-09-11 11:58:00', 'logout', 'Viewpas', NULL, 1),
(441, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 11:59:00', 'login', 'Supplier', NULL, 1),
(442, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:08:00', 'login', 'Supplier', NULL, 1),
(443, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:22:00', 'logout', 'Viewpas', NULL, 1),
(444, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:22:00', 'logout', 'Viewpas', NULL, 1),
(445, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:22:00', 'login', 'Supplier', NULL, 1),
(446, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:24:00', 'login', 'Supplier', NULL, 1),
(447, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:25:00', 'logout', 'Viewpas', NULL, 1),
(448, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:25:00', 'logout', 'Viewpas', NULL, 1),
(449, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:25:00', 'login', 'Supplier', NULL, 1),
(450, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:26:00', 'logout', 'Viewpas', NULL, 1),
(451, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:26:00', 'logout', 'Viewpas', NULL, 1),
(452, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:26:00', 'login', 'Supplier', NULL, 1),
(453, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:31:00', 'login', 'Supplier', NULL, 1),
(454, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:32:00', 'login', 'Supplier', NULL, 1),
(455, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:33:00', 'logout', 'Viewpas', NULL, 1),
(456, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:33:00', 'logout', 'Viewpas', NULL, 1),
(457, 0, '0', 0, '107.15.113.112', 'S.sadler@evotusinc.com', '2019-09-11 12:33:00', 'login', 'Supplier', NULL, 1),
(458, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:34:00', 'logout', 'Viewpas', NULL, 1),
(459, 0, '0', 0, '107.15.113.112', '', '2019-09-11 12:34:00', 'logout', 'Viewpas', NULL, 1),
(460, 0, '0', 0, '107.15.113.112', 'S.Sadler@evotusinc.com', '2019-09-12 16:28:00', 'login', 'Supplier', NULL, 1),
(461, 0, '0', 0, '107.15.113.112', '', '2019-09-12 16:30:00', 'logout', 'Viewpas', NULL, 1),
(462, 0, '0', 0, '107.15.113.112', '', '2019-09-12 16:30:00', 'logout', 'Viewpas', NULL, 1),
(463, 0, '0', 0, '107.15.113.112', 'S.Sadler@evotusinc.com', '2019-09-12 23:22:00', 'login', 'Supplier', NULL, 1),
(464, 0, '0', 0, '107.15.113.112', '', '2019-09-12 23:25:00', 'logout', 'Viewpas', NULL, 1),
(465, 0, '0', 0, '107.15.113.112', '', '2019-09-12 23:25:00', 'logout', 'Viewpas', NULL, 1),
(466, 1, '63', 1, '109.166.136.239', 'mihai.elektroschrott@gmail.com', '2019-09-13 22:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(467, 0, '0', 0, '103.255.6.77', 'donate@pfane.com', '2019-09-20 17:51:00', 'login', 'Supplier', NULL, 1),
(468, 0, '0', 0, '103.255.6.93', 'donate@pfane.com', '2019-09-21 07:38:00', 'login', 'Supplier', NULL, 1),
(469, 1, '66', 1, '103.255.7.51', 'donate@pfane.com', '2019-09-22 08:23:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(470, 0, '0', 0, '103.255.7.51', '', '2019-09-22 08:25:00', 'logout', 'Viewpas', NULL, 1),
(471, 0, '0', 0, '103.255.7.51', '', '2019-09-22 08:25:00', 'logout', 'Viewpas', NULL, 1),
(472, 1, '67', 1, '109.166.136.237', 'mike@pfane.com', '2019-09-22 18:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(473, 0, '0', 0, '82.79.115.237', 'donate@pfane.com', '2019-09-24 04:46:00', 'login', 'Supplier', NULL, 1),
(474, 0, '0', 0, '58.65.150.224', 'donate@pfane.com', '2019-09-24 05:16:00', 'login', 'Supplier', NULL, 1),
(475, 0, '0', 0, '103.255.6.100', 'mike@pfane.com', '2019-09-25 17:42:00', 'login', 'Supplier', NULL, 1),
(476, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-03 16:26:00', 'login', 'Supplier', NULL, 1),
(477, 0, '0', 0, '109.166.137.53', '', '2019-10-03 16:28:00', 'login', 'Supplier', NULL, 1),
(478, 1, '72', 1, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-03 17:01:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(479, 1, '78', 1, '82.79.114.244', 'andre.nita@rematinvest.ro', '2019-10-07 06:15:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(480, 0, '0', 0, '82.79.114.244', '', '2019-10-07 06:19:00', 'logout', 'Viewpas', NULL, 1),
(481, 0, '0', 0, '82.79.114.244', '', '2019-10-07 06:19:00', 'logout', 'Viewpas', NULL, 1),
(482, 1, '77', 1, '82.79.114.244', '', '2019-10-07 09:56:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(483, 0, '0', 0, '124.109.35.251', 'Zubrzycki@icloud.com', '2019-10-07 10:05:00', 'login', 'Supplier', NULL, 1),
(484, 1, '78', 1, '82.79.114.244', 'andre.nita@rematinvest.ro', '2019-10-07 11:00:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(485, 1, '79', 1, '82.79.114.244', 'donate@pfane.com', '2019-10-07 11:31:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(486, 1, '159', 1, '82.79.114.244', 'andre.nita@rematinvest.ro', '2019-10-07 11:40:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(487, 1, '81', 1, '82.79.114.244', 'dale@pfane.com', '2019-10-07 11:56:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(488, 0, '0', 0, '40.136.78.10', 'testco2@evotusinc.com', '2019-10-08 17:46:00', 'login', 'Supplier', NULL, 1),
(489, 1, '82', 1, '109.166.137.53', 'donate@pfane.com', '2019-10-08 18:54:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(490, 0, '0', 0, '103.255.7.62', 'donate@pfane.com', '2019-10-08 19:19:00', 'login', 'Supplier', NULL, 1);
INSERT INTO `userlog` (`id`, `Contract_But_Press`, `Contract_ID`, `check_boxed`, `ip`, `username`, `sysdatetime`, `logtype`, `usertype`, `contractaccept`, `status`) VALUES
(491, 0, '0', 0, '82.79.114.244', 'mike@pfane.com', '2019-10-09 11:49:00', 'login', 'Supplier', NULL, 1),
(492, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-09 15:59:00', 'login', 'Supplier', NULL, 1),
(493, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-11 16:07:00', 'login', 'Supplier', NULL, 1),
(494, 1, '85', 1, '109.166.137.45', 'svendor.emil@cest.hu', '2019-10-12 15:14:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(495, 1, '86', 1, '109.166.137.45', 'mike@pfane.com', '2019-10-13 20:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(496, 0, '0', 0, '82.79.114.244', 'donate@pfane.com', '2019-10-14 07:37:00', 'login', 'Supplier', NULL, 1),
(497, 0, '0', 0, '82.79.114.244', 'mike@pfane.com', '2019-10-14 09:47:00', 'login', 'Supplier', NULL, 1),
(498, 0, '0', 0, '173.95.132.156', 'testco2@evotusinc.com', '2019-10-15 15:17:00', 'login', 'Supplier', NULL, 1),
(499, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-15 16:23:00', 'login', 'Supplier', NULL, 1),
(500, 0, '0', 0, '101.50.95.29', 'dale@pfane.com', '2019-10-16 04:17:00', 'login', 'Supplier', NULL, 1),
(501, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-16 20:43:00', 'login', 'Supplier', NULL, 1),
(502, 1, '88', 1, '109.166.137.50', 'j.skoberne@aurenis.si', '2019-10-17 02:33:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(503, 0, '0', 0, '76.218.233.206', 'testco2@evotusinc.com', '2019-10-18 00:49:00', 'login', 'Supplier', NULL, 1),
(504, 0, '0', 0, '124.109.35.184', 'testco2@evotusinc.com', '2019-10-18 06:18:00', 'login', 'Supplier', NULL, 1),
(505, 0, '0', 0, '82.79.114.244', 'd.ramsell@evotusinc.com', '2019-10-18 07:31:00', 'login', 'Supplier', NULL, 1),
(506, 0, '0', 0, '82.79.114.244', '', '2019-10-18 07:32:00', 'logout', 'Viewpas', NULL, 1),
(507, 0, '0', 0, '82.79.114.244', '', '2019-10-18 07:32:00', 'logout', 'Viewpas', NULL, 1),
(508, 0, '0', 0, '82.79.114.244', 'testco2@evotusinc.com', '2019-10-18 07:32:00', 'login', 'Supplier', NULL, 1),
(509, 0, '0', 0, '109.166.137.50', 'j.skoberne@aurenis.si', '2019-10-18 17:57:00', 'login', 'Supplier', NULL, 1),
(510, 1, '256', 1, '82.79.114.244', 'j.skoberne@aurenis.si', '2019-10-21 07:07:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(511, 1, '95', 1, '174.99.121.71', 'testco2@evotusinc.com', '2019-10-21 20:50:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(512, 0, '0', 0, '174.99.121.71', 'testco2@evotusinc.com', '2019-10-22 21:59:00', 'login', 'Supplier', NULL, 1),
(513, 0, '0', 0, '82.79.114.244', 'testco2@evotusinc.com', '2019-10-23 07:01:00', 'login', 'Supplier', NULL, 1),
(514, 0, '0', 0, '82.79.114.244', 'cell@pfane.com', '2019-10-23 08:29:00', 'login', 'Supplier', NULL, 1),
(515, 1, '145', 1, '82.79.114.244', 'svendor.emil@cest.hu', '2019-10-23 11:51:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(516, 0, '0', 0, '109.166.137.50', 'cell@pfane.com', '2019-10-23 15:30:00', 'login', 'Supplier', NULL, 1),
(517, 0, '0', 0, '103.255.6.95', 'cell@pfane.com', '2019-10-23 15:53:00', 'login', 'Supplier', NULL, 1),
(518, 0, '0', 0, '109.166.137.50', 'cell@pfane.com', '2019-10-23 17:02:00', 'login', 'Supplier', NULL, 1),
(519, 0, '0', 0, '109.166.137.50', 'cell@pfane.com', '2019-10-23 19:17:00', 'login', 'Supplier', NULL, 1),
(520, 0, '0', 0, '66.249.93.196', 'cell@pfane.com', '2019-10-24 06:21:00', 'login', 'Supplier', NULL, 1),
(521, 0, '0', 0, '82.79.114.244', 'donate@pfane.com', '2019-10-24 06:44:00', 'login', 'Supplier', NULL, 1),
(522, 0, '0', 0, '82.79.114.244', 'cell@pfane.com', '2019-10-24 12:32:00', 'login', 'Supplier', NULL, 1),
(523, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-24 15:25:00', 'login', 'Supplier', NULL, 1),
(524, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-24 15:34:00', 'login', 'Supplier', NULL, 1),
(525, 0, '0', 0, '103.255.6.91', 'cell@pfane.com', '2019-10-24 16:26:00', 'login', 'Supplier', NULL, 1),
(526, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-24 17:07:00', 'login', 'Supplier', NULL, 1),
(527, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-24 19:07:00', 'login', 'Supplier', NULL, 1),
(528, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-24 19:37:00', 'login', 'Supplier', NULL, 1),
(529, 1, '89', 1, '82.79.114.244', 'mike@pfane.com', '2019-10-25 10:13:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(530, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-26 18:52:00', 'login', 'Supplier', NULL, 1),
(531, 0, '0', 0, '103.255.7.41', 'cell@pfane.com', '2019-10-26 18:56:00', 'login', 'Supplier', NULL, 1),
(532, 0, '0', 0, '103.255.7.23', 'cell@pfane.com', '2019-10-27 06:33:00', 'login', 'Supplier', NULL, 1),
(533, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-27 09:04:00', 'login', 'Supplier', NULL, 1),
(534, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-27 10:51:00', 'login', 'Supplier', NULL, 1),
(535, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:06:00', 'logout', 'Viewpas', NULL, 1),
(536, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:06:00', 'logout', 'Viewpas', NULL, 1),
(537, 0, '0', 0, '103.255.7.23', 'cell@pfane.com', '2019-10-27 11:06:00', 'login', 'Supplier', NULL, 1),
(538, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:07:00', 'logout', 'Viewpas', NULL, 1),
(539, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:07:00', 'logout', 'Viewpas', NULL, 1),
(540, 0, '0', 0, '103.255.7.23', 'cell@pfane.com', '2019-10-27 11:08:00', 'login', 'Supplier', NULL, 1),
(541, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:08:00', 'logout', 'Viewpas', NULL, 1),
(542, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:08:00', 'logout', 'Viewpas', NULL, 1),
(543, 0, '0', 0, '103.255.7.23', 'cell@pfane.com', '2019-10-27 11:08:00', 'login', 'Supplier', NULL, 1),
(544, 0, '0', 0, '103.255.7.23', '', '2019-10-27 11:10:00', 'logout', 'Viewpas', NULL, 1),
(545, 1, '131', 1, '103.255.7.23', '', '2019-10-27 11:10:00', 'logout', 'Viewpas', 'PRESSED ACCEPT IN CONTRACT', 1),
(546, 0, '0', 0, '103.255.7.23', 'cell@pfane.com', '2019-10-27 11:11:00', 'login', 'Supplier', NULL, 1),
(547, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-27 11:44:00', 'login', 'Supplier', NULL, 1),
(548, 1, '111', 1, '109.166.139.92', 'cell@pfane.com', '2019-10-27 12:01:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(549, 0, '0', 0, '82.79.114.244', 'cell@pfane.com', '2019-10-28 10:27:00', 'login', 'Supplier', NULL, 1),
(550, 0, '0', 0, '103.255.6.252', 'cell@pfane.com', '2019-10-28 16:38:00', 'login', 'Supplier', NULL, 1),
(551, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-28 17:39:00', 'login', 'Supplier', NULL, 1),
(552, 1, '118', 1, '103.255.6.252', 'cell@pfane.com', '2019-10-28 17:40:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(553, 1, '122', 1, '109.166.139.92', 'cell@pfane.com', '2019-10-28 19:15:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(554, 1, '119', 1, '109.166.139.92', 'cell@pfane.com', '2019-10-28 20:23:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(555, 1, '131', 1, '109.166.139.92', 'cell@pfane.com', '2019-10-28 20:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(556, 0, '0', 0, '109.166.139.92', 'cell@pfane.com', '2019-10-29 18:35:00', 'login', 'Supplier', NULL, 1),
(557, 1, '132', 1, '109.166.139.92', 'cell@pfane.com', '2019-10-29 18:49:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(558, 1, '135', 1, '82.79.114.244', 'cell@pfane.com', '2019-10-30 08:37:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(559, 1, '134', 1, '109.166.129.108', 'cell@pfane.com', '2019-10-30 17:10:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(560, 1, '137', 1, '109.166.129.108', 'cell@pfane.com', '2019-10-30 17:34:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(561, 0, '0', 0, '174.99.121.71', 'testco2@evotusinc.com', '2019-10-31 17:23:00', 'login', 'Supplier', NULL, 1),
(562, 0, '0', 0, '109.166.138.106', 'testco2@evotusinc.com', '2019-10-31 17:44:00', 'login', 'Supplier', NULL, 1),
(563, 0, '0', 0, '173.95.132.156', 'testco2@evotusinc.com', '2019-11-01 15:38:00', 'login', 'Supplier', NULL, 1),
(564, 0, '0', 0, '173.95.132.156', 'testco2@evotusinc.com', '2019-11-01 16:07:00', 'login', 'Supplier', NULL, 1),
(565, 0, '0', 0, '82.79.114.244', 'Zubrzycki@icloud.com', '2019-11-07 11:29:00', 'login', 'Supplier', NULL, 1),
(566, 0, '0', 0, '109.166.137.61', 'dale@pfane.com', '2019-11-12 04:48:00', 'login', 'Viewpas', NULL, 1),
(567, 0, '0', 0, '82.79.114.244', 'Zubrzycki@icloud.com', '2019-11-15 09:01:00', 'login', 'Supplier', NULL, 1),
(568, 0, '0', 0, '66.249.93.194', 'Zubrzycki@icloud.com', '2019-11-15 11:36:00', 'login', 'Supplier', NULL, 1),
(569, 0, '0', 0, '58.65.150.103', 'Zubrzycki@icloud.com', '2019-11-15 11:38:00', 'login', 'Supplier', NULL, 1),
(570, 0, '0', 0, '58.65.150.103', 'Zubrzycki@icloud.com', '2019-11-15 11:58:00', 'login', 'Supplier', NULL, 1),
(571, 0, '0', 0, '109.166.139.9', 'dale@pfane.com', '2019-11-21 14:33:00', 'login', 'Viewpas', NULL, 1),
(572, 0, '0', 0, '109.166.139.9', 'dale@pfane.com', '2019-11-21 20:57:00', 'logout', 'Viewpas', NULL, 1),
(573, 0, '0', 0, '82.79.114.244', 'dale@pfane.com', '2019-12-03 13:12:00', 'login', 'Supplier', NULL, 1),
(574, 0, '0', 0, '50.7.93.85', 'malikmasif@hotmail.com', '2020-01-06 10:59:00', 'login', 'Supplier', NULL, 1),
(575, 0, '0', 0, '198.16.74.204', 'malikmasif@hotmail.com', '2020-01-06 16:00:00', 'login', 'Supplier', NULL, 1),
(576, 0, '0', 0, '198.16.74.204', 'donate@pfane.com', '2020-01-06 16:03:00', 'login', 'Supplier', NULL, 1),
(577, 0, '0', 0, '109.166.139.214', 'dale@pfane.com', '2020-01-06 17:06:00', 'login', 'Supplier', NULL, 1),
(578, 0, '0', 0, '103.255.7.45', 'malikmasif@hotmail.com', '2020-01-06 17:50:00', 'login', 'Supplier', NULL, 1),
(579, 1, '170', 1, '109.166.139.214', 'svendor.emil@cest.hu', '2020-01-06 18:14:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(580, 0, '0', 0, '103.255.7.45', 'malikmasif@hotmail.com', '2020-01-06 18:45:00', 'login', 'Supplier', NULL, 1),
(581, 0, '0', 0, '75.26.8.17', 'testco2@evotusinc.com', '2020-01-10 14:38:00', 'login', 'Supplier', NULL, 1),
(582, 1, '144', 1, '75.26.8.17', 'testco2@evotusinc.com', '2020-01-10 14:38:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(583, 0, '0', 0, '103.255.7.35', 'mike@pfane.com', '2020-01-10 17:19:00', 'login', 'Supplier', NULL, 1),
(584, 1, '153', 1, '109.166.139.214', 'mike@pfane.com', '2020-01-11 13:05:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(585, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-18 07:58:00', 'login', 'Viewpas', NULL, 1),
(586, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-18 09:48:00', 'login', 'Viewpas', NULL, 1),
(587, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-18 09:52:00', 'login', 'Viewpas', NULL, 1),
(588, 0, '0', 0, '66.248.202.10', '', '2020-01-18 10:00:00', 'logout', 'Viewpas', NULL, 1),
(589, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-18 10:00:00', 'login', 'Viewpas', NULL, 1),
(590, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-18 12:27:00', 'login', 'Viewpas', NULL, 1),
(591, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-19 08:21:00', 'login', 'Viewpas', NULL, 1),
(592, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-19 08:23:00', 'login', 'Viewpas', NULL, 1),
(593, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-19 08:24:00', 'login', 'Viewpas', NULL, 1),
(594, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-01-19 16:46:00', 'login', 'Viewpas', NULL, 1),
(595, 0, '0', 0, '66.248.203.10', 'malikmasif@hotmail.com', '2020-01-20 04:02:00', 'login', 'Viewpas', NULL, 1),
(596, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-01-21 09:58:00', 'login', 'Viewpas', NULL, 1),
(597, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-01-21 10:00:00', 'login', 'Viewpas', NULL, 1),
(598, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-21 10:50:00', 'login', 'Viewpas', NULL, 1),
(599, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-01-21 13:08:00', 'login', 'Viewpas', NULL, 1),
(600, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-21 13:15:00', 'login', 'Viewpas', NULL, 1),
(601, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-21 13:15:00', 'login', 'Viewpas', NULL, 1),
(602, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-01-21 17:32:00', 'login', 'Viewpas', NULL, 1),
(603, 0, '0', 0, '185.93.229.10', 'testco2@evotusinc.com', '2020-01-21 18:58:00', 'login', 'Supplier', NULL, 1),
(604, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-01-23 09:53:00', 'login', 'Viewpas', NULL, 1),
(605, 0, '0', 0, '185.93.230.10', 'dale@pfane.com', '2020-01-23 09:58:00', 'login', 'Supplier', NULL, 1),
(606, 0, '0', 0, '185.93.230.10', 'dale@dalemarion.com', '2020-01-26 18:51:00', 'login', 'Supplier', NULL, 1),
(607, 0, '0', 0, '66.248.202.10', 'mike@pfane.com', '2020-01-27 16:17:00', 'login', 'Supplier', NULL, 1),
(608, 1, '164', 1, '185.93.229.10', 'testco2@evotusinc.com', '2020-02-05 21:13:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(609, 0, '0', 0, '66.248.202.10', 'dale@dalemarion.com', '2020-02-09 07:17:00', 'login', 'Supplier', NULL, 1),
(610, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-09 08:25:00', 'login', 'Supplier', NULL, 1),
(611, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-09 12:55:00', 'login', 'Supplier', NULL, 1),
(612, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-10 09:56:00', 'login', 'Supplier', NULL, 1),
(613, 0, '0', 0, '208.109.0.10', 'dale@dalemarion.com', '2020-02-11 09:08:00', 'login', 'Supplier', NULL, 1),
(614, 0, '0', 0, '208.109.0.10', 'dale@dalemarion.com', '2020-02-11 09:09:00', 'login', 'Supplier', NULL, 1),
(615, 0, '0', 0, '66.248.202.10', 'dale@dalemarion.com', '2020-02-12 06:54:00', 'login', 'Supplier', NULL, 1),
(616, 0, '0', 0, '66.248.202.10', 'dale@dalemarion.com', '2020-02-12 09:13:00', 'login', 'Supplier', NULL, 1),
(617, 0, '0', 0, '66.248.202.10', 'donate@pfane.com', '2020-02-12 09:25:00', 'login', 'Supplier', NULL, 1),
(618, 1, '253', 1, '66.248.202.10', 'andre.nita@rematinvest.ro', '2020-02-12 09:29:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(619, 1, '262', 1, '185.93.230.10', 'svendor.emil@cest.hu', '2020-02-13 19:26:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(620, 0, '0', 0, '66.248.202.10', 'dustin@enviroserve.ae', '2020-02-13 19:43:00', 'login', 'Supplier', NULL, 1),
(621, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-14 06:16:00', 'login', 'Supplier', NULL, 1),
(622, 1, '171', 1, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-14 14:08:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(623, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-15 06:12:00', 'login', 'Supplier', NULL, 1),
(624, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-17 09:13:00', 'login', 'Supplier', NULL, 1),
(625, 1, '329', 1, '66.248.202.10', 'dale@dalemarion.com', '2020-02-17 09:16:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(626, 0, '0', 0, '66.248.202.10', 'Zubrzycki@icloud.com', '2020-02-17 09:16:00', 'login', 'Supplier', NULL, 1),
(627, 0, '0', 0, '66.248.202.10', 'donate@pfane.com', '2020-02-17 09:16:00', 'login', 'Supplier', NULL, 1),
(628, 0, '0', 0, '185.93.230.10', 'Dustin@enviroserve.ae', '2020-02-17 12:32:00', 'login', 'Supplier', NULL, 1),
(629, 0, '0', 0, '185.93.230.10', 'dustin@enviroserve.ae', '2020-02-18 20:53:00', 'login', 'Supplier', NULL, 1),
(630, 0, '0', 0, '66.248.202.10', 'donate@pfane.com', '2020-02-19 07:08:00', 'login', 'Supplier', NULL, 1),
(631, 0, '0', 0, '185.93.229.10', 'dustin@enviroserve.ae', '2020-02-19 22:22:00', 'login', 'Supplier', NULL, 1),
(632, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-20 16:06:00', 'login', 'Supplier', NULL, 1),
(633, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-02-21 03:57:00', 'login', 'Supplier', NULL, 1),
(634, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-26 10:15:00', 'login', 'Supplier', NULL, 1),
(635, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-26 16:34:00', 'login', 'Supplier', NULL, 1),
(636, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-26 19:49:00', 'login', 'Supplier', NULL, 1),
(637, 1, '182', 1, '185.93.230.10', 'cell@pfane.com', '2020-02-26 21:18:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(638, 0, '0', 0, '185.93.230.10', 'balika.istvan@metalex2001.hu', '2020-02-26 22:02:00', 'login', 'Supplier', NULL, 1),
(639, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-26 22:29:00', 'login', 'Supplier', NULL, 1),
(640, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-27 03:54:00', 'login', 'Supplier', NULL, 1),
(641, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-27 04:05:00', 'login', 'Supplier', NULL, 1),
(642, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-27 04:10:00', 'login', 'Supplier', NULL, 1),
(643, 1, '188', 1, '66.248.202.10', 'testco2@evotusinc.com', '2020-02-27 04:11:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(644, 0, '0', 0, '66.248.202.10', 'Ronald.Druemmer@emrgroup.com', '2020-02-27 18:23:00', 'login', 'Supplier', NULL, 1),
(645, NULL, NULL, NULL, '185.93.230.10', '', '2020-02-29 13:04:00', 'logout', 'Supplier', NULL, 1),
(646, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-02-29 13:15:00', 'login', 'Supplier', NULL, 1),
(647, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-02-29 13:22:00', 'login', 'Supplier', NULL, 1),
(648, 0, '0', 0, '185.93.230.10', 'balika.istvan@metalex2001.hu', '2020-02-29 13:47:00', 'login', 'Supplier', NULL, 1),
(649, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-02-29 13:47:00', 'login', 'Supplier', NULL, 1),
(650, 1, '183', 1, '185.93.230.10', 'Dustin@enviroserve.ae', '2020-03-01 08:48:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(651, 0, '0', 0, '185.93.230.10', 's.korkusuz@ern-gmbh.de', '2020-03-03 09:41:00', 'login', 'Supplier', NULL, 1),
(652, 1, '185', 1, '185.93.230.10', 's.korkusuz@ern-gmbh.de', '2020-03-03 10:54:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(653, 0, '0', 0, '185.93.230.10', 's.korkusuz@ern-gmbh.de', '2020-03-04 07:43:00', 'login', 'Supplier', NULL, 1),
(654, 0, '0', 0, '185.93.230.10', 's.korkusuz@ern-gmbh.de', '2020-03-04 07:49:00', 'login', 'Supplier', NULL, 1),
(655, 0, '0', 0, '66.248.202.10', 'Dustin@enviroserve.ae', '2020-03-04 08:58:00', 'login', 'Supplier', NULL, 1),
(656, 0, '0', 0, '185.93.230.10', 's.korkusuz@ern-gmbh.de', '2020-03-04 11:20:00', 'login', 'Supplier', NULL, 1),
(657, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2020-03-08 05:26:00', 'login', 'Supplier', NULL, 1),
(658, 0, '0', 0, '66.248.202.10', 'dustin@enviroserve.ae', '2020-03-23 07:14:00', 'login', 'Supplier', NULL, 1),
(659, 0, '0', 0, '66.248.202.10', 'dustin@enviroserve.ae', '2020-03-23 07:14:00', 'login', 'Supplier', NULL, 1),
(660, 1, '193', 1, '185.93.230.10', 'danus@pfane.com', '2020-03-25 14:31:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(661, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-03-25 17:33:00', 'login', 'Supplier', NULL, 1),
(662, 1, '195', 1, '185.93.230.10', 'cell@pfane.com', '2020-03-25 17:33:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(663, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-03-25 18:23:00', 'login', 'Supplier', NULL, 1),
(664, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-03-25 18:23:00', 'login', 'Supplier', NULL, 1),
(665, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-03-26 17:32:00', 'login', 'Supplier', NULL, 1),
(666, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-03-26 17:37:00', 'login', 'Supplier', NULL, 1),
(667, NULL, NULL, NULL, '66.248.202.10', '', '2020-03-26 17:38:00', 'logout', 'Supplier', NULL, 1),
(668, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-03-26 17:44:00', 'login', 'Supplier', NULL, 1),
(669, 1, '197', 1, '185.93.230.10', 'cell@pfane.com', '2020-03-30 22:35:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(670, 0, '0', 0, '66.248.202.10', 'cell@pfane.com', '2020-03-31 09:35:00', 'login', 'Supplier', NULL, 1),
(671, 1, '199', 1, '185.93.230.10', 'cell@pfane.com', '2020-03-31 15:31:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(672, 0, '0', 0, '185.93.230.10', 'cell@pfane.com', '2020-03-31 15:38:00', 'login', 'Supplier', NULL, 1),
(673, 1, '275', 1, '185.93.230.10', 'mike@pfane.com', '2020-04-07 18:07:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(674, 1, '200', 1, '185.93.230.10', 'donate@pfane.com', '2020-04-07 18:12:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(675, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-10-29 03:15:00', 'login', 'Viewpas', NULL, 1),
(676, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-03 09:46:00', 'login', 'Viewpas', NULL, 1),
(677, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-03 13:05:00', 'login', 'Viewpas', NULL, 1),
(678, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-03 13:28:00', 'logout', 'Viewpas', NULL, 1),
(679, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-03 13:28:00', 'login', 'Viewpas', NULL, 1),
(680, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-03 15:37:00', 'login', 'Viewpas', NULL, 1),
(681, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-04 00:09:00', 'login', 'Viewpas', NULL, 1),
(682, 0, '0', 0, '185.93.230.10', 'malikmasif@hotmail.com', '2020-11-04 03:56:00', 'login', 'Viewpas', NULL, 1),
(683, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-18 02:02:00', 'login', 'Supplier', NULL, 1),
(684, NULL, NULL, NULL, '208.109.0.10', '', '2020-11-18 02:03:00', 'logout', 'Supplier', NULL, 1),
(685, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-19 02:08:00', 'login', 'Supplier', NULL, 1),
(686, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-19 02:20:00', 'login', 'Supplier', NULL, 1),
(687, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-20 01:03:00', 'login', 'Supplier', NULL, 1),
(688, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-25 04:15:00', 'login', 'Supplier', NULL, 1),
(689, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-25 04:57:00', 'login', 'Supplier', NULL, 1),
(690, NULL, NULL, NULL, '208.109.0.10', '', '2020-11-25 04:58:00', 'logout', 'Supplier', NULL, 1),
(691, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-25 05:01:00', 'login', 'Supplier', NULL, 1),
(692, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-25 05:16:00', 'login', 'Supplier', NULL, 1),
(693, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-25 07:30:00', 'login', 'Supplier', NULL, 1),
(694, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-25 07:31:00', 'login', 'Supplier', NULL, 1),
(695, 0, '0', 0, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-26 01:00:00', 'login', 'Supplier', NULL, 1),
(696, 1, '271', 1, '208.109.0.10', 'steininger.balint@alcufer.hu', '2020-11-26 01:41:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(697, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-26 01:57:00', 'login', 'Supplier', NULL, 1),
(698, 0, '0', 0, '208.109.0.10', 'zoltan@pfane.org', '2020-11-26 02:02:00', 'login', 'Supplier', NULL, 1),
(699, NULL, NULL, NULL, '208.109.0.10', '', '2020-11-26 02:03:00', 'logout', 'Supplier', NULL, 1),
(700, 1, '236', 1, '185.93.230.10', 'zoltan@pfane.org', '2020-11-26 15:09:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(701, 0, '0', 0, '185.93.230.10', 'zoltan@pfane.org', '2020-12-07 03:49:00', 'login', 'Supplier', NULL, 1),
(702, 0, '0', 0, '185.93.230.10', 'zoltan@pfane.org', '2020-12-08 01:19:00', 'login', 'Supplier', NULL, 1),
(703, 0, '0', 0, '66.248.202.10', 'zoltan@pfane.org', '2020-12-08 11:02:00', 'login', 'Supplier', NULL, 1),
(704, 1, '274', 1, '185.93.230.10', 'zoltan@pfane.org', '2020-12-08 12:07:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(705, 0, '0', 0, '185.93.230.10', 'andre.nita@rematinvest.ro', '2021-02-16 06:48:00', 'login', 'Supplier', NULL, 1),
(706, 0, '0', 0, '185.93.230.10', 'j.skoberne@aurenis.si', '2021-02-18 11:45:00', 'login', 'Supplier', NULL, 1),
(707, 0, '0', 0, '66.248.202.10', 'malikmasif@hotmail.com', '2021-02-18 12:23:00', 'login', 'Supplier', NULL, 1),
(708, 1, '272', 1, '185.93.230.10', 'j.skoberne@aurenis.si', '2021-02-19 01:05:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(709, 1, '301', 1, '185.93.230.10', 'steininger.balint@alcufer.hu', '2021-04-07 02:48:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(710, 0, '0', 0, '185.93.230.10', 'zoltan@pfane.org', '2021-04-07 02:50:00', 'login', 'Supplier', NULL, 1),
(711, 1, '348', 1, '185.93.230.10', 'zoltan@pfane.org', '2021-04-12 00:38:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(712, 1, '319', 1, '185.93.230.10', 'j.skoberne@aurenis.si', '2021-04-12 04:02:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(713, 1, '289', 1, '185.93.230.10', 'andre.nita@rematinvest.ro', '2021-04-12 07:30:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(714, 0, '0', 0, '185.93.230.10', 'lmg@pfane.com', '2021-08-29 10:28:00', 'login', 'Supplier', NULL, 1),
(715, 1, '343', 1, '185.93.230.10', 'lmg@pfane.com', '2021-08-31 14:31:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(716, 1, '357', 1, '185.93.230.10', 'lmg@pfane.com', '2021-08-31 15:04:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(717, 1, '365', 1, '185.93.230.10', 'lmg@pfane.com', '2021-09-23 11:52:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(718, 1, '376', 1, '66.248.203.10', 'zoltan@pfane.org', '2021-09-28 02:31:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(719, 1, '367', 1, '185.93.230.10', 'lmg@pfane.com', '2021-10-04 03:51:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(720, 0, '0', 0, '185.93.230.10', 'lmg@pfane.com', '2021-10-04 04:17:00', 'login', 'Supplier', NULL, 1),
(721, 0, '0', 0, '66.248.202.10', 'lmg@pfane.com', '2021-10-08 05:31:00', 'login', 'Supplier', NULL, 1),
(722, 0, '0', 0, '66.248.202.10', 'TripleRinc2019@outlook.com', '2021-10-11 11:39:00', 'login', 'Supplier', NULL, 1),
(723, 0, '0', 0, '66.248.202.10', 'lmg@pfane.com', '2021-10-11 11:40:00', 'login', 'Supplier', NULL, 1),
(724, 0, '0', 0, '185.93.230.10', 'zoltan@pfane.org', '2021-11-17 00:01:00', 'login', 'Supplier', NULL, 1),
(725, 0, '0', 0, '111.119.178.132', 'zoltan@pfane.org', '2021-11-25 02:15:00', 'login', 'Supplier', NULL, 1),
(726, 0, '0', 0, '111.119.178.132', 'zoltan@pfane.org', '2021-11-25 02:53:00', 'login', 'Supplier', NULL, 1),
(727, 0, '0', 0, '111.119.178.132', 'zoltan@pfane.org', '2021-11-25 07:11:00', 'login', 'Supplier', NULL, 1),
(728, NULL, NULL, NULL, '111.119.178.191', '', '2021-11-25 13:11:00', 'logout', 'Supplier', NULL, 1),
(729, 0, '0', 0, '111.119.178.191', 'zoltan@pfane.org', '2021-11-25 13:13:00', 'login', 'Supplier', NULL, 1),
(730, NULL, NULL, NULL, '111.119.178.191', '', '2021-11-25 13:13:00', 'logout', 'Supplier', NULL, 1),
(731, 0, '0', 0, '111.119.178.191', 'lmg@pfane.com', '2021-11-25 13:13:00', 'login', 'Supplier', NULL, 1),
(732, NULL, NULL, NULL, '111.119.178.191', '', '2021-11-25 13:13:00', 'logout', 'Supplier', NULL, 1),
(733, 0, '0', 0, '111.119.178.191', 'zoltan@pfane.org', '2021-11-25 13:14:00', 'login', 'Supplier', NULL, 1),
(734, 0, '0', 0, '109.166.138.201', 'zoltan@pfane.org', '2021-11-25 13:32:00', 'login', 'Supplier', NULL, 1),
(735, 0, '0', 0, '109.166.138.201', 'zoltan@pfane.org', '2021-11-25 14:10:00', 'login', 'Supplier', NULL, 1),
(736, 0, '0', 0, '109.166.136.205', 'lmg@pfane.com', '2021-12-08 21:30:00', 'login', 'Supplier', NULL, 1),
(737, 0, '0', 0, '111.119.178.177', 'zoltan@pfane.org', '2021-12-15 03:03:00', 'login', 'Supplier', NULL, 1),
(738, 0, '0', 0, '111.119.178.177', 'zoltan@pfane.org', '2021-12-15 03:05:00', 'login', 'Supplier', NULL, 1),
(739, 0, '0', 0, '109.166.138.20', 'jason@pfane.com', '2021-12-15 05:47:00', 'login', 'Supplier', NULL, 1),
(740, 0, '0', 0, '109.166.139.207', 'zoltan@pfane.org', '2022-01-10 04:28:00', 'login', 'Supplier', NULL, 1),
(741, NULL, NULL, NULL, '109.166.139.207', '', '2022-01-10 04:32:00', 'logout', 'Supplier', NULL, 1),
(742, 0, '0', 0, '109.166.139.207', 'mihai.elektroschrott@gmail.com', '2022-01-10 04:38:00', 'login', 'Supplier', NULL, 1),
(743, 0, '0', 0, '103.149.241.66', 'zoltan@pfane.org', '2022-01-10 04:38:00', 'login', 'Supplier', NULL, 1),
(744, 0, '0', 0, '109.166.137.242', 'zoltan@pfane.org', '2022-01-10 08:56:00', 'login', 'Supplier', NULL, 1),
(745, 0, '0', 0, '109.166.139.207', 'lmg@pfane.com', '2022-01-10 12:49:00', 'login', 'Supplier', NULL, 1),
(746, 0, '0', 0, '109.166.139.207', '', '2022-01-12 04:04:00', 'login', 'Supplier', NULL, 1),
(747, 0, '0', 0, '109.166.139.207', '', '2022-01-12 09:17:00', 'login', 'Supplier', NULL, 1),
(748, NULL, NULL, NULL, '109.166.139.207', '', '2022-01-12 09:17:00', 'logout', 'Supplier', NULL, 1),
(749, 0, '0', 0, '109.166.139.207', 'zoltan@pfane.org', '2022-01-12 09:47:00', 'login', 'Supplier', NULL, 1),
(750, 0, '0', 0, '109.166.139.207', 'info@quantumlifecycle.com', '2022-01-12 09:49:00', 'login', 'Supplier', NULL, 1),
(751, 0, '0', 0, '111.119.177.12', 'zoltan@pfane.org', '2022-01-12 10:17:00', 'login', 'Supplier', NULL, 1),
(752, 0, '0', 0, '103.255.6.255', 'zoltan@pfane.org', '2022-01-12 11:56:00', 'login', 'Supplier', NULL, 1),
(753, 0, '0', 0, '109.166.137.242', 'RoyChoiQuan212', '2022-01-12 13:04:00', 'login', 'Supplier', NULL, 1),
(754, 0, '0', 0, '94.140.9.103', 'RoyChoiQuan212', '2022-01-13 11:08:00', 'login', 'Supplier', NULL, 1),
(755, 0, '0', 0, '45.14.195.117', 'RoyChoiQuan212', '2022-01-13 13:56:00', 'login', 'Supplier', NULL, 1),
(756, NULL, NULL, NULL, '40.94.37.9', '', '2022-01-13 14:02:00', 'logout', 'Supplier', NULL, 1),
(757, NULL, NULL, NULL, '52.229.93.40', '', '2022-01-13 14:06:00', 'logout', 'Supplier', NULL, 1),
(758, 1, '389', 1, '45.14.195.117', 'dale@pfane.com', '2022-01-13 15:44:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(759, 0, '0', 0, '45.14.195.117', 'Dale', '2022-01-13 15:45:00', 'login', 'Supplier', NULL, 1),
(760, 0, '0', 0, '45.14.195.117', 'RoyChoiQuan212', '2022-01-13 16:52:00', 'login', 'Supplier', NULL, 1),
(761, 0, '0', 0, '37.19.196.199', 'alex.kisbenedek@loacker.hu', '2022-01-25 00:27:00', 'login', 'Supplier', NULL, 1),
(762, 0, '0', 0, '37.19.196.199', 'Dale', '2022-01-25 00:28:00', 'login', 'Supplier', NULL, 1),
(763, NULL, NULL, NULL, '109.166.138.124', '', '2022-01-26 11:07:00', 'logout', 'Supplier', NULL, 1),
(764, 0, '0', 0, '142.182.100.139', '', '2022-01-26 16:45:00', 'login', 'Supplier', NULL, 1),
(765, 0, '0', 0, '142.182.100.139', '', '2022-01-26 22:15:00', 'login', 'Supplier', NULL, 1),
(766, 0, '0', 0, '142.182.100.139', '', '2022-01-26 22:22:00', 'login', 'Supplier', NULL, 1),
(767, 0, '0', 0, '142.182.100.139', '', '2022-01-26 22:54:00', 'login', 'Supplier', NULL, 1),
(768, 0, '0', 0, '142.182.100.139', '', '2022-01-27 16:16:00', 'login', 'Supplier', NULL, 1),
(769, 0, '0', 0, '70.48.109.39', '', '2022-01-28 16:54:00', 'login', 'Supplier', NULL, 1),
(770, 0, '0', 0, '142.182.62.255', '', '2022-01-29 23:02:00', 'login', 'Supplier', NULL, 1),
(771, 0, '0', 0, '109.166.139.48', '', '2022-02-01 11:48:00', 'login', 'Supplier', NULL, 1),
(772, 0, '0', 0, '70.48.109.39', '', '2022-02-02 10:18:00', 'login', 'Supplier', NULL, 1),
(773, 0, '0', 0, '70.48.109.39', '', '2022-02-02 10:19:00', 'login', 'Supplier', NULL, 1),
(774, 0, '0', 0, '142.117.248.247', '', '2022-02-03 17:22:00', 'login', 'Supplier', NULL, 1),
(775, 0, '0', 0, '142.117.248.247', '', '2022-02-03 17:24:00', 'login', 'Supplier', NULL, 1),
(776, 0, '0', 0, '142.117.248.247', '', '2022-02-03 17:25:00', 'login', 'Supplier', NULL, 1),
(777, 0, '0', 0, '142.117.248.247', '', '2022-02-03 17:26:00', 'login', 'Supplier', NULL, 1),
(778, 0, '0', 0, '109.166.139.54', 'RoyChoiQuan212', '2022-02-04 01:18:00', 'login', 'Supplier', NULL, 1),
(779, 0, '0', 0, '109.166.139.54', '', '2022-02-04 01:38:00', 'login', 'Supplier', NULL, 1),
(780, NULL, NULL, NULL, '109.166.139.54', '', '2022-02-04 01:42:00', 'logout', 'Supplier', NULL, 1),
(781, 0, '0', 0, '70.48.109.39', '', '2022-02-07 12:40:00', 'login', 'Supplier', NULL, 1),
(782, 0, '0', 0, '109.166.137.222', 'RoyChoiQuan212', '2022-02-07 13:29:00', 'login', 'Supplier', NULL, 1),
(783, 0, '0', 0, '70.48.109.39', '', '2022-02-07 14:12:00', 'login', 'Supplier', NULL, 1),
(784, 0, '0', 0, '70.48.109.39', '', '2022-02-11 08:12:00', 'login', 'Supplier', NULL, 1),
(785, 0, '0', 0, '109.166.138.198', 'RoyChoiQuan212', '2022-02-11 11:40:00', 'login', 'Supplier', NULL, 1),
(786, 0, '0', 0, '109.166.136.91', 'Dale', '2022-02-15 06:02:00', 'login', 'Supplier', NULL, 1),
(787, 0, '0', 0, '109.166.136.91', 'Dale', '2022-02-15 06:27:00', 'login', 'Supplier', NULL, 1),
(788, 0, '0', 0, '103.255.6.79', '', '2022-02-15 06:38:00', 'login', 'Supplier', NULL, 1),
(789, 0, '0', 0, '187.247.253.166', '', '2022-02-17 19:03:00', 'login', 'Supplier', NULL, 1),
(790, 0, '0', 0, '142.117.238.153', '', '2022-02-17 19:03:00', 'login', 'Supplier', NULL, 1),
(791, 0, '0', 0, '109.166.138.156', '', '2022-02-18 01:06:00', 'login', 'Supplier', NULL, 1),
(792, 0, '0', 0, '109.166.139.164', 'SuntechRec', '2022-02-18 01:20:00', 'login', 'Supplier', NULL, 1),
(793, 0, '0', 0, '111.119.177.18', 'SuntechRec', '2022-02-18 01:53:00', 'login', 'Supplier', NULL, 1),
(794, 0, '0', 0, '109.166.139.164', 'SuntechRec', '2022-02-18 03:16:00', 'login', 'Supplier', NULL, 1),
(795, 0, '0', 0, '103.255.6.64', 'z.chomac@elemental.biz', '2022-02-25 00:48:00', 'login', 'Supplier', NULL, 1),
(796, 0, '0', 0, '111.119.177.31', 'z.chomac@elemental.biz', '2022-02-25 12:23:00', 'login', 'Supplier', NULL, 1),
(797, 0, '0', 0, '109.166.136.188', 'euroscrap33@gmail.com', '2022-03-01 02:56:00', 'login', 'Supplier', NULL, 1),
(798, 0, '0', 0, '70.30.32.146', 'SuntechRec', '2022-03-10 09:16:00', 'login', 'Supplier', NULL, 1),
(799, 0, '0', 0, '111.119.178.151', 'z.chomac@elemental.biz', '2022-03-10 11:36:00', 'login', 'Supplier', NULL, 1),
(800, 0, '0', 0, '70.81.94.98', '', '2022-03-11 14:46:00', 'login', 'Supplier', NULL, 1),
(801, 0, '0', 0, '70.81.94.98', '', '2022-03-11 14:47:00', 'login', 'Supplier', NULL, 1),
(802, 0, '0', 0, '70.81.94.98', '', '2022-03-11 14:47:00', 'login', 'Supplier', NULL, 1),
(803, 0, '0', 0, '70.81.94.98', '', '2022-03-16 07:46:00', 'login', 'Supplier', NULL, 1),
(804, 0, '0', 0, '109.166.137.195', 'Jeff B', '2022-03-17 03:45:00', 'login', 'Supplier', NULL, 1),
(805, 0, '0', 0, '67.69.69.49', 'SuntechRec', '2022-04-08 08:36:00', 'login', 'Supplier', NULL, 1),
(806, 0, '0', 0, '201.175.205.243', 'SuntechRec', '2022-04-08 11:39:00', 'login', 'Supplier', NULL, 1),
(807, 0, '0', 0, '24.114.98.202', 'SuntechRec', '2022-04-08 11:48:00', 'login', 'Supplier', NULL, 1),
(808, 0, '0', 0, '24.114.98.202', 'SuntechRec', '2022-04-08 11:48:00', 'login', 'Supplier', NULL, 1),
(809, 0, '0', 0, '187.247.253.166', 'Suntechrec', '2022-04-11 18:04:00', 'login', 'Supplier', NULL, 1),
(810, 0, '0', 0, '187.247.253.166', '', '2022-04-11 18:07:00', 'login', 'Supplier', NULL, 1),
(811, 0, '0', 0, '187.247.253.166', 'Suntechrec', '2022-04-12 15:37:00', 'login', 'Supplier', NULL, 1),
(812, 0, '0', 0, '70.48.157.81', 'Suntechrec', '2022-04-25 14:24:00', 'login', 'Supplier', NULL, 1),
(813, 0, '0', 0, '109.166.137.133', 'Dale', '2022-06-26 15:01:00', 'login', 'Supplier', NULL, 1),
(814, 0, '0', 0, '109.166.137.133', '', '2022-06-26 18:04:00', 'login', 'Supplier', NULL, 1),
(815, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-07-11 09:27:00', 'login', 'Supplier', NULL, 1),
(816, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-07-11 10:45:00', 'login', 'Supplier', NULL, 1),
(817, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-07-12 16:31:00', 'login', 'Supplier', NULL, 1),
(818, 0, '0', 0, '87.249.138.219', 'TCeltViewPass', '2022-07-14 07:16:00', 'login', 'Supplier', NULL, 1),
(819, 0, '0', 0, '109.166.136.74', 'TCeltViewPass', '2022-07-14 16:51:00', 'login', 'Supplier', NULL, 1),
(820, 0, '0', 0, '87.249.138.219', 'TCeltViewPass', '2022-07-14 17:07:00', 'login', 'Supplier', NULL, 1),
(821, 0, '0', 0, '111.119.178.134', 'TCeltViewPass', '2022-07-15 00:25:00', 'login', 'Supplier', NULL, 1),
(822, 0, '0', 0, '109.166.137.150', '', '2022-07-20 06:55:00', 'login', 'Supplier', NULL, 1),
(823, 0, '0', 0, '86.121.127.46', '', '2022-07-21 03:39:00', 'login', 'Supplier', NULL, 1),
(824, 0, '0', 0, '104.165.250.128', 'TCeltViewPass', '2022-07-22 07:33:00', 'login', 'Supplier', NULL, 1),
(825, 0, '0', 0, '103.255.6.82', 'j.skoberne@aurenis.si', '2022-07-22 08:17:00', 'login', 'Supplier', NULL, 1),
(826, 0, '0', 0, '109.166.137.118', 'RoyChoiQuan212', '2022-07-22 09:23:00', 'login', 'Supplier', NULL, 1),
(827, 0, '0', 0, '67.71.178.187', 'RoyChoiQuan212', '2022-07-24 15:40:00', 'login', 'Supplier', NULL, 1),
(828, NULL, NULL, NULL, '67.71.178.187', '', '2022-07-24 15:44:00', 'logout', 'Supplier', NULL, 1),
(829, 0, '0', 0, '70.27.107.110', 'RoyChoiQuan212', '2022-07-25 09:51:00', 'login', 'Supplier', NULL, 1),
(830, 0, '0', 0, '109.166.138.175', 'RoyChoiQuan212', '2022-07-26 08:53:00', 'login', 'Supplier', NULL, 1),
(831, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-07-26 12:22:00', 'login', 'Supplier', NULL, 1),
(832, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-07-27 15:19:00', 'login', 'Supplier', NULL, 1),
(833, 0, '0', 0, '109.166.138.130', '', '2022-09-07 05:37:00', 'login', 'Supplier', NULL, 1),
(834, 0, '0', 0, '109.166.138.130', '', '2022-09-07 05:53:00', 'login', 'Supplier', NULL, 1),
(835, 0, '0', 0, '111.119.178.158', '', '2022-09-07 05:58:00', 'login', 'Supplier', NULL, 1),
(836, 0, '0', 0, '111.119.177.52', '', '2022-09-13 03:11:00', 'login', 'Supplier', NULL, 1),
(837, 0, '0', 0, '109.166.139.186', '', '2022-09-13 03:36:00', 'login', 'Supplier', NULL, 1),
(838, 0, '0', 0, '109.166.139.186', 'andre.nita@rematinvest.ro', '2022-09-13 03:37:00', 'login', 'Supplier', NULL, 1),
(839, 0, '0', 0, '109.166.139.186', '', '2022-09-13 03:37:00', 'login', 'Supplier', NULL, 1),
(840, 0, '0', 0, '111.119.177.52', '', '2022-09-13 06:24:00', 'login', 'Supplier', NULL, 1),
(841, 0, '0', 0, '109.166.136.154', '', '2022-09-23 07:05:00', 'login', 'Supplier', NULL, 1),
(842, 0, '0', 0, '92.87.175.17', '', '2022-09-23 07:06:00', 'login', 'Supplier', NULL, 1),
(843, 0, '0', 0, '82.76.79.132', '', '2022-09-23 07:06:00', 'login', 'Supplier', NULL, 1),
(844, 0, '0', 0, '109.166.136.50', 'ShawnEMcom8^g&', '2022-10-03 11:35:00', 'login', 'Supplier', NULL, 1),
(845, NULL, NULL, NULL, '109.166.136.50', '', '2022-10-03 11:37:00', 'logout', 'Supplier', NULL, 1),
(846, 0, '0', 0, '109.166.139.182', 'GalaxyE8G6jK&e', '2022-10-05 05:17:00', 'login', 'Supplier', NULL, 1),
(847, 0, '0', 0, '111.119.178.188', '', '2022-10-05 05:20:00', 'login', 'Supplier', NULL, 1),
(848, 0, '0', 0, '109.166.139.182', 'GalaxyE8G6jK&e', '2022-10-05 06:37:00', 'login', 'Supplier', NULL, 1),
(849, 0, '0', 0, '111.119.178.188', 'GalaxyE8G6jK&e', '2022-10-05 06:45:00', 'login', 'Supplier', NULL, 1),
(850, 0, '0', 0, '39.50.77.158', 'GalaxyE8G6jK&e', '2022-10-05 07:47:00', 'login', 'Supplier', NULL, 1),
(851, 0, '0', 0, '109.166.139.182', 'GalaxyE8G6jK&e', '2022-10-05 08:50:00', 'login', 'Supplier', NULL, 1),
(852, 0, '0', 0, '109.166.139.182', 'GalaxyE8G6jK&e', '2022-10-05 11:24:00', 'login', 'Supplier', NULL, 1),
(853, 0, '0', 0, '111.119.178.188', 'GalaxyE8G6jK&e', '2022-10-05 11:34:00', 'login', 'Supplier', NULL, 1),
(854, 0, '0', 0, '109.166.139.182', 'GalaxyE8G6jK&e', '2022-10-06 07:13:00', 'login', 'Supplier', NULL, 1),
(855, 0, '0', 0, '109.166.139.182', 'dale@pfane.com', '2022-10-10 09:37:00', 'login', 'Supplier', NULL, 1),
(856, 1, '449', 1, '109.166.136.137', 'dale@pfane.com', '2022-10-10 11:35:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(857, 0, '0', 0, '109.166.138.116', '', '2022-10-19 03:23:00', 'login', 'Supplier', NULL, 1),
(858, 0, '0', 0, '137.27.98.98', 'TCeltViewPass', '2022-11-02 15:42:00', 'login', 'Supplier', NULL, 1),
(859, 0, '0', 0, '103.255.6.73', '', '2022-11-11 01:12:00', 'login', 'Supplier', NULL, 1),
(860, 0, '0', 0, '103.255.6.73', '', '2022-11-11 01:13:00', 'login', 'Supplier', NULL, 1),
(861, NULL, NULL, NULL, '103.255.6.73', '', '2022-11-11 01:14:00', 'logout', 'Supplier', NULL, 1),
(862, NULL, NULL, NULL, '103.255.6.73', '', '2022-11-11 01:14:00', 'logout', 'Supplier', NULL, 1),
(863, 0, '0', 0, '104.229.161.191', 'taylor@ccnny.us', '2022-11-15 07:15:00', 'login', 'Supplier', NULL, 1),
(864, 0, '0', 0, '104.229.161.191', 'taylor@ccnny.us', '2022-11-15 07:41:00', 'login', 'Supplier', NULL, 1),
(865, 0, '0', 0, '104.229.161.191', 'taylor@ccnny.us', '2023-02-16 07:51:00', 'login', 'Supplier', NULL, 1),
(866, 0, '0', 0, '104.229.161.191', 'taylor@ccnny.us', '2023-02-16 08:06:00', 'login', 'Supplier', NULL, 1),
(867, 0, '0', 0, '198.16.74.43', 'ninoslav@ereciklaza.com', '2023-03-16 05:42:00', 'login', 'Viewpas', NULL, 1),
(868, 0, '0', 0, '109.166.138.137', 'ninoslav@ereciklaza.com', '2023-03-16 05:46:00', 'login', 'Viewpas', NULL, 1),
(869, 0, '0', 0, '87.174.204.137', 'ninoslav@ereciklaza.com', '2023-03-16 05:58:00', 'login', 'Viewpas', NULL, 1),
(870, 0, '0', 0, '87.174.204.137', 'ninoslav@ereciklaza.com', '2023-03-16 05:58:00', 'logout', 'Viewpas', NULL, 1),
(871, 0, '0', 0, '87.174.204.137', 'ninoslav@ereciklaza.com', '2023-03-16 05:58:00', 'login', 'Viewpas', NULL, 1),
(872, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-16 06:15:00', 'login', 'Viewpas', NULL, 1),
(873, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-16 07:37:00', 'login', 'Viewpas', NULL, 1),
(874, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-16 07:37:00', 'logout', 'Viewpas', NULL, 1),
(875, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-16 07:37:00', 'login', 'Viewpas', NULL, 1),
(876, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-17 04:50:00', 'login', 'Viewpas', NULL, 1),
(877, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-17 05:01:00', 'login', 'Viewpas', NULL, 1),
(878, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-17 05:08:00', 'login', 'Viewpas', NULL, 1),
(879, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-17 06:05:00', 'login', 'Viewpas', NULL, 1),
(880, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-17 06:05:00', 'login', 'Viewpas', NULL, 1),
(881, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-22 05:08:00', 'login', 'Viewpas', NULL, 1),
(882, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-22 05:08:00', 'login', 'Viewpas', NULL, 1),
(883, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-22 06:09:00', 'login', 'Viewpas', NULL, 1),
(884, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-22 06:09:00', 'login', 'Viewpas', NULL, 1),
(885, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-03-23 03:27:00', 'login', 'Viewpas', NULL, 1),
(886, 0, '0', 0, '37.220.78.18', 'ninoslav@ereciklaza.com', '2023-03-28 04:04:00', 'login', 'Viewpas', NULL, 1),
(887, 0, '0', 0, '109.245.36.205', 'ninoslav@ereciklaza.com', '2023-04-12 05:25:00', 'login', 'Viewpas', NULL, 1),
(888, 0, '0', 0, '37.220.78.18', 'ninoslav@ereciklaza.com', '2023-05-25 05:46:00', 'login', 'Viewpas', NULL, 1),
(889, 0, '0', 0, '109.245.32.20', 'ninoslav@ereciklaza.com', '2023-06-29 04:13:00', 'login', 'Viewpas', NULL, 1),
(890, 0, '0', 0, '109.245.35.235', 'ninoslav@ereciklaza.com', '2023-08-04 03:59:00', 'login', 'Viewpas', NULL, 1),
(891, 0, '0', 0, '109.245.35.235', 'ninoslav@ereciklaza.com', '2023-08-04 04:02:00', 'login', 'Viewpas', NULL, 1),
(892, 0, '0', 0, '87.116.165.125', 'ninoslav@ereciklaza.com', '2023-08-29 15:06:00', 'login', 'Viewpas', NULL, 1),
(893, 0, '0', 0, '109.245.225.73', 'ninoslav@ereciklaza.com', '2023-08-30 04:58:00', 'login', 'Viewpas', NULL, 1),
(894, 0, '0', 0, '109.245.225.163', 'ninoslav@ereciklaza.com', '2023-08-31 04:37:00', 'login', 'Viewpas', NULL, 1),
(895, 0, '0', 0, '82.76.16.245', '', '2023-10-05 05:14:00', 'login', 'Supplier', NULL, 1),
(896, 0, '0', 0, '82.76.16.245', 'info@hulladekotkezelunk.hu', '2023-11-06 08:41:00', 'login', 'Supplier', NULL, 1),
(897, 0, '0', 0, '37.220.78.18', 'Igor Petrovic', '2023-11-06 08:49:00', 'login', 'Supplier', NULL, 1),
(898, 0, '0', 0, '37.220.78.18', 'Igor Petrovic', '2023-11-06 09:01:00', 'login', 'Supplier', NULL, 1),
(899, NULL, NULL, NULL, '37.220.78.18', '', '2023-11-06 09:02:00', 'logout', 'Supplier', NULL, 1),
(900, 0, '0', 0, '37.220.78.18', 'Igor Petrovic', '2023-11-06 09:03:00', 'login', 'Supplier', NULL, 1),
(901, 0, '0', 0, '37.220.78.18', 'Igor Petrovic', '2023-11-06 09:14:00', 'login', 'Supplier', NULL, 1),
(902, 0, '0', 0, '37.220.78.18', 'Igor Petrovic', '2023-11-08 03:43:00', 'login', 'Supplier', NULL, 1),
(903, 0, '0', 0, '37.220.78.18', 'Janko.Jakovljevic', '2023-11-21 07:16:00', 'login', 'Supplier', NULL, 1),
(904, NULL, NULL, NULL, '37.220.78.18', '', '2023-11-21 07:25:00', 'logout', 'Supplier', NULL, 1),
(905, 0, '0', 0, '37.220.78.18', 'Janko.jakovljevic', '2023-11-21 07:26:00', 'login', 'Supplier', NULL, 1),
(906, 0, '0', 0, '37.220.78.18', 'janko.jakovljevic', '2023-11-21 08:44:00', 'login', 'Supplier', NULL, 1),
(907, 0, '0', 0, '82.76.16.245', 'info@hulladekotkezelunk.hu', '2023-12-04 04:50:00', 'login', 'Supplier', NULL, 1),
(908, 0, '0', 0, '54.36.149.67', '', '2024-11-21 22:19:00', 'login', 'Supplier', NULL, 1),
(909, 0, '0', 0, '54.36.149.22', '', '2025-01-12 05:54:00', 'login', 'Supplier', NULL, 1),
(910, 0, '0', 0, '54.36.148.71', '', '2025-02-10 19:31:00', 'login', 'Supplier', NULL, 1),
(911, 0, '0', 0, '54.36.148.178', '', '2025-03-12 06:07:00', 'login', 'Supplier', NULL, 1),
(912, 0, '0', 0, '54.36.148.227', '', '2025-04-12 22:18:00', 'login', 'Supplier', NULL, 1),
(913, 0, '0', 0, '54.36.148.138', '', '2025-05-16 13:30:00', 'login', 'Supplier', NULL, 1),
(914, 0, '0', 0, '54.36.148.104', '', '2025-07-10 09:55:00', 'login', 'Supplier', NULL, 1),
(915, 0, '0', 0, '54.36.149.49', '', '2025-07-26 18:34:00', 'login', 'Supplier', NULL, 1),
(916, 0, '0', 0, '54.36.149.89', '', '2025-08-13 20:59:00', 'login', 'Supplier', NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `userlog27sep`
--

CREATE TABLE `userlog27sep` (
  `id` int(11) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `username` varchar(255) DEFAULT NULL,
  `sysdatetime` datetime NOT NULL,
  `logtype` varchar(255) NOT NULL,
  `usertype` varchar(100) NOT NULL,
  `contractaccept` varchar(500) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `userlog27sep`
--

INSERT INTO `userlog27sep` (`id`, `ip`, `username`, `sysdatetime`, `logtype`, `usertype`, `contractaccept`, `status`) VALUES
(1, '109.102.102.56', 'cristian.talos@ave.cz', '2018-07-17 14:28:00', 'login', 'Supplier', '', 1),
(2, '109.102.102.56', 'cristian.talos@ave.cz', '2018-07-17 14:28:00', 'logout', 'Supplier', '', 1),
(3, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 03:35:00', 'login', 'Supplier', '', 1),
(4, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 05:36:00', 'login', 'Supplier', '', 1),
(5, '213.233.84.85', 'Razvanflorin19@gmail.com', '2018-07-19 10:01:00', 'login', 'Supplier', '', 1),
(6, '109.166.139.133', 'adrian@pfane.com', '2018-07-20 02:24:00', 'login', 'Supplier', '', 1),
(7, '109.102.102.56', 'danielstrajan@yahoo.com', '2018-07-20 21:56:00', 'login', 'Supplier', '', 1),
(8, '109.102.202.245', 'danielstrajan@yahoo.com', '2018-07-21 01:08:00', 'login', 'Supplier', '', 1),
(9, '109.102.202.245', 'danielstrajan@yahoo.com', '2018-07-21 01:13:00', 'login', 'Supplier', '', 1),
(10, '103.255.6.74', 'adrian@pfane.com', '2018-07-22 14:13:00', 'login', 'Supplier', '', 1),
(11, '203.82.63.8', 'adrian@pfane.com', '2018-07-23 00:35:00', 'login', 'Supplier', '', 1),
(12, '103.255.6.87', 'adrian@pfane.com', '2018-07-23 13:41:00', 'login', 'Supplier', '', 1),
(13, '109.102.102.56', 'adrian@pfane.com', '2018-07-23 14:43:00', 'login', 'Supplier', '', 1),
(14, '109.102.102.56', 'adrian@pfane.com', '2018-07-23 14:47:00', 'login', 'Supplier', '', 1),
(15, '109.166.137.77', 'adrian@pfane.com', '2018-07-25 03:07:00', 'login', 'Supplier', '', 1),
(16, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-07-25 10:56:00', 'login', 'Supplier', '', 1),
(17, '109.166.138.233', 'adrian@pfane.com', '2018-07-27 09:56:00', 'login', 'Supplier', '', 1),
(18, '109.166.134.138', 'Razvanflorin19@gmail.com', '2018-08-01 01:52:00', 'login', 'Supplier', '', 1),
(19, '203.82.63.206', 'adrian@pfane.com', '2018-08-01 03:46:00', 'login', 'Supplier', '', 1),
(20, '94.52.213.20', 'cristian.talos@ave.cz', '2018-08-02 10:56:00', 'login', 'Supplier', '', 1),
(21, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-03 01:21:00', 'login', 'Supplier', '', 1),
(22, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-06 02:22:00', 'login', 'Supplier', '', 1),
(23, '109.166.139.34', 'cristian.talos@ave.cz', '2018-08-06 02:37:00', 'login', 'Supplier', '', 1),
(24, '109.166.137.250', 'cristian.talos@ave.cz', '2018-08-06 03:33:00', 'login', 'Supplier', '', 1),
(25, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-06 04:21:00', 'login', 'Supplier', '', 1),
(26, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-06 08:13:00', 'login', 'Supplier', 'PRESSED ACCEPT IN CONTRACT', 1),
(27, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-06 16:29:00', 'login', 'Supplier', '', 1),
(28, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-07 14:54:00', 'login', 'Supplier', '', 1),
(29, '103.255.6.89', 'adrian@pfane.com', '2018-08-14 07:21:00', 'login', 'Supplier', '', 1),
(30, '84.232.240.238', 'cristian.talos@ave.cz', '2018-08-14 07:47:00', 'login', 'Supplier', '', 1),
(31, '213.233.104.231', 'Razvanflorin19@gmail.com', '2018-08-14 08:04:00', 'login', 'Supplier', '', 1),
(32, '92.81.18.217', 'Razvanflorin19@gmail.com', '2018-08-14 12:27:00', 'login', 'Supplier', '', 1),
(33, '92.81.18.217', 'Razvanflorin19@gmail.com', '2018-08-14 12:30:00', 'login', 'Supplier', '', 1),
(34, '103.255.7.48', 'adrian@pfane.com', '2018-08-14 13:13:00', 'login', 'Supplier', '', 1),
(35, '109.102.102.56', 'adrian@pfane.com', '2018-08-14 13:15:00', 'login', 'Supplier', '', 1),
(36, '109.102.102.56', 'adrian@pfane.com', '2018-08-14 14:18:00', 'login', 'Supplier', '', 1),
(37, '103.255.6.4', 'adrian@pfane.com', '2018-08-15 12:09:00', 'login', 'Supplier', '', 1),
(38, '109.102.102.56', 'adrian@pfane.com', '2018-08-15 15:12:00', 'login', 'Supplier', '', 1),
(39, '103.255.6.103', 'adrian@pfane.com', '2018-08-16 01:32:00', 'login', 'Supplier', '', 1),
(40, '109.166.136.225', 'razvanflorin19@gmail.com', '2018-08-16 07:20:00', 'login', 'Supplier', '', 1),
(41, '46.97.152.52', 'Razvanflorin19@gmail.com', '2018-08-16 14:13:00', 'login', 'Supplier', '', 1),
(42, '213.233.103.180', 'Razvanflorin19@gmail.com', '2018-08-20 13:40:00', 'login', 'Supplier', '', 1),
(43, '109.166.136.225', 'adrian@pfane.com', '2018-08-21 02:08:00', 'login', 'Supplier', '', 1),
(44, '119.160.71.134', 'adrian@pfane.com', '2018-08-21 02:08:00', 'login', 'Supplier', '', 1),
(45, '109.166.136.225', 'adrian@pfane.com', '2018-08-21 04:03:00', 'logout', 'Supplier', '', 1),
(46, '109.166.136.225', 'cristian.talos@ave.cz', '2018-08-21 04:03:00', 'login', 'Supplier', '', 1),
(47, '109.166.136.225', 'cristian.talos@ave.cz', '2018-08-21 06:58:00', 'logout', 'Supplier', '', 1),
(48, '109.166.136.225', 'adrian@pfane.com', '2018-08-21 06:58:00', 'login', 'Supplier', '', 1),
(49, '109.166.138.71', 'cristian.talos@ave.cz', '2018-08-23 01:26:00', 'login', 'Supplier', '', 1),
(50, '82.208.158.10', 'cristian.talos@ave.cz', '2018-08-24 02:22:00', 'login', 'Supplier', '', 1),
(51, '213.233.104.144', 'Razvanflorin19@gmail.com', '2018-08-24 06:39:00', 'login', 'Supplier', '', 1),
(52, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-08-29 18:22:00', 'login', 'Supplier', '', 1),
(53, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-08-30 06:54:00', 'login', 'Supplier', '', 1),
(54, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 12:56:00', 'login', 'Supplier', '', 1),
(55, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 13:24:00', 'login', 'Supplier', '', 1),
(56, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-11 13:25:00', 'login', 'Supplier', '', 1),
(57, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-12 02:44:00', 'login', 'Supplier', '', 1),
(58, '109.166.138.167', 'cristian.talos@ave.cz', '2018-09-12 06:23:00', 'login', 'Supplier', '', 1),
(59, '213.233.104.51', 'Razvanflorin19@gmail.com', '2018-09-12 18:09:00', 'login', 'Supplier', '', 1),
(60, '193.34.109.2', 'Razvanflorin19@gmail.com', '2018-09-13 08:29:00', 'login', 'Supplier', '', 1),
(61, '193.34.109.2', 'razvanflorin19@gmail.com', '2018-09-15 02:48:00', 'login', 'Supplier', '', 1),
(62, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 03:14:00', 'login', 'Supplier', '', 1),
(63, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 04:08:00', 'login', 'Supplier', '', 1),
(64, '82.208.158.10', 'cristian.talos@ave.cz', '2018-09-27 04:09:00', 'login', 'Supplier', '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` int(11) NOT NULL,
  `email` varchar(255) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) DEFAULT NULL,
  `IsAdmin` int(11) NOT NULL,
  `IsResAdmin` int(11) NOT NULL DEFAULT 0,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `weightid` int(11) NOT NULL DEFAULT 1,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `hedging_username` varchar(255) DEFAULT NULL,
  `hedging_password` varchar(255) DEFAULT NULL,
  `isdelete` int(11) NOT NULL DEFAULT 0,
  `google_auth_code` varchar(255) NOT NULL,
  `accountingemail` varchar(500) DEFAULT NULL,
  `shippingemail` varchar(500) DEFAULT NULL,
  `packageid` int(11) NOT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `email`, `userid`, `username`, `password`, `IsAdmin`, `IsResAdmin`, `name`, `company`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `currencyid`, `weightid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `hedging_username`, `hedging_password`, `isdelete`, `google_auth_code`, `accountingemail`, `shippingemail`, `packageid`, `status`) VALUES
(1, '', 1, 'Qw@#$2*d', 'aDm4i19Hn*#u^$9', 1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', 0, 'WR7D2SBR5XX4FANN', NULL, NULL, 4, 1),
(2, '', 1, 'demo', 'demo123', 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', 1, '', NULL, NULL, 4, 1),
(3, '', 1, 'malik', '123456', 2, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', 1, '', NULL, NULL, 4, 1),
(4, '', 1, 'EvotusAdmin', '123456', 2, 0, 'Evotus', NULL, 'EPA3342', '', 'Evotus', '12-56537', 'Ayub Park', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 1, '00022222', '7475564565', 'Jim Bannit', '7475564586', '7475564586', 'bannit@pfane.com', 'bannit@pfane.com', 'my.bannit.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', '4_camera.png', NULL, 'asd', 'asd', 1, '', NULL, NULL, 4, 1),
(5, '', 1, 'asif', '12345678', 2, 0, 'asif', NULL, '', '', '', '', '', '', NULL, '', NULL, '', '', 3, 1, '', '', '', '', '', '', '', '', '', NULL, NULL, NULL, NULL, '', NULL, NULL, '', '', 1, '', NULL, NULL, 4, 1),
(6, '', 1, 'malikasif', '12345678', 2, 0, 'Malik Asif', NULL, 'EPA3342', '', 'Smartwebbers', '12-56537', 'Ayub Park', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif22@hotmail.com', 'malikmasif22@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', '6_logo.jpg', NULL, 'asd234', 'asd123', 1, '76XU5J3T2THCVNL6', NULL, NULL, 4, 1),
(7, '', 1, 'pfane ', '123pfane123', 2, 0, 'Pfane', NULL, 'SJ58', '', 'Pfane', 'NY01305', '606 County Rte 11', '', NULL, 'United States', NULL, 'Gouverneur', 'NY', 3, 1, '7753414838', '0', 'Dale Marion', '+40766903531', '+40766903531', 'dale@pfane.com', 'main@pfane.com', 'www.pfane.com', 'A', NULL, NULL, NULL, NULL, '1', '7_Screenshot 2022-09-16 142725.png', NULL, 'demo', 'demo', 0, '', 'cell@pfane.com', 'cell@pfane.com', 4, 1),
(8, '', 1, 'masif', '12345678', 2, 0, 'Malik Asif', NULL, 'EPA3341', '', 'Smartwebbers', '12-56537', '2440 Oak Side Dr.', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'smartwebbers@gmail.com', 'malikmasif@hotmail.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', '8_VegasCosmeticsLogo2.jpg', NULL, 'asd', 'asd123', 1, 'X5RT76VDIFV4S7VG', NULL, NULL, 4, 1),
(9, '', 1, 'EvotusAdmins', '12345678', 2, 0, 'Evotus', NULL, 'EPA3342', '', 'Evotus', '12-56537', '2440 Oak Side Dr.', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 1, '7475564585', '7475564565', 'Jim Bannit', '7475564586', '7475564586', 'bannit@pfane.com', 'bannit@pfane.com', 'my.bannit.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, 'demo', 'demo', 1, '', NULL, NULL, 4, 1),
(10, '', 1, 'EvotusAdmin1', 'nomorefree', 2, 0, 'Evotus', NULL, '444444', '', 'Derek ', '', '5905 Triangle Drive', '', NULL, 'USA', NULL, 'Raleigh', 'North Carolina', 3, 2, '9195346298', '', 'Derek Ramsell', '919-534-6298', '919-534-6298', 'd.ramsell@evotusinc.com', 'TheFuture@Evotusinc.com', 'www.evotusinc.com', '', NULL, NULL, NULL, NULL, '', '10_logo.jpg', NULL, 'EvotusAdmin', 'EvotusAdmin', 1, '', NULL, NULL, 4, 1),
(11, '', 1, 'PfaneSci', 'PfaneSci20191', 2, 0, 'Pfane Scientific SRL', NULL, '58', '', 'Pfane1', 'RO36023056', 'DN19b - #277, ', '', NULL, 'Romania', NULL, 'Zauan', 'Salaj', 2, 1, '0766903531', '0766903531', 'Dale Marion', '0766903531', '0766903531', 'dale@pfane.com', 'dale@pfane.com', 'pfane.com', 'A', NULL, NULL, NULL, NULL, '1', '11_logo70.png', NULL, 'demo', 'demo', 0, '3XNUBPXLMZSG624K', 'sanda@pfane.com', 'csaba@pfane.com', 4, 1),
(12, 'malikmasif@yahoo.com', 1, 'smart', '123456', 2, 1, 'Smart Recyclers', NULL, 'EPA3341', '', 'Smartwebbers', '083827', 'Ayub Park', '89554', NULL, 'United States', NULL, 'Las Vegas', 'Nevada', 3, 1, '03322527187', '7475564565', 'Asif', '03222342182', '7475564586', 'malikmasif@yahoo.com', 'malikmasif@yahoo.com', 'http://smartwebbers.com', 'ASD', NULL, NULL, NULL, NULL, 'ASD', NULL, NULL, 'smart', '123456', 1, 'NULL', NULL, NULL, 4, 1),
(14, 'malikmasif@hotmail.com', 1, 'EnviroOne', 'nomorefree124gdhsatvbrt3', 2, 0, 'Enviroserve', NULL, 'SEUAE8', '', 'Enviroserve', 'BUSLICENSE', 'Saih Shuaib 3, Site No. 30014', '', NULL, 'United Arab Emirates', NULL, 'Dubai Industrial City', 'Dubai', 7, 1, '+971 4 580 8264', '+971 4 885 2414', 'Dustin', '+971 50 453 7569', '+971 4 580 8264', 'dustin@enviroserve.ae', 'info@enviroserve.ae', 'www.enviroserve.org', 'A', NULL, NULL, NULL, NULL, '1', '14_Enviroserve Logo - Electronic Waste Recycling - EN and AR copy.png', NULL, 'none', 'none', 1, 'NULL', 'cell@pfane.com', 'dale@pfane.com', 4, 1),
(15, 'nkureshy@pfane.com', 1, 'PfaneEVS1', 'lkashdjd2y498702369kjsahdf987y2q345roih', 2, 0, 'Pfane Gouverneur, LLC.', NULL, 'NY#01305', '', 'q4posaihdfio', 'NY#01305', '606 County Rte. 11', '', NULL, 'United States', NULL, 'Gouverneur', 'New York', 3, 2, ' (775) 341 4838', '', 'NONE', '+1 (315) 869-2622', '+1 (315) 535 5002', 'sales@pfane.com', 'info@pfane.com', 'https://www.pfane.com', 'A', NULL, NULL, NULL, NULL, '1', '15_pfanescilogo-cut.png', NULL, 'hedgingdemo1pfane', 'prospecting233', 0, 'NULL', 'accounts@pfane.com', 'shipping@pfane.com', 5, 1),
(16, 'ninoslav@ereciklaza.com', 1, 'Erec101', 'ErecN1n2322', 2, 1, 'Nino', NULL, 'Not Applicable', '', 'Ereciklaza', 'NA', 'none', '', NULL, 'none', NULL, 'none', 'none', 8, 1, '00000000', '00000000', 'Nino', '00000000', '00000000', 'ninoslav@ereciklaza.com', 'ninoslav@ereciklaza.com', 'ereciklaza.com', 'A', NULL, NULL, NULL, NULL, '1', '16_Picture1.png', NULL, 'none', 'none', 0, 'NULL', 'ninoslav@ereciklaza.com', 'ninoslav@ereciklaza.com', 3, 1);

-- --------------------------------------------------------

--
-- Table structure for table `users9may19`
--

CREATE TABLE `users9may19` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `username` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `IsAdmin` int(11) DEFAULT NULL,
  `isdelete` int(11) NOT NULL DEFAULT 0,
  `currencyid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `companyname` varchar(255) NOT NULL,
  `phone` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `users9may19`
--

INSERT INTO `users9may19` (`id`, `userid`, `username`, `password`, `IsAdmin`, `isdelete`, `currencyid`, `name`, `companyname`, `phone`, `email`, `status`) VALUES
(1, 1, 'Qw@#$2*d', 'aDm4i19Hn*#u^$9', 1, 0, 1, '', '', '', '', 1),
(2, 1, 'demo', 'demo123', 0, 0, 1, '', '', '', '', 1),
(3, 1, 'malik', '123456', 2, 0, 3, '', '', '', '', 1),
(4, 1, 'EvotusAdmin', '123456', 2, 0, 3, 'Evotus', 'Evotus Co', '0002222244', 'info@evotus.com', 1);

-- --------------------------------------------------------

--
-- Table structure for table `usersnew`
--

CREATE TABLE `usersnew` (
  `id` int(11) NOT NULL,
  `username` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `IsAdmin` int(11) DEFAULT NULL,
  `IsQuoteAdmin` int(11) DEFAULT NULL,
  `IsRFQManager` int(11) DEFAULT NULL,
  `IsRFQAssistant` int(11) DEFAULT NULL,
  `IsOCManager` int(11) DEFAULT NULL,
  `IsOCAssistant` int(11) DEFAULT NULL,
  `IsPOManager` int(11) DEFAULT NULL,
  `IsPOAssistant` int(11) DEFAULT NULL,
  `IsPaymentsManager` int(11) DEFAULT NULL,
  `IsPaymentAssistant` int(11) DEFAULT NULL,
  `IsShipmentManager` int(11) DEFAULT NULL,
  `IsShipmentAssistant` int(11) DEFAULT NULL,
  `IsDocumentsManager` int(11) DEFAULT NULL,
  `IsDocumentsAssistant` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `usersnew`
--

INSERT INTO `usersnew` (`id`, `username`, `password`, `IsAdmin`, `IsQuoteAdmin`, `IsRFQManager`, `IsRFQAssistant`, `IsOCManager`, `IsOCAssistant`, `IsPOManager`, `IsPOAssistant`, `IsPaymentsManager`, `IsPaymentAssistant`, `IsShipmentManager`, `IsShipmentAssistant`, `IsDocumentsManager`, `IsDocumentsAssistant`, `status`) VALUES
(1, 'Qw@#$2*d', 'aDm4i19Hn*#u^$9', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `vehicletype`
--

CREATE TABLE `vehicletype` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `viewpasimage`
--

CREATE TABLE `viewpasimage` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `adminid` int(11) NOT NULL,
  `inventoryid` int(11) NOT NULL,
  `supplierid` int(11) NOT NULL,
  `agentid` int(11) NOT NULL,
  `image` varchar(255) NOT NULL,
  `dataset` varchar(255) NOT NULL,
  `totalprice` float(13,3) NOT NULL,
  `totaloffer` float(13,3) NOT NULL DEFAULT 0.000,
  `supid` int(11) NOT NULL DEFAULT 0,
  `listid` int(11) NOT NULL DEFAULT 0,
  `sysdate` date NOT NULL,
  `offeraccept` int(11) NOT NULL DEFAULT 0,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpasimage`
--

INSERT INTO `viewpasimage` (`id`, `userid`, `adminid`, `inventoryid`, `supplierid`, `agentid`, `image`, `dataset`, `totalprice`, `totaloffer`, `supid`, `listid`, `sysdate`, `offeraccept`, `status`) VALUES
(127, 1, 0, 0, 1, 0, '20190113112503_rsz_scrap-motherboards-1_mini.jpg', 'ICN4797712617434078908', 1.570, 0.000, 0, 0, '2019-01-13', 0, 1),
(128, 1, 0, 0, 1, 0, '20190113113922_5-lbs-PinnedPinless-AMD-Opteron-Intel-Xeon-CPU-Processors-Scrap-Gold-Recovery-291418537609.jpg', 'ICN5124169819646411186', 3.270, 0.000, 0, 0, '2019-01-13', 0, 1),
(129, 1, 0, 0, 1, 0, '20190113114511_proc.jpeg', 'ICN1352050014989540777', 13.820, 0.000, 0, 0, '2019-01-13', 0, 1),
(130, 1, 0, 0, 1, 0, '20190113114742_5-lbs-PinnedPinless-AMD-Opteron-Intel-Xeon-CPU-Processors-Scrap-Gold-Recovery-291418537609.jpg', 'ICN1352050014989540777', 10.960, 0.000, 0, 0, '2019-01-13', 0, 1),
(131, 1, 0, 0, 1, 0, '20190113114956_cellphone-mothers-board-scrap-500x500.jpg', 'ICN5124169819646411186', 2.660, 0.000, 0, 0, '2019-01-13', 0, 1),
(133, 1, 0, 0, 1, 0, '20190113122230_bracket.jpeg', 'ICN5262563530192074018', 0.060, 0.000, 0, 0, '2019-01-13', 0, 1),
(135, 1, 0, 0, 1, 0, '20190113123058_IMG-20190113-WA0000.jpg', 'ICN5124169819646411186', 3.440, 0.000, 0, 0, '2019-01-13', 0, 1),
(137, 1, 0, 0, 1, 0, '20190113124432_proc.jpeg', 'ICN1352050014989540777', 13.820, 0.000, 0, 0, '2019-01-13', 0, 1),
(139, 1, 0, 0, 1, 0, '20190113125432_IMG-20190113-WA0000.jpg', 'ICN1352050014989540777', 13.820, 0.000, 0, 0, '2019-01-13', 0, 1),
(140, 1, 0, 0, 1, 0, '20190113010055_quantity-pentium-pro-ceramic-cpu-scrap-500x500.jpg', 'ICN1352050014989540777', 3.120, 0.000, 0, 0, '2019-01-13', 0, 1),
(141, 1, 0, 0, 1, 0, '20190113012601_5-Lbs-5lbs-of-SCRAP-Hi-Yield-ComputerServer-Ram-Memory-for-Gold-Recovery-ONLY-371295735938-2.jpg', 'ICN9055675874563173188', 16.630, 0.000, 0, 0, '2019-01-13', 0, 1),
(142, 1, 0, 0, 1, 0, '20190113012838_5-Lbs-5lbs-of-SCRAP-Hi-Yield-ComputerServer-Ram-Memory-for-Gold-Recovery-ONLY-371295735938-2.jpg', 'ICN9055675874563173188', 16.630, 0.000, 0, 0, '2019-01-13', 0, 1),
(143, 1, 0, 0, 1, 0, '20190113013511_1ew.jpg', 'ICN6193062173998597390', 5.860, 0.000, 0, 0, '2019-01-13', 0, 1),
(144, 1, 0, 0, 1, 0, '20190113075312_imageram.jpg', 'ICN9055675874563173188', 20.510, 0.000, 0, 0, '2019-01-13', 0, 1),
(150, 1, 0, 0, 1, 0, '20190114063013_processor.jpeg', 'ICN1352050014989540777', 8.780, 0.000, 0, 0, '2019-01-14', 0, 1),
(154, 1, 0, 0, 1, 0, '20190114085831_this2.jpeg', 'ICN1374427601567308279', 1.470, 0.000, 0, 0, '2019-01-14', 0, 1),
(156, 1, 0, 0, 1, 0, '20190114090331_this3.jpeg', 'ICN9118051636822650169', 5.550, 0.000, 0, 0, '2019-01-14', 0, 1),
(157, 1, 0, 0, 1, 0, '20190114122426_quantity-pentium-pro-ceramic-cpu-scrap-500x500.jpg', 'ICN1352050014989540777', 13.800, 0.000, 0, 0, '2019-01-14', 0, 1),
(158, 1, 0, 0, 1, 0, '20190114123925_5-Lbs-5lbs-of-SCRAP-Hi-Yield-ComputerServer-Ram-Memory-for-Gold-Recovery-ONLY-371295735938-2.jpg', 'ICN9055675874563173188', 16.630, 0.000, 0, 0, '2019-01-14', 0, 1),
(161, 1, 0, 0, 1, 0, '20190114033343_processor.jpeg', 'ICN1352050014989540777', 8.780, 0.000, 0, 0, '2019-01-14', 0, 1),
(162, 1, 0, 0, 1, 0, '20190114034322_Sep01.jpg', 'ICN1352050014989540777', 18.150, 0.000, 0, 0, '2019-01-14', 0, 1),
(163, 1, 0, 0, 1, 0, '20190114043231_s-l1600.jpg', 'ICN9055675874563173188', 15.210, 0.000, 0, 0, '2019-01-14', 0, 1),
(164, 1, 0, 0, 1, 0, '20190114052028_cpu-processor-scrap-1476937105-2490480.jpeg', 'ICN1352050014989540777', 8.440, 0.000, 0, 0, '2019-01-14', 0, 1),
(165, 1, 1, 0, 0, 0, '20190114060327_P80801-144931.jpg', 'ICN4797712617434078908', 2.183, 0.000, 0, 0, '2019-01-14', 0, 1),
(166, 1, 1, 0, 0, 0, '20190114062810_49519659_2320439357989262_2724766603072765952_n.jpg', 'ICN1374427601567308279', 0.690, 0.000, 0, 0, '2019-01-14', 0, 1),
(167, 1, 0, 0, 1, 0, '20190114065349_49519659_2320439357989262_2724766603072765952_n.jpg', 'ICN5262563530192074018', 0.260, 0.000, 0, 0, '2019-01-14', 0, 1),
(168, 1, 0, 0, 1, 0, '20190115060810_49759125_1009795882540598_6244052012162351104_n.jpg', 'ICN9055675874563173188', 20.590, 0.000, 0, 0, '2019-01-15', 0, 1),
(176, 1, 0, 0, 1, 0, '20190116050254_5-Lbs-5lbs-of-SCRAP-Hi-Yield-ComputerServer-Ram-Memory-for-Gold-Recovery-ONLY-371295735938-2.jpg', 'ICN9055675874563173188', 16.630, 0.000, 0, 0, '2019-01-16', 0, 1),
(177, 1, 0, 0, 1, 0, '20190116052726_This.jpeg', 'ICN4797712617434078908', 2.340, 0.000, 0, 0, '2019-01-16', 0, 1),
(178, 1, 0, 0, 1, 0, '20190118110940_motherboard-scrap-(1).jpg', 'ICN4797712617434078908', 3.040, 0.000, 0, 0, '2019-01-18', 0, 1),
(179, 1, 0, 0, 1, 0, '20190118111411_5-lbs-PinnedPinless-AMD-Opteron-Intel-Xeon-CPU-Processors-Scrap-Gold-Recovery-291418537609.jpg', 'ICN1352050014989540777', 22.420, 0.000, 0, 0, '2019-01-18', 0, 1),
(180, 1, 0, 0, 1, 0, '20190118112339_proc.jpeg', 'ICN1352050014989540777', 27.780, 0.000, 0, 0, '2019-01-18', 0, 1),
(181, 1, 0, 0, 1, 0, '20190118112600_45a91e26-8cb8-4db7-b821-2128e8de33d7.jpg', 'ICN4797712617434078908', 2.310, 0.000, 0, 0, '2019-01-18', 0, 1),
(188, 1, 0, 0, 1, 0, '20190118061755_qwewq.jpg', 'ICN5262563530192074018', 0.380, 0.000, 0, 0, '2019-01-18', 0, 1),
(190, 1, 0, 0, 1, 0, '20190118085919_12238195912451.jpg', 'ICN4797712617434078908', 2.300, 0.000, 0, 0, '2019-01-18', 0, 1),
(192, 1, 0, 0, 1, 0, '20190118093838_121.jpg', 'ICN5262563530192074018', 0.320, 0.000, 0, 0, '2019-01-18', 0, 1),
(193, 1, 0, 0, 1, 0, '20190119050210_mother.jpg', 'ICN4797712617434078908', 2.300, 0.000, 0, 0, '2019-01-19', 0, 1),
(195, 1, 0, 0, 1, 0, '20190119050925_mother.jpg', 'ICN4797712617434078908', 4.640, 0.000, 0, 0, '2019-01-19', 0, 1),
(205, 1, 1, 0, 0, 0, '20190119022229_mother.jpg', 'ICN4797712617434078908', 1.410, 0.000, 0, 0, '2019-01-19', 0, 1),
(206, 1, 0, 0, 2, 0, '20190119071211_1.jpeg', 'ICN5262563530192074018', 0.000, 0.000, 0, 0, '2019-01-19', 0, 1),
(207, 1, 0, 0, 1, 0, '20190121091142_1.jpeg', 'ICN5262563530192074018', 0.160, 0.000, 0, 0, '2019-01-21', 0, 1),
(209, 1, 0, 0, 1, 0, '20190121091318_7.jpeg', 'ICN5262563530192074018', 0.270, 0.000, 0, 0, '2019-01-21', 0, 1),
(212, 1, 0, 0, 1, 0, '20190121091828_gy6.jpeg', 'ICN5262563530192074018', 0.190, 0.000, 0, 0, '2019-01-21', 0, 1),
(213, 1, 0, 0, 1, 0, '20190121100423_gtt.jpeg', 'ICN5262563530192074018', 0.190, 0.000, 0, 0, '2019-01-21', 0, 1),
(215, 1, 0, 0, 1, 0, '20190121105308_weeer4r4r.jpeg', 'ICN5262563530192074018', 0.220, 0.000, 0, 0, '2019-01-21', 0, 1),
(216, 1, 0, 0, 1, 0, '20190121011357_sdfs4.jpeg', 'ICN5262563530192074018', 0.270, 0.000, 0, 0, '2019-01-21', 0, 1),
(217, 1, 0, 0, 1, 0, '20190121013317_s-l1600222.jpg', 'ICN9055675874563173188', 17.900, 0.000, 0, 0, '2019-01-21', 0, 1),
(218, 1, 1, 0, 0, 0, '20190121015249_47272072_355029358613923_8708913535515623424_n.jpg', 'ICN9055675874563173188', 11.870, 0.000, 0, 0, '2019-01-21', 0, 1),
(219, 1, 0, 0, 1, 0, '20190121043643_this2.jpeg', 'ICN4797712617434078908', 5.920, 0.000, 0, 0, '2019-01-21', 0, 1),
(221, 1, 1, 0, 0, 0, '20190124024341_11w2w.jpg', 'ICN4797712617434078908', 1.270, 0.000, 0, 0, '2019-01-24', 0, 1),
(222, 1, 1, 0, 0, 0, '20190124030714_12238195912451.jpg', 'ICN4797712617434078908', 1.420, 0.000, 0, 0, '2019-01-24', 0, 1),
(227, 1, 0, 0, 1, 0, '20190126102224_5-lbs-PinnedPinless-AMD-Opteron-Intel-Xeon-CPU-Processors-Scrap-Gold-Recovery-291418537609.jpg', 'ICN1352050014989540777', 43.560, 0.000, 0, 0, '2019-01-26', 0, 1),
(229, 1, 0, 12, 0, 0, '20190128063659_grreencpus.jpg', 'ICN1352050014989540777', 17.190, 0.000, 0, 0, '2019-01-28', 0, 1),
(230, 1, 0, 12, 0, 0, '20190128063740_somerams.jpg', 'ICN9055675874563173188', 24.420, 0.000, 0, 0, '2019-01-28', 0, 1),
(231, 1, 0, 0, 1, 0, '20190129035442_img2.jpg', 'ICN4797712617434078908', 6.370, 0.000, 0, 0, '2019-01-29', 0, 1),
(232, 1, 0, 12, 0, 0, '20190129061125_49759125_1009795882540598_6244052012162351104_n.jpg', 'ICN9055675874563173188', 34.460, 0.000, 0, 0, '2019-01-29', 0, 1),
(233, 1, 0, 12, 0, 0, '20190129061341_mother.jpg', 'ICN4797712617434078908', 2.420, 0.000, 0, 0, '2019-01-29', 0, 1),
(234, 1, 0, 0, 1, 0, '20190130113054_IMG-20190130-WA0002.jpg', 'ICN5262563530192074018', 0.180, 0.000, 0, 0, '2019-01-30', 0, 1),
(235, 1, 0, 0, 1, 0, '20190130114213_IMG-20190130-WA0000.jpg', 'ICN5262563530192074018', 0.150, 0.000, 0, 0, '2019-01-30', 0, 1),
(236, 1, 0, 0, 1, 0, '20190130114449_IMG-20190130-WA0001.jpg', 'ICN5262563530192074018', 0.230, 0.000, 0, 0, '2019-01-30', 0, 1),
(237, 1, 0, 0, 1, 0, '20190130114545_IMG-20190130-WA0002.jpg', 'ICN5262563530192074018', 0.240, 0.000, 0, 0, '2019-01-30', 0, 1),
(238, 1, 0, 0, 1, 0, '20190130114757_IMG-20190130-WA0000.jpg', 'ICN5262563530192074018', 0.200, 0.000, 0, 0, '2019-01-30', 0, 1),
(239, 1, 0, 0, 1, 0, '20190130114847_IMG-20190130-WA0003.jpg', 'ICN5262563530192074018', 0.170, 0.000, 0, 0, '2019-01-30', 0, 1),
(240, 1, 0, 0, 1, 0, '20190130114932_IMG-20190130-WA0001.jpg', 'ICN5262563530192074018', 0.230, 0.000, 0, 0, '2019-01-30', 0, 1),
(243, 1, 0, 0, 1, 0, '20190130020823_IMG-20190130-WA0014.jpg', 'ICN5262563530192074018', 0.250, 0.000, 0, 0, '2019-01-30', 0, 1),
(244, 1, 0, 0, 1, 0, '20190130020944_IMG-20190130-WA0013.jpg', 'ICN5262563530192074018', 0.280, 0.000, 0, 0, '2019-01-30', 0, 1),
(246, 1, 0, 0, 1, 0, '20190130021232_IMG-20190130-WA0014.jpg', 'ICN5262563530192074018', 0.250, 0.000, 0, 0, '2019-01-30', 0, 1),
(248, 1, 0, 0, 6, 0, '20190130044805_3131.jpg', 'ICN4797712617434078908', 1.740, 0.000, 0, 0, '2019-01-30', 0, 1),
(249, 1, 0, 0, 1, 0, '20190131062349_frames.jpeg', 'ICN5262563530192074018', 0.260, 0.000, 0, 0, '2019-01-31', 0, 1),
(250, 1, 0, 0, 1, 0, '20190131075826_somerams.jpg', 'ICN9055675874563173188', 10.230, 0.000, 0, 0, '2019-01-31', 0, 1),
(251, 1, 0, 0, 1, 0, '20190131080421_handy_pl_g.jpg', 'ICN5124169819646411186', 8.450, 0.000, 0, 0, '2019-01-31', 0, 1),
(252, 1, 1, 0, 0, 0, '20190131081917_grreencpus.jpg', 'ICN1352050014989540777', 4.010, 0.000, 0, 0, '2019-01-31', 0, 1),
(253, 1, 1, 0, 0, 0, '20190201051756_img1.jpeg', 'ICN4797712617434078908', 1.600, 0.000, 0, 0, '2019-02-01', 0, 1),
(258, 1, 0, 0, 1, 0, '20190202094421_rematdirty.jpeg', 'ICN5262563530192074018', 0.300, 0.000, 0, 0, '2019-02-02', 0, 1),
(259, 1, 1, 0, 0, 0, '20190202100228_dale131.jpeg', 'ICN5262563530192074018', 0.130, 0.000, 0, 0, '2019-02-02', 0, 1),
(260, 1, 1, 0, 0, 0, '20190202100339_rematdirty.jpeg', 'ICN5262563530192074018', 0.130, 0.000, 0, 0, '2019-02-02', 0, 1),
(264, 1, 1, 0, 0, 0, '20190202074526_somerams.jpg', 'ICN9055675874563173188', 11.870, 0.000, 0, 0, '2019-02-02', 0, 1),
(272, 1, 1, 0, 0, 0, '20190202084844_20190202075115.jpg', 'ICN8270463710298358732', 4.393, 0.000, 0, 0, '2019-02-02', 0, 1),
(273, 1, 1, 0, 0, 0, '20190202085144_49344949_2138300749563439_4183493558726033408_n.jpg', 'ICN8270463710298358732', 5.260, 0.000, 0, 0, '2019-02-02', 0, 1),
(274, 1, 1, 0, 0, 0, '20190202085551_49748507_2138300512896796_2401305013918892032_n.jpg', 'ICN8270463710298358732', 6.170, 0.000, 0, 0, '2019-02-02', 0, 1),
(275, 1, 1, 0, 0, 0, '20190202090158_re5.jpg', 'ICN8270463710298358732', 5.260, 0.000, 0, 0, '2019-02-02', 0, 1),
(276, 1, 1, 0, 0, 0, '20190202092235_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(277, 1, 1, 0, 0, 0, '20190202092411_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(278, 1, 1, 0, 0, 0, '20190202092629_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(279, 1, 1, 0, 0, 0, '20190202093245_re3.jpg', 'ICN8270463710298358732', 6.170, 0.000, 0, 0, '2019-02-02', 0, 1),
(280, 1, 1, 0, 0, 0, '20190202093350_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(281, 1, 1, 0, 0, 0, '20190202093719_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(282, 1, 1, 0, 0, 0, '20190202093848_20190202075115.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-02', 0, 1),
(283, 1, 1, 0, 0, 0, '20190202094304_re3.jpg', 'ICN8270463710298358732', 6.170, 0.000, 0, 0, '2019-02-02', 0, 1),
(284, 1, 0, 0, 1, 0, '20190203050044_download.jpeg', 'ICN8270463710298358732', 2.730, 0.000, 0, 0, '2019-02-03', 0, 1),
(285, 1, 1, 0, 0, 0, '20190203114633_yc2.jpg', 'ICN8270463710298358732', 4.390, 0.000, 0, 0, '2019-02-03', 0, 1),
(288, 1, 0, 0, 7, 0, '20190206120745_platedblanks.jpeg', 'ICN1374427601567308279', 0.700, 0.000, 0, 0, '2019-02-06', 0, 1),
(291, 1, 0, 0, 7, 0, '20190206121221_platedblanks23.jpeg', 'ICN1374427601567308279', 0.720, 0.000, 0, 0, '2019-02-06', 0, 1),
(295, 1, 1, 0, 0, 0, '20190206114344_11w2w.jpg', 'ICN4797712617434078908', 3.490, 0.000, 0, 0, '2019-02-06', 0, 1),
(296, 1, 1, 0, 0, 0, '20190206114648_motherb.jpg', 'ICN4797712617434078908', 2.420, 0.000, 0, 0, '2019-02-06', 0, 1),
(298, 1, 0, 0, 7, 0, '20190206085635_sumtams.jpg', 'ICN9055675874563173188', 14.450, 0.000, 0, 0, '2019-02-06', 0, 1),
(299, 1, 0, 0, 7, 0, '20190206090026_s-l1600.jpg', 'ICN9055675874563173188', 10.980, 0.000, 0, 0, '2019-02-06', 0, 1),
(300, 1, 0, 0, 7, 0, '20190206090333_330kgRAM.jpg', 'ICN9055675874563173188', 12.050, 0.000, 0, 0, '2019-02-06', 0, 1),
(301, 1, 0, 0, 7, 0, '20190206094106_P80801-144931.jpg', 'ICN4797712617434078908', 1.970, 0.000, 0, 0, '2019-02-06', 0, 1),
(302, 1, 0, 0, 7, 0, '20190206094300_P80801-144953.jpg', 'ICN4797712617434078908', 2.070, 0.000, 0, 0, '2019-02-06', 0, 1),
(303, 1, 0, 0, 7, 0, '20190206094336_laptops.jpg', 'ICN6193062173998597390', 1.720, 0.000, 0, 0, '2019-02-06', 0, 1),
(304, 1, 0, 0, 7, 0, '20190206094533_handy_pl_g.jpg', 'ICN5124169819646411186', 3.310, 0.000, 0, 0, '2019-02-06', 0, 1),
(305, 1, 0, 0, 7, 0, '20190206094851_telll.jpeg', 'ICN8270463710298358732', 2.350, 0.000, 0, 0, '2019-02-06', 0, 1),
(306, 1, 0, 0, 7, 0, '20190206095053_P80801-144943.jpg', 'ICN4797712617434078908', 1.770, 0.000, 0, 0, '2019-02-06', 0, 1),
(307, 1, 0, 0, 7, 0, '20190206095206_grreencpus.jpg', 'ICN1352050014989540777', 5.560, 0.000, 0, 0, '2019-02-06', 0, 1),
(308, 1, 0, 0, 7, 0, '20190206095455_yc2.jpg', 'ICN8270463710298358732', 1.220, 0.000, 0, 0, '2019-02-06', 0, 1),
(312, 1, 1, 0, 0, 0, '20190207055540_wevers.jpg', 'ICN7840664651223839192', 3.070, 0.000, 0, 0, '2019-02-07', 0, 1),
(315, 1, 0, 0, 7, 0, '20190207060925_severs.jpg', 'ICN7840664651223839192', 1.520, 0.000, 0, 0, '2019-02-07', 0, 1),
(316, 1, 0, 0, 1, 0, '20190207121931_severs.jpg', 'ICN7840664651223839192', 1.730, 0.000, 0, 0, '2019-02-07', 0, 1),
(318, 1, 0, 0, 7, 0, '20190208023128_18b5b798-46a3-4ce4-8732-6fa45973c5bb-1.jpg', 'ICN9055675874563173188', 14.450, 0.000, 0, 0, '2019-02-08', 0, 1),
(319, 1, 0, 0, 7, 0, '20190208023344_ee413943-39d6-4c2c-8612-371147dc21ce-1.jpg', 'ICN1352050014989540777', 5.560, 0.000, 0, 0, '2019-02-08', 0, 1),
(320, 1, 0, 0, 7, 0, '20190208103859_53978b6c3d67f.image.jpg', 'ICN9055675874563173188', 13.790, 0.000, 0, 0, '2019-02-08', 0, 1),
(321, 1, 0, 0, 7, 0, '20190208104042_mother-500x500.jpg', 'ICN4797712617434078908', 2.700, 0.000, 0, 0, '2019-02-08', 0, 1),
(322, 1, 0, 0, 1, 0, '20190210065940_laptops.jpg', 'ICN6193062173998597390', 7.260, 0.000, 0, 0, '2019-02-10', 0, 1),
(323, 1, 0, 0, 1, 0, '20190212080204_dale131.jpeg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-02-12', 0, 1),
(324, 1, 0, 0, 1, 0, '20190212032837_DSC_0144.JPG', 'ICN5124169819646411186', 18.360, 0.000, 0, 0, '2019-02-12', 0, 1),
(325, 1, 0, 0, 1, 0, '20190212033629_handy_pl_g.jpg', 'ICN5124169819646411186', 17.870, 0.000, 0, 0, '2019-02-12', 0, 1),
(326, 1, 1, 0, 0, 0, '20190212034953_handy_pl_g.jpg', 'ICN5124169819646411186', 24.870, 0.000, 0, 0, '2019-02-12', 0, 1),
(328, 1, 0, 15, 0, 0, '20190214020003_platedblanks2.jpeg', 'ICN1374427601567308279', 1.440, 0.000, 0, 0, '2019-02-14', 0, 1),
(330, 1, 0, 15, 0, 0, '20190214020152_testmb.jpg', 'ICN4797712617434078908', 2.420, 0.000, 0, 0, '2019-02-14', 0, 1),
(331, 1, 0, 0, 1, 0, '20190214100343_P90119-120216.jpg', 'ICN5262563530192074018', 0.110, 0.000, 0, 0, '2019-02-14', 0, 1),
(333, 1, 1, 0, 0, 0, '20190219074637_wew.jpeg', 'ICN5262563530192074018', 0.400, 0.000, 0, 0, '2019-02-19', 0, 1),
(334, 1, 0, 0, 1, 0, '20190219074854_wew2.jpeg', 'ICN5262563530192074018', 0.110, 0.000, 0, 0, '2019-02-19', 0, 1),
(335, 1, 0, 15, 0, 0, '20190219075257_wew23.jpeg', 'ICN5262563530192074018', 0.400, 0.000, 0, 0, '2019-02-19', 0, 1),
(336, 1, 1, 0, 0, 0, '20190219075555_ere.jpeg', 'ICN5262563530192074018', 0.410, 0.000, 0, 0, '2019-02-19', 0, 1),
(337, 1, 1, 0, 0, 0, '20190219075855_ewe.jpeg', 'ICN5262563530192074018', 0.350, 0.000, 0, 0, '2019-02-19', 0, 1),
(338, 1, 0, 0, 1, 0, '20190228060331_1Apanel.jpg', 'ICN4797712617434078908', 4.090, 0.000, 0, 0, '2019-02-28', 0, 1),
(339, 1, 1, 0, 0, 0, '20190228061932_1Apanel.jpg', 'ICN4797712617434078908', 3.640, 0.000, 0, 0, '2019-02-28', 0, 1),
(340, 1, 1, 0, 0, 0, '20190228062231_1B.jpg', 'ICN4797712617434078908', 3.450, 0.000, 0, 0, '2019-02-28', 0, 1),
(341, 1, 0, 0, 1, 0, '20190228062747_1Apanel.jpg', 'ICN4797712617434078908', 3.380, 0.000, 0, 0, '2019-02-28', 0, 1),
(342, 1, 0, 0, 1, 0, '20190228062853_1B.jpg', 'ICN4797712617434078908', 3.210, 0.000, 0, 0, '2019-02-28', 0, 1),
(343, 1, 0, 0, 1, 0, '20190228063006_2Apanel.jpg', 'ICN4797712617434078908', 3.160, 0.000, 0, 0, '2019-02-28', 0, 1),
(344, 1, 0, 0, 1, 0, '20190228063101_2Apanel.jpg', 'ICN8270463710298358732', 4.480, 0.000, 0, 0, '2019-02-28', 0, 1),
(345, 1, 0, 0, 1, 0, '20190228063205_2B.jpg', 'ICN8270463710298358732', 4.410, 0.000, 0, 0, '2019-02-28', 0, 1),
(347, 1, 0, 0, 1, 0, '20190228063359_cards.jpg', 'ICN9118051636822650169', 5.620, 0.000, 0, 0, '2019-02-28', 0, 1),
(348, 1, 0, 0, 1, 0, '20190302103331_1B.jpg', 'ICN4797712617434078908', 3.210, 0.000, 0, 0, '2019-03-02', 0, 1),
(349, 1, 0, 0, 1, 0, '20190305070526_gpis.jpeg', 'ICN1374427601567308279', 1.780, 0.000, 0, 0, '2019-03-05', 0, 1),
(350, 1, 1, 0, 0, 0, '20190305073817_gpis.jpeg', 'ICN1374427601567308279', 0.730, 0.000, 0, 0, '2019-03-05', 0, 1),
(351, 1, 1, 0, 0, 0, '20190305074139_commb.jpeg', 'ICN8270463710298358732', 7.490, 0.000, 0, 0, '2019-03-05', 0, 1),
(352, 1, 0, 0, 1, 0, '20190305082008_satelite.jpeg', 'ICN8270463710298358732', 4.830, 0.000, 0, 0, '2019-03-05', 0, 1),
(353, 1, 1, 0, 0, 0, '20190305082046_satelite.jpeg', 'ICN8270463710298358732', 7.450, 0.000, 0, 0, '2019-03-05', 0, 1),
(354, 1, 0, 0, 1, 0, '20190305083014_gold coated.jpeg', 'ICN1374427601567308279', 0.000, 0.000, 0, 0, '2019-03-05', 0, 1),
(355, 1, 1, 0, 0, 0, '20190305084453_gpis.jpeg', 'ICN1374427601567308279', 9.570, 0.000, 0, 0, '2019-03-05', 0, 1),
(356, 1, 1, 0, 0, 0, '20190305084712_this.jpeg', 'ICN9118051636822650169', 3.650, 0.000, 0, 0, '2019-03-05', 0, 1),
(357, 1, 1, 0, 0, 0, '20190305084937_this.jpeg', 'ICN9118051636822650169', 5.270, 0.000, 0, 0, '2019-03-05', 0, 1),
(358, 1, 1, 0, 0, 0, '20190306084753_22.jpeg', 'ICN1352050014989540777', 137.770, 0.000, 0, 0, '2019-03-06', 0, 1),
(359, 1, 0, 0, 1, 0, '20190306090343_22.jpeg', 'ICN1352050014989540777', 91.960, 0.000, 0, 0, '2019-03-06', 0, 1),
(360, 1, 0, 0, 1, 0, '20190311111357_IMG-20190311-WA0019.jpg', 'ICN5262563530192074018', 0.100, 0.000, 0, 0, '2019-03-11', 0, 1),
(361, 1, 1, 0, 0, 0, '20190312113544_vpus3.jpg', 'ICN1352050014989540777', 143.750, 0.000, 0, 0, '2019-03-12', 0, 1),
(362, 1, 1, 0, 0, 0, '20190312115702_49577043_788585251483980_3359426872361353216_n.jpg', 'ICN9055675874563173188', 23.750, 0.000, 0, 0, '2019-03-12', 0, 1),
(363, 1, 0, 0, 1, 0, '20190312032803_IMG-20190312-WA0028.jpg', 'ICN8270463710298358732', 6.290, 0.000, 0, 0, '2019-03-12', 0, 1),
(365, 1, 0, 0, 1, 0, '20190312033203_IMG-20190312-WA0029.jpg', 'ICN4797712617434078908', 2.760, 0.000, 0, 0, '2019-03-12', 0, 1),
(366, 1, 1, 0, 0, 0, '20190312035257_tete.jpeg', 'ICN8270463710298358732', 9.960, 0.000, 0, 0, '2019-03-12', 0, 1),
(367, 1, 1, 0, 0, 0, '20190314030826_handy_pl_g.jpg', 'ICN5124169819646411186', 24.870, 0.000, 0, 0, '2019-03-14', 0, 1),
(370, 1, 1, 0, 0, 0, '20190314031345_Retired.jpg', 'ICN1352050014989540777', 73.460, 0.000, 0, 0, '2019-03-14', 0, 1),
(371, 1, 1, 0, 0, 0, '20190318093053_thesegrames.jpeg', 'ICN5262563530192074018', 0.360, 0.000, 0, 0, '2019-03-18', 0, 1),
(372, 1, 0, 0, 1, 0, '20190409013309_1554816766758851728636.jpg', 'ICN4797712617434078908', 5.180, 0.000, 0, 0, '2019-04-09', 0, 1),
(373, 1, 0, 0, 1, 0, '20190409015240_15548179386732000875449.jpg', 'ICN4797712617434078908', 5.370, 0.000, 0, 0, '2019-04-09', 0, 1),
(375, 1, 0, 0, 1, 0, '20190409024813_1554821274827445783692.jpg', 'ICN4797712617434078908', 4.230, 0.000, 0, 0, '2019-04-09', 0, 1),
(379, 1, 0, 0, 1, 0, '20190409025956_1554821961821517916767.jpg', 'ICN4797712617434078908', 2.940, 0.000, 0, 0, '2019-04-09', 0, 1),
(381, 1, 1, 0, 0, 0, '20190422061407_ramfromfacebook.jpg', 'ICN9055675874563173188', 24.650, 0.000, 0, 0, '2019-04-22', 0, 1),
(382, 1, 0, 0, 1, 0, '20190422065040_ramfromfacebook.jpg', 'ICN9055675874563173188', 20.400, 0.000, 0, 0, '2019-04-22', 0, 1),
(383, 1, 1, 0, 0, 0, '20190422065301_2_inv_1490602912483463053580.jpg', 'ICN1352050014989540777', 153.580, 0.000, 0, 0, '2019-04-22', 0, 1),
(384, 1, 0, 0, 1, 0, '20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 4.280, 0.000, 0, 0, '2019-04-22', 0, 1),
(385, 1, 1, 0, 0, 0, '20190424123145_IMG-20190424-WA0008.jpg', 'ICN5262563530192074018', 0.420, 0.000, 0, 0, '2019-04-24', 0, 1),
(386, 1, 1, 0, 0, 0, '20190425071012_20190424123145_IMG-20190424-WA0008.jpg', 'ICN5262563530192074018', 0.420, 0.000, 0, 0, '2019-04-25', 0, 1),
(387, 1, 1, 0, 0, 0, '20190425083422_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 6.550, 0.000, 0, 0, '2019-04-25', 0, 1),
(388, 1, 1, 0, 0, 0, '20190425032254_fa146832-a9d5-4006-ae46-a98a069e05ec.jpg', 'ICN4797712617434078908', 3.590, 0.000, 0, 0, '2019-04-25', 0, 1),
(389, 1, 0, 0, 1, 0, '20190426065844_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 4.280, 0.000, 0, 0, '2019-04-26', 0, 1),
(390, 1, 0, 0, 1, 0, '20190426100236_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 4.280, 0.000, 0, 0, '2019-04-26', 0, 1),
(391, 1, 0, 0, 1, 0, '20190426100851_fa146832-a9d5-4006-ae46-a98a069e05ec.jpg', 'ICN8270463710298358732', 4.190, 0.000, 0, 0, '2019-04-26', 0, 1),
(392, 1, 0, 0, 1, 0, '20190426101345_fa146832-a9d5-4006-ae46-a98a069e05ec.jpg', 'ICN8270463710298358732', 4.190, 0.000, 0, 0, '2019-04-26', 0, 1),
(393, 1, 0, 0, 1, 0, '20190426101614_fa146832-a9d5-4006-ae46-a98a069e05ec.jpg', 'ICN8270463710298358732', 4.190, 0.000, 0, 0, '2019-04-26', 0, 1),
(394, 1, 0, 0, 1, 0, '20190426101931_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 4.280, 0.000, 0, 0, '2019-04-26', 0, 1),
(395, 1, 0, 0, 1, 0, '20190426103750_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 4.280, 0.000, 0, 0, '2019-04-26', 0, 1),
(396, 1, 1, 0, 0, 0, '20190426104710_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 6.550, 0.000, 0, 0, '2019-04-26', 0, 1),
(397, 1, 0, 5, 0, 0, '20190426105053_20190422123316_52596019_2186603811396295_5890022646841606144_n.jpg', 'ICN8270463710298358732', 6.550, 0.000, 0, 0, '2019-04-26', 0, 1),
(398, 4, 4, 0, 0, 0, '20190505085506_img3.jpg', 'ICN1352050014989540777', 63.200, 0.000, 0, 0, '2019-05-05', 0, 1),
(399, 4, 4, 0, 0, 0, '20190507074315_e-waste.jpg', 'ICN4797712617434078908', 3.520, 0.000, 0, 0, '2019-05-07', 0, 1),
(400, 4, 0, 17, 0, 0, '20190509051749_germanshit.jpeg', 'ICN5262563530192074018', 0.360, 0.000, 0, 0, '2019-05-09', 0, 1),
(401, 1, 0, 0, 1, 0, '20190509081444_oldPC or TELECOM.jpeg', 'ICN8270463710298358732', 0.000, 0.000, 0, 0, '2019-05-09', 0, 1),
(402, 1, 0, 0, 1, 0, '20190509081559_ELECOM.jpeg', 'ICN8270463710298358732', 3.900, 0.000, 0, 0, '2019-05-09', 0, 1),
(403, 1, 0, 0, 1, 0, '20190509081952_ELECOM.jpeg', 'ICN8270463710298358732', 3.900, 0.000, 0, 0, '2019-05-09', 0, 1),
(404, 1, 1, 0, 0, 0, '20190509082305_ELECOM.jpeg', 'ICN8270463710298358732', 5.780, 0.000, 0, 0, '2019-05-09', 0, 1),
(405, 1, 0, 0, 1, 0, '20190509082638_ram2.jpeg', 'ICN9055675874563173188', 21.060, 0.000, 0, 0, '2019-05-09', 0, 1),
(406, 1, 1, 0, 0, 0, '20190509082916_ram2.jpeg', 'ICN9055675874563173188', 26.010, 0.000, 0, 0, '2019-05-09', 0, 1),
(407, 1, 1, 0, 0, 0, '20190509083114_ram.jpeg', 'ICN9055675874563173188', 30.170, 0.000, 0, 0, '2019-05-09', 0, 1),
(408, 1, 1, 0, 0, 0, '20190509083349_PVI1.jpeg', 'ICN9118051636822650169', 5.240, 0.000, 0, 0, '2019-05-09', 0, 1),
(409, 1, 1, 0, 0, 0, '20190509083507_CELLPH.jpeg', 'ICN5124169819646411186', 25.130, 0.000, 0, 0, '2019-05-09', 0, 1),
(410, 1, 1, 0, 0, 0, '20190509083631_cp.jpeg', 'ICN5124169819646411186', 18.940, 0.000, 0, 0, '2019-05-09', 0, 1),
(411, 1, 1, 0, 0, 0, '20190509083820_BLANKS.jpeg', 'ICN1374427601567308279', 8.320, 0.000, 0, 0, '2019-05-09', 0, 1),
(412, 7, 0, 18, 0, 0, '20190510081840_7AFD14404DAA6B5D1D25140A026AFF51.jpg', 'ICN4797712617434078908', 5.100, 0.000, 0, 0, '2019-05-10', 0, 1),
(413, 7, 0, 18, 0, 0, '20190510034744_168574649-56a7ec485f9b58b7d0ef4897.jpg', 'ICN4797712617434078908', 4.250, 0.000, 0, 0, '2019-05-10', 0, 1),
(414, 7, 0, 18, 0, 0, '20190513082454_ram.jpeg', 'ICN9055675874563173188', 30.170, 0.000, 0, 0, '2019-05-13', 0, 1),
(415, 7, 0, 18, 0, 0, '20190513082807_DSC_0025.JPG', 'ICN1352050014989540777', 54.190, 0.000, 0, 0, '2019-05-13', 0, 1),
(416, 7, 7, 0, 0, 0, '20190516062139_tc3.jpg', 'ICN8270463710298358732', 3.730, 0.000, 0, 0, '2019-05-16', 0, 1),
(417, 7, 7, 0, 0, 0, '20190516062651_P80801-144953.jpg', 'ICN4797712617434078908', 3.030, 0.000, 0, 0, '2019-05-16', 0, 1),
(420, 7, 7, 0, 0, 0, '20190517103135_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-17', 0, 1),
(421, 7, 7, 0, 0, 0, '20190517104248_Retrospective.jpg', 'ICN6193062173998597390', 6.290, 0.000, 0, 0, '2019-05-17', 0, 1),
(422, 1, 0, 0, 1, 0, '20190517044047_12238195912451 (2).jpg', 'ICN4797712617434078908', 0.000, 0.000, 0, 0, '2019-05-17', 0, 1),
(423, 1, 0, 0, 1, 0, '20190517044124_7AFD14404DAA6B5D1D25140A026AFF51.jpg', 'ICN4797712617434078908', 4.580, 0.000, 0, 0, '2019-05-17', 0, 1),
(425, 7, 7, 0, 0, 0, '20190521074734_668091-ewaste-040418.jpg', 'ICN7840664651223839192', 10.640, 0.000, 0, 0, '2019-05-21', 0, 1),
(426, 7, 7, 0, 0, 0, '20190521075755_e-waste.jpg', 'ICN7840664651223839192', 7.700, 0.000, 0, 0, '2019-05-21', 0, 1),
(427, 7, 7, 0, 0, 0, '20190521075827_e-waste.jpg', 'ICN7840664651223839192', 7.700, 2.570, 61, 0, '2019-05-21', 0, 1),
(428, 7, 7, 0, 0, 0, '20190521080413_motherboard-scrap-500x500.jpg', 'ICN7840664651223839192', 8.050, 0.000, 0, 0, '2019-05-21', 0, 1),
(429, 7, 7, 0, 0, 0, '20190521085603_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-21', 0, 1),
(431, 7, 7, 0, 0, 0, '20190521090841_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-21', 0, 1),
(432, 7, 7, 0, 0, 0, '20190521091343_1558429988385355163367.jpg', 'ICN7840664651223839192', 0.000, 0.000, 0, 0, '2019-05-21', 0, 1),
(433, 7, 7, 0, 0, 0, '20190521091442_15584300472581998420111.jpg', 'ICN7840664651223839192', 6.850, 0.000, 0, 0, '2019-05-21', 0, 1),
(443, 7, 7, 0, 0, 0, '20190521102929_grreencpus.jpg', 'ICN1352050014989540777', 106.740, 0.000, 0, 0, '2019-05-21', 0, 1),
(444, 7, 7, 0, 0, 0, '20190521103314_handy_pl_g.jpg', 'ICN5124169819646411186', 24.870, 0.000, 0, 0, '2019-05-21', 0, 1),
(445, 7, 7, 0, 0, 0, '20190521103526_14254653153451.jpg', 'ICN4797712617434078908', 4.730, 0.000, 0, 0, '2019-05-21', 0, 1),
(447, 7, 0, 18, 0, 0, '20190522041237_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-22', 0, 1),
(448, 7, 0, 18, 0, 0, '20190522041515_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-22', 0, 1),
(449, 1, 0, 0, 1, 0, '20190523090730_61169034_133438051172118_6045649266393743360_n.jpg', 'ICN5124169819646411186', 18.270, 0.000, 0, 0, '2019-05-23', 0, 1),
(450, 1, 0, 0, 1, 0, '20190524084448_IMG-20190524-WA0000.jpg', 'ICN5262563530192074018', 0.100, 0.000, 0, 0, '2019-05-24', 0, 1),
(451, 1, 0, 0, 1, 0, '20190524084706_IMG-20190524-WA0001.jpg', 'ICN5262563530192074018', 0.110, 0.000, 0, 0, '2019-05-24', 0, 1),
(454, 1, 0, 0, 1, 0, '20190524090757_IMG-20190524-WA0008.jpg', 'ICN1374427601567308279', 1.420, 0.000, 0, 0, '2019-05-24', 0, 1),
(455, 1, 1, 0, 0, 0, '20190524091115_IMG-20190524-WA0008.jpg', 'ICN1374427601567308279', 4.980, 0.000, 0, 0, '2019-05-24', 0, 1),
(456, 1, 1, 0, 0, 0, '20190524091342_IMG-20190524-WA0000.jpg', 'ICN5262563530192074018', 0.380, 0.000, 0, 0, '2019-05-24', 0, 1),
(457, 1, 1, 0, 0, 0, '20190524115354_IMG-20190524-WA0014.jpg', 'ICN5262563530192074018', 0.380, 0.000, 0, 0, '2019-05-24', 0, 1),
(458, 1, 1, 0, 0, 0, '20190524115907_IMG-20190524-WA0010.jpg', 'ICN5262563530192074018', 0.400, 0.000, 0, 0, '2019-05-24', 0, 1),
(459, 1, 1, 0, 0, 0, '20190524120038_IMG-20190524-WA0013.jpg', 'ICN5262563530192074018', 0.380, 0.000, 0, 0, '2019-05-24', 0, 1),
(460, 1, 1, 0, 0, 0, '20190524120329_IMG-20190524-WA0012.jpg', 'ICN5262563530192074018', 0.420, 0.000, 0, 0, '2019-05-24', 0, 1),
(462, 1, 1, 0, 0, 0, '20190524072958_61339787_404510113735164_1089213004869795840_n.jpg', 'ICN1374427601567308279', 0.000, 0.000, 0, 0, '2019-05-24', 0, 1),
(463, 1, 1, 0, 0, 0, '20190524073036_27.jpg', 'ICN1374427601567308279', 0.000, 0.000, 0, 0, '2019-05-24', 0, 1),
(464, 1, 1, 0, 0, 0, '20190524073118_61169034_133438051172118_6045649266393743360_n.jpg', 'ICN5124169819646411186', 0.000, 0.000, 0, 0, '2019-05-24', 0, 1),
(465, 1, 1, 0, 0, 0, '20190524073404_27.jpg', 'ICN4797712617434078908', 6.600, 0.000, 0, 0, '2019-05-24', 0, 1),
(466, 1, 1, 0, 0, 0, '20190524073537_27.jpg', 'ICN1374427601567308279', 7.840, 0.000, 0, 0, '2019-05-24', 0, 1),
(467, 7, 7, 0, 0, 0, '20190525051256_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-25', 0, 1),
(468, 1, 1, 0, 0, 0, '20190525051425_img3.jpg', 'ICN4797712617434078908', 2.670, 0.000, 0, 0, '2019-05-25', 0, 1),
(474, 7, 7, 0, 0, 0, '20190529072630_61369524_2101892933442446_3307629931843813376_n.jpg', 'ICN5124169819646411186', 21.220, 0.000, 0, 0, '2019-05-29', 0, 1),
(475, 7, 7, 0, 0, 0, '20190529073414_61369524_2101892933442446_3307629931843813376_n.jpg', 'ICN4797712617434078908', 5.720, 0.000, 0, 0, '2019-05-29', 0, 1),
(476, 7, 7, 0, 0, 0, '20190529073508_61587059_2101892953442444_5023238327420059648_n.jpg', 'ICN5124169819646411186', 19.590, 0.000, 0, 0, '2019-05-29', 0, 1),
(477, 7, 7, 0, 0, 0, '20190530080845_ram-scrap-1343127.jpg', 'ICN9055675874563173188', 25.710, 0.000, 0, 0, '2019-05-30', 0, 1),
(478, 1, 1, 0, 0, 0, '20190530020303_P90522-164839.jpg', 'ICN5560960097584433023', 0.420, 0.000, 0, 0, '2019-05-30', 0, 1),
(480, 1, 0, 0, 1, 0, '20190604051720_img3.jpg', 'ICN4797712617434078908', 2.560, 0.000, 0, 0, '2019-06-04', 0, 1),
(481, 1, 0, 0, 1, 0, '20190604051916_img3.jpg', 'ICN4797712617434078908', 2.560, 0.000, 0, 0, '2019-06-04', 0, 1),
(482, 1, 0, 0, 1, 0, '20190604051954_img3.jpg', 'ICN4797712617434078908', 2.560, 0.000, 0, 0, '2019-06-04', 0, 1),
(484, 1, 0, 0, 1, 0, '20190604073528_20190524084706_IMG-20190524-WA0001.jpg', 'ICN5262563530192074018', 0.110, 0.000, 0, 0, '2019-06-04', 0, 1),
(485, 1, 0, 0, 1, 0, '20190604073809_20190524084706_IMG-20190524-WA0001.jpg', 'ICN5262563530192074018', 0.110, 0.000, 0, 0, '2019-06-04', 0, 1),
(486, 1, 0, 0, 1, 0, '20190604074102_20190524084706_IMG-20190524-WA0001.jpg', 'ICN5262563530192074018', 0.160, 0.000, 0, 0, '2019-06-04', 0, 1),
(487, 1, 0, 0, 1, 0, '20190604075202_IMG-20190424-WA0008.jpg', 'ICN5262563530192074018', 0.170, 0.000, 0, 0, '2019-06-04', 0, 1),
(488, 1, 0, 0, 1, 0, '20190605072351_1559719409230942494607.jpg', 'ICN5262563530192074018', 0.150, 0.000, 0, 0, '2019-06-05', 0, 1),
(489, 1, 0, 0, 1, 0, '20190605072540_15597195092321064240246.jpg', 'ICN5262563530192074018', 0.160, 0.000, 0, 0, '2019-06-05', 0, 1),
(491, 1, 0, 0, 1, 0, '20190605072946_P90605-092808.jpg', 'ICN5262563530192074018', 0.170, 0.000, 0, 0, '2019-06-05', 0, 1),
(492, 1, 0, 0, 1, 0, '20190605073242_P90605-092750.jpg', 'ICN5262563530192074018', 0.210, 0.000, 0, 0, '2019-06-05', 0, 1),
(493, 7, 7, 0, 0, 0, '20190605074205_1559720499021312688333.jpg', 'ICN8270463710298358732', 4.710, 0.000, 0, 0, '2019-06-05', 0, 1),
(494, 7, 7, 0, 0, 0, '20190605074411_155972062821942753580.jpg', 'ICN8270463710298358732', 5.180, 0.000, 0, 0, '2019-06-05', 0, 1),
(496, 1, 1, 0, 0, 0, '20190605082220_15597228947671840563729.jpg', 'ICN5560960097584433023', 1.680, 0.000, 0, 0, '2019-06-05', 0, 1),
(502, 1, 1, 0, 0, 0, '20190610061754_1512948140451.jpg', 'ICN4797712617434078908', 5.030, 0.000, 0, 0, '2019-06-10', 0, 1),
(503, 1, 1, 0, 0, 0, '20190610063019_testmb.jpg', 'ICN4797712617434078908', 2.590, 0.000, 0, 0, '2019-06-10', 0, 1),
(504, 1, 1, 0, 0, 0, '20190610024905_668091-ewaste-040418.jpg', 'ICN8270463710298358732', 3.450, 0.000, 0, 0, '2019-06-10', 0, 1),
(506, 7, 7, 0, 0, 0, '20190610050109_elevtronics.jpg', 'ICN8270463710298358732', 3.330, 0.000, 0, 0, '2019-06-10', 0, 1),
(507, 1, 0, 0, 1, 0, '20190610084241_1951893.jpg', 'ICN5560960097584433023', 1.100, 0.000, 0, 0, '2019-06-10', 0, 1),
(508, 1, 0, 0, 1, 0, '20190610085354_668091-ewaste-040418.jpg', 'ICN8270463710298358732', 3.690, 0.000, 0, 0, '2019-06-10', 0, 1),
(509, 1, 0, 0, 1, 0, '20190610085613_wew23.jpeg', 'ICN5262563530192074018', 0.160, 0.000, 0, 0, '2019-06-10', 0, 1),
(511, 7, 7, 0, 0, 0, '20190611112856_1560252478494259757321637048746.jpg', 'ICN8270463710298358732', 5.620, 0.000, 0, 0, '2019-06-11', 0, 1),
(512, 7, 7, 0, 0, 0, '20190611113029_15602525932438128140598627099274.jpg', 'ICN9118051636822650169', 5.620, 0.000, 0, 0, '2019-06-11', 0, 1),
(513, 1, 1, 0, 0, 0, '20190611113507_20190611_143226.jpg', 'ICN5560960097584433023', 0.900, 0.000, 0, 0, '2019-06-11', 0, 1),
(514, 1, 1, 0, 0, 0, '20190611114524_15602534583967429490872880259257.jpg', 'ICN5262563530192074018', 0.340, 0.000, 0, 0, '2019-06-11', 0, 1),
(515, 1, 1, 0, 0, 0, '20190611114814_15602536609962314604906359279174.jpg', 'ICN1374427601567308279', 10.240, 0.000, 0, 0, '2019-06-11', 0, 1),
(516, 1, 1, 0, 0, 0, '20190611115141_156025381870178886921304753624.jpg', 'ICN1352050014989540777', 193.590, 0.000, 0, 0, '2019-06-11', 0, 1),
(520, 1, 1, 0, 0, 0, '20190611083520_20190611_143226.jpg', 'ICN7559128365264104337', 0.000, 0.000, 0, 0, '2019-06-11', 0, 1),
(523, 1, 1, 0, 0, 0, '20190611084734_20190611_143151.jpg', 'ICN7559128365264104337', 0.000, 0.000, 0, 0, '2019-06-11', 0, 1),
(524, 1, 1, 0, 0, 0, '20190612045246_20190611_143226.jpg', 'ICN7559128365264104337', 0.000, 0.000, 0, 0, '2019-06-12', 0, 1),
(525, 1, 1, 0, 0, 0, '20190612054505_20190612045246_20190611_143226.jpg', 'ICN3840662788361032827', 0.000, 0.000, 0, 0, '2019-06-12', 0, 1),
(526, 1, 1, 0, 0, 0, '20190612054759_20190612045246_20190611_143226.jpg', 'ICN3840662788361032827', 0.340, 0.000, 0, 0, '2019-06-12', 0, 1),
(527, 1, 1, 0, 0, 0, '20190612084130_IMG-20190612-WA0022.jpg', 'ICN3840662788361032827', 0.360, 0.000, 0, 0, '2019-06-12', 0, 1),
(528, 1, 1, 0, 0, 0, '20190612084315_IMG-20190612-WA0021.jpg', 'ICN3840662788361032827', 0.390, 0.000, 0, 0, '2019-06-12', 0, 1),
(529, 1, 1, 0, 0, 0, '20190612084427_IMG-20190612-WA0020.jpg', 'ICN3840662788361032827', 0.360, 0.000, 0, 0, '2019-06-12', 0, 1),
(530, 1, 1, 0, 0, 0, '20190612084534_IMG-20190612-WA0019.jpg', 'ICN3840662788361032827', 0.420, 0.000, 0, 0, '2019-06-12', 0, 1),
(531, 1, 1, 0, 0, 0, '20190612084705_IMG-20190612-WA0018.jpg', 'ICN3840662788361032827', 0.400, 0.000, 0, 0, '2019-06-12', 0, 1),
(532, 1, 1, 0, 0, 0, '20190612084802_IMG-20190612-WA0018.jpg', 'ICN3840662788361032827', 0.400, 0.000, 0, 0, '2019-06-12', 0, 1),
(535, 7, 7, 0, 0, 0, '20190612062535_20190611_143151.jpg', 'ICN3840662788361032827', 0.570, 0.000, 0, 0, '2019-06-12', 0, 1),
(536, 7, 7, 0, 0, 0, '20190612062828_20190611_143226.jpg', 'ICN3840662788361032827', 0.620, 0.000, 0, 0, '2019-06-12', 0, 1),
(563, 7, 7, 0, 0, 0, '20190613023952_27.jpg', 'ICN1374427601567308279', 7.840, 0.000, 0, 0, '2019-06-13', 0, 1),
(566, 7, 7, 0, 0, 0, '20190613024835_20190612062828_20190611_143226.jpg', 'ICN3840662788361032827', 0.620, 0.000, 0, 0, '2019-06-13', 0, 1),
(569, 7, 7, 0, 0, 0, '20190613025215_20190613024519_WhatsApp.jpeg', 'ICN1374427601567308279', 5.200, 0.000, 0, 0, '2019-06-13', 0, 1),
(571, 7, 7, 0, 0, 0, '20190613025437_20190613025231_WhatsApp2.jpeg', 'ICN3840662788361032827', 0.670, 0.000, 0, 0, '2019-06-13', 0, 1),
(573, 7, 7, 0, 0, 0, '20190613030227_20190612062828_20190611_143226.jpg', 'ICN3840662788361032827', 0.620, 0.260, 0, 0, '2019-06-13', 0, 1),
(577, 7, 7, 0, 0, 0, '20190613030949_343.jpeg', 'ICN3840662788361032827', 0.670, 0.000, 0, 0, '2019-06-13', 0, 1),
(579, 7, 7, 0, 0, 0, '20190613031153_g1.jpeg', 'ICN1374427601567308279', 5.200, 0.000, 0, 0, '2019-06-13', 0, 1),
(580, 7, 7, 0, 0, 0, '20190613074918_P90612-110815.jpg', 'ICN5262563530192074018', 0.260, 0.000, 0, 0, '2019-06-13', 0, 1),
(581, 7, 7, 0, 0, 0, '20190613075045_P90612-110846.jpg', 'ICN5262563530192074018', 0.270, 0.000, 0, 0, '2019-06-13', 0, 1),
(583, 7, 7, 0, 0, 0, '20190613080355_P90612-110756.jpg', 'ICN5262563530192074018', 0.240, 0.000, 0, 0, '2019-06-13', 0, 1),
(584, 7, 7, 0, 0, 0, '20190613080424_P90612-110815.jpg', 'ICN5262563530192074018', 0.260, 0.000, 0, 0, '2019-06-13', 0, 1),
(585, 7, 7, 0, 0, 0, '20190613082703_62439453_2733000343441465_4893487850739204096_n.jpg', 'ICN5124169819646411186', 18.000, 0.000, 0, 0, '2019-06-13', 0, 1),
(586, 7, 7, 0, 0, 0, '20190614070452_15604958671716491501094015895762.jpg', 'ICN1374427601567308279', 4.140, 0.000, 0, 0, '2019-06-14', 0, 1),
(588, 7, 7, 0, 0, 0, '20190616084254_scrap-pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN4797712617434078908', 5.730, 0.000, 0, 0, '2019-06-16', 0, 1),
(590, 7, 7, 0, 0, 0, '20190616084533_computer-motherboard-scrap-495.jpg', 'ICN4797712617434078908', 3.000, 0.000, 0, 0, '2019-06-16', 0, 1),
(591, 7, 7, 0, 0, 0, '20190616084626_1547215415.jpg', 'ICN4797712617434078908', 3.770, 0.000, 0, 0, '2019-06-16', 0, 1),
(593, 7, 7, 0, 0, 0, '20190616084736_electronic-scrap-recycling-escrap-e-scrap-long-island-ny-new-york-queens-nyc-manhattan-nyc.jpg', 'ICN4797712617434078908', 3.690, 0.000, 0, 0, '2019-06-16', 0, 1),
(594, 7, 7, 0, 0, 0, '20190616084855_TB2Lpj6qYFlpuFjy0FgXXbRBVXa_!!1763811821.jpg_210x210.jpg', 'ICN4797712617434078908', 2.870, 0.000, 0, 0, '2019-06-16', 0, 1),
(595, 7, 7, 0, 0, 0, '20190616084930_class1a_slide_1024x.jpg', 'ICN4797712617434078908', 4.420, 0.000, 0, 0, '2019-06-16', 0, 1),
(596, 7, 7, 0, 0, 0, '20190616085112_motherboard-scrap-316751.jpg', 'ICN4797712617434078908', 3.800, 0.000, 0, 0, '2019-06-16', 0, 1),
(597, 7, 7, 0, 0, 0, '20190616101831_HTB10v2bHXXXXXX.aFXXq6xXFXXXV.jpg', 'ICN4797712617434078908', 3.640, 0.000, 0, 0, '2019-06-16', 0, 1),
(598, 7, 7, 0, 0, 0, '20190616101923_motherboard-scrap-500x500.jpg', 'ICN4797712617434078908', 2.750, 0.000, 0, 0, '2019-06-16', 0, 1),
(599, 7, 7, 0, 0, 0, '20190616102030_motherboards-computer-boards-mainboards-scrap-boards-at.png', 'ICN4797712617434078908', 3.030, 0.000, 0, 0, '2019-06-16', 0, 1),
(600, 7, 7, 0, 0, 0, '20190616102125_images.jpg', 'ICN4797712617434078908', 4.390, 0.000, 0, 0, '2019-06-16', 0, 1),
(601, 7, 7, 0, 0, 0, '20190616102602_electronics-scrap.jpg', 'ICN4797712617434078908', 3.010, 0.000, 0, 0, '2019-06-16', 0, 1),
(602, 7, 7, 0, 0, 0, '20190616102706_20lb-of-Computer-PC-Motherboards-Server-Graphics-Modem-etc-Scrap-Metal.jpg', 'ICN4797712617434078908', 3.510, 0.000, 0, 0, '2019-06-16', 0, 1),
(604, 7, 7, 0, 0, 0, '20190616102920_csm_leiterplatten-grossrechner_b3452b39c5.jpg', 'ICN8270463710298358732', 6.090, 0.000, 0, 0, '2019-06-16', 0, 1),
(606, 7, 7, 0, 0, 0, '20190616103251_electrical-scrap-buyer.jpg', 'ICN8270463710298358732', 5.290, 0.000, 0, 0, '2019-06-16', 0, 1),
(610, 7, 7, 0, 0, 0, '20190617061153_img3.jpg', 'ICN4797712617434078908', 2.200, 0.000, 0, 0, '2019-06-17', 0, 1),
(616, 7, 7, 0, 0, 0, '20190617062335_maxresdefault.jpg', 'ICN4797712617434078908', 2.730, 0.000, 0, 0, '2019-06-17', 0, 1),
(618, 7, 7, 0, 0, 0, '20190617062619_circuit-board-(for-recycling-companies).jpg', 'ICN4797712617434078908', 2.580, 0.000, 0, 0, '2019-06-17', 0, 1),
(619, 1, 1, 0, 0, 0, '20190618085319_img3.jpg', 'ICN460337502769825172', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(622, 7, 7, 0, 0, 0, '20190618112126_junk.jpg', 'ICN3840662788361032827', 0.820, 0.000, 0, 0, '2019-06-18', 0, 1),
(623, 7, 7, 0, 0, 0, '20190618113138_img3.jpg', 'ICN4797712617434078908', 1.300, 0.000, 0, 0, '2019-06-18', 0, 1),
(624, 7, 7, 0, 0, 0, '20190618114612_g5.jpeg', 'ICN1374427601567308279', 5.270, 0.000, 0, 0, '2019-06-18', 0, 1),
(628, 7, 7, 0, 0, 0, '20190618042350_20190618041514_eee.jpeg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(630, 7, 7, 0, 0, 0, '20190618042404_2375894.jpg', 'ICN5560960097584433023', 0.480, 0.000, 0, 0, '2019-06-18', 0, 1),
(632, 7, 7, 0, 0, 0, '20190618042550_elevtronics.jpg', 'ICN5560960097584433023', 0.960, 0.000, 0, 0, '2019-06-18', 0, 1),
(633, 7, 7, 0, 0, 0, '20190618042847_49153001_1668983183247169_314625436971696128_n.jpg', 'ICN4797712617434078908', 1.150, 0.000, 0, 0, '2019-06-18', 0, 1),
(634, 7, 7, 0, 0, 0, '20190618043234_scrap-pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN9055675874563173188', 14.350, 0.000, 0, 0, '2019-06-18', 0, 1),
(635, 7, 7, 0, 0, 0, '20190618043737_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN9055675874563173188', 14.350, 0.000, 0, 0, '2019-06-18', 0, 1),
(636, 7, 7, 0, 0, 0, '20190618043802_electrical-scrap-buyer.jpg', 'ICN4797712617434078908', 2.790, 0.000, 0, 0, '2019-06-18', 0, 1),
(639, 7, 7, 0, 0, 0, '20190618044551_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(641, 7, 7, 0, 0, 0, '20190618050006_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(642, 7, 7, 0, 0, 0, '20190618050350_electrical-scrap-buyer.jpg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(643, 7, 7, 0, 0, 0, '20190618050554_scrap-pcb-recycling-plant-scrap-pcb-recycling-system.jpg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(644, 7, 7, 0, 0, 0, '', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(645, 7, 7, 0, 0, 0, '20190618051141_electrical-scrap-buyer.jpg', 'ICN4797712617434078908', 2.790, 0.000, 0, 0, '2019-06-18', 0, 1),
(646, 7, 7, 0, 0, 0, '20190618051230_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN9055675874563173188', 14.350, 0.000, 0, 0, '2019-06-18', 0, 1),
(647, 7, 7, 0, 0, 0, '20190618051352_electrical-scrap-buyer.jpg', 'ICN4797712617434078908', 2.790, 0.000, 0, 0, '2019-06-18', 0, 1),
(651, 7, 7, 0, 0, 0, '20190618054310_55592_4.jpg', 'ICN8270463710298358732', 1.790, 0.000, 0, 0, '2019-06-18', 0, 1),
(652, 7, 7, 0, 0, 0, '20190618054337_sell-circuit-board-scrap-direct.jpg', 'ICN8270463710298358732', 2.600, 0.000, 0, 0, '2019-06-18', 0, 1),
(653, 7, 7, 0, 0, 0, '20190618054525_E-Scrap-800x600.jpg', 'ICN4797712617434078908', 1.030, 0.000, 0, 0, '2019-06-18', 0, 1),
(654, 7, 7, 0, 0, 0, '20190618054749_rematdirty.jpeg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(655, 7, 7, 0, 0, 0, '20190618054918_123123.jpeg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(656, 7, 7, 0, 0, 0, '20190618055527_P90618-114516.jpg', '', 0.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(657, 7, 7, 0, 0, 0, '20190618062402_img3.jpg', 'ICN4797712617434078908', 1.300, 0.000, 0, 0, '2019-06-18', 0, 1),
(658, 7, 7, 0, 0, 0, '20190618062751_img3.jpg', 'ICN4797712617434078908', 1.300, 0.000, 0, 0, '2019-06-18', 0, 1),
(659, 7, 7, 0, 0, 0, '20190618062832_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN3840662788361032827', 0.820, 0.000, 0, 0, '2019-06-18', 0, 1),
(660, 7, 7, 0, 0, 0, '20190618062906_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN3840662788361032827', 0.420, 0.000, 0, 0, '2019-06-18', 0, 1),
(667, 7, 7, 0, 0, 0, '20190618070216_3ea87e4b-fca1-4b0a-bebb-cce6e3627a4c.jpg', 'ICN5560960097584433023', 1.160, 0.000, 0, 0, '2019-06-18', 0, 1),
(668, 7, 7, 0, 0, 0, '20190618070742_P90618-114410.jpg', 'ICN1374427601567308279', 3.990, 0.000, 0, 0, '2019-06-18', 0, 1),
(670, 7, 7, 0, 0, 0, '20190618073358_4b6c6c94-4835-44a5-943e-a979164ae025.jpg', 'ICN9118051636822650169', 5.230, 0.000, 0, 0, '2019-06-18', 0, 1),
(671, 7, 7, 0, 0, 0, '20190618073520_img3.jpg', 'ICN4797712617434078908', 2.850, 0.000, 0, 0, '2019-06-18', 0, 1),
(674, 7, 7, 0, 0, 0, '20190618081106_electrical-scrap-buyer.jpg', 'ICN8270463710298358732', 5.290, 0.000, 0, 0, '2019-06-18', 0, 1),
(676, 7, 7, 0, 0, 0, '20190618081228_807d9ed2-83ba-4389-93d1-dad7c9e489ea.jpg', 'ICN5560960097584433023', 1.450, 0.000, 0, 0, '2019-06-18', 0, 1),
(677, 7, 7, 0, 0, 0, '20190618081311_20lb-of-Computer-PC-Motherboards-Server-Graphics-Modem-etc-Scrap-Metal.jpg', 'ICN4797712617434078908', 3.510, 0.000, 0, 0, '2019-06-18', 0, 1),
(678, 7, 7, 0, 0, 0, '20190618081340_csm_Leiterplatten-I-a-1a_e3d9ed2e17.jpg', 'ICN8270463710298358732', 6.000, 0.000, 0, 0, '2019-06-18', 0, 1),
(679, 7, 7, 0, 0, 0, '20190618081401_E-Scrap-800x600.jpg', 'ICN4797712617434078908', 3.100, 0.000, 0, 0, '2019-06-18', 0, 1),
(680, 7, 7, 0, 0, 0, '20190618081434_electrical-scrap-buyer.jpg', 'ICN8270463710298358732', 5.290, 0.000, 0, 0, '2019-06-18', 0, 1),
(681, 7, 7, 0, 0, 0, '20190618081501_6a54031a-22c2-4fee-85c6-8f6539060c27.jpg', 'ICN5124169819646411186', 20.850, 0.000, 0, 0, '2019-06-18', 0, 1),
(682, 7, 7, 0, 0, 0, '20190618081544_2e333630-c520-4fae-bd87-e281b595b7da.jpg', 'ICN5560960097584433023', 1.440, 0.000, 0, 0, '2019-06-18', 0, 1),
(683, 7, 7, 0, 0, 0, '20190618081631_cc1e3d85-7f5f-4e0b-8897-1bf89db23ad6.jpg', 'ICN4797712617434078908', 3.350, 0.000, 0, 0, '2019-06-18', 0, 1),
(684, 7, 7, 0, 0, 0, '20190618081740_4b6c6c94-4835-44a5-943e-a979164ae025.jpg', 'ICN9118051636822650169', 5.230, 0.000, 0, 0, '2019-06-18', 0, 1),
(686, 7, 7, 0, 0, 0, '20190618082608_807d9ed2-83ba-4389-93d1-dad7c9e489ea.jpg', 'ICN5560960097584433023', 1.450, 1.090, 0, 0, '2019-06-18', 0, 1),
(687, 7, 7, 0, 0, 0, '20190618082843_20190612062828_20190611_143226.jpg', 'ICN3840662788361032827', 0.620, 0.260, 0, 0, '2019-06-18', 0, 1),
(689, 7, 7, 0, 0, 0, '20190618084221_P90618-114519.jpg', 'ICN1374427601567308279', 5.170, 0.000, 0, 0, '2019-06-18', 0, 1),
(690, 7, 7, 0, 0, 0, '20190618085549_17.jpg', 'ICN6193062173998597390', 6.080, 0.000, 0, 0, '2019-06-18', 0, 1),
(692, 7, 7, 0, 0, 0, '20190618085907_P81023-142335.jpg', 'ICN8270463710298358732', 3.910, 0.000, 0, 0, '2019-06-18', 0, 1),
(694, 7, 7, 0, 0, 0, '20190618095940_P81023-142321.jpg', 'ICN8270463710298358732', 2.850, 0.000, 0, 0, '2019-06-18', 0, 1),
(695, 7, 7, 0, 0, 0, '20190618100114_16.jpg', 'ICN7840664651223839192', 8.960, 0.000, 0, 0, '2019-06-18', 0, 1),
(696, 7, 7, 0, 0, 0, '20190618100237_8.jpg', 'ICN7840664651223839192', 10.600, 0.000, 0, 0, '2019-06-18', 0, 1),
(697, 7, 7, 0, 0, 0, '20190618100319_P80724-110432.jpg', 'ICN3840662788361032827', 0.690, 0.000, 0, 0, '2019-06-18', 0, 1),
(699, 7, 7, 0, 0, 0, '20190618100529_lead_720_405.jpg', 'ICN5124169819646411186', 20.870, 0.000, 0, 0, '2019-06-18', 0, 1),
(700, 7, 7, 0, 0, 0, '20190618100711_Retired.jpg', 'ICN1352050014989540777', 73.460, 0.000, 0, 0, '2019-06-18', 0, 1),
(701, 7, 7, 0, 0, 0, '20190618100851_motherb.jpg', 'ICN4797712617434078908', 2.950, 0.000, 0, 0, '2019-06-18', 0, 1),
(702, 7, 7, 0, 0, 0, '20190618101018_yc2.jpg', 'ICN5560960097584433023', 1.840, 0.000, 0, 0, '2019-06-18', 0, 1),
(703, 7, 7, 0, 0, 0, '20190618101055_330kgRAM.jpg', 'ICN5262563530192074018', 0.280, 0.000, 0, 0, '2019-06-18', 0, 1),
(704, 7, 7, 0, 0, 0, '20190618101146_ere.jpeg', 'ICN5262563530192074018', 0.290, 0.000, 0, 0, '2019-06-18', 0, 1),
(705, 7, 7, 0, 0, 0, '20190618101341_32-lbs-scrap-laptop-motherboards_1_2799d12b4605272b7806cc4d3b59ab1f.jpg', 'ICN6193062173998597390', 7.730, 0.000, 0, 0, '2019-06-18', 0, 1),
(706, 7, 7, 0, 0, 0, '20190619092353_IMG-20190619-WA0002.jpg', 'ICN3840662788361032827', 0.630, 0.000, 0, 0, '2019-06-19', 0, 1),
(709, 7, 7, 0, 0, 0, '20190619034611_e-waste.jpg', 'ICN5560960097584433023', 1.830, 2.790, 0, 0, '2019-06-19', 0, 1),
(710, 7, 7, 0, 0, 0, '20190619034708_7AFD14404DAA6B5D1D25140A026AFF51.jpg', 'ICN3840662788361032827', 0.800, 0.000, 0, 0, '2019-06-19', 0, 1),
(711, 7, 7, 0, 0, 0, '20190619034746_elevtronics.jpg', 'ICN5560960097584433023', 1.900, 0.000, 0, 0, '2019-06-19', 0, 1),
(712, 7, 7, 0, 0, 0, '20190619043936_E-Scrap-800x600.jpg', 'ICN4797712617434078908', 3.100, 0.000, 0, 0, '2019-06-19', 0, 1),
(713, 7, 7, 0, 0, 0, '20190619044038_55592_4.jpg', 'ICN8270463710298358732', 3.790, 0.000, 0, 0, '2019-06-19', 0, 1),
(715, 7, 7, 0, 0, 0, '20190619091201_P90618-114519.jpg', 'ICN1374427601567308279', 5.170, 0.000, 0, 0, '2019-06-19', 0, 1),
(719, 7, 7, 0, 0, 0, '20190619092056_Retired.jpg', 'ICN1352050014989540777', 73.460, 0.000, 0, 0, '2019-06-19', 0, 1),
(726, 7, 7, 0, 0, 0, '20190619095403_123.jpeg', 'ICN5124169819646411186', 20.220, 0.000, 0, 0, '2019-06-19', 0, 1),
(730, 1, 1, 0, 0, 0, '20190620074032_62439453_2733000343441465_4893487850739204096_n.jpg', 'ICN8291031722389707776', 0.000, 0.000, 0, 0, '2019-06-20', 0, 1),
(735, 7, 7, 0, 0, 0, '20190620075121_807d9ed2-83ba-4389-93d1-dad7c9e489ea.jpg', 'ICN5560960097584433023', 1.450, 0.000, 0, 0, '2019-06-20', 0, 1),
(736, 7, 7, 0, 0, 0, '20190620081011_654.jpeg', 'ICN3840662788361032827', 0.730, 0.000, 0, 0, '2019-06-20', 0, 1),
(737, 7, 7, 0, 0, 0, '20190620084223_P90521-134231.jpg', 'ICN5560960097584433023', 1.360, 0.000, 0, 0, '2019-06-20', 0, 1),
(739, 7, 7, 0, 0, 0, '20190625073909_20190619095403_123.jpeg', 'ICN5124169819646411186', 21.630, 0.000, 0, 0, '2019-06-25', 0, 1),
(741, 7, 7, 0, 0, 0, '20190625074111_Phone_1.jpg', 'ICN5124169819646411186', 23.350, 0.000, 0, 0, '2019-06-25', 0, 1),
(743, 7, 7, 0, 0, 0, '20190625074907_cellphone_boards.jpg', 'ICN5124169819646411186', 28.040, 0.000, 0, 0, '2019-06-25', 0, 1),
(745, 7, 7, 0, 0, 0, '20190625082656_vggg.jpg', 'ICN5124169819646411186', 21.870, 6.780, 0, 0, '2019-06-25', 0, 1),
(746, 7, 7, 0, 0, 0, '20190625083914_eWaste.png', 'ICN3840662788361032827', 0.840, 1.450, 0, 0, '2019-06-25', 0, 1),
(749, 7, 7, 0, 0, 0, '20190626072641_3ea87e4b-fca1-4b0a-bebb-cce6e3627a4c.jpg', 'ICN3840662788361032827', 0.340, 0.000, 0, 8, '2019-06-26', 0, 1),
(751, 7, 7, 0, 0, 0, '20190626074311_pcb-recycling-plant-scrap-pcb-recycling-system.jpg', 'ICN3840662788361032827', 0.660, 0.000, 0, 8, '2019-06-26', 0, 1),
(754, 7, 7, 0, 0, 0, '20190627065513_IMG-20190627-WA0020.jpeg', 'ICN8270463710298358732', 4.530, 0.000, 0, 0, '2019-06-27', 0, 1);
INSERT INTO `viewpasimage` (`id`, `userid`, `adminid`, `inventoryid`, `supplierid`, `agentid`, `image`, `dataset`, `totalprice`, `totaloffer`, `supid`, `listid`, `sysdate`, `offeraccept`, `status`) VALUES
(756, 7, 7, 0, 0, 0, '20190627065656_IMG-20190627-WA0016.jpeg', 'ICN7840664651223839192', 10.380, 0.000, 0, 0, '2019-06-27', 0, 1),
(757, 7, 7, 0, 0, 0, '20190627065758_IMG-20190627-WA0012.jpeg', 'ICN8270463710298358732', 7.290, 0.000, 0, 0, '2019-06-27', 0, 1),
(758, 7, 7, 0, 0, 0, '20190627065920_IMG-20190627-WA0008.jpeg', 'ICN8270463710298358732', 4.780, 0.000, 0, 0, '2019-06-27', 0, 1),
(759, 7, 7, 0, 0, 0, '20190627070021_IMG-20190627-WA0010.jpeg', 'ICN8270463710298358732', 3.180, 0.000, 0, 0, '2019-06-27', 0, 1),
(762, 7, 7, 0, 0, 0, '20190627090852_1561626514456508387392.jpg', 'ICN3840662788361032827', 0.740, 0.920, 0, 0, '2019-06-27', 0, 1),
(763, 7, 7, 0, 0, 0, '20190628094948_20190627065758_IMG-20190627-WA0012.jpeg', 'ICN8270463710298358732', 7.290, 0.000, 0, 0, '2019-06-28', 0, 1),
(765, 7, 7, 0, 0, 0, '20190628034444_20190627090852_1561626514456508387392.jpg', 'ICN3840662788361032827', 1.730, 0.420, 0, 0, '2019-06-28', 0, 1),
(770, 1, 1, 0, 0, 0, '20190629121935_IMG-20181212-WA0016.jpg', 'ICN697768168934387214', 0.000, 0.000, 0, 0, '2019-06-29', 0, 1),
(771, 1, 1, 0, 0, 0, '20190629122058_g22-2-624x468.jpg', 'ICN6977681689343872147', 0.000, 0.000, 0, 0, '2019-06-29', 0, 1),
(773, 7, 7, 0, 0, 0, '20190629122246_eWaste.png', 'ICN3840662788361032827', 2.240, 1.040, 0, 0, '2019-06-29', 0, 1),
(776, 7, 7, 0, 0, 0, '20190629030337_1_7838ad655f9b3c6adb5aa5f1b1b0a85e.jpg', 'ICN6977681689343872147', 8.880, 8.130, 0, 0, '2019-06-29', 0, 1),
(777, 7, 7, 0, 0, 0, '20190629031401_6.jpeg', 'ICN5560960097584433023', 1.970, 0.000, 0, 0, '2019-06-29', 0, 1),
(781, 7, 7, 0, 0, 0, '20190629063950_IMG-20190312-WA0028.jpg', 'ICN6977681689343872147', 7.580, 7.050, 0, 0, '2019-06-29', 0, 1),
(782, 7, 7, 0, 0, 0, '20190629071950_20190628072303_5n.jpeg', 'ICN6977681689343872147', 6.370, 5.580, 0, 0, '2019-06-29', 0, 1),
(783, 7, 7, 0, 0, 0, '20190701063553_IMG-20190620-WA0004.jpg', 'ICN1352050014989540777', 132.900, 105.300, 0, 0, '2019-07-01', 0, 1),
(784, 7, 7, 0, 0, 0, '20190701074322_20190611_143226.jpg', 'ICN3840662788361032827', 0.940, 0.420, 0, 0, '2019-07-01', 0, 1),
(785, 7, 7, 0, 0, 0, '20190701074835_807d9ed2-83ba-4389-93d1-dad7c9e489ea.jpg', 'ICN5560960097584433023', 1.450, 0.000, 0, 0, '2019-07-01', 0, 1),
(786, 7, 7, 0, 0, 0, '20190701112908_15619804300345085900192355592059.jpg', 'ICN5262563530192074018', 0.230, 0.000, 0, 0, '2019-07-01', 0, 1),
(787, 7, 7, 0, 0, 0, '20190701113208_P90612-110815.jpg', 'ICN5262563530192074018', 0.260, 0.000, 0, 0, '2019-07-01', 0, 1),
(788, 7, 7, 0, 0, 0, '20190701115648_15619817087814918624434594084565.jpg', 'ICN1352050014989540777', 127.640, 0.000, 0, 0, '2019-07-01', 0, 1),
(789, 7, 7, 0, 0, 0, '20190703074258_IMG-20190703-WA0006.jpg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-07-03', 0, 1),
(790, 7, 7, 0, 0, 0, '20190703074507_IMG-20190703-WA0005.jpg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-07-03', 0, 1),
(791, 7, 7, 0, 0, 0, '20190703074528_IMG-20190703-WA0005.jpg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-07-03', 0, 1),
(792, 7, 7, 0, 0, 0, '20190703075544_IMG-20190703-WA0006.jpg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-07-03', 0, 1),
(793, 7, 7, 0, 0, 0, '20190703075652_IMG-20190703-WA0003.jpg', 'ICN5262563530192074018', 0.280, 0.000, 0, 0, '2019-07-03', 0, 1),
(794, 7, 7, 0, 0, 0, '20190703035731_20190701_134516.jpg', 'ICN3840662788361032827', 2.250, 0.526, 61, 0, '2019-07-03', 0, 1),
(795, 7, 7, 0, 0, 0, '20190704063211_IMG-20190704-WA0016.jpg', 'ICN6977681689343872147', 5.200, 7.740, 0, 0, '2019-07-04', 0, 1),
(796, 7, 7, 0, 0, 0, '20190704063711_IMG-20190704-WA0007.jpg', 'ICN6977681689343872147', 3.400, 3.600, 0, 0, '2019-07-04', 0, 1),
(797, 7, 7, 0, 0, 0, '20190704065127_IMG-20190704-WA0011.jpg', 'ICN3840662788361032827', 1.990, 0.780, 0, 0, '2019-07-04', 0, 1),
(798, 7, 7, 0, 0, 0, '20190704082531_IMG-20190704-WA0025.jpg', 'ICN5262563530192074018', 0.270, 0.360, 61, 0, '2019-07-04', 0, 1),
(799, 7, 7, 0, 0, 0, '20190704083022_IMG-20190704-WA0026.jpg', 'ICN5262563530192074018', 0.250, 0.260, 0, 0, '2019-07-04', 0, 1),
(800, 7, 7, 0, 0, 0, '20190704083235_IMG-20190704-WA0024.jpg', 'ICN5262563530192074018', 0.230, 0.370, 0, 0, '2019-07-04', 0, 1),
(803, 7, 7, 0, 0, 0, '20190704085011_20190701_134658.jpg', 'ICN6977681689343872147', 7.720, 11.050, 0, 0, '2019-07-04', 0, 1),
(808, 7, 7, 0, 0, 0, '20190709110333_IMG_20190709_065932.jpg', 'ICN5560960097584433023', 1.550, 0.570, 0, 0, '2019-07-09', 0, 1),
(810, 7, 7, 0, 0, 0, '20190709080532_IMG-20190709-WA0011.jpg', 'ICN5560960097584433023', 1.550, 0.250, 0, 0, '2019-07-09', 0, 1),
(811, 7, 7, 0, 0, 0, '20190710085926_PANO_20190710_105612.jpg', 'ICN3840662788361032827', 1.230, 0.353, 0, 0, '2019-07-10', 0, 1),
(812, 7, 7, 0, 0, 0, '20190710102243_IMG_20190710_104815.jpg', 'ICN5262563530192074018', 0.420, 0.000, 0, 0, '2019-07-10', 0, 1),
(813, 7, 7, 0, 0, 0, '20190710102619_IMG_20190710_104826.jpg', 'ICN5262563530192074018', 0.460, 0.000, 0, 0, '2019-07-10', 0, 1),
(814, 7, 7, 0, 0, 0, '20190712085842_20190701_134658.jpg', 'ICN6977681689343872147', 7.720, 10.780, 0, 0, '2019-07-12', 0, 1),
(816, 7, 7, 0, 0, 0, '20190712121257_PCBSample.jpg', 'ICN5560960097584433023', 1.540, 0.000, 0, 0, '2019-07-12', 0, 1),
(817, 7, 7, 0, 0, 0, '20190712121438_PCBSample.jpg', 'ICN9118051636822650169', 5.190, 6.260, 71, 0, '2019-07-12', 1, 1),
(822, 7, 7, 0, 0, 0, '20190712080659_image2.jpeg', 'ICN3840662788361032827', 2.050, 0.640, 0, 0, '2019-07-12', 0, 1),
(823, 7, 7, 0, 0, 0, '20190712081250_image1(3).jpeg', 'ICN5124169819646411186', 15.450, 17.370, 0, 0, '2019-07-12', 0, 1),
(824, 7, 7, 0, 0, 0, '20190716103149_IMG_20190716_125917.jpg', 'ICN1374427601567308279', 9.170, 0.000, 0, 0, '2019-07-16', 0, 1),
(826, 1, 0, 0, 1, 0, '20190718020841_n2s1.JPG', 'ICN4797712617434078908', 4.420, 0.000, 0, 0, '2019-07-18', 0, 1),
(827, 1, 0, 0, 1, 0, '20190718021004_n2s2.JPG', 'ICN4797712617434078908', 2.980, 0.000, 0, 0, '2019-07-18', 0, 1),
(828, 1, 0, 0, 1, 0, '20190718021111_n2s3.JPG', 'ICN4797712617434078908', 4.880, 0.000, 0, 0, '2019-07-18', 0, 1),
(829, 1, 0, 0, 1, 0, '20190718021149_n2s4.JPG', 'ICN4797712617434078908', 6.000, 0.000, 0, 0, '2019-07-18', 0, 1),
(831, 7, 7, 0, 0, 0, '20190718024813_IMG-20190718-WA0013.jpg', 'ICN6977681689343872147', 9.110, 7.240, 0, 0, '2019-07-18', 0, 1),
(832, 7, 7, 0, 0, 0, '20190718045400_IMG-20190718-WA0022.jpg', 'ICN7840664651223839192', 10.420, 5.350, 0, 0, '2019-07-18', 0, 1),
(833, 7, 7, 0, 0, 0, '20190718045553_IMG-20190718-WA0024.jpg', 'ICN6977681689343872147', 3.830, 7.580, 0, 0, '2019-07-18', 0, 1),
(834, 7, 7, 0, 0, 0, '20190718050111_IMG-20190718-WA0021.jpg', 'ICN6977681689343872147', 5.240, 4.730, 0, 0, '2019-07-18', 0, 1),
(835, 7, 7, 0, 0, 0, '20190718050306_IMG-20190718-WA0020.jpg', 'ICN6977681689343872147', 4.090, 3.090, 71, 0, '2019-07-18', 0, 1),
(836, 7, 7, 0, 0, 0, '20190720035702_Frtgyg.png', 'ICN1352050014989540777', 277.340, 210.510, 71, 0, '2019-07-20', 2, 1),
(844, 7, 7, 0, 0, 0, '20190725082014_20190701_134118.jpg', 'ICN3840662788361032827', 2.700, 0.760, 71, 0, '2019-07-25', 0, 1),
(845, 7, 7, 0, 0, 0, '20190725082102_20190701_134109.jpg', 'ICN5560960097584433023', 4.630, 1.410, 61, 0, '2019-07-25', 1, 1),
(898, 7, 7, 0, 0, 0, '20190816085047_68326298_2424054644540984_2528158509388791808_n.jpg', 'ICN5124169819646411186', 16.160, 16.820, 61, 0, '2019-08-16', 0, 1),
(904, 7, 7, 0, 0, 0, '20190818090013_crt.jpg', 'ICN3840662788361032827', 0.710, 0.640, 61, 0, '2019-08-18', 1, 1),
(907, 7, 7, 0, 0, 0, '20190818091333_tellc.jpg', 'ICN6977681689343872147', 4.760, 6.040, 71, 0, '2019-08-18', 2, 1),
(908, 7, 7, 0, 0, 0, '20190818091627_IMG_20190710_104826.jpg', 'ICN5262563530192074018', 0.600, 0.460, 61, 0, '2019-08-18', 1, 1),
(909, 7, 7, 0, 0, 0, '20190818091933_PANO_20190814_104352.jpg', 'ICN5262563530192074018', 0.640, 0.510, 61, 0, '2019-08-18', 0, 1),
(910, 7, 7, 0, 0, 0, '20190819081801_1771.jpeg', 'ICN1352050014989540777', 111.140, 74.650, 71, 0, '2019-08-19', 1, 1),
(941, 7, 7, 0, 0, 0, '20190826042620_IMG_20190826_100438.jpg', 'ICN1374427601567308279', 3.820, 5.890, 61, 0, '2019-08-26', 0, 1),
(942, 7, 7, 0, 0, 0, '20190826042824_IMG_20190826_100216.jpg', 'ICN3840662788361032827', 0.730, 0.650, 61, 0, '2019-08-26', 0, 1),
(949, 12, 12, 0, 0, 0, '20190901104011_img3.jpg', 'ICN4797712617434078908', 1.610, 1.740, 72, 0, '2019-09-01', 0, 1),
(950, 12, 12, 0, 0, 0, '20190901102601_motherboards3.jpg', 'ICN4797712617434078908', 1.430, 0.000, 0, 0, '2019-09-01', 0, 1),
(951, 12, 12, 0, 0, 0, '20190903071355_DSC_0144.jpg', 'ICN5124169819646411186', 24.860, 0.000, 0, 0, '2019-09-03', 0, 1),
(952, 12, 12, 0, 0, 0, '20190903102628_4.jpeg', 'ICN1374427601567308279', 9.110, 0.000, 0, 0, '2019-09-03', 0, 1),
(953, 12, 12, 0, 0, 0, '20190903104810_1.jpeg', 'ICN1374427601567308279', 10.080, 0.000, 0, 0, '2019-09-03', 0, 1),
(1012, 7, 7, 0, 0, 0, '20190924044127_DSC_0144.jpg', 'ICN5124169819646411186', 17.100, 20.660, 61, 0, '2019-09-24', 1, 1),
(1013, 7, 7, 0, 0, 0, '20190924061441_gggg.jpeg', 'ICN1374427601567308279', 7.390, 35.160, 61, 0, '2019-09-24', 0, 1),
(1037, 7, 7, 0, 0, 0, '20191014073145_CRTTruckPano1.jpg', 'ICN3840662788361032827', 0.520, 0.440, 61, 0, '2019-10-14', 1, 1),
(1038, 7, 7, 0, 0, 0, '20191014074810_CRTTruckPano1.jpg', 'ICN3840662788361032827', 2.250, 0.520, 0, 0, '2019-10-14', 0, 1),
(1044, 7, 7, 0, 0, 0, '20191017124732_classc2.jpeg', 'ICN6977681689343872147', 4.040, 7.140, 71, 0, '2019-10-17', 1, 1),
(1045, 7, 7, 0, 0, 0, '20191020064304_IMG_20191019_092450.jpg', 'ICN5262563530192074018', 0.550, 0.000, 0, 0, '2019-10-20', 0, 1),
(1046, 7, 7, 0, 0, 0, '20191020064431_IMG_20191019_092458.jpg', 'ICN5262563530192074018', 0.530, 0.000, 0, 0, '2019-10-20', 0, 1),
(1047, 7, 7, 0, 0, 0, '20191020064524_IMG_20191019_092527.jpg', 'ICN5262563530192074018', 0.550, 0.390, 0, 0, '2019-10-20', 0, 1),
(1060, 7, 0, 18, 0, 0, '20191025063007_IMG_20190709_065932.jpg', 'ICN5560960097584433023', 1.920, 0.000, 0, 0, '2019-10-25', 0, 1),
(1076, 11, 11, 0, 0, 0, '20191026041911_20191025090146_IMG_6967.jpg', 'ICN1374427601567308279', 11.870, 19.980, 0, 0, '2019-10-26', 0, 1),
(1115, 7, 7, 0, 0, 0, '20191102080314_ram.jpeg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1117, 7, 7, 0, 0, 0, '20191102080607_ram.jpeg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1119, 7, 7, 0, 0, 0, '20191102080954_ram.jpeg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1120, 7, 7, 0, 0, 0, '20191102081843_img3.jpg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1121, 7, 7, 0, 0, 0, '20191102082024_img3.jpg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1122, 7, 7, 0, 0, 0, '20191102082113_img3.jpg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1123, 7, 7, 18, 0, 0, '20191102082321_img3.jpg', 'ICN9055675874563173188', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1124, 7, 7, 18, 0, 0, '20191102082517_img3.jpg', 'ICN4797712617434078908', 2.270, 0.000, 0, 0, '2019-11-02', 0, 1),
(1125, 7, 7, 18, 0, 0, '20191102082820_img3.jpg', 'ICN4797712617434078908', 0.000, 0.000, 0, 0, '2019-11-02', 0, 1),
(1126, 7, 7, 0, 0, 0, '20191102083025_img3.jpg', 'ICN4797712617434078908', 2.270, 0.994, 0, 0, '2019-11-02', 0, 1),
(1127, 7, 7, 18, 0, 0, '20191102083128_img3.jpg', 'ICN4797712617434078908', 2.270, 0.000, 0, 0, '2019-11-02', 0, 1),
(1140, 7, 7, 0, 0, 0, '20191103065657_clean-gold-fingers-high-yield-mobile_1_a4f655fd70f2f32d7467340ba8f851c8.jpg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1141, 7, 7, 0, 0, 0, '20191103072112_clean-gold-fingers-high-yield-mobile_1_a4f655fd70f2f32d7467340ba8f851c8.jpg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1152, 11, 11, 0, 0, 0, '20191103083901_gold.jpeg', 'ICN1374427601567308279', 11.270, 20.368, 0, 0, '2019-11-03', 0, 1),
(1153, 7, 7, 0, 0, 0, '20191103092218_2-lbs-2x-sided-vintage-high-grade-gold-plated-fingers-boards-for-scrap-recovery.jpg', 'ICN1374427601567308279', 3.810, 0.000, 0, 0, '2019-11-03', 0, 1),
(1163, 1, 1, 0, 0, 0, '20191103101037_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1164, 1, 1, 0, 0, 0, '20191103101307_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1165, 1, 1, 0, 0, 0, '20191103101513_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1166, 1, 1, 0, 0, 0, '20191103101820_gold.jpeg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1167, 1, 1, 0, 0, 0, '20191103101903_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1168, 1, 1, 0, 0, 0, '20191103102341_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1169, 1, 1, 0, 0, 0, '20191103102802_gold.jpeg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1170, 1, 1, 0, 0, 0, '20191103102847_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1171, 1, 1, 0, 0, 0, '20191103102959_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1172, 7, 7, 0, 0, 0, '20191103031037_clean-gold-fingers-high-yield-mobile_1_a4f655fd70f2f32d7467340ba8f851c8.jpg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1173, 1, 1, 0, 0, 0, '20191103031200_Gold-fingers-CPUs-scrap.jpg_300x300.jpg', 'ICN8888790648522539008', 6.610, 0.000, 0, 0, '2019-11-03', 0, 1),
(1174, 1, 1, 0, 0, 0, '20191103031950_gold.jpeg', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-03', 0, 1),
(1175, 1, 1, 0, 0, 0, '20191103032042_gold.jpeg', 'ICN8888790648522539008', 7.900, 0.000, 0, 0, '2019-11-03', 0, 1),
(1176, 1, 1, 0, 0, 0, '20191103032205_gold.jpeg', 'ICN5262563530192074018', 0.560, 0.000, 0, 0, '2019-11-03', 0, 1),
(1177, 7, 7, 0, 0, 0, '20191103050435_Gold-fingers-CPUs-scrap.jpg_300x300.jpg', 'ICN5262563530192074018', 0.310, 0.000, 0, 0, '2019-11-03', 0, 1),
(1208, 10, 10, 0, 0, 0, '20191103073232_2-lbs-2x-sided-vintage-high-grade-gold-plated-fingers-boards-for-scrap-recovery.jpg', 'ICN8888790648522539008', 19.520, 0.000, 0, 0, '2019-11-03', 0, 1),
(1209, 10, 10, 0, 0, 0, '20191103073512_clean-gold-fingers-high-yield-mobile_1_a4f655fd70f2f32d7467340ba8f851c8.jpg', 'ICN8888790648522539008', 19.940, 0.000, 0, 0, '2019-11-03', 0, 1),
(1210, 10, 10, 0, 0, 0, '20191103073904_Gold-fingers-CPUs-scrap.jpg_300x300.jpg', 'ICN8888790648522539008', 20.040, 0.000, 0, 0, '2019-11-03', 0, 1),
(1211, 10, 10, 0, 0, 0, '20191103074313_20191101045514_fingersa.jpg', 'ICN8888790648522539008', 19.420, 0.000, 0, 0, '2019-11-03', 0, 1),
(1212, 10, 10, 0, 0, 0, '20191103080303_P90618-114516.jpg', 'ICN8888790648522539008', 22.840, 10.681, 0, 0, '2019-11-03', 0, 1),
(1213, 1, 1, 0, 0, 0, '20191104100403_cno.jpg', 'ICN199095167511166976', 0.770, 0.000, 0, 0, '2019-11-04', 0, 1),
(1257, 10, 10, 0, 0, 0, '20191107041640_WhatsApp Image 2019-11-07 at 11.03.16 AM.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-11-07', 0, 1),
(1258, 10, 10, 0, 0, 0, '20191107042308_imagejpeg_0 4.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-11-07', 0, 1),
(1259, 10, 10, 0, 0, 0, '20191107043633_mike.jpg', 'ICN8294737710174699520', 335.850, 0.000, 0, 0, '2019-11-07', 0, 1),
(1260, 10, 10, 0, 0, 0, '20191107071831_electronics-scrap.jpg', 'ICN4797712617434078908', 5.080, 0.000, 0, 0, '2019-11-07', 0, 1),
(1295, 10, 10, 0, 0, 0, '20191115092406_IMG_1166.JPG', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-15', 0, 1),
(1296, 10, 10, 0, 0, 0, '20191115092717_IMG_1169.JPG', 'ICN8888790648522539008', 0.000, 0.000, 0, 0, '2019-11-15', 0, 1),
(1297, 10, 10, 0, 0, 0, '20191115092745_IMG_1169.JPG', 'ICN4797712617434078908', 0.000, 0.000, 0, 0, '2019-11-15', 0, 1),
(1298, 10, 10, 0, 0, 0, '20191115092818_IMG_1169.JPG', 'ICN6977681689343872147', 0.000, 0.000, 0, 0, '2019-11-15', 0, 1),
(1299, 10, 10, 0, 0, 0, '', '', 0.000, 0.000, 0, 0, '2019-11-15', 0, 1),
(1300, 10, 10, 0, 0, 0, '20191118042222_IMG_1169.JPG', 'ICN4269223330747252736', 1.300, 0.000, 0, 0, '2019-11-18', 0, 1),
(1301, 10, 10, 0, 0, 0, '20191118042317_IMG_1169.JPG', 'ICN6977681689343872147', 8.110, 0.000, 0, 0, '2019-11-18', 0, 1),
(1302, 10, 10, 0, 0, 0, '20191118042417_IMG_1169.JPG', 'ICN7840664651223839192', 7.750, 0.000, 0, 0, '2019-11-18', 0, 1),
(1303, 10, 10, 0, 0, 0, '20191118042525_IMG_1169.JPG', 'ICN4797712617434078908', 9.850, 0.000, 0, 0, '2019-11-18', 0, 1),
(1304, 10, 10, 0, 0, 0, '20191118042636_IMG_1169.JPG', 'ICN8888790648522539008', 19.030, 0.000, 0, 0, '2019-11-18', 0, 1),
(1305, 10, 10, 0, 0, 0, '20191118042803_IMG_1169.JPG', 'ICN4269223330747252736', 1.300, 0.000, 0, 0, '2019-11-18', 0, 1),
(1343, 1, 0, 0, 1, 0, '20191121023854_ninomb.jpg', 'ICN4797712617434078908', 3.240, 0.000, 0, 0, '2019-11-21', 0, 1),
(1371, 1, 1, 0, 0, 0, '20191122122305_img1.jpeg', 'ICN4463194774072983552', 7.190, 0.000, 0, 0, '2019-11-22', 0, 1),
(1372, 1, 1, 0, 0, 0, '20191122122618_ram.jpeg', 'ICN4463194774072983552', 8.290, 0.000, 0, 0, '2019-11-22', 0, 1),
(1373, 1, 1, 0, 0, 0, '20191122122657_img1.jpeg', 'ICN4463194774072983552', 7.190, 0.000, 0, 0, '2019-11-22', 0, 1),
(1374, 1, 1, 0, 0, 0, '20191122123135_20190617061211.jpg', 'ICN4463194774072983552', 0.000, 0.000, 0, 0, '2019-11-22', 0, 1),
(1375, 1, 1, 0, 0, 0, '20191122123414_img3.jpg', 'ICN4463194774072983552', 5.700, 0.000, 0, 0, '2019-11-22', 0, 1),
(1376, 1, 1, 0, 0, 0, '20191122123755_img3.jpg', 'ICN4463194774072983552', 5.700, 0.000, 0, 0, '2019-11-22', 0, 1),
(1377, 1, 1, 0, 0, 0, '20191122124216_img3.jpg', 'ICN4463194774072983552', 6.120, 0.000, 0, 0, '2019-11-22', 0, 1),
(1399, 1, 1, 0, 0, 0, '20191203061420_gggg.jpeg', 'ICN8790309591045898240', 4.520, 0.000, 0, 0, '2019-12-03', 0, 1),
(1412, 1, 1, 0, 0, 0, '20191215073135_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-15', 0, 1),
(1421, 1, 1, 0, 0, 0, '20191215073505_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-15', 0, 1),
(1422, 1, 1, 0, 0, 0, '20191215073505_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-15', 0, 1),
(1423, 1, 1, 0, 0, 0, '20191215073505_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-15', 0, 1),
(1424, 1, 1, 0, 0, 0, '20191216053551_img1.jpeg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-16', 0, 1),
(1425, 1, 1, 0, 0, 0, '20191216054031_img1.jpeg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-16', 0, 1),
(1426, 1, 1, 0, 0, 0, '20191216073502_20191210011210_mother1.png', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1427, 1, 1, 0, 0, 0, '20191216073645_1.png', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1428, 1, 1, 0, 0, 0, '20191216074151_20191122030738_img3.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1429, 1, 1, 0, 0, 0, '20191216074332_20191216053551_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1430, 1, 1, 0, 0, 0, '20191216074610_20191216074151_20191122030738_img3.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1431, 1, 1, 0, 0, 0, '20191216074720_img1.jpeg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-16', 0, 1),
(1432, 1, 1, 0, 0, 0, '20191216083105_newmotherboard.jpg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-16', 0, 1),
(1433, 1, 1, 0, 0, 0, '20191216083210_20191216073502_20191210011210_mother1.png.jpg', 'ICN2556984659137265664', 2.360, 0.000, 0, 0, '2019-12-16', 0, 1),
(1434, 1, 1, 0, 0, 0, '20191216084717_testmb.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1435, 1, 1, 0, 0, 0, '20191216090339_daleimg.jpg', 'ICN2556984659137265664', 2.360, 0.000, 0, 0, '2019-12-16', 0, 1),
(1436, 1, 1, 0, 0, 0, '20191216091041_P80801-144943.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1437, 1, 1, 0, 0, 0, '20191216102254_this2.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1438, 1, 1, 0, 0, 0, '20191216102907_This.jpeg', 'ICN2556984659137265664', 2.990, 0.000, 0, 0, '2019-12-16', 0, 1),
(1439, 1, 1, 0, 0, 0, '20191216103657_P80801-144953.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1440, 1, 1, 0, 0, 0, '20191216104835_newmotherboard.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1441, 1, 1, 0, 0, 0, '20191216105722_1951893.jpg', 'ICN2556984659137265664', 2.330, 0.000, 0, 0, '2019-12-16', 0, 1),
(1442, 1, 1, 0, 0, 0, '20191216031646_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1443, 1, 1, 0, 0, 0, '20191216031757_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1444, 1, 1, 0, 0, 0, '20191216031757_img1.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-16', 0, 1),
(1445, 1, 1, 0, 0, 0, '20191217073208_processor.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1446, 1, 1, 0, 0, 0, '20191217073934_newmotherboard.jpg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-17', 0, 1),
(1447, 1, 1, 0, 0, 0, '20191217095724_newmotherboard.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1448, 1, 1, 0, 0, 0, '20191217100314_111.jpeg', 'ICN2556984659137265664', 2.750, 0.000, 0, 0, '2019-12-17', 0, 1),
(1449, 1, 1, 0, 0, 0, '20191217100550_newmotherboard.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1450, 1, 1, 0, 0, 0, '20191217105339_hungary2.jpeg', 'ICN2556984659137265664', 2.160, 0.000, 0, 0, '2019-12-17', 0, 1),
(1451, 1, 1, 0, 0, 0, '20191217112843_Ceramic-Computer-CPU-Scrap.jpg_350x350.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1452, 1, 1, 0, 0, 0, '20191217113154_Ceramic-Computer-CPU-Scrap.jpg_350x350.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1453, 1, 1, 0, 0, 0, '20191217114127_Ceramic-Computer-CPU-Scrap.jpg_350x350.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1454, 1, 1, 0, 0, 0, '20191217121352_Ceramic-Computer-CPU-Scrap.jpg_350x350.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1455, 1, 1, 0, 0, 0, '20191217121600_Cerami.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1456, 1, 1, 0, 0, 0, '20191217122712_processor.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1457, 1, 1, 0, 0, 0, '20191217122901_Cerami.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1458, 1, 1, 0, 0, 0, '20191217124343_img1.jpeg', 'ICN2556984659137265664', 3.200, 0.000, 0, 0, '2019-12-17', 0, 1),
(1459, 1, 1, 0, 0, 0, '20191217125316_processor.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1460, 1, 1, 0, 0, 0, '20191217125316_processor.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1461, 1, 1, 0, 0, 0, '20191217125316_processor.jpeg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1462, 1, 1, 0, 0, 0, '20191217125316_processor.jpeg', 'ICN8294737710174699520', 60.540, 0.000, 0, 0, '2019-12-17', 0, 1),
(1463, 1, 1, 0, 0, 0, '20191217010325_20191217121352_Ceramic-Computer-CPU-Scrap_350x350.jpg', 'ICN8294737710174699520', 172.780, 0.000, 0, 0, '2019-12-17', 0, 1),
(1464, 1, 1, 0, 0, 0, '20191217051323_20191217121352_Ceramic-Computer-CPU-Scrap_350x350.jpg', 'ICN8294737710174699520', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1465, 1, 1, 0, 0, 0, '20191217101803_platedblanks.jpeg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2019-12-17', 0, 1),
(1466, 1, 1, 0, 0, 0, '20191217102133_vpus3.jpg', 'ICN8294737710174699520', 56.930, 0.000, 0, 0, '2019-12-17', 0, 1),
(1467, 1, 1, 0, 0, 0, '20191218115832_copper.jpeg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2019-12-18', 0, 1),
(1468, 1, 1, 0, 0, 0, '20191218115832_copper.jpeg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2019-12-18', 0, 1),
(1469, 1, 1, 0, 0, 0, '20191218115832_copper.jpeg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2019-12-18', 0, 1),
(1471, 1, 1, 0, 0, 0, '20191218123523_20190329053351_322.jpeg', 'ICN5080750872976162816', 0.510, 0.000, 0, 0, '2019-12-18', 0, 1),
(1473, 1, 1, 0, 0, 0, '20191218124035_newcpu.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2019-12-18', 0, 1),
(1474, 1, 1, 0, 0, 0, '20191218124035_newcpu.jpg', 'ICN5348152100851286016', 24.610, 0.000, 0, 0, '2019-12-18', 0, 1),
(1475, 1, 1, 0, 0, 0, '20191218124730_gold.jpeg', 'ICN5348152100851286016', 10.560, 0.000, 0, 0, '2019-12-18', 0, 1),
(1476, 1, 1, 0, 0, 0, '20191218050737_20181218044603_img2.jpg', 'ICN5491985813950431232', 0.000, 0.000, 0, 0, '2019-12-18', 0, 1),
(1477, 1, 1, 0, 0, 0, '20191218050737_20181218044603_img2.jpg', 'ICN5491985813950431232', 0.000, 0.000, 0, 0, '2019-12-18', 0, 1),
(1478, 1, 1, 0, 0, 0, '20191218050737_20181218044603_img2.jpg', 'ICN5491985813950431232', 3.420, 0.000, 0, 0, '2019-12-18', 0, 1),
(1479, 1, 1, 0, 0, 0, '20191218052328_20190202084844_20190202075115.jpg', 'ICN5491985813950431232', 3.140, 0.000, 0, 0, '2019-12-18', 0, 1),
(1481, 1, 1, 0, 0, 0, '20191219120647_20190202094304_re3.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2019-12-19', 0, 1),
(1482, 1, 1, 0, 0, 0, '20191219121332_20190202085551_49748507_2138300512896796_2401305013918892032_n.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2019-12-19', 0, 1),
(1483, 1, 1, 0, 0, 0, '20191219121332_20190202085551_49748507_2138300512896796_2401305013918892032_n.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2019-12-19', 0, 1),
(1484, 1, 1, 0, 0, 0, '20191219121740_20190202084844_20190202075115.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2019-12-19', 0, 1),
(1487, 1, 1, 0, 0, 0, '20191219040346_20190202085551_49748507_2138300512896796_2401305013918892032_n.jpg', 'ICN7981429672816672768', 1.260, 0.000, 0, 0, '2019-12-19', 0, 1),
(1488, 1, 1, 0, 0, 0, '20191219040930_20190202084844_20190202075115.jpg', 'ICN7981429672816672768', 1.360, 0.000, 0, 0, '2019-12-19', 0, 1),
(1489, 1, 1, 0, 0, 0, '20191221022253_20181219085058_ramimg.jpeg', 'ICN3203040099432398848', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1490, 1, 1, 0, 0, 0, '20191221023042_3ea87e4b-fca1-4b0a-bebb-cce6e3627a4c.jpg', 'ICN7017588983815208960', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1491, 1, 1, 0, 0, 0, '20191221023042_3ea87e4b-fca1-4b0a-bebb-cce6e3627a4c.jpg', 'ICN7017588983815208960', 18.530, 0.000, 0, 0, '2019-12-21', 0, 1),
(1492, 1, 1, 0, 0, 0, '20191221025159_20190517104248_Retrospective.jpg', 'ICN239530807134257152', 6.470, 0.000, 0, 0, '2019-12-21', 0, 1),
(1493, 1, 1, 0, 0, 0, '20191221032723_20191119061126_serbiaMB.jpg', 'ICN239530807134257152', 6.920, 0.000, 0, 0, '2019-12-21', 0, 1),
(1494, 1, 1, 0, 0, 0, '20191221033435_20190724053616_elevtronics.jpg', 'ICN2261506302335254528', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1495, 1, 1, 0, 0, 0, '20191221033435_20190724053616_elevtronics.jpg', 'ICN2261506302335254528', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1496, 1, 1, 0, 0, 0, '20191221034506_20190724053616_elevtronics.jpg', 'ICN2261506302335254528', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1497, 1, 1, 0, 0, 0, '20191221034506_20190724053616_elevtronics.jpg', 'ICN2261506302335254528', 6.870, 0.000, 0, 0, '2019-12-21', 0, 1),
(1498, 1, 1, 0, 0, 0, '20191221040438_20190305084937_this.jpeg', 'ICN2261506302335254528', 7.330, 0.000, 0, 0, '2019-12-21', 0, 1),
(1499, 1, 1, 0, 0, 0, '20191221054555_20190202084844_20190202075115.jpg', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1500, 1, 1, 0, 0, 0, '20191221054555_20190202084844_20190202075115.jpg', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2019-12-21', 0, 1),
(1501, 1, 1, 0, 0, 0, '20191221054555_20190202084844_20190202075115.jpg', 'ICN3800330000012410880', 4.690, 0.000, 0, 0, '2019-12-21', 0, 1),
(1502, 1, 1, 0, 0, 0, '20191222123704_20181219064208_FB_IMG_1545201484831.jpg', 'ICN3203040099432398848', 0.000, 0.000, 0, 0, '2019-12-22', 0, 1),
(1504, 1, 1, 0, 0, 0, '20191222124550_20181219064052_FB_IMG_1545201493067.jpg', 'ICN3203040099432398848', 0.000, 0.000, 0, 0, '2019-12-22', 0, 1),
(1505, 1, 1, 0, 0, 0, '20191222125720_20181219064052_FB_IMG_1545201493067.jpg', 'ICN3203040099432398848', 23.070, 0.000, 0, 0, '2019-12-22', 0, 1),
(1506, 1, 1, 0, 0, 0, '20191222010505_20181219064208_FB_IMG_1545201484831.jpg', 'ICN3203040099432398848', 24.530, 0.000, 0, 0, '2019-12-22', 0, 1),
(1507, 1, 1, 0, 0, 0, '20191227091323_e-waste-e1512646973253.jpg', 'ICN2556984659137265664', 2.490, 0.000, 0, 0, '2019-12-27', 0, 1),
(1508, 1, 7, 0, 0, 0, '20200102055507_20181219064208_FB_IMG_1545201484831.jpg', 'ICN3203040099432398848', 22.460, 0.000, 0, 0, '2020-01-02', 0, 1),
(1509, 1, 7, 0, 0, 0, '20200102055507_20181219064208_FB_IMG_1545201484831.jpg', 'ICN3203040099432398848', 22.460, 0.000, 0, 0, '2020-01-02', 0, 1),
(1510, 1, 11, 0, 0, 0, '20200103090856_7AFD14404DAA6B5D1D25140A026AFF51.jpg', 'ICN7981429672816672768', 1.830, 1.100, 0, 0, '2020-01-03', 0, 1),
(1511, 1, 11, 0, 0, 0, '20200103091507_motherboard-scrap-500x500.jpg', 'ICN3800330000012410880', 8.350, 0.000, 0, 0, '2020-01-03', 0, 1),
(1512, 1, 7, 0, 0, 0, '20200103100101_newcpu.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-03', 0, 1),
(1515, 11, 11, 0, 0, 0, '20200103104354_20191118095357_emil1.jpeg', 'ICN5080750872976162816', 0.280, 0.298, 0, 0, '2020-01-03', 0, 1),
(1516, 11, 11, 0, 0, 0, '20200103104938_crt.jpg', 'ICN7981429672816672768', 1.100, 0.840, 0, 0, '2020-01-03', 0, 1),
(1517, 11, 11, 0, 0, 0, '20200107084718_platedblanks.jpeg', 'ICN5348152100851286016', 7.840, 6.580, 0, 0, '2020-01-07', 0, 1),
(1518, 11, 11, 0, 0, 0, '20200107085343_handy_pl_g.jpg', 'ICN7017588983815208960', 23.140, 27.542, 0, 0, '2020-01-07', 0, 1),
(1528, 11, 11, 0, 0, 0, '20200109121748_crt.jpeg', 'ICN7981429672816672768', 1.060, 0.723, 0, 0, '2020-01-09', 0, 1),
(1529, 11, 11, 0, 0, 0, '20200109122103_crt2.jpeg', 'ICN7981429672816672768', 1.100, 0.700, 0, 0, '2020-01-09', 0, 1),
(1530, 11, 11, 23, 0, 0, '20200109124637_crt5.jpeg', 'ICN7981429672816672768', 1.510, 0.000, 0, 0, '2020-01-09', 0, 1),
(1533, 7, 7, 0, 0, 0, '20200109064725_naubs.jpeg', 'ICN5080750872976162816', 0.300, 0.289, 0, 0, '2020-01-09', 0, 1),
(1534, 7, 7, 0, 0, 0, '20200109083337_emil2.jpeg', 'ICN5080750872976162816', 0.430, 0.371, 0, 0, '2020-01-09', 0, 1),
(1535, 7, 7, 0, 0, 0, '20200109083546_ninovlots.jpg', 'ICN2261506302335254528', 4.830, 5.840, 0, 0, '2020-01-09', 0, 1),
(1536, 7, 7, 0, 0, 0, '20200109084555_emil3.jpeg', 'ICN5080750872976162816', 0.130, 0.155, 0, 0, '2020-01-09', 0, 1),
(1540, 7, 7, 0, 0, 0, '20200109085333_ninomb.jpg', 'ICN239530807134257152', 7.180, 7.544, 0, 0, '2020-01-09', 0, 1),
(1541, 7, 7, 0, 0, 0, '20200110084436_nino4.jpg', 'ICN3800330000012410880', 5.880, 6.660, 0, 0, '2020-01-10', 0, 1),
(1544, 7, 7, 0, 0, 0, '20200110085432_wew23.jpeg', 'ICN5080750872976162816', 0.310, 0.296, 0, 0, '2020-01-10', 0, 1),
(1545, 7, 7, 0, 0, 0, '20200110085717_elevtronics.jpg', 'ICN2261506302335254528', 5.090, 5.050, 61, 0, '2020-01-10', 0, 1),
(1553, 7, 7, 0, 0, 0, '20200110112838_crt.jpg', 'ICN7981429672816672768', 0.630, 0.820, 0, 0, '2020-01-10', 0, 1),
(1554, 10, 10, 0, 0, 0, '20200110020547_CPU2.jpg', 'ICN8294737710174699520', 119.360, 0.000, 0, 0, '2020-01-10', 0, 1),
(1555, 7, 7, 0, 0, 0, '20200112102427_boards-625x350.jpg', 'ICN2556984659137265664', 4.370, 0.000, 0, 0, '2020-01-12', 0, 1),
(1556, 11, 11, 0, 0, 0, '20200112012559_crttest.jpeg', 'ICN7981429672816672768', 1.160, 0.630, 0, 0, '2020-01-12', 0, 1),
(1557, 11, 11, 0, 0, 0, '20200112031948_shit.jpeg', 'ICN2556984659137265664', 6.120, 3.620, 0, 0, '2020-01-12', 0, 1),
(1558, 11, 11, 0, 0, 0, '20200112041702_shit.jpeg', 'ICN2556984659137265664', 5.520, 0.000, 0, 0, '2020-01-12', 0, 1),
(1559, 7, 7, 0, 0, 0, '20200113065802_mothers.jpeg', 'ICN2556984659137265664', 4.170, 3.270, 0, 0, '2020-01-13', 0, 1),
(1565, 11, 11, 23, 0, 0, '20200114081443_3.jpeg', 'ICN5080750872976162816', 0.500, 0.000, 0, 0, '2020-01-14', 0, 1),
(1566, 11, 11, 23, 0, 0, '20200114095324_Frames 01.jpeg', 'ICN5080750872976162816', 0.570, 0.560, 0, 0, '2020-01-14', 0, 1),
(1567, 11, 11, 23, 0, 0, '20200114095510_Frames02.jpeg', 'ICN5080750872976162816', 0.570, 0.560, 0, 0, '2020-01-14', 0, 1),
(1568, 11, 11, 23, 0, 0, '20200114095636_Frames03.jpeg', 'ICN5080750872976162816', 0.570, 0.560, 0, 0, '2020-01-14', 0, 1),
(1569, 11, 11, 23, 0, 0, '20200114095823_Gold Plated01.jpeg', 'ICN5348152100851286016', 10.080, 6.590, 0, 0, '2020-01-14', 0, 1),
(1578, 11, 11, 0, 0, 0, '20200114101321_321.jpeg', 'ICN5080750872976162816', 0.390, 0.330, 0, 0, '2020-01-14', 0, 1),
(1580, 11, 11, 0, 0, 0, '20200114101656_322.jpeg', 'ICN5080750872976162816', 0.490, 0.380, 0, 0, '2020-01-14', 0, 1),
(1581, 11, 11, 0, 0, 0, '20200114101919_gggg.jpeg', 'ICN5348152100851286016', 4.960, 1.800, 0, 0, '2020-01-14', 0, 1),
(1582, 11, 11, 0, 0, 0, '20200114102324_ggg2.jpeg', 'ICN5348152100851286016', 8.480, 4.250, 0, 0, '2020-01-14', 0, 1),
(1583, 11, 11, 0, 0, 0, '20200114102825_ggg4.jpeg', 'ICN5348152100851286016', 7.150, 2.930, 0, 0, '2020-01-14', 0, 1),
(1584, 11, 11, 0, 0, 0, '20200114103358_what.jpeg', 'ICN5080750872976162816', 0.310, 0.220, 0, 0, '2020-01-14', 0, 1),
(1585, 11, 11, 0, 0, 0, '20200114104318_what.jpeg', 'ICN5080750872976162816', 0.310, 0.220, 0, 0, '2020-01-14', 0, 1),
(1586, 11, 11, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 9.660, 4.790, 0, 0, '2020-01-14', 0, 1),
(1587, 7, 7, 18, 0, 0, '20200114044009_20181219064208_FB_IMG_1545201484831.jpg', 'ICN3203040099432398848', 0.000, 0.000, 0, 0, '2020-01-14', 0, 1),
(1588, 7, 7, 18, 0, 0, '20200114044448_newcpu.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-14', 0, 1),
(1589, 7, 7, 18, 0, 0, '20200114044448_newcpu.jpg', 'ICN5348152100851286016', 11.020, 0.000, 0, 0, '2020-01-14', 0, 1),
(1590, 11, 11, 30, 0, 0, '20200114071548_20200114110930_lite.jpeg', 'ICN5348152100851286016', 4.050, 4.090, 0, 0, '2020-01-14', 0, 1),
(1591, 7, 7, 0, 0, 0, '', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-15', 0, 1),
(1592, 7, 7, 0, 0, 0, '20200114044448_newcpu.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-15', 0, 1),
(1593, 7, 7, 0, 0, 0, '20200114044448_newcpu.jpg', 'ICN5348152100851286016', 10.940, 0.000, 0, 0, '2020-01-15', 0, 1),
(1594, 7, 7, 0, 0, 0, '20200114071548_20200114110930_lite.jpeg', 'ICN5348152100851286016', 5.700, 0.000, 0, 0, '2020-01-15', 0, 1),
(1595, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 4.440, 0.000, 0, 0, '2020-01-15', 0, 1),
(1596, 7, 7, 18, 0, 0, '20200114071548_20200114110930_lite.jpeg', 'ICN5348152100851286016', 5.090, 0.000, 0, 0, '2020-01-15', 0, 1),
(1597, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 4.440, 0.000, 0, 0, '2020-01-15', 0, 1),
(1608, 11, 11, 23, 0, 0, '20200116075427_Gold Plated01.jpeg', 'ICN5348152100851286016', 10.710, 0.000, 0, 0, '2020-01-16', 0, 1),
(1610, 11, 11, 29, 0, 0, '20200116120422_Frame05.jpeg', 'ICN5080750872976162816', 0.460, 0.000, 0, 0, '2020-01-16', 0, 1),
(1611, 11, 11, 23, 0, 0, '20200116121625_Frames05.jpeg', 'ICN5080750872976162816', 0.440, 0.000, 0, 0, '2020-01-16', 0, 1),
(1612, 11, 11, 23, 0, 0, '20200116122425_Frames05.jpeg', 'ICN5080750872976162816', 0.460, 0.000, 0, 0, '2020-01-16', 0, 1),
(1613, 11, 11, 0, 0, 0, '20200116122823_Frames05.jpeg', 'ICN5080750872976162816', 0.410, 0.000, 0, 0, '2020-01-16', 0, 1),
(1615, 11, 11, 29, 0, 0, '20200116124559_gld1.jpeg', 'ICN5348152100851286016', 13.900, 0.000, 0, 0, '2020-01-16', 0, 1),
(1616, 11, 11, 0, 0, 0, '20200116124650_321.jpeg', 'ICN5080750872976162816', 0.390, 0.000, 0, 0, '2020-01-16', 0, 1),
(1617, 11, 11, 23, 0, 0, '20200116124646_Gold plated02.jpeg', 'ICN5348152100851286016', 13.900, 0.000, 0, 0, '2020-01-16', 0, 1),
(1618, 11, 11, 0, 0, 0, '20200116124912_Gold plated02.jpeg', 'ICN5348152100851286016', 12.530, 5.670, 0, 0, '2020-01-16', 0, 1),
(1619, 11, 11, 0, 0, 0, '20200116125935_Gold plated04.jpeg', 'ICN5348152100851286016', 12.530, 5.670, 0, 0, '2020-01-16', 0, 1),
(1621, 11, 11, 29, 0, 0, '20200116010531_gld2.jpeg', 'ICN5348152100851286016', 13.900, 6.290, 0, 0, '2020-01-16', 0, 1),
(1622, 11, 11, 29, 0, 0, '20200116011235_sell4.jpeg', 'ICN2556984659137265664', 2.830, 0.000, 0, 0, '2020-01-16', 0, 1),
(1623, 11, 11, 0, 0, 0, '20200116011922_Steven mat..jpeg', 'ICN2556984659137265664', 2.530, 0.000, 0, 0, '2020-01-16', 0, 1),
(1624, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-16', 0, 1),
(1625, 7, 7, 0, 0, 0, '20200114044448_newcpu.jpg', 'ICN5348152100851286016', 10.940, 0.000, 0, 0, '2020-01-16', 0, 1),
(1626, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-16', 0, 1),
(1631, 10, 10, 0, 0, 0, '20200116084843_CPU2.jpg', 'ICN8294737710174699520', 119.360, 0.000, 0, 0, '2020-01-16', 0, 1),
(1632, 11, 11, 0, 0, 0, '20200116090905_telecomsss.jpeg', 'ICN3800330000012410880', 8.460, 10.918, 0, 0, '2020-01-16', 0, 1),
(1633, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-01-17', 0, 1),
(1634, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 3.360, 0.000, 0, 0, '2020-01-17', 0, 1),
(1635, 7, 7, 0, 0, 0, '20200114110930_lite.jpeg', 'ICN5348152100851286016', 4.480, 0.000, 0, 0, '2020-01-17', 0, 1),
(1636, 11, 11, 29, 0, 0, '20200117062644_mth1.jpeg', 'ICN2556984659137265664', 2.830, 0.000, 0, 0, '2020-01-17', 0, 1),
(1637, 11, 11, 0, 0, 0, '20200117062802_Fer Ger01.jpeg', 'ICN2556984659137265664', 2.530, 0.000, 0, 0, '2020-01-17', 0, 1),
(1638, 11, 11, 29, 0, 0, '20200117063049_mth2.jpeg', 'ICN2556984659137265664', 2.830, 0.000, 0, 0, '2020-01-17', 0, 1),
(1639, 11, 11, 0, 0, 0, '20200117063230_Fer Ger02.jpeg', 'ICN2556984659137265664', 2.530, 0.000, 0, 0, '2020-01-17', 0, 1),
(1641, 7, 7, 0, 0, 0, '20200112102427_boards-625x350.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2020-01-17', 0, 1),
(1642, 7, 7, 0, 0, 0, '20200114044448_newcpu.jpg', 'ICN2556984659137265664', 4.840, 0.000, 0, 0, '2020-01-17', 0, 1),
(1643, 7, 7, 0, 0, 0, '20200112102427_boards-625x350.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2020-01-17', 0, 1),
(1644, 7, 7, 0, 0, 0, '20200112102427_boards-625x350.jpg', 'ICN2556984659137265664', 5.320, 0.000, 0, 0, '2020-01-17', 0, 1),
(1645, 7, 7, 0, 0, 0, '20200109085333_ninomb.jpg', 'ICN2556984659137265664', 3.540, 0.000, 0, 0, '2020-01-17', 0, 1),
(1646, 7, 7, 0, 0, 0, '20200109085333_ninomb.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2020-01-17', 0, 1),
(1647, 7, 7, 0, 0, 0, '20200109085333_ninomb.jpg', 'ICN2556984659137265664', 3.800, 0.000, 0, 0, '2020-01-17', 0, 1),
(1650, 1, 0, 0, 1, 0, '20200119083353_20181218044603_img2.jpg', 'ICN2556984659137265664', 0.350, 0.000, 0, 0, '2020-01-19', 0, 1),
(1658, 11, 11, 0, 0, 0, '20200120055402_ram3.jpeg', 'ICN3203040099432398848', 13.790, 21.151, 0, 0, '2020-01-20', 0, 1),
(1659, 11, 11, 0, 0, 0, '20200120055959_ram2.jpeg', 'ICN3203040099432398848', 28.720, 24.890, 0, 0, '2020-01-20', 0, 1),
(1660, 11, 11, 0, 0, 0, '20200120064142_ram1.jpeg', 'ICN3203040099432398848', 19.020, 32.217, 0, 0, '2020-01-20', 0, 1),
(1661, 1, 0, 0, 1, 0, '20200121102523_mb1.jpeg', 'ICN2556984659137265664', 1.420, 0.000, 0, 0, '2020-01-21', 0, 1),
(1664, 7, 7, 0, 0, 0, '20200123091732_IMG_2640-1600.jpg', 'ICN5080750872976162816', 0.350, 0.000, 0, 0, '2020-01-23', 0, 1),
(1665, 7, 7, 0, 0, 0, '', '', 0.000, 0.000, 0, 0, '2020-01-23', 0, 1),
(1666, 7, 7, 0, 0, 0, '20200123091823_crt123.JPG', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2020-01-23', 0, 1),
(1667, 7, 7, 0, 0, 0, '20200123112411_20190701_134206.jpg', 'ICN7981429672816672768', 0.350, 0.000, 0, 0, '2020-01-23', 0, 1),
(1668, 10, 10, 31, 0, 0, '', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2020-01-23', 0, 1),
(1669, 10, 10, 31, 0, 0, '', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2020-01-23', 0, 1),
(1670, 11, 11, 0, 0, 0, '20200123025714_IMG-20200123-WA0047.jpg', 'ICN5080750872976162816', 0.290, 0.220, 0, 0, '2020-01-23', 0, 1),
(1671, 11, 11, 0, 0, 0, '20200123025835_IMG-20200123-WA0046.jpg', 'ICN5080750872976162816', 0.410, 0.304, 0, 0, '2020-01-23', 0, 1),
(1672, 11, 11, 0, 0, 0, '20200123030000_IMG-20200123-WA0045.jpg', 'ICN5080750872976162816', 0.410, 0.307, 0, 0, '2020-01-23', 0, 1),
(1673, 11, 11, 0, 0, 0, '20200123030127_IMG-20200123-WA0048.jpg', 'ICN5080750872976162816', 0.410, 0.265, 0, 0, '2020-01-23', 0, 1),
(1674, 11, 11, 0, 0, 0, '20200123031200_IMG-20200123-WA0018.jpg', 'ICN5080750872976162816', 0.460, 0.398, 0, 0, '2020-01-23', 0, 1),
(1675, 11, 11, 0, 0, 0, '20200123032839_IMG-20200123-WA0015.jpg', 'ICN5080750872976162816', 0.470, 0.000, 0, 0, '2020-01-23', 0, 1),
(1677, 11, 11, 0, 0, 0, '20200123051156_3f.jpg', 'ICN5080750872976162816', 0.370, 0.251, 0, 0, '2020-01-23', 0, 1),
(1679, 14, 14, 0, 0, 0, '20200125042532_ninomb.jpg', 'ICN2556984659137265664', 3.610, 2.800, 0, 0, '2020-01-25', 0, 1),
(1682, 14, 14, 0, 0, 0, '20200125053323_IMG-20200123-WA0018.jpg', 'ICN5080750872976162816', 0.660, 0.000, 0, 0, '2020-01-25', 0, 1),
(1683, 11, 11, 0, 0, 0, '20200127074322_322.jpeg', 'ICN5080750872976162816', 0.540, 0.440, 0, 0, '2020-01-27', 0, 1),
(1685, 11, 11, 0, 0, 0, '20200127103530_gpb3.jpeg', 'ICN5348152100851286016', 14.170, 7.550, 0, 0, '2020-01-27', 0, 1),
(1686, 11, 11, 0, 0, 0, '20200127103652_gpb1.jpeg', 'ICN5348152100851286016', 13.900, 0.000, 0, 0, '2020-01-27', 0, 1),
(1690, 11, 11, 0, 0, 0, '20200127104820_gpb3.jpeg', 'ICN5348152100851286016', 13.900, 0.000, 0, 0, '2020-01-27', 0, 1),
(1691, 11, 11, 0, 0, 0, '20200127105151_gpb3.jpeg', 'ICN5348152100851286016', 14.170, 0.000, 0, 0, '2020-01-27', 0, 1),
(1692, 11, 11, 0, 0, 0, '20200127105554_gpb3.jpeg', 'ICN5348152100851286016', 13.900, 0.000, 0, 0, '2020-01-27', 0, 1),
(1693, 11, 11, 0, 0, 0, '20200127110207_322.jpeg', 'ICN5080750872976162816', 0.540, 0.000, 0, 0, '2020-01-27', 0, 1),
(1694, 11, 11, 0, 0, 0, '20200127110410_gpb1.jpeg', 'ICN5348152100851286016', 6.990, 2.540, 0, 0, '2020-01-27', 0, 1),
(1695, 11, 11, 0, 0, 0, '20200127110714_mothers.jpeg', 'ICN2556984659137265664', 6.150, 3.690, 0, 0, '2020-01-27', 0, 1),
(1696, 11, 11, 0, 0, 0, '20200127110849_mothers.jpeg', 'ICN2556984659137265664', 6.150, 3.680, 0, 0, '2020-01-27', 0, 1),
(1697, 11, 11, 0, 0, 0, '20200127112425_0002361_imba-9454g-industrial-atx-motherboard.jpeg', 'ICN2556984659137265664', 5.460, 3.320, 0, 0, '2020-01-27', 0, 1),
(1698, 11, 11, 0, 0, 0, '20200127112515_0002361_imba-9454g-industrial-atx-motherboard.jpeg', 'ICN2556984659137265664', 5.460, 3.320, 0, 0, '2020-01-27', 0, 1),
(1699, 11, 11, 0, 0, 0, '20200127112754_gpb1.jpeg', 'ICN5348152100851286016', 6.990, 2.540, 0, 0, '2020-01-27', 0, 1),
(1703, 11, 11, 0, 0, 0, '20200127113714_3.jpeg', 'ICN5080750872976162816', 0.650, 0.540, 0, 0, '2020-01-27', 0, 1),
(1704, 11, 11, 0, 0, 0, '20200127114127_1.jpeg', 'ICN5080750872976162816', 0.360, 0.000, 0, 0, '2020-01-27', 0, 1),
(1705, 11, 11, 0, 0, 0, '20200127114513_111.jpeg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2020-01-27', 0, 1),
(1706, 11, 11, 0, 0, 0, '20200127114720_321.jpeg', 'ICN5080750872976162816', 0.460, 0.398, 0, 0, '2020-01-27', 0, 1),
(1707, 7, 7, 0, 0, 0, '20200127030010_20200107085343_handy_pl_g.jpg', 'ICN7017588983815208960', 0.000, 0.000, 0, 0, '2020-01-27', 0, 1),
(1708, 7, 7, 0, 0, 0, '20200127030010_20200107085343_handy_pl_g.jpg', 'ICN7017588983815208960', 14.770, 0.000, 0, 0, '2020-01-27', 0, 1),
(1709, 7, 7, 0, 0, 0, '20200127034025_20200107085343_handy_pl_g.jpg', 'ICN7017588983815208960', 14.770, 0.000, 0, 0, '2020-01-27', 0, 1),
(1710, 7, 7, 0, 0, 0, '20200127034025_20200107085343_handy_pl_g.jpg', 'ICN7017588983815208960', 14.770, 0.000, 0, 0, '2020-01-27', 0, 1),
(1711, 11, 11, 0, 0, 0, '20200128111907_IMG_20200128_121455.jpg', 'ICN3800330000012410880', 10.570, 3.653, 0, 0, '2020-01-28', 0, 1),
(1713, 11, 11, 0, 0, 0, '20200128112320_IMG_20200128_121455.jpg', 'ICN3800330000012410880', 10.570, 0.000, 0, 0, '2020-01-28', 0, 1),
(1714, 11, 11, 0, 0, 0, '20200128061132_IMG_20200128_141218.jpg', 'ICN5080750872976162816', 0.420, 0.000, 0, 0, '2020-01-28', 0, 1),
(1715, 11, 11, 0, 0, 0, '20200128062437_IMG-20200128-WA0014.jpg', 'ICN5080750872976162816', 0.460, 0.000, 0, 0, '2020-01-28', 0, 1),
(1716, 11, 11, 0, 0, 0, '20200128064819_emil3.jpeg', 'ICN5080750872976162816', 0.250, 0.120, 0, 0, '2020-01-28', 0, 1),
(1719, 11, 11, 0, 0, 0, '20200128065632_emil3.jpeg', 'ICN5080750872976162816', 0.250, 0.000, 0, 0, '2020-01-28', 0, 1),
(1720, 11, 11, 0, 0, 0, '20200128065845_emil2.jpeg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-01-28', 0, 1),
(1721, 11, 11, 0, 0, 0, '20200129070623_telecomMGR.jpeg', 'ICN3800330000012410880', 6.460, 5.440, 0, 0, '2020-01-29', 0, 1),
(1722, 10, 10, 0, 0, 0, '20200131085811_0370D80D-F753-40C1-96A7-CE89E93B4F77.jpeg', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2020-01-31', 0, 1),
(1723, 10, 10, 0, 0, 0, '20200131090158_BED40275-C0DD-4A57-AD45-FFBDCEC33110.jpeg', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2020-01-31', 0, 1),
(1726, 11, 11, 29, 0, 0, '20200204072617_gld1.jpeg', 'ICN5348152100851286016', 13.900, 6.610, 0, 0, '2020-02-04', 0, 1),
(1727, 10, 10, 0, 0, 0, '20200205105732_CPU4.JPG', 'ICN8294737710174699520', 207.410, 207.240, 77, 0, '2020-02-05', 0, 1),
(1728, 7, 7, 0, 0, 0, '20200209124810_IMG-20200209-WA0049.jpg', 'ICN3800330000012410880', 2.710, 3.980, 0, 0, '2020-02-09', 0, 1),
(1729, 7, 7, 0, 0, 0, '20200209125151_IMG-20200209-WA0048.jpg', 'ICN3800330000012410880', 8.780, 12.000, 0, 0, '2020-02-09', 0, 1),
(1730, 14, 14, 0, 0, 0, '20200210051942_shit.jpeg', 'ICN3800330000012410880', 2.320, 0.480, 95, 0, '2020-02-10', 0, 1),
(1732, 14, 14, 0, 0, 0, '20200210052543_shit2.jpeg', 'ICN3800330000012410880', 1.320, 1.400, 96, 0, '2020-02-10', 0, 1),
(1733, 14, 14, 0, 0, 0, '20200211103515_IMG-20200211-WA0016.jpg', 'ICN3800330000012410880', 4.170, 4.220, 96, 0, '2020-02-11', 0, 1),
(1734, 14, 14, 0, 0, 0, '20200213060642_shit.jpeg', 'ICN7981429672816672768', 1.070, 0.550, 95, 0, '2020-02-13', 0, 1),
(1735, 14, 14, 0, 0, 0, '20200226063911_printers.jpeg', 'ICN5491985813950431232', 2.460, 0.000, 0, 0, '2020-02-26', 0, 1),
(1736, 14, 14, 0, 0, 0, '20200226064621_printer2.jpeg', 'ICN5491985813950431232', 2.440, 0.000, 0, 0, '2020-02-26', 0, 1),
(1737, 14, 14, 0, 0, 0, '20200226064759_printer3.jpeg', 'ICN5491985813950431232', 2.400, 0.000, 0, 0, '2020-02-26', 0, 1),
(1738, 14, 14, 0, 0, 0, '20200226065047_printer4.jpeg', 'ICN5491985813950431232', 2.470, 0.000, 0, 0, '2020-02-26', 0, 1),
(1739, 10, 10, 0, 0, 0, '20200304054013_Icchips.jpg', 'ICN8294737710174699520', 236.370, 0.000, 0, 0, '2020-03-04', 0, 1),
(1740, 10, 10, 0, 0, 0, '20200304054904_Icchips.jpg', 'ICN237138269832216576', 9.200, 0.000, 0, 0, '2020-03-04', 0, 1),
(1741, 10, 10, 0, 0, 0, '20200304055217_Icchips.jpg', 'ICN3203040099432398848', 44.670, 0.000, 0, 0, '2020-03-04', 0, 1),
(1742, 11, 11, 0, 0, 0, '20200329063336_mb.jpeg', 'ICN2556984659137265664', 3.200, 2.769, 0, 0, '2020-03-29', 0, 1),
(1752, 14, 14, 0, 0, 0, '20200402074406_20200402071028_product.jpeg', 'ICN6909537777130405888', 0.090, 0.286, 0, 0, '2020-04-02', 0, 1),
(1753, 14, 14, 0, 0, 0, '20200402083902_339281941.jpg', 'ICN6909537777130405888', 0.090, 0.290, 0, 0, '2020-04-02', 0, 1),
(1754, 14, 14, 0, 0, 0, '20200402084319_this.jpeg', 'ICN6909537777130405888', 0.070, 0.000, 0, 0, '2020-04-02', 0, 1),
(1755, 14, 14, 0, 0, 0, '20200402085923_printers.jpeg', 'ICN6909537777130405888', 0.100, 0.290, 0, 0, '2020-04-02', 0, 1),
(1756, 11, 11, 0, 0, 0, '20200403071937_IMG_20200303_131102.jpg', 'ICN5080750872976162816', 0.280, 0.000, 0, 0, '2020-04-03', 0, 1),
(1758, 11, 11, 0, 0, 0, '20200418064844_IMG-20200417-WA0027.jpg', 'ICN5080750872976162816', 0.390, 0.380, 98, 0, '2020-04-18', 0, 1),
(1760, 11, 11, 0, 0, 0, '20200418065429_IMG-20200417-WA0028.jpg', 'ICN5080750872976162816', 0.250, 0.230, 98, 0, '2020-04-18', 0, 1),
(1761, 11, 11, 0, 0, 0, '20200418070607_IMG-20200417-WA0026.jpg', 'ICN5080750872976162816', 0.450, 0.440, 98, 0, '2020-04-18', 0, 1),
(1762, 11, 11, 0, 0, 0, '20200422110515_IMG-20200422-WA0015.jpg', 'ICN5080750872976162816', 0.150, 0.160, 78, 0, '2020-04-22', 0, 1),
(1763, 11, 11, 0, 0, 0, '20200422110928_IMG-20200422-WA0014.jpg', 'ICN5080750872976162816', 0.240, 0.300, 78, 0, '2020-04-22', 0, 1),
(1765, 11, 11, 0, 0, 0, '20200422111214_IMG-20200422-WA0013.jpg', 'ICN5080750872976162816', 0.240, 0.300, 78, 0, '2020-04-22', 0, 1),
(1772, 11, 11, 0, 0, 0, '20200424102227_IMG-20200422-WA0012.jpg', 'ICN5080750872976162816', 0.180, 0.000, 0, 0, '2020-04-24', 0, 1),
(1773, 11, 11, 0, 0, 0, '20200604065831_IMG-20200603-WA0014.jpg', 'ICN7017588983815208960', 0.000, 0.000, 0, 0, '2020-06-04', 0, 1),
(1774, 11, 11, 0, 0, 0, '20200604065831_IMG-20200603-WA0014.jpg', 'ICN7017588983815208960', 0.000, 0.000, 0, 0, '2020-06-04', 0, 1),
(1775, 11, 11, 0, 0, 0, '20200604065831_IMG-20200603-WA0014.jpg', 'ICN7017588983815208960', 18.740, 0.000, 0, 0, '2020-06-04', 0, 1),
(1776, 11, 11, 0, 0, 0, '20200623065523_IMG-20200623-WA0005.jpg', 'ICN5080750872976162816', 0.420, 0.000, 0, 0, '2020-06-23', 0, 1),
(1777, 11, 11, 0, 0, 0, '20200625030209_frames.jpeg', 'ICN5080750872976162816', 0.540, 439.560, 104, 0, '2020-06-25', 0, 1),
(1778, 11, 11, 0, 0, 0, '20200707010235_IMG-20200707-WA0036.jpg', 'ICN3203040099432398848', 0.000, 0.000, 0, 0, '2020-07-07', 0, 1),
(1779, 11, 11, 0, 0, 0, '20200707010235_IMG-20200707-WA0036.jpg', 'ICN3203040099432398848', 22.220, 0.000, 0, 0, '2020-07-07', 0, 1),
(1780, 11, 11, 0, 0, 0, '', '', 0.000, 0.000, 0, 0, '2020-07-07', 0, 1),
(1781, 11, 11, 0, 0, 0, '20200707010235_IMG-20200707-WA0036.jpg', 'ICN3203040099432398848', 22.220, 37.012, 0, 0, '2020-07-07', 0, 1),
(1782, 11, 11, 0, 0, 0, '20200723014743_IMG-20200723-WA0016.jpg', 'ICN5080750872976162816', 0.350, 0.000, 0, 0, '2020-07-23', 0, 1),
(1783, 11, 11, 0, 0, 0, '20200723015035_IMG-20200723-WA0010.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-07-23', 0, 1),
(1784, 11, 11, 0, 0, 0, '20200723015242_IMG-20200723-WA0013.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2020-07-23', 0, 1),
(1785, 11, 11, 0, 0, 0, '20200723015242_IMG-20200723-WA0013.jpg', 'ICN5080750872976162816', 0.260, 0.000, 0, 0, '2020-07-23', 0, 1),
(1786, 11, 11, 0, 0, 0, '20200723021151_IMG-20200723-WA0011.jpg', 'ICN5080750872976162816', 0.550, 0.000, 0, 0, '2020-07-23', 0, 1);
INSERT INTO `viewpasimage` (`id`, `userid`, `adminid`, `inventoryid`, `supplierid`, `agentid`, `image`, `dataset`, `totalprice`, `totaloffer`, `supid`, `listid`, `sysdate`, `offeraccept`, `status`) VALUES
(1787, 11, 11, 0, 0, 0, '20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 9.350, 6.360, 0, 0, '2020-08-19', 0, 1),
(1792, 4, 4, 16, 0, 0, '20200827121011_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1794, 4, 4, 16, 0, 0, '20200827122051_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1795, 4, 4, 16, 0, 0, '20200827122246_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1796, 4, 4, 16, 0, 0, '20200827122811_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1797, 4, 4, 16, 0, 0, '20200827123153_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1798, 4, 4, 16, 0, 0, '20200827123830_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1799, 4, 4, 16, 0, 0, '20200827124520_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1800, 4, 4, 16, 0, 0, '20200827125203_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1801, 4, 4, 16, 0, 0, '20200827010715_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1802, 4, 4, 16, 0, 0, '20200827011843_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-27', 0, 1),
(1803, 4, 4, 16, 0, 0, '20200828045235_20200827011843_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-08-28', 0, 1),
(1804, 11, 11, 22, 0, 0, '', 'ICN5491985813950431232', 0.000, 0.000, 0, 0, '2020-09-02', 0, 1),
(1805, 11, 11, 22, 0, 0, '20200902052016_IMG-20200902-WA0028.jpg', 'ICN5491985813950431232', 1.980, 0.000, 0, 0, '2020-09-02', 0, 1),
(1806, 11, 11, 22, 0, 0, '20200902052404_IMG-20200902-WA0028.jpg', 'ICN5491985813950431232', 0.000, 0.000, 0, 0, '2020-09-02', 0, 1),
(1807, 11, 11, 22, 0, 0, '20200902052608_IMG-20200902-WA0028.jpg', 'ICN5491985813950431232', 0.000, 0.000, 0, 0, '2020-09-02', 0, 1),
(1808, 11, 11, 22, 0, 0, '20200902052927_20200827011843_20200819020531_IMG-20200819-WA0024.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 0, '2020-09-02', 0, 1),
(1809, 11, 11, 22, 0, 0, '20200902120033_IMG-20200813-WA0001.jpg', 'ICN8294737710174699520', 177.770, 0.000, 0, 0, '2020-09-02', 0, 1),
(1811, 11, 11, 0, 0, 0, '20200903100845_IMG-20200903-WA0036.jpg', 'ICN5080750872976162816', 0.280, 0.000, 0, 0, '2020-09-03', 0, 1),
(1812, 11, 11, 0, 0, 0, '20200903101151_IMG-20200903-WA0033.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2020-09-03', 0, 1),
(1813, 11, 11, 0, 0, 0, '20200903101525_IMG-20200903-WA0033.jpg', 'ICN5080750872976162816', 0.350, 0.000, 0, 0, '2020-09-03', 0, 1),
(1814, 11, 11, 0, 0, 0, '20200909045444_IMG-20200909-WA0005.jpg', 'ICN5080750872976162816', 0.460, 0.000, 0, 0, '2020-09-09', 0, 1),
(1816, 11, 11, 0, 0, 0, '20200909045444_IMG-20200909-WA0005.jpg', 'ICN5080750872976162816', 0.460, 0.579, 0, 0, '2020-09-09', 0, 1),
(1817, 11, 11, 0, 0, 0, '20200909050111_IMG-20200909-WA0008.jpg', 'ICN5080750872976162816', 0.330, 0.398, 0, 0, '2020-09-09', 0, 1),
(1818, 11, 11, 0, 0, 0, '20200909050348_IMG-20200909-WA0005.jpg', 'ICN5080750872976162816', 0.460, 0.579, 0, 0, '2020-09-09', 0, 1),
(1819, 11, 11, 0, 0, 0, '20200909050628_IMG-20200909-WA0006.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2020-09-09', 0, 1),
(1820, 11, 11, 0, 0, 0, '20200909050628_IMG-20200909-WA0006.jpg', 'ICN5080750872976162816', 0.550, 0.690, 107, 0, '2020-09-09', 0, 1),
(1821, 11, 11, 0, 0, 0, '20200909052907_IMG-20200909-WA0018.jpg', 'ICN5080750872976162816', 0.360, 0.000, 0, 0, '2020-09-09', 0, 1),
(1822, 11, 11, 0, 0, 0, '20200911123503_image_21722d28-9f2e-49de-a613-6df2b79bd25120200911_083733.jpg', 'ICN7981429672816672768', 1.010, 1.152, 0, 0, '2020-09-11', 0, 1),
(1823, 11, 11, 0, 0, 0, '20200911123736_image_b933e281-30a0-4e2c-a529-d85748dbb82820200911_083736.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2020-09-11', 0, 1),
(1824, 11, 11, 0, 0, 0, '20200911123858_image_b933e281-30a0-4e2c-a529-d85748dbb82820200911_083736.jpg', 'ICN7981429672816672768', 0.880, 0.000, 0, 0, '2020-09-11', 0, 1),
(1825, 11, 11, 0, 0, 0, '20200911052405_IMG-20200911-WA0003.jpg', 'ICN7981429672816672768', 1.090, 1.160, 0, 0, '2020-09-11', 0, 1),
(1827, 11, 11, 0, 0, 0, '20200911053122_IMG-20200911-WA0000.jpg', 'ICN7981429672816672768', 1.120, 1.000, 0, 0, '2020-09-11', 0, 1),
(1828, 11, 11, 0, 0, 0, '20201025015624_IMG-20201022-WA0033.jpg', 'ICN5080750872976162816', 0.310, 0.000, 0, 0, '2020-10-25', 0, 1),
(1830, 11, 11, 0, 0, 0, '20201026015908_IMG-20201022-WA0032.jpg', 'ICN5080750872976162816', 0.500, 0.330, 0, 0, '2020-10-26', 0, 1),
(1832, 11, 11, 0, 0, 0, '20201026020221_IMG-20201022-WA0034.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2020-10-26', 0, 1),
(1834, 11, 11, 0, 0, 0, '20201026020505_IMG-20201022-WA0035.jpg', 'ICN5080750872976162816', 0.300, 0.000, 0, 0, '2020-10-26', 0, 1),
(1835, 11, 11, 0, 0, 0, '20201027105121_IMG-20201027-WA0031.jpg', 'ICN5080750872976162816', 0.400, 0.000, 0, 0, '2020-10-27', 0, 1),
(1837, 11, 11, 0, 0, 0, '20201027105456_IMG-20201027-WA0022.jpg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2020-10-27', 0, 1),
(1838, 11, 11, 0, 0, 0, '20201027105739_IMG-20201027-WA0020.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-10-27', 0, 1),
(1841, 11, 11, 0, 0, 0, '20201029115237_IMG-20201029-WA0005.jpg', 'ICN5080750872976162816', 0.360, 0.620, 0, 0, '2020-10-29', 0, 1),
(1844, 11, 11, 0, 0, 0, '20201029121022_11d.jpeg', 'ICN5080750872976162816', 0.300, 0.430, 0, 0, '2020-10-29', 0, 1),
(1845, 11, 11, 0, 0, 0, '20201029122251_11dd.jpeg', 'ICN5080750872976162816', 0.360, 0.560, 0, 0, '2020-10-29', 0, 1),
(1847, 11, 11, 0, 0, 0, '20201029122706_2dd.jpeg', 'ICN5080750872976162816', 0.360, 0.420, 0, 0, '2020-10-29', 0, 1),
(1848, 11, 11, 0, 0, 0, '20201029123110_22dd.jpeg', 'ICN5080750872976162816', 0.530, 0.690, 107, 0, '2020-10-29', 0, 1),
(1849, 11, 11, 0, 0, 0, '20201103023041_IMG-20201103-WA0031.jpg', 'ICN5080750872976162816', 0.280, 0.000, 0, 0, '2020-11-03', 0, 1),
(1851, 11, 11, 0, 0, 0, '20201103023452_IMG-20201103-WA0030.jpg', 'ICN5080750872976162816', 0.280, 0.000, 0, 0, '2020-11-03', 0, 1),
(1852, 11, 11, 0, 0, 0, '20201103014958_0b0fb3bc-9d5e-4182-ae54-c38c253f6b87.jpg', 'ICN5080750872976162816', 0.430, 0.459, 0, 0, '2020-11-03', 0, 1),
(1853, 11, 11, 0, 0, 0, '20201103020459_4a4e402c-7a4f-4001-862a-9d59349f75cf.jpg', 'ICN5080750872976162816', 0.230, 0.260, 0, 0, '2020-11-03', 0, 1),
(1856, 11, 11, 0, 0, 0, '20201103021011_514ff5eb-6b7a-412c-9899-6e0bc78d2290.jpg', 'ICN5080750872976162816', 0.240, 0.260, 0, 0, '2020-11-03', 0, 1),
(1857, 11, 11, 0, 0, 0, '20201103021159_e392b7e0-4b24-4e54-b42a-01ba9231b09f.jpg', 'ICN5080750872976162816', 0.270, 0.410, 0, 0, '2020-11-03', 0, 1),
(1859, 11, 11, 0, 0, 0, '20201103021559_ed3f301f-b3c6-40df-af20-e649176bdc18.jpg', 'ICN5080750872976162816', 0.240, 0.270, 0, 0, '2020-11-03', 0, 1),
(1860, 1, 0, 0, 1, 0, '20201103033927_0b0fb3bc-9d5e-4182-ae54-c38c253f6b87.jpg', 'ICN5080750872976162816', 0.100, 0.000, 0, 0, '2020-11-03', 0, 1),
(1861, 11, 11, 0, 0, 0, '20201104034226_IMG-20201104-WA0005.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2020-11-04', 0, 1),
(1862, 11, 11, 0, 0, 0, '20201104034226_IMG-20201104-WA0005.jpg', 'ICN5080750872976162816', 0.260, 0.000, 0, 0, '2020-11-04', 0, 1),
(1867, 1, 0, 0, 1, 0, '20201104043418_newimgs.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 2, '2020-11-04', 0, 1),
(1868, 11, 11, 0, 0, 0, '20201113032237_IMG-20200527-WA0008.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2020-11-13', 0, 1),
(1869, 11, 11, 0, 0, 0, '20201113032453_IMG-20200527-WA0008.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-11-13', 0, 1),
(1870, 11, 11, 0, 0, 0, '20201118020104_hcrt4.jpeg', 'ICN7981429672816672768', 1.100, 0.000, 0, 0, '2020-11-18', 0, 1),
(1871, 11, 11, 0, 0, 0, '20201118020604_hcrt2.jpeg', 'ICN7981429672816672768', 1.030, 0.000, 0, 0, '2020-11-18', 0, 1),
(1872, 11, 11, 0, 0, 0, '20201118024223_hcrt1.jpeg', 'ICN7981429672816672768', 0.740, 0.000, 0, 0, '2020-11-18', 0, 1),
(1873, 11, 11, 0, 0, 0, '20201118024618_hunga3.jpeg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-11-18', 0, 1),
(1874, 11, 11, 0, 0, 0, '20201118024905_hunga2.jpeg', 'ICN5080750872976162816', 0.300, 0.000, 0, 0, '2020-11-18', 0, 1),
(1875, 11, 11, 0, 0, 0, '20201118025324_hunga1.jpeg', 'ICN5080750872976162816', 0.240, 0.000, 0, 0, '2020-11-18', 0, 1),
(1876, 11, 11, 0, 0, 0, '20201120080647_IMG-20201120-WA0024.jpg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2020-11-20', 0, 1),
(1879, 11, 11, 0, 0, 0, '20201121123719_4a4e402c-7a4f-4001-862a-9d59349f75cf.jpg', 'ICN5080750872976162816', 0.240, 0.000, 0, 0, '2020-11-21', 0, 1),
(1880, 11, 11, 0, 0, 0, '20201126030652_IMG-20201126-WA0005.jpg', 'ICN5080750872976162816', 0.260, 0.000, 0, 0, '2020-11-26', 0, 1),
(1881, 11, 11, 0, 0, 0, '20201126031916_IMG-20201126-WA0002.jpg', 'ICN5080750872976162816', 0.050, 0.000, 0, 0, '2020-11-26', 0, 1),
(1882, 11, 11, 0, 0, 0, '20201126032616_IMG-20201126-WA0006.jpg', 'ICN5080750872976162816', 0.400, 0.000, 0, 0, '2020-11-26', 0, 1),
(1883, 11, 11, 0, 0, 0, '20201201041552_IMG-20201126-WA0001.jpg', 'ICN5080750872976162816', 0.060, 0.000, 0, 0, '2020-12-01', 0, 1),
(1884, 11, 11, 0, 0, 0, '20201201041845_IMG-20201126-WA0000.jpg', 'ICN5080750872976162816', 0.440, 0.000, 0, 0, '2020-12-01', 0, 1),
(1885, 11, 11, 0, 0, 0, '20201201052631_IMG-20201201-WA0015.jpg', 'ICN5080750872976162816', 0.310, 0.000, 0, 0, '2020-12-01', 0, 1),
(1887, 11, 11, 0, 0, 0, '20201201053206_IMG-20201201-WA0016.jpg', 'ICN5080750872976162816', 0.320, 0.338, 0, 0, '2020-12-01', 0, 1),
(1888, 11, 11, 0, 0, 0, '20201201053548_IMG-20201201-WA0008.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2020-12-01', 0, 1),
(1890, 11, 11, 0, 0, 0, '20201201053940_IMG-20201201-WA0017.jpg', 'ICN5080750872976162816', 0.270, 0.270, 0, 0, '2020-12-01', 0, 1),
(1891, 11, 11, 0, 0, 0, '20201201054617_IMG-20201201-WA0016.jpg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2020-12-01', 0, 1),
(1892, 11, 11, 0, 0, 0, '20210120041654_IMG-20210120-WA0015.jpg', 'ICN5080750872976162816', 0.270, 0.000, 0, 0, '2021-01-20', 0, 1),
(1893, 11, 11, 0, 0, 0, '20210120041915_IMG-20210120-WA0012.jpg', 'ICN5080750872976162816', 0.610, 0.740, 98, 0, '2021-01-20', 0, 1),
(1894, 11, 11, 0, 0, 0, '20210125054615_111a.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-01-25', 0, 1),
(1895, 11, 11, 0, 0, 0, '20210125055035_111a.jpg', 'ICN5080750872976162816', 0.790, 0.000, 0, 0, '2021-01-25', 0, 1),
(1896, 11, 11, 0, 0, 0, '20210126023804_IMG-20210122-WA0006.jpg', 'ICN5080750872976162816', 0.250, 0.000, 0, 0, '2021-01-26', 0, 1),
(1898, 11, 11, 0, 0, 0, '20210126064755_IMG-20210126-WA0009.jpg', 'ICN5348152100851286016', 10.230, 0.000, 0, 0, '2021-01-26', 0, 1),
(1899, 11, 11, 0, 0, 0, '20210126122032_Image1.jpg', 'ICN5348152100851286016', 10.540, 7.560, 0, 0, '2021-01-26', 0, 1),
(1900, 11, 11, 0, 0, 0, '20210126122419_Image2.jpg', 'ICN5348152100851286016', 5.100, 2.815, 0, 0, '2021-01-26', 0, 1),
(1901, 11, 11, 0, 0, 0, '20210126122810_image3.jpg', 'ICN5348152100851286016', 11.230, 8.686, 0, 0, '2021-01-26', 0, 1),
(1902, 11, 11, 0, 0, 0, '20210127023218_IMG-20210127-WA0034.jpg', 'ICN3203040099432398848', 20.760, 0.000, 0, 0, '2021-01-27', 0, 1),
(1903, 11, 11, 0, 0, 0, '20210202024223_IMG-20210202-WA0009.jpg', 'ICN5080750872976162816', 0.600, 0.000, 0, 0, '2021-02-02', 0, 1),
(1905, 11, 11, 0, 0, 0, '20210202024546_IMG-20210202-WA0005.jpg', 'ICN5080750872976162816', 0.400, 0.000, 0, 0, '2021-02-02', 0, 1),
(1906, 11, 11, 0, 0, 0, '20210202024830_IMG-20210202-WA0006.jpg', 'ICN5080750872976162816', 0.700, 0.000, 0, 0, '2021-02-02', 0, 1),
(1907, 11, 11, 0, 0, 0, '20210209062924_IMG-20210119-WA0003.jpg', 'ICN7981429672816672768', 1.040, 0.000, 0, 0, '2021-02-09', 0, 1),
(1908, 11, 11, 0, 0, 0, '20210209063131_IMG-20210119-WA0004.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2021-02-09', 0, 1),
(1909, 11, 11, 0, 0, 0, '20210209063131_IMG-20210119-WA0004.jpg', 'ICN7981429672816672768', 1.240, 0.000, 0, 0, '2021-02-09', 0, 1),
(1910, 11, 11, 0, 0, 0, '20210215034400_IMG-20210215-WA0016.jpg', 'ICN7981429672816672768', 1.270, 0.000, 0, 0, '2021-02-15', 0, 1),
(1911, 11, 11, 0, 0, 0, '20210215035447_IMG-20210215-WA0019.jpg', 'ICN5080750872976162816', 0.750, 0.000, 0, 0, '2021-02-15', 0, 1),
(1912, 11, 11, 0, 0, 0, '20210216053554_zoltanpolandmid.jpeg', 'ICN5080750872976162816', 0.440, 0.000, 0, 0, '2021-02-16', 0, 1),
(1913, 11, 11, 0, 0, 0, '20210216054042_zoltanimageshit.jpeg', 'ICN5080750872976162816', 0.290, 0.000, 0, 0, '2021-02-16', 0, 1),
(1914, 11, 11, 0, 0, 0, '20210216054520_zoltanpolandok.jpeg', 'ICN5080750872976162816', 0.470, 0.000, 0, 0, '2021-02-16', 0, 1),
(1915, 11, 11, 0, 0, 0, '20210216055040_zoltanpoland.jpeg', 'ICN5080750872976162816', 0.520, 0.000, 0, 0, '2021-02-16', 0, 1),
(1916, 11, 11, 33, 0, 0, '20210216063424_zoltanpolandmid.jpeg', 'ICN5080750872976162816', 0.440, 0.000, 0, 0, '2021-02-16', 0, 1),
(1917, 11, 11, 33, 0, 0, '20210216063437_est01.jpeg', 'ICN7981429672816672768', 1.020, 1.130, 67, 0, '2021-02-16', 1, 1),
(1918, 11, 11, 34, 0, 0, '20210218014923_maliktest1.jpg', 'ICN5080750872976162816', 0.460, 0.000, 67, 0, '2021-02-18', 0, 1),
(1919, 11, 11, 34, 0, 0, '20210218073114_maliktest2.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1920, 11, 11, 34, 0, 0, '20210218073501_maliktest1.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1922, 11, 11, 0, 0, 0, '20210218090232_1.jpg', 'ICN5080750872976162816', 0.230, 0.870, 68, 0, '2021-02-18', 0, 1),
(1923, 11, 11, 0, 0, 0, '20210218090518_2.jpg', 'ICN5080750872976162816', 0.530, 0.000, 68, 0, '2021-02-18', 0, 1),
(1924, 11, 11, 0, 0, 0, '20210218090741_3.jpg', 'ICN5080750872976162816', 0.620, 0.360, 68, 0, '2021-02-18', 0, 1),
(1925, 11, 11, 0, 0, 0, '20210218091036_4.jpg', 'ICN5080750872976162816', 0.320, 0.000, 68, 0, '2021-02-18', 0, 1),
(1926, 11, 11, 0, 0, 0, '20210218091232_5.jpg', 'ICN5080750872976162816', 0.760, 0.410, 68, 0, '2021-02-18', 0, 1),
(1927, 11, 11, 0, 0, 0, '20210218091445_6.jpg', 'ICN5080750872976162816', 0.310, 0.000, 68, 0, '2021-02-18', 0, 1),
(1928, 11, 11, 0, 0, 0, '20210218091652_7.jpg', 'ICN5080750872976162816', 0.410, 0.000, 68, 0, '2021-02-18', 0, 1),
(1929, 11, 11, 0, 0, 0, '20210218091937_a2.jpg', 'ICN5080750872976162816', 0.370, 0.000, 68, 0, '2021-02-18', 0, 1),
(1931, 11, 11, 0, 0, 0, '20210218103851_a5.jpg', 'ICN5348152100851286016', 7.310, 2.330, 68, 0, '2021-02-18', 0, 1),
(1932, 11, 11, 0, 0, 0, '20210218104409_a6.jpg', 'ICN5080750872976162816', 0.420, 0.460, 68, 0, '2021-02-18', 0, 1),
(1933, 11, 11, 0, 0, 0, '20210218112600_9.jpg', 'ICN5080750872976162816', 0.500, 0.580, 68, 0, '2021-02-18', 0, 1),
(1934, 11, 11, 0, 0, 0, '20210218112901_a3.jpg', 'ICN5080750872976162816', 0.530, 0.580, 68, 0, '2021-02-18', 0, 1),
(1935, 11, 11, 0, 0, 0, '20210218113538_a8.jpg', 'ICN5080750872976162816', 0.370, 0.000, 68, 0, '2021-02-18', 0, 1),
(1936, 11, 11, 0, 0, 0, '20210218113902_a10.jpg', 'ICN5080750872976162816', 0.380, 0.000, 68, 0, '2021-02-18', 0, 1),
(1937, 11, 11, 0, 0, 0, '20210218122942_1.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1938, 1, 1, 0, 0, 0, '20210218122946_maliktest1.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1939, 11, 11, 0, 0, 0, '20210218125516_IMG-20210218-WA0062.jpg', 'ICN7981429672816672768', 1.070, 1.200, 0, 0, '2021-02-18', 0, 1),
(1940, 11, 11, 0, 0, 0, '20210218125710_IMG-20210218-WA0063.jpg', 'ICN7981429672816672768', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1941, 11, 11, 0, 0, 0, '20210218125710_IMG-20210218-WA0063.jpg', 'ICN7981429672816672768', 1.230, 1.397, 0, 0, '2021-02-18', 0, 1),
(1942, 11, 11, 0, 0, 0, '20210218010206_IMG-20210218-WA0060.jpg', 'ICN7981429672816672768', 1.220, 1.361, 0, 0, '2021-02-18', 0, 1),
(1943, 11, 11, 0, 0, 0, '20210218010437_IMG-20210218-WA0054.jpg', 'ICN7981429672816672768', 1.250, 1.371, 0, 0, '2021-02-18', 0, 1),
(1945, 11, 11, 34, 0, 0, '20210218111515_maliktest3.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-18', 0, 1),
(1946, 11, 11, 34, 0, 0, '20210223122419_maliktest1.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-23', 0, 1),
(1947, 11, 11, 34, 0, 0, '20210223122419_maliktest1.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-23', 0, 1),
(1948, 11, 11, 34, 0, 0, '20210223122419_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1951, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1952, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1953, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1954, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1955, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1956, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1957, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1958, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1959, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1960, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1961, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1962, 11, 11, 34, 0, 0, '20210223104630_maliktest1.jpg', 'ICN5080750872976162816', 0.480, 0.000, 0, 0, '2021-02-23', 0, 1),
(1963, 11, 11, 0, 0, 0, '20210224095138_IMG-20210224-WA0009.jpg', 'ICN5080750872976162816', 0.540, 0.000, 0, 0, '2021-02-24', 0, 1),
(1964, 11, 11, 0, 0, 0, '20210224105945_IMG-20210224-WA0010.jpg', 'ICN5080750872976162816', 0.470, 0.000, 0, 0, '2021-02-24', 0, 1),
(1965, 11, 11, 0, 0, 0, '20210224110158_IMG-20210224-WA0009.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-02-24', 0, 1),
(1966, 11, 11, 0, 0, 0, '20210224110158_IMG-20210224-WA0009.jpg', 'ICN5080750872976162816', 0.550, 0.000, 0, 0, '2021-02-24', 0, 1),
(1967, 11, 11, 33, 0, 0, '20210225035839_Image-1.jpg', 'ICN7981429672816672768', 1.280, 1.437, 107, 0, '2021-02-25', 0, 1),
(1968, 11, 11, 33, 0, 0, '20210225040233_Image-2.jpg', 'ICN7981429672816672768', 0.910, 0.980, 107, 0, '2021-02-25', 0, 1),
(1972, 11, 11, 33, 0, 0, '20210225041432_Image-3.jpg', 'ICN7981429672816672768', 0.990, 1.087, 107, 0, '2021-02-25', 0, 1),
(1973, 11, 11, 33, 0, 0, '20210225041739_Image-4.jpg', 'ICN7981429672816672768', 1.250, 1.178, 107, 0, '2021-02-25', 0, 1),
(1974, 11, 11, 33, 0, 0, '20210225042005_Image-5.jpg', 'ICN7981429672816672768', 0.960, 0.757, 107, 0, '2021-02-25', 0, 1),
(1976, 11, 11, 33, 0, 0, '20210225042501_pcb_IIIo_0001.jpg', 'ICN7981429672816672768', 0.920, 0.000, 106, 0, '2021-02-25', 0, 1),
(1977, 11, 11, 33, 0, 0, '20210225042714_pcb_IIIo_0002.jpg', 'ICN7981429672816672768', 1.210, 0.000, 106, 0, '2021-02-25', 0, 1),
(1981, 11, 11, 33, 0, 0, '20210226012814_WhatsApp Image 2021-02-25 at 15.13.12.jpeg', 'ICN5080750872976162816', 0.620, 0.000, 106, 0, '2021-02-26', 0, 1),
(1982, 11, 11, 33, 0, 0, '20210226013039_WhatsApp Image 2021-02-25 at 15.13.13.jpeg', 'ICN5080750872976162816', 0.600, 0.000, 106, 0, '2021-02-26', 0, 1),
(1983, 11, 11, 33, 0, 0, '20210226013258_WhatsApp Image 2021-02-25 at 15.13.14 (1).jpeg', 'ICN5080750872976162816', 0.530, 0.000, 106, 0, '2021-02-26', 0, 1),
(1984, 11, 11, 33, 0, 0, '20210226013526_WhatsApp Image 2021-02-25 at 15.13.14.jpeg', 'ICN5080750872976162816', 0.500, 0.000, 106, 0, '2021-02-26', 0, 1),
(1985, 11, 11, 33, 0, 0, '20210226013734_WhatsApp Image 2021-02-25 at 15.13.15.jpeg', 'ICN5080750872976162816', 0.630, 0.000, 106, 0, '2021-02-26', 0, 1),
(1986, 11, 11, 33, 0, 0, '20210226014040_3.jpg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2021-02-26', 0, 1),
(1992, 11, 11, 33, 0, 0, '20210226015347_WhatsApp Image 2020-11-20 at 14.44.36 (1).jpeg', 'ICN5080750872976162816', 0.320, 0.000, 0, 0, '2021-02-26', 0, 1),
(1994, 11, 11, 33, 0, 0, '20210226020116_WhatsApp Image 2020-11-20 at 14.44.38.jpeg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2021-02-26', 0, 1),
(1996, 11, 11, 33, 0, 0, '20210226020807_WhatsApp Image 2020-11-20 at 14.44.37.jpeg', 'ICN5080750872976162816', 0.370, 0.000, 0, 0, '2021-02-26', 0, 1),
(1997, 11, 11, 33, 0, 0, '20210226021045_6.jpg', 'ICN5080750872976162816', 0.460, 0.000, 0, 0, '2021-02-26', 0, 1),
(1998, 11, 11, 0, 0, 0, '20210303074846_this1.jpeg', 'ICN5080750872976162816', 0.580, 0.000, 0, 0, '2021-03-03', 0, 1),
(1999, 11, 11, 33, 0, 0, '20210316084529_WhatsApp Image 2021-03-16 at 15.43.19.jpeg', 'ICN7981429672816672768', 0.870, 0.000, 0, 0, '2021-03-16', 0, 1),
(2000, 11, 11, 33, 0, 0, '20210324084805_WhatsApp Image 2021-03-24 at 15.46.09.jpeg', 'ICN5080750872976162816', 0.840, 0.840, 0, 0, '2021-03-24', 0, 1),
(2003, 11, 11, 0, 0, 0, '20210407032731_types-of-memory-in-computer.jpg', 'ICN3203040099432398848', 19.970, 38.680, 0, 0, '2021-04-07', 0, 1),
(2013, 11, 11, 0, 0, 0, '20210412090636_IMG-20210412-WA0019.jpg', 'ICN5080750872976162816', 0.430, 0.000, 0, 0, '2021-04-12', 0, 1),
(2014, 11, 11, 0, 0, 0, '20210413042854_tesla.jpeg', 'ICN5080750872976162816', 0.330, 0.000, 0, 0, '2021-04-13', 0, 1),
(2015, 11, 11, 0, 0, 0, '20210525015042_IMG-20210525-WA0012.jpg', 'ICN5080750872976162816', 0.490, 0.000, 0, 0, '2021-05-25', 0, 1),
(2017, 11, 11, 0, 0, 0, '20210816102529_IMG-20210811-WA0015.jpg', 'ICN3800330000012410880', 7.050, 3.724, 0, 0, '2021-08-16', 0, 1),
(2018, 11, 11, 0, 0, 0, '20210825014515_IMG-20210825-WA0010.jpg', 'ICN5080750872976162816', 0.370, 0.560, 0, 0, '2021-08-25', 0, 1),
(2021, 15, 15, 0, 0, 0, '20210829102257_8c6f5d42-a238-4d2c-9b95-3ff2f5f4698c.jpg', 'ICN5080750872976162816', 0.190, 0.270, 122, 0, '2021-08-29', 0, 1),
(2022, 15, 15, 0, 0, 0, '20210829102541_d368a541-1151-4259-89c8-2c61916f9f4e.jpg', 'ICN5080750872976162816', 0.410, 0.420, 122, 0, '2021-08-29', 1, 1),
(2025, 15, 15, 0, 0, 0, '20210829104632_5fe60057-8550-4b0b-a260-e84b8dcb8550.jpg', 'ICN5080750872976162816', 0.110, 0.120, 122, 0, '2021-08-29', 0, 1),
(2026, 15, 15, 0, 0, 0, '20210829105701_8dee69c2-09c6-4edc-bb22-123f4cb69dbb.jpg', 'ICN5080750872976162816', -0.080, -0.250, 122, 0, '2021-08-29', 0, 1),
(2027, 15, 15, 0, 0, 0, '20210829110015_34d0ceb1-f6b0-4cf1-815b-870dc7451f0a.jpg', 'ICN5080750872976162816', 0.530, 0.534, 0, 0, '2021-08-29', 0, 1),
(2028, 15, 15, 0, 0, 0, '20210831025654_8dee69c2-09c6-4edc-bb22-123f4cb69dbb.jpg', 'ICN5080750872976162816', 0.130, 0.120, 122, 0, '2021-08-31', 1, 1),
(2029, 15, 15, 0, 0, 0, '20210831031113_0f361f36-1f75-49eb-827b-344528d15d49.jpg', 'ICN3800330000012410880', 2.030, 2.480, 0, 0, '2021-08-31', 0, 1),
(2032, 11, 11, 0, 0, 0, '20210903070436_IMG-20210903-WA0014.jpg', 'ICN5080750872976162816', 0.530, 0.000, 0, 0, '2021-09-03', 0, 1),
(2033, 11, 11, 0, 0, 0, '20210903070647_IMG-20210903-WA0008.jpg', 'ICN5080750872976162816', 0.380, 0.000, 0, 0, '2021-09-03', 0, 1),
(2035, 11, 11, 0, 0, 0, '20210913013902_241730700_10216117439528765_8287366702971669782_n.jpg', 'ICN2556984659137265664', 3.420, 0.000, 0, 0, '2021-09-13', 0, 1),
(2036, 11, 11, 0, 0, 0, '20210929034259_ASSAY1.jpeg', 'ICN5080750872976162816', 0.530, 0.000, 0, 0, '2021-09-29', 0, 1),
(2037, 11, 11, 0, 0, 0, '20210929044017_assay2poland.jpeg', 'ICN5080750872976162816', 0.550, 0.000, 0, 0, '2021-09-29', 0, 1),
(2038, 11, 11, 0, 0, 0, '20210929044601_serenity1.jpeg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-09-29', 0, 1),
(2039, 11, 11, 0, 0, 0, '20210929044601_serenity1.jpeg', 'ICN5080750872976162816', 0.520, 0.000, 0, 0, '2021-09-29', 0, 1),
(2040, 11, 11, 0, 0, 0, '20210929044848_serenity2.jpeg', 'ICN5080750872976162816', 0.450, 0.000, 0, 0, '2021-09-29', 0, 1),
(2041, 15, 15, 0, 0, 0, '20211004030838_lowgradeshit.jpeg', 'ICN5080750872976162816', 0.230, 0.150, 122, 0, '2021-10-04', 0, 1),
(2043, 11, 11, 0, 0, 0, '20211011050948_4.jpeg', 'ICN5080750872976162816', 0.590, 0.000, 0, 0, '2021-10-11', 0, 1),
(2046, 11, 11, 0, 0, 0, '20211011051918_1.jpeg', 'ICN5080750872976162816', 0.310, 0.000, 0, 0, '2021-10-11', 0, 1),
(2048, 11, 11, 0, 0, 0, '20211011052542_2.jpeg', 'ICN5080750872976162816', 0.660, 0.000, 0, 0, '2021-10-11', 0, 1),
(2049, 11, 11, 0, 0, 0, '20211018051632_remat.jpeg', 'ICN5080750872976162816', 0.660, 0.000, 0, 0, '2021-10-18', 0, 1),
(2050, 11, 11, 0, 0, 0, '20211018051857_remat2.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-10-18', 0, 1),
(2051, 11, 11, 0, 0, 0, '20211018052255_remat2.jpg', 'ICN5080750872976162816', 0.000, 0.000, 0, 0, '2021-10-18', 0, 1),
(2052, 11, 11, 0, 0, 0, '20211021122913_IMG-20211021-WA0001.jpg', 'ICN7981429672816672768', 1.030, 0.000, 0, 0, '2021-10-21', 0, 1),
(2054, 11, 11, 0, 0, 0, '20211021013626_IMG-20211020-WA0016.jpg', 'ICN7981429672816672768', 1.410, 0.000, 0, 0, '2021-10-21', 0, 1),
(2056, 11, 11, 0, 0, 0, '20211115052413_39db753a-4cf6-4df1-8fc7-d39b8467d627.jpg', 'ICN5080750872976162816', 0.420, 0.290, 126, 0, '2021-11-15', 1, 1),
(2061, 11, 11, 0, 0, 0, '20211122094342_20190724053616_elevtronics.jpg', 'ICN2556984659137265664', 2.380, 0.000, 0, 0, '2021-11-22', 0, 1),
(2062, 15, 15, 0, 0, 0, '20211123013829_2b18911f-b6e4-4881-bd5f-c568a32a1a75.jpg', 'ICN2556984659137265664', 1.410, 0.000, 0, 0, '2021-11-23', 0, 1),
(2068, 15, 15, 0, 0, 0, '20211125072905_Cutoffs.jpg', 'ICN5348152100851286016', 3.750, 3.000, 0, 0, '2021-11-25', 0, 1),
(2069, 15, 15, 0, 0, 0, '20211125075445_Cutoffs non gold.jpg', 'ICN5080750872976162816', 0.260, 0.000, 0, 0, '2021-11-25', 0, 1),
(2072, 15, 15, 0, 0, 0, '20211125081440_read.jpeg', 'ICN5080750872976162816', 0.350, 0.560, 0, 0, '2021-11-25', 0, 1),
(2075, 11, 11, 0, 0, 0, '20211202025244_stuffwithhand.jpeg', 'ICN5080750872976162816', 0.410, 0.000, 0, 0, '2021-12-02', 0, 1),
(2077, 11, 11, 0, 0, 0, '20211202032338_2223232323.jpeg', 'ICN5080750872976162816', 0.380, 0.000, 0, 0, '2021-12-02', 0, 1),
(2079, 15, 15, 0, 0, 0, '20211208031006_aef44992-57eb-463d-9a82-95afa6e34f63.jpg', 'ICN2556984659137265664', 1.550, 1.631, 0, 0, '2021-12-08', 0, 1),
(2081, 11, 11, 0, 0, 0, '20211216020313_red.jpeg', 'ICN5080750872976162816', 0.280, 0.000, 0, 0, '2021-12-16', 0, 1),
(2098, 11, 11, 0, 0, 0, '20211217012729_20211019_100318.jpg', 'ICN2661396482334130176', 0.820, 0.000, 0, 0, '2021-12-17', 0, 1),
(2101, 11, 11, 0, 0, 0, '20211217012752_dalenewtest.jpg', 'ICN2661396482334130176', 0.510, 0.798, 0, 0, '2021-12-17', 0, 1),
(2103, 11, 11, 0, 0, 0, '20211217013418_IMG-20200527-WA0008.jpg', 'ICN2661396482334130176', 0.610, 0.967, 0, 0, '2021-12-17', 0, 1),
(2105, 11, 11, 0, 0, 0, '20211217012752_dalenewtest.jpg', 'ICN2661396482334130176', 1.030, 0.940, 0, 0, '2021-12-17', 0, 1),
(2106, 11, 11, 0, 0, 0, '20211217021657_alkufer1.jpeg', 'ICN2661396482334130176', 0.730, 1.210, 0, 0, '2021-12-17', 0, 1),
(2108, 11, 11, 0, 0, 0, '20211217022409_alkufer2.jpeg', 'ICN2661396482334130176', 0.730, 0.000, 0, 0, '2021-12-17', 0, 1),
(2111, 11, 11, 0, 0, 0, '20211217023056_loaker2.jpeg', 'ICN2661396482334130176', 0.730, 0.000, 0, 0, '2021-12-17', 0, 1),
(2112, 11, 11, 0, 0, 0, '20211217023849_IMG-20211217-WA0023.jpg', 'ICN2661396482334130176', 0.430, 0.000, 0, 0, '2021-12-17', 0, 1),
(2118, 11, 11, 0, 0, 0, '20211217010911_20211216023347_20211216022730_20200123_102924.jpg', 'ICN2661396482334130176', 1.400, 0.000, 0, 0, '2021-12-17', 0, 1),
(2123, 11, 11, 0, 0, 0, '20211217064129_loaker1.jpeg', 'ICN6597401819167588352', 0.970, 0.000, 0, 0, '2021-12-17', 0, 1),
(2124, 11, 11, 0, 0, 0, '20211217065239_loaker2.jpeg', 'ICN6597401819167588352', 0.810, 0.000, 0, 0, '2021-12-17', 0, 1),
(2125, 11, 11, 0, 0, 0, '20211217065809_loaker3.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2021-12-17', 0, 1),
(2126, 11, 11, 0, 0, 0, '20211217074134_20211217024140_IMG-20211217-WA0022.jpg', 'ICN6597401819167588352', 1.160, 0.000, 0, 0, '2021-12-17', 0, 1),
(2127, 11, 11, 0, 0, 0, '20211217075211_dalenewtest.jpg', 'ICN6597401819167588352', 0.730, 0.000, 0, 0, '2021-12-17', 0, 1),
(2128, 11, 11, 0, 0, 0, '20211217095334_IMG-20211214-WA0036.jpg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2021-12-17', 0, 1),
(2129, 11, 11, 0, 0, 0, '20211217095853_IMG-20211214-WA0026.jpg', 'ICN6597401819167588352', 0.990, 0.000, 0, 0, '2021-12-17', 0, 1),
(2130, 11, 11, 0, 0, 0, '20211217113032_20211217065809_loaker3.jpeg', 'ICN6597401819167588352', 0.990, 1.030, 0, 0, '2021-12-17', 0, 1),
(2133, 11, 11, 0, 0, 0, '20211219030446_20211218_135539.jpg', 'ICN6597401819167588352', 0.990, 0.000, 0, 0, '2021-12-19', 0, 1),
(2134, 11, 11, 0, 0, 0, '20211219061914_20211217064129_loaker1.jpeg', 'ICN6597401819167588352', 0.760, 0.766, 0, 0, '2021-12-19', 0, 1),
(2136, 11, 11, 0, 0, 0, '20211219071915_IMG-20211219-WA0012.jpg', 'ICN6597401819167588352', 0.330, 0.000, 0, 0, '2021-12-19', 0, 1),
(2137, 11, 11, 0, 0, 0, '20211219062208_20211218024050_20211218_135529.jpg', 'ICN6597401819167588352', 0.650, 0.755, 0, 0, '2021-12-19', 0, 1),
(2138, 11, 11, 0, 0, 0, '20211219065619_20211217113032_20211217065809_loaker3.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2021-12-19', 0, 1),
(2139, 11, 11, 0, 0, 0, '20211220024844_IMG-20211115-WA0009.jpg', 'ICN6597401819167588352', 0.350, 0.436, 0, 0, '2021-12-20', 0, 1),
(2140, 11, 11, 0, 0, 0, '20220102032120_20200123_102819.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-01-02', 0, 1),
(2141, 11, 11, 0, 0, 0, '20220102032302_20200123_102819.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-01-02', 0, 1),
(2142, 11, 11, 0, 0, 0, '20220102032604_20200123_102819.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-01-02', 0, 1),
(2143, 11, 11, 0, 0, 0, '20220102033200_20200123_102819.jpg', 'ICN6597401819167588352', 0.680, 0.000, 0, 0, '2022-01-02', 0, 1),
(2144, 11, 0, 0, 0, 4, '20220113054820_(1).jpg', 'ICN6597401819167588352 	', 0.840, 0.000, 0, 0, '2022-01-13', 0, 1),
(2145, 11, 0, 0, 0, 4, '20220113060456_ewaste2.jpg', 'ICN2556984659137265664', 4.860, 0.000, 0, 0, '2022-01-13', 0, 1),
(2146, 11, 11, 0, 0, 0, '20220118021137_2.jpeg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-01-18', 0, 1),
(2147, 11, 11, 0, 0, 0, '20220118021440_1.jpeg', 'ICN6597401819167588352', 0.830, 0.000, 0, 0, '2022-01-18', 0, 1),
(2152, 11, 11, 22, 0, 0, '20220120102353_2.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-01-20', 0, 1),
(2158, 15, 0, 0, 0, 2, '20220126112021_1111111.jpeg', 'ICN6597401819167588352', 0.830, 0.000, 0, 0, '2022-01-26', 0, 1),
(2159, 15, 0, 0, 0, 2, '20220126034853_CBRJ1.jpeg', 'ICN6597401819167588352', 0.930, 0.970, 122, 0, '2022-01-26', 0, 1),
(2160, 11, 11, 0, 0, 0, '20220126064528_IMG-20220126-WA0012.jpg', 'ICN6597401819167588352', 0.690, 0.000, 0, 0, '2022-01-26', 0, 1),
(2162, 11, 11, 0, 0, 0, '20220126064729_IMG-20220126-WA0013.jpg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-01-26', 0, 1),
(2163, 11, 11, 0, 0, 0, '20220126065129_IMG-20220126-WA0014.jpg', 'ICN6597401819167588352', 0.850, 1.030, 0, 0, '2022-01-26', 0, 1),
(2165, 11, 11, 0, 0, 0, '20220127122157_mytest.jpeg', 'ICN6597401819167588352', 0.830, 0.000, 0, 0, '2022-01-27', 0, 1),
(2168, 11, 11, 0, 0, 0, '20220201071221_RAFAL.jpeg', 'ICN6597401819167588352', 0.930, 0.950, 0, 0, '2022-02-01', 0, 1),
(2170, 11, 11, 0, 0, 0, '20220201072723_RAFAL2.jpeg', 'ICN6597401819167588352', 0.720, 0.680, 0, 0, '2022-02-01', 0, 1),
(2171, 15, 15, 0, 0, 0, '20220201113202_suntech.jpeg', 'ICN6597401819167588352', 0.820, 0.610, 130, 0, '2022-02-01', 0, 1),
(2174, 15, 15, 0, 0, 0, '20220201115238_suntech2.jpeg', 'ICN6597401819167588352', 0.750, 0.600, 130, 0, '2022-02-01', 1, 1),
(2180, 11, 11, 0, 0, 0, '20220203053428_dusan2.jpeg', 'ICN6597401819167588352', 0.710, 0.910, 0, 0, '2022-02-03', 0, 1),
(2182, 11, 11, 0, 0, 0, '20220203054516_dusa1.jpeg', 'ICN6597401819167588352', 0.710, 0.910, 0, 0, '2022-02-03', 0, 1),
(2183, 11, 11, 0, 0, 0, '20220203060136_dusa1.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-03', 0, 1),
(2184, 11, 11, 0, 0, 0, '20220203060538_IMG-20220203-WA0030.jpg', 'ICN6597401819167588352', 0.760, 0.950, 0, 0, '2022-02-03', 0, 1),
(2185, 11, 11, 0, 0, 0, '20220203060741_IMG-20220203-WA0031.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-03', 0, 1),
(2186, 11, 11, 0, 0, 0, '20220203060935_IMG-20220203-WA0029.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-03', 0, 1),
(2187, 11, 11, 0, 0, 0, '20220203061126_20220203060935_IMG-20220203-WA0029.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-03', 0, 1),
(2188, 11, 11, 0, 0, 0, '20220203061305_20220203060935_IMG-20220203-WA0029.jpg', 'ICN6597401819167588352', 0.830, 1.030, 0, 0, '2022-02-03', 0, 1),
(2189, 11, 11, 22, 0, 0, '20220204043821_WhatsApp Image 2022-02-04 at 11.33.01.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-02-04', 0, 1),
(2190, 11, 11, 0, 0, 0, '20220204045324_IMG-20220204-WA0029.jpg', 'ICN6597401819167588352', 1.000, 0.000, 0, 0, '2022-02-04', 0, 1),
(2191, 11, 11, 0, 0, 0, '20220204045635_IMG-20220204-WA0027.jpg', 'ICN6597401819167588352', 0.830, 0.000, 0, 0, '2022-02-04', 0, 1),
(2193, 11, 11, 0, 0, 0, '20220204050620_IMG-20220204-WA0026.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-04', 0, 1),
(2194, 11, 11, 0, 0, 0, '20220204050905_IMG-20220204-WA0026.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-02-04', 0, 1),
(2197, 11, 11, 0, 0, 0, '20220204052801_20220204050905_IMG-20220204-WA0026.jpg', 'ICN6597401819167588352', 0.280, 0.000, 0, 0, '2022-02-04', 0, 1),
(2198, 11, 11, 0, 0, 0, '20220204054559_20220203060935_IMG-20220203-WA0029.jpg', 'ICN6597401819167588352', 0.830, 0.000, 0, 0, '2022-02-04', 0, 1),
(2199, 11, 11, 0, 0, 0, '20220207035431_IMG-20220207-WA0004.jpg', 'ICN6597401819167588352', 0.430, 0.560, 0, 0, '2022-02-07', 0, 1),
(2200, 11, 11, 0, 0, 0, '20220207035702_IMG-20220207-WA0003.jpg', 'ICN6597401819167588352', 0.830, 1.030, 0, 0, '2022-02-07', 0, 1),
(2201, 11, 11, 0, 0, 0, '20220207035941_IMG-20220207-WA0006.jpg', 'ICN5348152100851286016', 5.390, 0.000, 0, 0, '2022-02-07', 0, 1),
(2202, 11, 11, 0, 0, 0, '20220207040550_IMG-20220207-WA0008.jpg', 'ICN5491985813950431232', 1.660, 0.000, 0, 0, '2022-02-07', 0, 1),
(2203, 15, 15, 0, 0, 0, '20220212041259_IMG-20220211-WA0064.jpg', 'ICN3800330000012410880', 2.240, 0.000, 0, 0, '2022-02-12', 0, 1),
(2204, 15, 15, 0, 0, 0, '20220212042046_IMG-20220211-WA0065.jpg', 'ICN7017588983815208960', 29.000, 0.000, 0, 0, '2022-02-12', 0, 1),
(2205, 15, 15, 37, 0, 0, '20220215061455_akufer1.jpeg', 'ICN6597401819167588352', 0.530, 0.000, 0, 0, '2022-02-15', 0, 1),
(2206, 11, 11, 0, 0, 0, '20220216033153_dusanfull.jpeg', 'ICN6597401819167588352', 0.730, 0.000, 0, 0, '2022-02-16', 0, 1),
(2207, 11, 11, 0, 0, 0, '20220216041719_dusan full2.jpeg', 'ICN6597401819167588352', 0.730, 0.000, 0, 0, '2022-02-16', 0, 1),
(2208, 11, 11, 0, 0, 0, '20220217085846_20220204050905_IMG-20220204-WA0026.jpg', 'ICN6597401819167588352', 0.850, 0.000, 0, 0, '2022-02-17', 0, 1),
(2219, 15, 15, 0, 0, 0, '20220218033136_1.jpeg', 'ICN6597401819167588352', 0.150, 0.244, 0, 0, '2022-02-18', 0, 1),
(2220, 15, 15, 0, 0, 0, '20220218033350_2.jpeg', 'ICN6597401819167588352', 0.370, 0.511, 0, 0, '2022-02-18', 0, 1),
(2221, 15, 15, 0, 0, 0, '20220218033816_5.jpeg', 'ICN6597401819167588352', 0.360, 0.480, 0, 0, '2022-02-18', 0, 1),
(2222, 15, 15, 0, 0, 0, '20220218034651_6.jpeg', 'ICN6597401819167588352', 0.380, 0.486, 0, 0, '2022-02-18', 0, 1),
(2224, 15, 15, 0, 0, 0, '20220218040337_7.jpeg', 'ICN6597401819167588352', 0.360, 0.560, 0, 0, '2022-02-18', 0, 1),
(2225, 15, 15, 0, 0, 0, '20220218040604_8.jpeg', 'ICN6597401819167588352', 0.330, 0.406, 0, 0, '2022-02-18', 0, 1),
(2226, 15, 15, 0, 0, 0, '20220218040850_9.jpeg', 'ICN6597401819167588352', 0.350, 0.590, 0, 0, '2022-02-18', 0, 1),
(2227, 15, 15, 0, 0, 0, '20220218041147_13.jpeg', 'ICN6597401819167588352', 0.370, 0.600, 0, 0, '2022-02-18', 0, 1),
(2228, 15, 15, 0, 0, 0, '20220218041430_11.jpeg', 'ICN6597401819167588352', 0.330, 0.394, 0, 0, '2022-02-18', 0, 1),
(2229, 15, 15, 0, 0, 0, '20220218041722_10.jpeg', 'ICN6597401819167588352', 0.170, 0.230, 0, 0, '2022-02-18', 0, 1),
(2230, 15, 15, 0, 0, 0, '20220218041945_12.jpeg', 'ICN6597401819167588352', 0.480, 0.820, 0, 0, '2022-02-18', 0, 1),
(2231, 11, 11, 0, 0, 0, '20220221033224_1.jpeg', 'ICN6597401819167588352', 0.450, 0.519, 0, 0, '2022-02-21', 0, 1),
(2232, 11, 11, 0, 0, 0, '20220221033613_2.jpeg', 'ICN6597401819167588352', 0.730, 0.910, 0, 0, '2022-02-21', 0, 1),
(2233, 11, 11, 0, 0, 0, '20220221033759_3.jpeg', 'ICN6597401819167588352', 0.830, 1.020, 0, 0, '2022-02-21', 0, 1),
(2234, 11, 11, 0, 0, 0, '20220221034053_4.jpeg', 'ICN6597401819167588352', 0.720, 0.900, 0, 0, '2022-02-21', 0, 1),
(2235, 11, 11, 0, 0, 0, '20220221034336_5.jpeg', 'ICN6597401819167588352', 0.680, 0.870, 0, 0, '2022-02-21', 0, 1),
(2236, 11, 11, 0, 0, 0, '20220221034551_6.jpeg', 'ICN6597401819167588352', 0.620, 0.790, 0, 0, '2022-02-21', 0, 1),
(2237, 11, 11, 0, 0, 0, '20220221034748_7.jpeg', 'ICN6597401819167588352', 0.730, 0.910, 0, 0, '2022-02-21', 0, 1),
(2238, 11, 11, 0, 0, 0, '20220221034956_8.jpeg', 'ICN6597401819167588352', 0.780, 0.970, 0, 0, '2022-02-21', 0, 1),
(2239, 11, 11, 0, 0, 0, '20220222062559_1.jpeg', 'ICN6597401819167588352', 0.470, 0.580, 127, 0, '2022-02-22', 0, 1),
(2240, 11, 11, 0, 0, 0, '20220222062734_3.jpeg', 'ICN6597401819167588352', 0.660, 0.790, 127, 0, '2022-02-22', 0, 1),
(2243, 11, 11, 0, 0, 0, '20220222063503_4.jpeg', 'ICN6597401819167588352', 0.500, 0.630, 127, 0, '2022-02-22', 0, 1),
(2244, 11, 11, 0, 0, 0, '20220222063610_2.jpeg', 'ICN6597401819167588352', 0.730, 0.910, 127, 0, '2022-02-22', 0, 1),
(2247, 11, 11, 0, 0, 0, '20220226055532_IMG-20220226-WA0001.jpg', 'ICN6597401819167588352', 0.600, 0.770, 0, 0, '2022-02-26', 0, 1),
(2248, 15, 0, 0, 0, 2, '20220301011716_remore controls - from suntech at governeur.png', 'ICN5348152100851286016', 2.400, 0.000, 0, 0, '2022-03-01', 0, 1),
(2249, 11, 11, 22, 0, 0, '20220316014742_new york.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-03-16', 0, 1),
(2250, 11, 11, 22, 0, 0, '20220316015359_WhatsApp Image 2022-02-04 at 11.33.01.jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-03-16', 0, 1),
(2251, 11, 11, 22, 0, 0, '20220316015608_WhatsApp Image 2022-02-04 at 11.33.02 (2).jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-03-16', 0, 1),
(2252, 11, 11, 22, 0, 0, '20220316015759_IMG-20220316-WA0134.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-03-16', 0, 1),
(2253, 11, 11, 22, 0, 0, '20220316015833_WhatsApp Image 2022-02-04 at 11.33.02 (2).jpeg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-03-16', 0, 1),
(2254, 15, 15, 38, 0, 0, '20220316020003_nelson.jpeg', 'ICN5348152100851286016', 1.670, 0.000, 0, 0, '2022-03-16', 0, 1),
(2255, 11, 11, 36, 0, 0, '20220317034149_20220203060741_IMG-20220203-WA0031.jpg', 'ICN6597401819167588352', 1.020, 0.000, 0, 0, '2022-03-17', 0, 1),
(2256, 11, 11, 36, 0, 0, '20220317034149_20220203060741_IMG-20220203-WA0031.jpg', 'ICN6597401819167588352', 1.020, 0.000, 0, 0, '2022-03-17', 0, 1),
(2257, 11, 11, 36, 0, 0, '20220317053605_20220204050905_IMG-20220204-WA0026.jpg', 'ICN6597401819167588352', 0.750, 0.000, 0, 0, '2022-03-17', 0, 1),
(2259, 11, 0, 0, 0, 4, '20220331082853_2.jpeg', 'ICN6597401819167588352', 0.890, 0.000, 0, 0, '2022-03-31', 0, 1),
(2261, 11, 0, 0, 0, 4, '20220331083244_4.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-03-31', 0, 1),
(2262, 11, 0, 0, 0, 4, '20220331083436_5.jpeg', 'ICN6597401819167588352', 0.720, 0.000, 0, 0, '2022-03-31', 0, 1),
(2264, 11, 0, 0, 0, 4, '20220331084756_6.jpeg', 'ICN6597401819167588352', 0.520, 0.000, 0, 0, '2022-03-31', 0, 1),
(2265, 11, 0, 0, 0, 4, '20220331085048_3.jpeg', 'ICN6597401819167588352', 1.180, 0.000, 0, 0, '2022-03-31', 0, 1),
(2266, 11, 0, 0, 0, 4, '20220331085316_1.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-03-31', 0, 1),
(2267, 11, 11, 0, 0, 0, '20220407063839_IMG-20220404-WA0055.jpg', 'ICN3800330000012410880', 4.960, 0.000, 0, 0, '2022-04-07', 0, 1),
(2268, 11, 11, 0, 0, 0, '20220407064127_IMG-20220407-WA0022.jpg', 'ICN3800330000012410880', 7.990, 0.000, 0, 0, '2022-04-07', 0, 1),
(2269, 11, 0, 0, 0, 4, '20220427045107_2.jpeg', 'ICN6597401819167588352', 1.110, 0.000, 0, 0, '2022-04-27', 0, 1),
(2270, 11, 0, 0, 0, 4, '20220427045406_4.jpeg', 'ICN6597401819167588352', 1.190, 0.000, 0, 0, '2022-04-27', 0, 1),
(2271, 11, 0, 0, 0, 4, '20220427045625_7.jpeg', 'ICN6597401819167588352', 0.400, 0.000, 0, 0, '2022-04-27', 0, 1),
(2272, 11, 0, 0, 0, 4, '20220427045843_6.jpeg', 'ICN6597401819167588352', 0.620, 0.000, 0, 0, '2022-04-27', 0, 1),
(2273, 11, 0, 0, 0, 4, '20220427050055_5.jpeg', 'ICN6597401819167588352', 0.410, 0.000, 0, 0, '2022-04-27', 0, 1),
(2276, 11, 0, 0, 0, 4, '20220427050743_3.jpeg', 'ICN6597401819167588352', 0.990, 0.000, 0, 0, '2022-04-27', 0, 1),
(2277, 11, 0, 0, 0, 4, '20220427051204_1.jpeg', 'ICN2556984659137265664', 3.600, 0.000, 0, 0, '2022-04-27', 0, 1),
(2278, 11, 11, 22, 0, 0, '20220519041926_WhatsApp Image 2022-05-19 at 11.14.04 AM.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-05-19', 0, 1),
(2280, 11, 11, 22, 0, 0, '20220519042224_123.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-05-19', 0, 1),
(2281, 11, 0, 0, 0, 4, '20220519042548_1.jpeg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-05-19', 0, 1),
(2283, 11, 0, 0, 0, 4, '20220519052213_1.jpeg', 'ICN6597401819167588352', 0.590, 0.000, 0, 0, '2022-05-19', 0, 1),
(2284, 11, 0, 0, 0, 4, '20220519052505_2.jpeg', 'ICN6597401819167588352', 0.490, 0.000, 0, 0, '2022-05-19', 0, 1),
(2285, 11, 0, 0, 0, 4, '20220519052708_3.jpeg', 'ICN6597401819167588352', 0.720, 0.000, 0, 0, '2022-05-19', 0, 1),
(2286, 11, 0, 0, 0, 4, '20220519053828_4.jpeg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-05-19', 0, 1),
(2287, 11, 0, 0, 0, 4, '20220519054106_4.jpeg', 'ICN6597401819167588352', 0.620, 0.000, 0, 0, '2022-05-19', 0, 1),
(2288, 11, 0, 0, 0, 4, '20220519054253_5.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-05-19', 0, 1),
(2289, 11, 0, 0, 0, 4, '20220519054445_6.jpeg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-05-19', 0, 1),
(2290, 11, 11, 0, 0, 0, '20220519060441_IMG-20220519-WA0014.jpg', 'ICN6597401819167588352', 0.680, 0.840, 0, 0, '2022-05-19', 0, 1),
(2291, 11, 11, 0, 0, 0, '20220519061005_IMG-20220519-WA0004.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-05-19', 0, 1),
(2292, 11, 11, 0, 0, 0, '20220519061005_IMG-20220519-WA0004.jpg', 'ICN6597401819167588352', 1.050, 0.000, 0, 0, '2022-05-19', 0, 1),
(2293, 11, 11, 0, 0, 0, '20220519061506_IMG-20220412-WA0027.jpg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-05-19', 0, 1),
(2294, 11, 11, 0, 0, 0, '20220519062201_Screenshot_20220519-131329_WhatsAppBusiness.jpg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-05-19', 0, 1),
(2295, 11, 11, 0, 0, 0, '20220519062201_Screenshot_20220519-131329_WhatsAppBusiness.jpg', 'ICN6597401819167588352', 0.520, 0.710, 0, 0, '2022-05-19', 0, 1),
(2296, 11, 0, 0, 0, 4, '20220603021942_1.jpg', 'ICN7981429672816672768', 1.090, 0.000, 0, 0, '2022-06-03', 0, 1),
(2297, 11, 0, 0, 0, 4, '20220603022226_2.jpg', 'ICN7981429672816672768', 1.060, 0.000, 0, 0, '2022-06-03', 0, 1),
(2298, 11, 0, 0, 0, 4, '20220603022535_3.jpg', 'ICN7981429672816672768', 1.050, 0.000, 0, 0, '2022-06-03', 0, 1),
(2299, 11, 0, 0, 0, 4, '20220603022737_4.jpg', 'ICN7981429672816672768', 1.100, 0.000, 0, 0, '2022-06-03', 0, 1),
(2300, 11, 0, 0, 0, 4, '20220603023736_5.jpg', 'ICN7981429672816672768', 1.140, 0.000, 0, 0, '2022-06-03', 0, 1),
(2301, 11, 0, 0, 0, 4, '20220603031208_6.jpg', 'ICN7981429672816672768', 0.980, 0.000, 0, 0, '2022-06-03', 0, 1),
(2302, 11, 0, 0, 0, 4, '20220609051508_1.jpeg', 'ICN5348152100851286016', 12.570, 0.000, 0, 0, '2022-06-09', 0, 1),
(2303, 11, 0, 0, 0, 4, '20220609052938_5.jpeg', 'ICN5348152100851286016', 9.980, 0.000, 0, 0, '2022-06-09', 0, 1),
(2304, 11, 0, 0, 0, 4, '20220609054354_44.jpg', 'ICN7981429672816672768', 0.810, 0.000, 0, 0, '2022-06-09', 0, 1),
(2306, 11, 0, 0, 0, 4, '20220609075039_1.jpeg', 'ICN6597401819167588352', 0.510, 0.000, 0, 0, '2022-06-09', 0, 1),
(2307, 11, 0, 0, 0, 4, '20220609075252_2.jpeg', 'ICN6597401819167588352', 0.660, 0.000, 0, 0, '2022-06-09', 0, 1),
(2308, 11, 0, 0, 0, 4, '20220609075534_3.jpeg', 'ICN6597401819167588352', 0.770, 0.000, 0, 0, '2022-06-09', 0, 1),
(2309, 11, 0, 0, 0, 4, '20220609075823_4.jpeg', 'ICN6597401819167588352', 0.810, 0.000, 0, 0, '2022-06-09', 0, 1),
(2310, 15, 0, 0, 0, 2, '20220610101432_BLUE CIRCUIT BOARDS.jpeg', 'ICN5348152100851286016', 4.500, 0.000, 0, 0, '2022-06-10', 0, 1),
(2311, 15, 0, 0, 0, 2, '20220610101926_GREEN B2.jpeg', 'ICN3800330000012410880', 1.520, 0.000, 0, 0, '2022-06-10', 0, 1),
(2312, 11, 11, 0, 0, 0, '20220612113024_20220609051508_1.jpeg', 'ICN3800330000012410880', 5.620, 0.000, 0, 0, '2022-06-12', 0, 1),
(2314, 11, 0, 0, 0, 4, '20220613022943_2.jpeg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2022-06-13', 0, 1),
(2315, 11, 11, 22, 0, 0, '20220613023228_WhatsApp Image 2022-06-09 at 12.16.08 PM.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-13', 0, 1),
(2316, 11, 11, 22, 0, 0, '20220613024231_IMG-20220609-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-13', 0, 1),
(2317, 11, 11, 22, 0, 0, '20220615014728_poland new15.06.2022.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2318, 11, 0, 0, 0, 4, '20220615032748_11.jpeg', 'ICN7981429672816672768', 0.890, 0.000, 0, 0, '2022-06-15', 0, 1),
(2319, 11, 0, 0, 0, 4, '20220615033002_11.jpeg', 'ICN6597401819167588352', 0.440, 0.000, 0, 0, '2022-06-15', 0, 1),
(2320, 11, 0, 0, 0, 4, '20220615033235_22.jpeg', 'ICN7981429672816672768', 0.760, 0.000, 0, 0, '2022-06-15', 0, 1),
(2321, 11, 0, 0, 0, 4, '20220615033453_6.jpeg', 'ICN6597401819167588352', 0.590, 0.000, 0, 0, '2022-06-15', 0, 1),
(2322, 11, 0, 0, 0, 4, '20220615040155_55.jpg', 'ICN6597401819167588352', 0.720, 0.000, 0, 0, '2022-06-15', 0, 1),
(2323, 11, 0, 0, 0, 4, '20220615043327_22.jpeg', 'ICN7981429672816672768', 0.820, 0.000, 0, 0, '2022-06-15', 0, 1),
(2324, 11, 0, 0, 0, 4, '20220615052656_1.jpg', 'ICN6597401819167588352', 0.460, 0.000, 0, 0, '2022-06-15', 0, 1),
(2325, 11, 0, 0, 0, 4, '20220615052859_2.jpg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-06-15', 0, 1),
(2326, 11, 0, 0, 0, 4, '20220615053138_3.jpg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-06-15', 0, 1),
(2327, 11, 0, 0, 0, 4, '20220615053420_4.jpeg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-06-15', 0, 1),
(2328, 11, 0, 0, 0, 4, '20220615053615_5.jpeg', 'ICN6597401819167588352', 0.790, 0.000, 0, 0, '2022-06-15', 0, 1),
(2329, 11, 11, 22, 0, 0, '20220615093208_IMG-20220615-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2330, 11, 11, 22, 0, 0, '20220615093208_IMG-20220615-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2331, 11, 11, 22, 0, 0, '20220615093208_IMG-20220615-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2332, 11, 11, 22, 0, 0, '20220615093208_IMG-20220615-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2333, 11, 11, 22, 0, 0, '20220615093816_IMG-20220615-WA0028.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-06-15', 0, 1),
(2334, 11, 11, 0, 0, 0, '20220615122235_IMG-20201113-WA0004.jpg', 'ICN6597401819167588352', 0.780, 0.000, 0, 0, '2022-06-15', 0, 1),
(2335, 11, 11, 34, 0, 0, '20220615112656_todaynew.jpg', 'ICN6597401819167588352', 0.690, 0.000, 0, 0, '2022-06-15', 0, 1),
(2336, 11, 11, 22, 0, 0, '20220615113443_newtoday.jpg', 'ICN6597401819167588352', 0.680, 0.000, 0, 0, '2022-06-15', 0, 1),
(2337, 11, 0, 0, 0, 4, '20220617043749_6.jpg', 'ICN6597401819167588352', 0.410, 0.000, 0, 0, '2022-06-17', 0, 1),
(2338, 11, 0, 0, 0, 4, '20220617043948_femker1.jpg', 'ICN6597401819167588352', 0.770, 0.000, 0, 0, '2022-06-17', 0, 1),
(2339, 11, 0, 0, 0, 4, '20220617044133_femker2.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2022-06-17', 0, 1),
(2341, 11, 11, 0, 0, 0, '20220617074153_IMG-20220617-WA0005.jpg', 'ICN6597401819167588352', 0.880, 1.150, 0, 0, '2022-06-17', 0, 1),
(2342, 15, 0, 0, 0, 2, '20220622090648_B1.png', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2022-06-22', 0, 1),
(2343, 15, 15, 0, 0, 0, '20220623035042_1.jpeg', 'ICN3800330000012410880', 1.480, 5.050, 0, 0, '2022-06-23', 0, 1),
(2344, 15, 15, 0, 0, 0, '20220623035713_blanks and gold.jpeg', 'ICN6597401819167588352', 0.370, 0.000, 0, 0, '2022-06-23', 0, 1),
(2346, 15, 15, 0, 0, 0, '20220623042732_blanksnikel.jpeg', 'ICN6597401819167588352', 0.350, 0.000, 0, 0, '2022-06-23', 0, 1),
(2347, 15, 15, 0, 0, 0, '20220623043718_blanks and gold.jpeg', 'ICN6597401819167588352', 0.350, 0.400, 0, 0, '2022-06-23', 0, 1),
(2348, 15, 15, 0, 0, 0, '20220623045032_blanksnikel.jpeg', 'ICN6597401819167588352', 0.360, 0.440, 0, 0, '2022-06-23', 0, 1),
(2349, 15, 15, 0, 0, 0, '20220623045631_low grade boards.jpeg', 'ICN7981429672816672768', 1.280, 1.680, 0, 0, '2022-06-23', 0, 1),
(2350, 15, 15, 0, 0, 0, '20220623050244_lowgrade boards.jpeg', 'ICN5491985813950431232', 1.840, 1.790, 0, 0, '2022-06-23', 0, 1),
(2352, 15, 15, 0, 0, 0, '20220623052522_4.jpeg', 'ICN7981429672816672768', 1.200, 0.000, 0, 0, '2022-06-23', 0, 1),
(2353, 11, 11, 22, 0, 0, '20220705021544_WhatsApp Image 2022-07-05 at 9.12.18 AM (1).jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-07-05', 0, 1),
(2354, 11, 0, 0, 0, 4, '20220705022027_1.jpeg', 'ICN6597401819167588352', 0.800, 0.000, 0, 0, '2022-07-05', 0, 1),
(2355, 11, 0, 0, 0, 4, '20220705022252_12.jpeg', 'ICN6597401819167588352', 0.460, 0.000, 0, 0, '2022-07-05', 0, 1);
INSERT INTO `viewpasimage` (`id`, `userid`, `adminid`, `inventoryid`, `supplierid`, `agentid`, `image`, `dataset`, `totalprice`, `totaloffer`, `supid`, `listid`, `sysdate`, `offeraccept`, `status`) VALUES
(2356, 11, 0, 0, 0, 4, '20220705022437_14.jpeg', 'ICN6597401819167588352', 0.660, 0.000, 0, 0, '2022-07-05', 0, 1),
(2357, 11, 11, 0, 0, 0, '20220708044027_IMG-20220708-WA0026.jpg', 'ICN6597401819167588352', 0.290, 0.000, 0, 0, '2022-07-08', 0, 1),
(2358, 11, 11, 0, 0, 0, '20220708044329_IMG-20220708-WA0023.jpg', 'ICN6597401819167588352', 0.640, 0.900, 0, 0, '2022-07-08', 0, 1),
(2360, 11, 11, 0, 0, 0, '20220708083823_IMG-20220617-WA0005.jpg', 'ICN6597401819167588352', 0.740, 1.370, 0, 0, '2022-07-08', 0, 1),
(2369, 15, 15, 0, 0, 0, '20220712082409_545.jpeg', 'ICN3800330000012410880', 1.890, 12.600, 0, 0, '2022-07-12', 0, 1),
(2373, 15, 15, 0, 0, 0, '20220714023443_IMG-20220708-WA0058.jpg', 'ICN6597401819167588352', 0.500, 0.200, 0, 0, '2022-07-14', 0, 1),
(2374, 11, 11, 0, 0, 0, '20220715082833_IMG-20220715-WA0029.jpg', 'ICN6597401819167588352', 0.330, 0.530, 0, 0, '2022-07-15', 0, 1),
(2375, 11, 11, 0, 0, 0, '20220715083108_IMG-20220715-WA0033.jpg', 'ICN6597401819167588352', 0.580, 1.260, 136, 0, '2022-07-15', 0, 1),
(2376, 15, 0, 0, 0, 2, '20220728022555_20220519_131630.jpg', 'ICN2556984659137265664', 1.830, 0.000, 0, 0, '2022-07-28', 0, 1),
(2377, 15, 0, 0, 0, 2, '20220728023812_20220519_132556 P4 Motherboards Pic 2.jpg', 'ICN2556984659137265664', 1.710, 0.000, 0, 0, '2022-07-28', 0, 1),
(2378, 15, 0, 0, 0, 2, '20220728024216_20220519_133403 P4 Motherboards Pic 3.jpg', 'ICN2556984659137265664', 1.710, 0.000, 0, 0, '2022-07-28', 0, 1),
(2381, 15, 0, 0, 0, 2, '20220728024941_20220519_154759 Switch Boards.jpg', 'ICN3800330000012410880', 0.000, 0.000, 0, 0, '2022-07-28', 0, 1),
(2382, 15, 0, 0, 0, 2, '20220728025423_20220519_154759 Switch Boards.jpg', 'ICN237138269832216576', 8.050, 0.000, 0, 0, '2022-07-28', 0, 1),
(2383, 15, 0, 0, 0, 2, '20220728030829_20220519_154759 Switch Boards.jpg', 'ICN3800330000012410880', 3.910, 0.000, 0, 0, '2022-07-28', 0, 1),
(2384, 11, 11, 0, 0, 0, '20220803074700_3131322415.jpeg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-08-03', 0, 1),
(2385, 11, 11, 0, 0, 0, '20220803080647_442414141232.jpeg', 'ICN6597401819167588352', 0.550, 0.000, 0, 0, '2022-08-03', 0, 1),
(2387, 11, 11, 0, 0, 0, '20220809051057_IMG-20220809-WA0012.jpg', 'ICN6597401819167588352', 0.880, 1.370, 136, 0, '2022-08-09', 0, 1),
(2388, 11, 11, 0, 0, 0, '20220819035804_IMG-20220819-WA0009.jpg', 'ICN6597401819167588352', 0.560, 0.000, 0, 0, '2022-08-19', 0, 1),
(2389, 11, 11, 0, 0, 0, '20220819040028_IMG-20220819-WA0010.jpg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-08-19', 0, 1),
(2390, 11, 11, 0, 0, 0, '20220820045356_IMG-20220804-WA0006.jpg', 'ICN6597401819167588352', 0.280, 0.000, 0, 0, '2022-08-20', 0, 1),
(2391, 11, 11, 0, 0, 0, '20220820045630_IMG-20220820-WA0007.jpg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-08-20', 0, 1),
(2393, 11, 11, 0, 0, 0, '20220820050400_IMG-20220820-WA0017.jpg', 'ICN6597401819167588352', 0.590, 1.330, 0, 0, '2022-08-20', 0, 1),
(2394, 15, 15, 0, 0, 0, '20220830044022_computer-motherboard-scrap-1499185759-3092169.jpeg', 'ICN2556984659137265664', 2.490, 7.100, 0, 0, '2022-08-30', 0, 1),
(2395, 15, 15, 0, 0, 0, '20220830072007_computer-motherboard-scrap-for-recycling-688.jpg', 'ICN2556984659137265664', 1.990, 3.300, 0, 0, '2022-08-30', 0, 1),
(2396, 11, 11, 0, 0, 0, '20220831054237_1.jpeg', 'ICN6597401819167588352', 0.590, 0.000, 0, 0, '2022-08-31', 0, 1),
(2399, 11, 11, 0, 0, 0, '20220831061124_4.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-08-31', 0, 1),
(2402, 11, 11, 0, 0, 0, '20220831091304_1.jpeg', 'ICN6597401819167588352', 0.700, 0.000, 0, 0, '2022-08-31', 0, 1),
(2403, 11, 11, 0, 0, 0, '20220831092020_5.jpeg', 'ICN6597401819167588352', 0.390, 0.000, 0, 0, '2022-08-31', 0, 1),
(2405, 11, 11, 0, 0, 0, '20220831092323_6.jpeg', 'ICN6597401819167588352', 0.450, 0.000, 0, 0, '2022-08-31', 0, 1),
(2407, 11, 11, 0, 0, 0, '20220831093205_7.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-08-31', 0, 1),
(2410, 11, 11, 0, 0, 0, '20220831094559_8.jpeg', 'ICN6597401819167588352', 0.460, 0.000, 0, 0, '2022-08-31', 0, 1),
(2411, 11, 11, 0, 0, 0, '20220831100550_a.jpeg', 'ICN6597401819167588352', 0.580, 0.000, 0, 0, '2022-08-31', 0, 1),
(2412, 11, 11, 0, 0, 0, '20220831101446_d.jpeg', 'ICN6597401819167588352', 0.770, 0.000, 0, 0, '2022-08-31', 0, 1),
(2413, 11, 11, 0, 0, 0, '20220831102401_f.jpeg', 'ICN6597401819167588352', 0.450, 0.000, 0, 0, '2022-08-31', 0, 1),
(2415, 11, 11, 0, 0, 0, '20220831110743_q.jpeg', 'ICN6597401819167588352', 0.470, 0.000, 0, 0, '2022-08-31', 0, 1),
(2416, 11, 11, 0, 0, 0, '20220831025440_w.jpeg', 'ICN6597401819167588352', 0.570, 0.000, 0, 0, '2022-08-31', 0, 1),
(2417, 11, 11, 0, 0, 0, '20220831025926_r.jpeg', 'ICN6597401819167588352', 0.370, 0.000, 0, 0, '2022-08-31', 0, 1),
(2418, 11, 11, 0, 0, 0, '20220831035058_b.jpeg', 'ICN6597401819167588352', 0.570, 1.260, 0, 0, '2022-08-31', 0, 1),
(2419, 11, 11, 0, 0, 0, '20220831035513_c.jpeg', 'ICN6597401819167588352', 0.600, 1.260, 0, 0, '2022-08-31', 0, 1),
(2420, 11, 11, 0, 0, 0, '20220831041736_v.jpeg', 'ICN6597401819167588352', 0.570, 1.260, 0, 0, '2022-08-31', 0, 1),
(2424, 11, 11, 0, 0, 0, '20220901010633_2.jpeg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-09-01', 0, 1),
(2425, 11, 11, 0, 0, 0, '20220901011347_b.jpeg', 'ICN6597401819167588352', 0.870, 0.000, 0, 0, '2022-09-01', 0, 1),
(2426, 11, 11, 0, 0, 0, '20220901011923_y.jpeg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2022-09-01', 0, 1),
(2427, 11, 11, 0, 0, 0, '20220901012503_t.jpeg', 'ICN6597401819167588352', 0.360, 0.000, 0, 0, '2022-09-01', 0, 1),
(2428, 11, 11, 0, 0, 0, '20220901013531_b.jpeg', 'ICN6597401819167588352', 0.870, 0.000, 0, 0, '2022-09-01', 0, 1),
(2429, 15, 15, 0, 0, 0, '20220901083704_20190701_134731.jpg', 'ICN3203040099432398848', 33.290, 0.000, 0, 0, '2022-09-01', 0, 1),
(2430, 11, 11, 0, 0, 0, '20220908021956_20220907_163516.jpg', 'ICN6597401819167588352', 0.800, 1.650, 0, 0, '2022-09-08', 0, 1),
(2431, 11, 11, 0, 0, 0, '20220908024708_IMG-20220817-WA0015.jpg', 'ICN6597401819167588352', 0.670, 1.320, 0, 0, '2022-09-08', 0, 1),
(2432, 11, 11, 0, 0, 0, '20220908025208_IMG-20220804-WA0009.jpg', 'ICN6597401819167588352', 0.550, 0.000, 0, 0, '2022-09-08', 0, 1),
(2433, 11, 11, 0, 0, 0, '20220908025704_IMG-20220817-WA0013.jpg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2022-09-08', 0, 1),
(2434, 15, 15, 0, 0, 0, '20220908113356_Screenshot_20220908-182902_WhatsAppBusiness.jpg', 'ICN7981429672816672768', 0.650, 0.000, 0, 0, '2022-09-08', 0, 1),
(2435, 15, 15, 0, 0, 0, '20220908113649_Screenshot_20220908-183756_WhatsAppBusiness.jpg', 'ICN7981429672816672768', 0.550, 0.000, 0, 0, '2022-09-08', 0, 1),
(2436, 11, 11, 0, 0, 0, '20220910021751_IMG-20220910-WA0004.jpg', 'ICN6597401819167588352', 0.390, 0.000, 0, 0, '2022-09-10', 0, 1),
(2437, 11, 11, 0, 0, 0, '20220910021938_IMG-20220910-WA0003.jpg', 'ICN6597401819167588352', 0.660, 0.000, 0, 0, '2022-09-10', 0, 1),
(2438, 11, 11, 0, 0, 0, '20220910022536_IMG-20220910-WA0002.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-09-10', 0, 1),
(2439, 11, 11, 0, 0, 0, '20220910022715_IMG-20220910-WA0001.jpg', 'ICN6597401819167588352', 0.660, 0.000, 0, 0, '2022-09-10', 0, 1),
(2440, 11, 11, 0, 0, 0, '20220912012338_IMG-20220912-WA0004.jpg', 'ICN6597401819167588352', 0.510, 0.000, 0, 0, '2022-09-12', 0, 1),
(2441, 11, 11, 0, 0, 0, '20220912012528_IMG-20220912-WA0007.jpg', 'ICN6597401819167588352', 0.660, 1.370, 0, 0, '2022-09-12', 0, 1),
(2443, 11, 11, 0, 0, 0, '20220912013833_IMG-20220912-WA0006.jpg', 'ICN6597401819167588352', 0.660, 1.320, 0, 0, '2022-09-12', 0, 1),
(2446, 11, 11, 0, 0, 0, '20220912014744_IMG-20220912-WA0005.jpg', 'ICN6597401819167588352', 0.660, 1.320, 0, 0, '2022-09-12', 0, 1),
(2447, 15, 15, 0, 0, 7, '20220914105602_bruce1.jpeg', 'ICN2556984659137265664', 4.220, 0.000, 138, 0, '2022-09-14', 0, 1),
(2448, 15, 0, 0, 0, 7, '20220914105604_mother board.jpeg', 'ICN2556984659137265664', 4.090, 0.000, 138, 0, '2022-09-14', 0, 1),
(2449, 15, 15, 0, 0, 7, '20220914110702_bruce3.jpeg', 'ICN5491985813950431232', 2.420, 0.000, 138, 0, '2022-09-14', 0, 1),
(2450, 15, 0, 0, 0, 7, '20220914110721_finger boards.jpeg', 'ICN2261506302335254528', 7.720, 0.000, 138, 0, '2022-09-14', 0, 1),
(2451, 15, 15, 0, 0, 0, '20220928082910_IMG-20220928-WA0022.jpg', 'ICN6597401819167588352', 0.330, 0.750, 137, 0, '2022-09-28', 0, 1),
(2452, 15, 15, 0, 0, 0, '20220928083227_IMG-20220928-WA0021.jpg', 'ICN6597401819167588352', 0.570, 1.320, 137, 0, '2022-09-28', 0, 1),
(2453, 11, 11, 0, 0, 0, '20221003044806_IMG-20221003-WA0012.jpg', 'ICN6597401819167588352', 0.630, 0.890, 0, 0, '2022-10-03', 0, 1),
(2454, 11, 11, 0, 0, 0, '20221003053749_IMG-20221003-WA0020.jpg', 'ICN6597401819167588352', 0.630, 0.000, 0, 0, '2022-10-03', 0, 1),
(2455, 11, 11, 0, 0, 0, '20221003053952_IMG-20221003-WA0019.jpg', 'ICN6597401819167588352', 0.630, 0.000, 0, 0, '2022-10-03', 0, 1),
(2456, 15, 15, 0, 0, 0, '20221003113116_stuffy.jpeg', 'ICN6597401819167588352', 0.650, 0.400, 139, 0, '2022-10-03', 0, 1),
(2457, 15, 15, 0, 0, 0, '20221003114022_20220928083227_IMG-20220928-WA0021.jpg', 'ICN6597401819167588352', 0.500, 0.400, 140, 0, '2022-10-03', 0, 1),
(2458, 15, 15, 0, 0, 0, '20221003114756_20220928082910_IMG-20220928-WA0022.jpg', 'ICN6597401819167588352', 0.500, 0.440, 0, 0, '2022-10-03', 0, 1),
(2459, 11, 11, 0, 0, 0, '20221027034603_FORSerenity.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-10-27', 0, 1),
(2460, 15, 15, 0, 0, 0, '20221028034104_micro.jpeg', 'ICN6597401819167588352', 0.560, 0.450, 0, 0, '2022-10-28', 0, 1),
(2461, 15, 15, 0, 0, 0, '20221029025428_sanfhills.jpeg', 'ICN2556984659137265664', 5.020, 2.200, 141, 0, '2022-10-29', 0, 1),
(2462, 11, 11, 36, 0, 0, '20221101040851_3re.spzoospk poland 01.07.2022.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-11-01', 0, 1),
(2463, 11, 11, 36, 0, 0, '20221101041841_20221006_100149.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2022-11-01', 0, 1),
(2464, 11, 11, 36, 0, 0, '20221107072343_shit.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-11-07', 0, 1),
(2465, 11, 11, 36, 0, 0, '20221107072343_shit.jpeg', 'ICN6597401819167588352', 0.530, 0.000, 0, 0, '2022-11-07', 0, 1),
(2466, 11, 11, 0, 0, 0, '20221107074411_moreshit.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-11-07', 0, 1),
(2467, 11, 11, 0, 0, 0, '20221121112311_IMG-20221121-WA0021.jpg', 'ICN6597401819167588352', 0.300, 0.000, 0, 0, '2022-11-21', 0, 1),
(2468, 11, 11, 0, 0, 0, '20221121112616_IMG-20221121-WA0022.jpg', 'ICN6597401819167588352', 0.370, 1.260, 0, 0, '2022-11-21', 0, 1),
(2469, 11, 11, 0, 0, 0, '20221122013043_Screenshot_20221122_083321_Gallery.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2022-11-22', 0, 1),
(2470, 11, 11, 0, 0, 0, '20221122013255_Screenshot_20221122_083321_Gallery.jpg', 'ICN6597401819167588352', 0.410, 1.320, 0, 0, '2022-11-22', 0, 1),
(2471, 11, 11, 0, 0, 0, '20221122020538_IMG-20221121-WA0023.jpg', 'ICN7981429672816672768', 0.430, 1.110, 0, 0, '2022-11-22', 0, 1),
(2472, 11, 11, 0, 0, 0, '20221122025801_Screenshot_20221122_083321_Gallery.jpg', 'ICN6597401819167588352', 0.410, 1.320, 0, 0, '2022-11-22', 0, 1),
(2473, 15, 15, 0, 0, 0, '20230110074438_CircuitBoard004.jpeg', 'ICN6597401819167588352', 0.560, 0.000, 0, 0, '2023-01-10', 0, 1),
(2474, 15, 15, 0, 0, 0, '20230110075201_CircuitBoard001.jpeg', 'ICN6597401819167588352', 0.380, 0.000, 0, 0, '2023-01-10', 0, 1),
(2475, 11, 11, 0, 0, 0, '20230112014658_SERBIA1.jpg', 'ICN6597401819167588352', 0.400, 0.880, 0, 0, '2023-01-12', 0, 1),
(2476, 11, 11, 0, 0, 0, '20230112015632_SERBIA2.jpg', 'ICN6597401819167588352', 0.400, 0.880, 0, 0, '2023-01-12', 0, 1),
(2477, 11, 11, 0, 0, 0, '20230112025342_SERBIA.jpg', 'ICN6597401819167588352', 0.390, 0.850, 0, 0, '2023-01-12', 0, 1),
(2478, 11, 11, 0, 0, 0, '20230112025844_serbia2.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-01-12', 0, 1),
(2479, 11, 11, 36, 0, 0, '20230112104923_WhatsApp Image 2022-12-13 at 11.18.46.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2480, 11, 11, 36, 0, 0, '20230112105155_WhatsApp Image 2022-12-13 at 11.18.46.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2481, 11, 11, 36, 0, 0, '20230112105555_IMG-20230111-WA0017.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2486, 11, 11, 0, 0, 0, '20230112121653_20230112115541_BENE.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2487, 11, 11, 0, 0, 0, '20230112121835_20230112115541_BENE.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2488, 11, 11, 0, 0, 0, '20230112122056_20230112115541_BENE.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2489, 11, 11, 0, 0, 0, '20230112122434_IMG-20230112-WA0009.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-12', 0, 1),
(2490, 11, 11, 36, 0, 0, '20230113022815_3re.spzoospk poland 01.07.2022.jpeg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-13', 0, 1),
(2491, 11, 11, 0, 0, 0, '20230113024201_20221222_104751.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-13', 0, 1),
(2492, 11, 11, 0, 0, 0, '20230113030757_csaba.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-13', 0, 1),
(2493, 11, 11, 0, 0, 0, '20230113085828_IMG-20230113-WA0039.jpg', 'ICN5491985813950431232', 0.790, 0.000, 0, 0, '2023-01-13', 0, 1),
(2494, 11, 11, 0, 0, 0, '20230113090127_IMG-20230113-WA0037.jpg', 'ICN5491985813950431232', 0.810, 0.000, 0, 0, '2023-01-13', 0, 1),
(2495, 11, 11, 0, 0, 0, '20230113090454_IMG-20230113-WA0039.jpg', 'ICN7981429672816672768', 0.680, 0.000, 0, 0, '2023-01-13', 0, 1),
(2496, 11, 11, 0, 0, 0, '20230113090722_IMG-20230113-WA0037.jpg', 'ICN7981429672816672768', 0.580, 0.000, 0, 0, '2023-01-13', 0, 1),
(2497, 11, 11, 0, 0, 0, '20230113091415_IMG-20230113-WA0048.jpg', 'ICN6597401819167588352', 0.690, 0.000, 0, 0, '2023-01-13', 0, 1),
(2498, 11, 11, 0, 0, 0, '20230117034851_IMG-20221213-WA0000.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2023-01-17', 0, 1),
(2499, 11, 11, 0, 0, 0, '20230117035326_IMG-20221213-WA0001.jpg', 'ICN6597401819167588352', 0.490, 0.000, 0, 0, '2023-01-17', 0, 1),
(2500, 11, 11, 0, 0, 0, '20230118053951_IMG-20230118-WA0005.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-01-18', 0, 1),
(2501, 11, 11, 0, 0, 0, '20230120030941_IMG-20230118-WA0005.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2023-01-20', 0, 1),
(2502, 11, 11, 0, 0, 0, '20230125080528_20230125_150212.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-01-25', 0, 1),
(2503, 11, 11, 0, 0, 0, '20230126084936_IMG-20230118-WA0005(1).jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-01-26', 0, 1),
(2504, 11, 11, 0, 0, 0, '20230126085706_20230126_151747.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-01-26', 0, 1),
(2505, 11, 11, 0, 0, 0, '20230126090642_IMG-20230126-WA0008.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-01-26', 0, 1),
(2506, 11, 11, 0, 0, 0, '20230126094449_IMG-20230126-WA0035.jpeg', 'ICN6597401819167588352', 0.400, 0.000, 0, 0, '2023-01-26', 0, 1),
(2507, 11, 11, 0, 0, 0, '20230131022548_IMG-20230131-WA0003.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-01-31', 0, 1),
(2508, 11, 11, 0, 0, 0, '20230131055207_IMG-20230131-WA0022.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-01-31', 0, 1),
(2509, 11, 11, 0, 0, 0, '20230227061919_20230223_153633.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2023-02-27', 0, 1),
(2510, 11, 11, 0, 0, 0, '20230227071101_IMG-20230227-WA0007.jpg', 'ICN6597401819167588352', 0.390, 0.000, 0, 0, '2023-02-27', 0, 1),
(2511, 11, 11, 0, 0, 0, '20230227071521_IMG-20230227-WA0009.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-02-27', 0, 1),
(2512, 11, 11, 0, 0, 0, '20230227081400_IMG-20230227-WA0016.jpg', 'ICN6597401819167588352', 0.370, 0.000, 0, 0, '2023-02-27', 0, 1),
(2513, 11, 11, 0, 0, 0, '20230227081659_IMG-20230206-WA0005.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-02-27', 0, 1),
(2514, 11, 11, 0, 0, 0, '20230302033047_IMG-20230302-WA0012.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-03-02', 0, 1),
(2515, 11, 11, 0, 0, 0, '20230302033600_IMG-20230302-WA0016.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-02', 0, 1),
(2516, 11, 11, 0, 0, 0, '20230302033829_IMG-20230302-WA0012.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-03-02', 0, 1),
(2517, 11, 11, 0, 0, 0, '20230303100048_IMG-20230303-WA0004.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-03-03', 0, 1),
(2518, 11, 11, 0, 0, 0, '20230303100048_IMG-20230303-WA0004.jpg', 'ICN6597401819167588352', 0.440, 0.000, 0, 0, '2023-03-03', 0, 1),
(2519, 11, 11, 0, 0, 0, '20230303100344_IMG-20230303-WA0005.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-03', 0, 1),
(2520, 11, 11, 0, 0, 0, '20230303100344_IMG-20230303-WA0005.jpg', 'ICN6597401819167588352', 0.490, 0.000, 0, 0, '2023-03-03', 0, 1),
(2521, 11, 11, 0, 0, 0, '20230306033440_20230306_093925.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2023-03-06', 0, 1),
(2522, 11, 11, 0, 0, 0, '20230306033904_20230306_094337.jpg', 'ICN6597401819167588352', 0.480, 0.000, 0, 0, '2023-03-06', 0, 1),
(2523, 11, 11, 0, 0, 0, '20230306080015_20230306_140215.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-06', 0, 1),
(2524, 11, 11, 0, 0, 0, '20230306080306_20230306_140847.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-06', 0, 1),
(2525, 11, 11, 0, 0, 0, '20230306081511_20230306_140847.jpg', 'ICN6597401819167588352', 0.370, 0.000, 0, 0, '2023-03-06', 0, 1),
(2526, 11, 11, 0, 0, 0, '20230306081758_20230306_140215.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-06', 0, 1),
(2527, 11, 11, 0, 0, 0, '20230309094646_20230309_143142.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-03-09', 0, 1),
(2528, 11, 11, 0, 0, 0, '20230309095137_20230309_143142.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-03-09', 0, 1),
(2529, 11, 11, 0, 0, 0, '20230313100650_IMG-20230313-WA0008.jpg', 'ICN6597401819167588352', 0.470, 0.000, 0, 0, '2023-03-13', 0, 1),
(2530, 11, 11, 0, 0, 0, '20230313100811_NINO.jpg', 'ICN6597401819167588352', 0.600, 0.990, 0, 0, '2023-03-13', 0, 1),
(2531, 11, 11, 0, 0, 0, '20230313105633_IMG-20230313-WA0007.jpg', 'ICN6597401819167588352', 0.600, 0.000, 0, 0, '2023-03-13', 0, 1),
(2532, 1, 0, 0, 1, 0, '20230316054750_NINO.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 1, '2023-03-16', 0, 1),
(2533, 1, 0, 0, 1, 0, '20230316073833_20230316_114525.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-16', 0, 1),
(2534, 1, 0, 0, 1, 0, '20230316074458_20230316_125055.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-16', 0, 1),
(2535, 1, 0, 0, 1, 0, '20230316074716_20230316_125331.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-16', 0, 1),
(2536, 1, 0, 0, 1, 0, '20230316075251_20230316_125914.jpg', 'ICN2556984659137265664', 0.870, 0.000, 0, 0, '2023-03-16', 0, 1),
(2537, 1, 0, 0, 1, 0, '20230317045208_20230317_092815.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2538, 1, 0, 0, 1, 0, '20230317045338_20230317_092815.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2539, 1, 0, 0, 1, 0, '20230317045523_20230317_092437.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2540, 1, 0, 0, 1, 0, '20230317045657_20230317_092410.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2541, 1, 0, 0, 1, 0, '20230317050226_20230317_092854.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2542, 1, 0, 0, 1, 0, '20230317050846_20230317_092517.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2543, 1, 0, 0, 1, 0, '20230317060545_20230317_111142.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2544, 1, 0, 0, 1, 0, '20230317060841_20230317_111508.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2545, 1, 0, 0, 1, 0, '20230317061236_20230317_111726.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2546, 1, 0, 0, 1, 0, '20230317061606_20230317_112212.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2547, 1, 0, 0, 1, 0, '20230317061914_20230317_112228.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2548, 1, 0, 0, 1, 0, '20230317062125_20230317_112800.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2549, 1, 0, 0, 1, 0, '20230317062331_20230317_112950.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2550, 1, 0, 0, 1, 0, '20230317062633_20230317_113249.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2551, 1, 0, 0, 1, 0, '20230317062823_20230317_113244.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2552, 1, 0, 0, 1, 0, '20230317063123_20230317_113752.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2553, 1, 0, 0, 1, 0, '20230317063421_20230317_114059.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2554, 1, 0, 0, 1, 0, '20230317064007_20230317_114418.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2555, 1, 0, 0, 1, 0, '20230317073217_20230317_113234.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2556, 1, 0, 0, 1, 0, '20230317073217_20230317_113234.jpg', 'ICN2556984659137265664', 0.590, 0.000, 0, 0, '2023-03-17', 0, 1),
(2557, 1, 0, 0, 1, 0, '20230317073544_20230317_111142.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2558, 1, 0, 0, 1, 0, '20230317073544_20230317_111142.jpg', 'ICN2556984659137265664', 0.510, 0.000, 0, 0, '2023-03-17', 0, 1),
(2559, 1, 0, 0, 1, 0, '20230317073756_20230317_114418.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-17', 0, 1),
(2560, 1, 0, 0, 1, 0, '20230317074038_20230317_114401.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2561, 1, 0, 0, 1, 0, '20230317074038_20230317_114401.jpg', 'ICN2556984659137265664', 0.570, 0.000, 0, 0, '2023-03-17', 0, 1),
(2562, 1, 0, 0, 1, 0, '20230317074319_20230317_112212.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-17', 0, 1),
(2563, 1, 0, 0, 1, 0, '20230317074319_20230317_112212.jpg', 'ICN2556984659137265664', 0.460, 0.000, 0, 0, '2023-03-17', 0, 1),
(2564, 1, 0, 0, 1, 0, '20230322050949_20230322_101143.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-22', 0, 1),
(2565, 1, 0, 0, 1, 0, '20230322050949_20230322_101143.jpg', 'ICN2556984659137265664', 0.620, 0.000, 0, 0, '2023-03-22', 0, 1),
(2566, 1, 0, 0, 1, 0, '20230322051154_20230322_101157.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 0, '2023-03-22', 0, 1),
(2567, 1, 0, 0, 1, 0, '20230322051154_20230322_101157.jpg', 'ICN2556984659137265664', 0.310, 0.000, 0, 0, '2023-03-22', 0, 1),
(2568, 1, 0, 0, 1, 0, '20230323032949_20230323_083627.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-23', 0, 1),
(2569, 1, 0, 0, 1, 0, '20230323033226_20230323_083622.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-23', 0, 1),
(2570, 1, 0, 0, 1, 0, '20230323033610_20230323_084257.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-03-23', 0, 1),
(2573, 1, 0, 0, 1, 0, '20230328041849_20230328_102544.jpg', 'ICN2556984659137265664', 1.120, 0.000, 0, 0, '2023-03-28', 0, 1),
(2574, 1, 0, 0, 1, 0, '20230328042335_20230328_102544.jpg', 'ICN2261506302335254528', 0.000, 0.000, 0, 1, '2023-03-28', 0, 1),
(2575, 1, 0, 0, 1, 0, '20230328042733_20230323_083622.jpg', 'ICN6597401819167588352', 0.110, 0.000, 0, 0, '2023-03-28', 0, 1),
(2576, 1, 0, 0, 1, 0, '20230328043525_20230316_125331.jpg', 'ICN6597401819167588352', 0.490, 0.000, 0, 2, '2023-03-28', 0, 1),
(2577, 1, 0, 0, 1, 0, '20230328044706_20230316_114525.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 2, '2023-03-28', 0, 1),
(2578, 1, 0, 0, 1, 0, '20230328044855_20230316_114525.jpg', 'ICN6597401819167588352', 0.490, 0.000, 0, 2, '2023-03-28', 0, 1),
(2579, 1, 0, 0, 1, 0, '20230328044855_20230316_114525.jpg', 'ICN6597401819167588352', 0.580, 0.000, 0, 2, '2023-03-28', 0, 1),
(2580, 1, 0, 0, 1, 0, '20230328045428_20230328_102544.jpg', 'ICN5348152100851286016', 0.000, 0.000, 0, 2, '2023-03-28', 0, 1),
(2581, 1, 0, 0, 1, 0, '20230328045541_20230328_102403.jpg', 'ICN5348152100851286016', 2.720, 0.000, 0, 2, '2023-03-28', 0, 1),
(2582, 11, 11, 0, 0, 0, '20230404061703_20230404_132135.jpg', 'ICN6597401819167588352', 0.670, 0.000, 0, 0, '2023-04-04', 0, 1),
(2583, 11, 11, 0, 0, 0, '20230411060301_IMG-20230206-WA0005.jpg', 'ICN6597401819167588352', 0.310, 0.000, 0, 0, '2023-04-11', 0, 1),
(2584, 1, 0, 0, 1, 0, '20230412052911_20230407_091108.jpg', 'ICN2556984659137265664', 1.870, 0.000, 0, 2, '2023-04-12', 0, 1),
(2585, 1, 0, 0, 1, 0, '20230412053230_20230407_091057.jpg', 'ICN2556984659137265664', 0.980, 0.000, 0, 5, '2023-04-12', 0, 1),
(2586, 1, 0, 0, 1, 0, '20230412053230_20230407_091057.jpg', 'ICN2556984659137265664', 1.130, 0.000, 0, 5, '2023-04-12', 0, 1),
(2587, 1, 0, 0, 1, 0, '20230412053532_20230407_091108.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 1, '2023-04-12', 0, 1),
(2588, 1, 0, 0, 1, 0, '20230412054031_20230407_091108.jpg', 'ICN3800330000012410880', 0.000, 0.000, 0, 2, '2023-04-12', 0, 1),
(2589, 1, 0, 0, 1, 0, '20230412054326_20230407_091108.jpg', 'ICN3800330000012410880', 0.000, 0.000, 0, 2, '2023-04-12', 0, 1),
(2590, 11, 11, 0, 0, 0, '20230420083909_IMG-20230420-WA0009.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-04-20', 0, 1),
(2591, 11, 11, 0, 0, 0, '20230420084215_IMG-20230420-WA0006.jpg', 'ICN2556984659137265664', 2.140, 0.000, 0, 0, '2023-04-20', 0, 1),
(2592, 11, 11, 0, 0, 0, '20230420084819_IMG-20230420-WA0007.jpg', 'ICN237138269832216576', 4.790, 0.000, 0, 0, '2023-04-20', 0, 1),
(2593, 11, 11, 0, 0, 0, '20230430063635_987.jpg', 'ICN6597401819167588352', 0.420, 0.910, 0, 0, '2023-04-30', 0, 1),
(2594, 11, 11, 0, 0, 0, '20230508051015_20230508_121652.jpg', 'ICN6597401819167588352', 0.410, 0.000, 0, 0, '2023-05-08', 0, 1),
(2595, 11, 11, 0, 0, 0, '20230525062455_IMG-20230525-WA0020.jpg', 'ICN7017588983815208960', 9.260, 22.210, 0, 0, '2023-05-25', 0, 1),
(2596, 11, 11, 0, 0, 0, '20230603121227_videocards.jpg', 'ICN2261506302335254528', 3.320, 5.830, 0, 0, '2023-06-03', 0, 1),
(2598, 11, 11, 0, 0, 0, '20230603103218_IMG-20230526-WA0007.jpg', 'ICN6597401819167588352', 0.420, 0.000, 0, 0, '2023-06-03', 0, 1),
(2599, 11, 11, 0, 0, 0, '20230603103433_IMG-20230526-WA0002.jpg', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-06-03', 0, 1),
(2600, 11, 11, 0, 0, 0, '20230603103628_IMG-20230526-WA0002.jpg', 'ICN6597401819167588352', 0.560, 0.000, 0, 0, '2023-06-03', 0, 1),
(2601, 1, 0, 0, 1, 0, '20230629041508_16880270684892565440252800945437.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-06-29', 0, 1),
(2602, 1, 0, 0, 1, 0, '20230629041508_16880270684892565440252800945437.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-06-29', 0, 1),
(2603, 1, 0, 0, 1, 0, '20230629041923_16880273363747763554686675365119.jpg', 'ICN2556984659137265664', 0.000, 0.000, 0, 0, '2023-06-29', 0, 1),
(2604, 1, 0, 0, 1, 0, '20230804040338_IMG-995bcbd6377a5ad5e4fe0bc3d879daa6-V.jpg', 'ICN2556984659137265664', 0.590, 0.000, 0, 0, '2023-08-04', 0, 1),
(2605, 11, 11, 0, 0, 0, '20230830045637_20230830_120557.jpg', 'ICN6597401819167588352', 0.740, 0.700, 117, 0, '2023-08-30', 0, 1),
(2606, 1, 0, 0, 1, 0, '', 'ICN237138269832216576', 0.000, 0.000, 0, 0, '2023-08-31', 0, 1),
(2607, 1, 0, 0, 1, 0, '20230831044419_20230831_105259.jpg', 'ICN2556984659137265664', 1.370, 0.000, 0, 0, '2023-08-31', 0, 1),
(2608, 11, 0, 0, 0, 10, '20230913020528_img1.jpg', 'ICN6597401819167588352', 0.450, 0.000, 0, 0, '2023-09-13', 0, 1),
(2609, 11, 0, 0, 0, 10, '20230913021232_img2.jpg', 'ICN6597401819167588352', 0.460, 0.000, 0, 0, '2023-09-13', 0, 1),
(2610, 11, 0, 0, 0, 10, '20230913021645_img2.jpg', 'ICN6597401819167588352', 0.450, 0.000, 0, 0, '2023-09-13', 0, 1),
(2611, 11, 11, 0, 0, 0, '20231002050050_16962372389013501509830998296971.jpg', 'ICN5348152100851286016', 5.700, 0.000, 0, 0, '2023-10-02', 0, 1),
(2612, 11, 11, 0, 0, 0, '', 'ICN6597401819167588352', 0.000, 0.000, 0, 0, '2023-10-05', 0, 1),
(2613, 11, 11, 0, 0, 0, '20231008043644_Screenshot_20231008_113551_WhatsAppBusiness.jpg', 'ICN6597401819167588352', 0.500, 0.000, 0, 0, '2023-10-08', 0, 1),
(2614, 11, 11, 0, 0, 0, '20231009062132_IMG-20231009-WA0002.jpg', 'ICN6597401819167588352', 0.530, 0.000, 0, 0, '2023-10-09', 0, 1),
(2615, 11, 11, 0, 0, 0, '20231009062500_IMG-20231009-WA0001.jpg', 'ICN6597401819167588352', 0.580, 0.000, 0, 0, '2023-10-09', 0, 1),
(2616, 11, 11, 0, 0, 0, '20231009062738_IMG-20231009-WA0003.jpg', 'ICN6597401819167588352', 0.560, 0.000, 0, 0, '2023-10-09', 0, 1),
(2617, 11, 11, 0, 0, 0, '20231009063023_IMG-20231009-WA0006.jpg', 'ICN6597401819167588352', 0.560, 0.000, 0, 0, '2023-10-09', 0, 1),
(2618, 16, 16, 0, 0, 0, '', 'ICN6909537777130405888', 0.000, 0.000, 0, 0, '2024-04-08', 0, 1),
(2619, 16, 16, 0, 0, 0, '', 'ICN6909537777130405888', 0.000, 0.000, 0, 0, '2024-04-08', 0, 1),
(2620, 16, 16, 0, 0, 0, '', 'ICN6909537777130405888', 0.000, 0.000, 0, 0, '2024-04-08', 0, 1),
(2621, 16, 16, 0, 0, 0, '', 'ICN6909537777130405888', 0.000, 0.000, 0, 0, '2024-04-08', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpasimgdetail`
--

CREATE TABLE `viewpasimgdetail` (
  `id` int(11) NOT NULL,
  `imageid` int(11) NOT NULL,
  `productid` int(11) NOT NULL,
  `dataset` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `score` float(13,3) NOT NULL,
  `percent` float(13,3) NOT NULL,
  `finalpercent` float(13,2) NOT NULL,
  `offerprice` float(13,3) NOT NULL,
  `total` float(13,3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpasimgdetail`
--

INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(39, 13, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.337, 0.313, 31.30, 2.980, 0.933),
(40, 13, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.010, 0.009, 0.90, 1.170, 0.011),
(41, 13, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.726, 0.675, 67.50, 2.470, 1.667),
(42, 13, 85, 'ICN4797712617434078908', 'Defected', 0.002, 0.002, 0.20, 0.000, 0.000),
(371, 127, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.023, 0.027, 2.70, 5.250, 0.142),
(372, 127, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.111, 0.132, 13.20, 1.500, 0.198),
(373, 127, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.702, 0.836, 83.60, 2.200, 1.839),
(374, 127, 6, 'ICN4797712617434078908', 'Defected', 0.004, 0.005, 0.50, 0.000, 0.000),
(375, 128, 2, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.394, 0.539, 53.90, 10.000, 5.390),
(376, 128, 3, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.039, 0.053, 5.30, 4.000, 0.212),
(377, 128, 4, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.058, 0.079, 7.90, 5.000, 0.395),
(378, 128, 5, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.238, 0.326, 32.60, 3.000, 0.978),
(379, 128, 5, 'ICN5124169819646411186', 'Defected', 0.002, 0.003, 0.30, 0.000, 0.000),
(380, 129, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.214, 0.215, 21.50, 20.000, 4.300),
(381, 129, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.158, 0.159, 15.90, 2.000, 0.318),
(382, 129, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.059, 0.059, 5.90, 10.000, 0.590),
(383, 129, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.563, 0.566, 56.60, 40.000, 22.640),
(384, 129, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(385, 130, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.051, 0.048, 4.80, 20.000, 0.960),
(386, 130, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.436, 0.414, 41.40, 2.000, 0.828),
(387, 130, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.025, 0.024, 2.40, 10.000, 0.240),
(388, 130, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.541, 0.514, 51.40, 40.000, 20.560),
(389, 130, 39, 'ICN1352050014989540777', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(390, 131, 2, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.657, 0.480, 48.00, 10.000, 4.800),
(391, 131, 3, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.295, 0.216, 21.60, 4.000, 0.864),
(392, 131, 4, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.098, 0.072, 7.20, 5.000, 0.360),
(393, 131, 5, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.303, 0.221, 22.10, 3.000, 0.663),
(394, 131, 5, 'ICN5124169819646411186', 'Defected', 0.015, 0.011, 1.10, 0.000, 0.000),
(395, 133, 26, 'ICN5262563530192074018', 'Empty', 0.049, 0.024, 2.40, -0.200, -0.005),
(396, 133, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.457, 0.225, 22.50, 0.500, 0.113),
(397, 133, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.594, 0.292, 29.20, 0.300, 0.088),
(398, 133, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.364, 0.179, 17.90, 0.400, 0.072),
(399, 133, 24, 'ICN5262563530192074018', 'Defected', 0.570, 0.280, 28.00, 0.000, 0.000),
(400, 135, 2, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.593, 0.566, 56.60, 10.000, 5.660),
(401, 135, 3, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.094, 0.090, 9.00, 4.000, 0.360),
(402, 135, 4, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.093, 0.089, 8.90, 5.000, 0.445),
(403, 135, 5, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.246, 0.235, 23.50, 3.000, 0.705),
(404, 135, 5, 'ICN5124169819646411186', 'Defected', 0.021, 0.020, 2.00, 0.000, 0.000),
(405, 137, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.214, 0.215, 21.50, 20.000, 4.300),
(406, 137, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.158, 0.159, 15.90, 2.000, 0.318),
(407, 137, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.059, 0.059, 5.90, 10.000, 0.590),
(408, 137, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.563, 0.566, 56.60, 40.000, 22.640),
(409, 137, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(410, 139, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.214, 0.215, 21.50, 20.000, 4.300),
(411, 139, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.158, 0.159, 15.90, 2.000, 0.318),
(412, 139, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.059, 0.059, 5.90, 10.000, 0.590),
(413, 139, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.563, 0.566, 56.60, 40.000, 22.640),
(414, 139, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(415, 140, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 20.000, 4.760),
(416, 140, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.526, 52.60, 2.000, 1.052),
(417, 140, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 10.000, 0.470),
(418, 140, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.188, 18.80, 40.000, 7.520),
(419, 140, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(420, 141, 18, 'ICN9055675874563173188', 'High_Grade', 0.747, 0.641, 64.10, 22.000, 14.102),
(421, 141, 16, 'ICN9055675874563173188', 'Low_Grade', 0.415, 0.356, 35.60, 7.000, 2.492),
(422, 141, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.003, 0.003, 0.30, 13.000, 0.039),
(423, 141, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(424, 142, 18, 'ICN9055675874563173188', 'High_Grade', 0.747, 0.641, 64.10, 22.000, 14.102),
(425, 142, 16, 'ICN9055675874563173188', 'Low_Grade', 0.415, 0.356, 35.60, 7.000, 2.492),
(426, 142, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.003, 0.003, 0.30, 13.000, 0.039),
(427, 142, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(428, 143, 14, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.630, 0.539, 53.90, 7.000, 3.773),
(429, 143, 15, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.126, 0.108, 10.80, 3.000, 0.324),
(430, 143, 13, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.413, 0.353, 35.30, 5.000, 1.765),
(431, 143, 13, 'ICN6193062173998597390', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(432, 144, 18, 'ICN9055675874563173188', 'High_Grade', 0.640, 0.878, 87.80, 22.000, 19.316),
(433, 144, 16, 'ICN9055675874563173188', 'Low_Grade', 0.048, 0.066, 6.60, 7.000, 0.462),
(434, 144, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.041, 0.056, 5.60, 13.000, 0.728),
(435, 144, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(456, 150, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.193, 0.175, 17.50, 20.000, 3.500),
(457, 150, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.758, 0.685, 68.50, 2.000, 1.370),
(458, 150, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.061, 0.055, 5.50, 10.000, 0.550),
(459, 150, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.093, 0.084, 8.40, 40.000, 3.360),
(460, 150, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(464, 154, 10, 'ICN1374427601567308279', 'High_Grade', 0.267, 0.224, 22.40, 2.000, 0.448),
(465, 154, 11, 'ICN1374427601567308279', 'Low_Grade', 0.177, 0.148, 14.80, 0.350, 0.052),
(466, 154, 12, 'ICN1374427601567308279', 'Mid_Grade', 0.749, 0.628, 62.80, 1.550, 0.973),
(467, 154, 12, 'ICN1374427601567308279', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(472, 156, 9, 'ICN9118051636822650169', 'High_Grade', 0.919, 0.799, 79.90, 6.000, 4.794),
(473, 156, 8, 'ICN9118051636822650169', 'Low_Grade', 0.219, 0.190, 19.00, 4.000, 0.760),
(474, 156, 8, 'ICN9118051636822650169', 'Defected', 0.012, 0.010, 1.00, 0.000, 0.000),
(475, 157, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 20.000, 4.760),
(476, 157, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.526, 52.60, 2.000, 1.052),
(477, 157, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 10.000, 0.470),
(478, 157, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.188, 18.80, 40.000, 7.520),
(479, 157, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(480, 158, 18, 'ICN9055675874563173188', 'High_Grade', 0.747, 0.641, 64.10, 22.000, 14.102),
(481, 158, 16, 'ICN9055675874563173188', 'Low_Grade', 0.415, 0.356, 35.60, 7.000, 2.492),
(482, 158, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.003, 0.003, 0.30, 13.000, 0.039),
(483, 158, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(494, 161, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.193, 0.175, 17.50, 20.000, 3.500),
(495, 161, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.758, 0.685, 68.50, 2.000, 1.370),
(496, 161, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.061, 0.055, 5.50, 10.000, 0.550),
(497, 161, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.093, 0.084, 8.40, 40.000, 3.360),
(498, 161, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(499, 162, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.423, 0.804, 80.40, 20.000, 16.080),
(500, 162, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.034, 0.065, 6.50, 2.000, 0.130),
(501, 162, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.058, 0.110, 11.00, 10.000, 1.100),
(502, 162, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.011, 0.021, 2.10, 40.000, 0.840),
(503, 162, 39, 'ICN1352050014989540777', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(504, 163, 18, 'ICN9055675874563173188', 'High_Grade', 0.719, 0.542, 54.20, 22.000, 11.924),
(505, 163, 16, 'ICN9055675874563173188', 'Low_Grade', 0.587, 0.442, 44.20, 7.000, 3.094),
(506, 163, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.020, 0.015, 1.50, 13.000, 0.195),
(507, 163, 17, 'ICN9055675874563173188', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(508, 164, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.184, 0.169, 16.90, 20.000, 3.380),
(509, 164, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.758, 0.695, 69.50, 2.000, 1.390),
(510, 164, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.064, 0.059, 5.90, 10.000, 0.590),
(511, 164, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.084, 0.077, 7.70, 40.000, 3.080),
(512, 164, 39, 'ICN1352050014989540777', 'Defected', 0.001, 0.001, 0.10, 0.000, 0.000),
(513, 165, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.009, 0.009, 0.90, 3.000, 0.027),
(514, 165, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.220, 0.232, 23.20, 1.190, 0.276),
(515, 165, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.717, 0.755, 75.50, 2.490, 1.880),
(516, 165, 85, 'ICN4797712617434078908', 'Defected', 0.004, 0.004, 0.40, 0.000, 0.000),
(517, 166, 95, 'ICN1374427601567308279', 'High_Grade', 0.864, 0.533, 53.30, 2.160, 1.151),
(518, 166, 96, 'ICN1374427601567308279', 'Low_Grade', 0.396, 0.244, 24.40, 0.520, 0.127),
(519, 166, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.361, 0.223, 22.30, 0.850, 0.190),
(520, 166, 97, 'ICN1374427601567308279', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(521, 167, 26, 'ICN5262563530192074018', 'Empty', 0.088, 0.034, 3.40, -0.200, -0.007),
(522, 167, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.658, 0.257, 25.70, 0.500, 0.129),
(523, 167, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.711, 0.278, 27.80, 0.300, 0.083),
(524, 167, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.343, 0.134, 13.40, 0.400, 0.054),
(525, 167, 24, 'ICN5262563530192074018', 'Defected', 0.759, 0.297, 29.70, 0.000, 0.000),
(526, 168, 18, 'ICN9055675874563173188', 'High_Grade', 0.924, 0.875, 87.50, 22.000, 19.250),
(527, 168, 16, 'ICN9055675874563173188', 'Low_Grade', 0.051, 0.048, 4.80, 7.000, 0.336),
(528, 168, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.081, 0.077, 7.70, 13.000, 1.001),
(529, 168, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(549, 176, 18, 'ICN9055675874563173188', 'High_Grade', 0.747, 0.641, 64.10, 22.000, 14.102),
(550, 176, 16, 'ICN9055675874563173188', 'Low_Grade', 0.415, 0.356, 35.60, 7.000, 2.492),
(551, 176, 17, 'ICN9055675874563173188', 'Mid_Grade', 0.003, 0.003, 0.30, 13.000, 0.039),
(552, 176, 17, 'ICN9055675874563173188', 'Defected', 0.000, 0.000, 0.00, 0.000, 0.000),
(553, 177, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.064, 0.082, 8.20, 5.250, 0.431),
(554, 177, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.111, 0.143, 14.30, 1.500, 0.215),
(555, 177, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.600, 0.771, 77.10, 2.200, 1.696),
(556, 177, 6, 'ICN4797712617434078908', 'Defected', 0.003, 0.004, 0.40, 0.000, 0.000),
(557, 178, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.240, 0.287, 28.70, 5.250, 1.507),
(558, 178, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.039, 0.047, 4.70, 1.500, 0.071),
(559, 178, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.558, 0.667, 66.70, 2.200, 1.467),
(560, 179, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.051, 0.048, 4.80, 20.000, 0.960),
(561, 179, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.436, 0.414, 41.40, 1.600, 0.662),
(562, 179, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.025, 0.024, 2.40, 10.000, 0.240),
(563, 179, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.541, 0.514, 51.40, 40.000, 20.560),
(564, 180, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.214, 0.215, 21.50, 20.000, 4.300),
(565, 180, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.158, 0.159, 15.90, 1.600, 0.254),
(566, 180, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.059, 0.059, 5.90, 10.000, 0.590),
(567, 180, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.563, 0.566, 56.60, 40.000, 22.640),
(568, 181, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.055, 0.063, 6.30, 5.250, 0.331),
(569, 181, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.105, 0.121, 12.10, 1.500, 0.182),
(570, 181, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.708, 0.816, 81.60, 2.200, 1.795),
(571, 188, 26, 'ICN5262563530192074018', 'Empty', 0.068, 0.040, 4.00, 0.000, 0.000),
(572, 188, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.482, 0.286, 28.60, 0.500, 0.143),
(573, 188, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.550, 0.326, 32.60, 0.300, 0.098),
(574, 188, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.587, 0.348, 34.80, 0.400, 0.139),
(578, 190, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 5.250, 0.404),
(579, 190, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.500, 0.279),
(580, 190, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.200, 1.621),
(581, 192, 26, 'ICN5262563530192074018', 'Empty', 0.068, 0.040, 4.00, 0.000, 0.000),
(582, 192, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.482, 0.286, 28.60, 0.450, 0.129),
(583, 192, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.550, 0.326, 32.60, 0.260, 0.085),
(584, 192, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.587, 0.348, 34.80, 0.320, 0.111),
(585, 193, 1, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 5.250, 0.404),
(586, 193, 7, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.500, 0.279),
(587, 193, 6, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.200, 1.621),
(588, 195, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 10.000, 0.770),
(589, 195, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.000, 0.186),
(590, 195, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 5.000, 3.685),
(627, 205, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 3.000, 0.231),
(628, 205, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.190, 0.221),
(629, 205, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.490, 1.835),
(630, 207, 26, 'ICN5262563530192074018', 'Empty', 0.130, 0.113, 11.30, -0.020, -0.002),
(631, 207, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.252, 0.220, 22.00, 0.380, 0.084),
(632, 207, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.472, 0.412, 41.20, 0.060, 0.025),
(633, 207, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.293, 0.255, 25.50, 0.220, 0.056),
(634, 209, 26, 'ICN5262563530192074018', 'Empty', 0.054, 0.041, 4.10, -0.020, -0.001),
(635, 209, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.711, 0.537, 53.70, 0.380, 0.204),
(636, 209, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.207, 0.156, 15.60, 0.060, 0.009),
(637, 209, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.351, 0.265, 26.50, 0.220, 0.058),
(638, 212, 26, 'ICN5262563530192074018', 'Empty', 0.119, 0.073, 7.30, -0.020, -0.001),
(639, 212, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.450, 0.276, 27.60, 0.380, 0.105),
(640, 212, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.600, 0.367, 36.70, 0.060, 0.022),
(641, 212, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.464, 0.284, 28.40, 0.220, 0.062),
(642, 213, 26, 'ICN5262563530192074018', 'Empty', 0.055, 0.029, 2.90, -0.020, -0.001),
(643, 213, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.597, 0.316, 31.60, 0.380, 0.120),
(644, 213, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.833, 0.441, 44.10, 0.060, 0.026),
(645, 213, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.405, 0.214, 21.40, 0.220, 0.047),
(646, 215, 26, 'ICN5262563530192074018', 'Empty', 0.093, 0.064, 6.40, -0.020, -0.001),
(647, 215, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.737, 0.507, 50.70, 0.380, 0.193),
(648, 215, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.561, 0.386, 38.60, 0.060, 0.023),
(649, 215, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.063, 0.043, 4.30, 0.220, 0.009),
(650, 216, 26, 'ICN5262563530192074018', 'Empty', 0.054, 0.041, 4.10, -0.020, -0.001),
(651, 216, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.711, 0.537, 53.70, 0.380, 0.204),
(652, 216, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.207, 0.156, 15.60, 0.060, 0.009),
(653, 216, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.351, 0.265, 26.50, 0.220, 0.058),
(654, 217, 44, 'ICN9055675874563173188', 'High_Grade', 0.881, 0.852, 85.20, 20.000, 17.040),
(655, 217, 42, 'ICN9055675874563173188', 'Low_Grade', 0.071, 0.069, 6.90, 1.000, 0.069),
(656, 217, 43, 'ICN9055675874563173188', 'Mid_Grade', 0.082, 0.079, 7.90, 10.000, 0.790),
(657, 218, 92, 'ICN9055675874563173188', 'High_Grade', 0.671, 0.482, 48.20, 36.880, 17.776),
(658, 218, 90, 'ICN9055675874563173188', 'Low_Grade', 0.711, 0.510, 51.00, 12.700, 6.477),
(659, 218, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.011, 0.008, 0.80, 20.560, 0.164),
(660, 219, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.202, 0.235, 23.50, 10.000, 2.350),
(661, 219, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.056, 0.065, 6.50, 1.000, 0.065),
(662, 219, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.602, 0.700, 70.00, 5.000, 3.500),
(663, 221, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.389, 0.480, 48.00, 3.000, 1.440),
(664, 221, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.030, 0.037, 3.70, 1.190, 0.044),
(665, 221, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.392, 0.483, 48.30, 2.490, 1.203),
(666, 222, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 4.680, 0.360),
(667, 222, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.190, 0.221),
(668, 222, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.490, 1.835),
(677, 227, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.051, 0.048, 4.80, 20.000, 0.960),
(678, 227, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.436, 0.414, 41.40, 3.000, 1.242),
(679, 227, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.025, 0.024, 2.40, 10.000, 0.240),
(680, 227, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.541, 0.514, 51.40, 80.000, 41.120),
(681, 229, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 21.300, 5.069),
(682, 229, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.527, 52.70, 3.350, 1.765),
(683, 229, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 12.360, 0.581),
(684, 229, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.189, 18.90, 51.690, 9.769),
(685, 230, 92, 'ICN9055675874563173188', 'High_Grade', 0.671, 0.482, 48.20, 36.880, 17.776),
(686, 230, 90, 'ICN9055675874563173188', 'Low_Grade', 0.711, 0.510, 51.00, 12.700, 6.477),
(687, 230, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.011, 0.008, 0.80, 20.560, 0.164),
(688, 231, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.291, 0.282, 28.20, 10.000, 2.820),
(689, 231, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.009, 0.009, 0.90, 1.000, 0.009),
(690, 231, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.732, 0.709, 70.90, 5.000, 3.545),
(691, 232, 92, 'ICN9055675874563173188', 'High_Grade', 0.924, 0.875, 87.50, 36.880, 32.270),
(692, 232, 90, 'ICN9055675874563173188', 'Low_Grade', 0.051, 0.048, 4.80, 12.700, 0.610),
(693, 232, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.081, 0.077, 7.70, 20.560, 1.583),
(694, 233, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 4.680, 0.360),
(695, 233, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.190, 0.221),
(696, 233, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.490, 1.835),
(697, 234, 26, 'ICN5262563530192074018', 'Empty', 0.074, 0.075, 7.50, -0.020, -0.002),
(698, 234, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.308, 0.312, 31.20, 0.380, 0.119),
(699, 234, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.440, 0.445, 44.50, 0.060, 0.027),
(700, 234, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.166, 0.168, 16.80, 0.220, 0.037),
(701, 235, 26, 'ICN5262563530192074018', 'Empty', 0.301, 0.274, 27.40, -0.020, -0.005),
(702, 235, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.354, 0.322, 32.20, 0.380, 0.122),
(703, 235, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.405, 0.369, 36.90, 0.060, 0.022),
(704, 235, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.038, 0.035, 3.50, 0.220, 0.008),
(705, 236, 26, 'ICN5262563530192074018', 'Empty', 0.089, 0.092, 9.20, 0.000, 0.000),
(706, 236, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.286, 0.294, 29.40, 0.450, 0.132),
(707, 236, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.445, 0.458, 45.80, 0.120, 0.055),
(708, 236, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.152, 0.156, 15.60, 0.260, 0.041),
(709, 237, 26, 'ICN5262563530192074018', 'Empty', 0.074, 0.075, 7.50, 0.000, 0.000),
(710, 237, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.308, 0.312, 31.20, 0.450, 0.140),
(711, 237, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.440, 0.445, 44.50, 0.120, 0.053),
(712, 237, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.166, 0.168, 16.80, 0.260, 0.044),
(713, 238, 26, 'ICN5262563530192074018', 'Empty', 0.301, 0.274, 27.40, 0.000, 0.000),
(714, 238, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.354, 0.322, 32.20, 0.450, 0.145),
(715, 238, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.405, 0.369, 36.90, 0.120, 0.044),
(716, 238, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.038, 0.035, 3.50, 0.260, 0.009),
(717, 239, 26, 'ICN5262563530192074018', 'Empty', 0.261, 0.215, 21.50, 0.000, 0.000),
(718, 239, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.245, 0.202, 20.20, 0.450, 0.091),
(719, 239, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.656, 0.541, 54.10, 0.120, 0.065),
(720, 239, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.050, 0.041, 4.10, 0.260, 0.011),
(721, 240, 26, 'ICN5262563530192074018', 'Empty', 0.089, 0.092, 9.20, 0.000, 0.000),
(722, 240, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.286, 0.294, 29.40, 0.450, 0.132),
(723, 240, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.445, 0.458, 45.80, 0.120, 0.055),
(724, 240, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.152, 0.156, 15.60, 0.260, 0.041),
(725, 243, 26, 'ICN5262563530192074018', 'Empty', 0.110, 0.079, 7.90, 0.000, 0.000),
(726, 243, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.447, 0.320, 32.00, 0.450, 0.144),
(727, 243, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.511, 0.366, 36.60, 0.120, 0.044),
(728, 243, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.328, 0.235, 23.50, 0.260, 0.061),
(729, 244, 26, 'ICN5262563530192074018', 'Empty', 0.036, 0.026, 2.60, 0.000, 0.000),
(730, 244, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.523, 0.376, 37.60, 0.450, 0.169),
(731, 244, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.420, 0.302, 30.20, 0.120, 0.036),
(732, 244, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.411, 0.296, 29.60, 0.260, 0.077),
(737, 246, 26, 'ICN5262563530192074018', 'Empty', 0.110, 0.079, 7.90, 0.000, 0.000),
(738, 246, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.447, 0.320, 32.00, 0.450, 0.144),
(739, 246, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.511, 0.366, 36.60, 0.120, 0.044),
(740, 246, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.328, 0.235, 23.50, 0.260, 0.061),
(741, 248, 61, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.072, 0.074, 7.40, 3.500, 0.259),
(742, 248, 63, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.006, 0.006, 0.60, 2.000, 0.012),
(743, 248, 62, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.901, 0.920, 92.00, 1.600, 1.472),
(744, 249, 26, 'ICN5262563530192074018', 'Empty', 0.072, 0.039, 3.90, 0.000, 0.000),
(745, 249, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.705, 0.381, 38.10, 0.450, 0.171),
(746, 249, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.764, 0.413, 41.30, 0.120, 0.050),
(747, 249, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.311, 0.168, 16.80, 0.260, 0.044),
(748, 250, 44, 'ICN9055675874563173188', 'High_Grade', 0.671, 0.482, 48.20, 20.000, 9.640),
(749, 250, 42, 'ICN9055675874563173188', 'Low_Grade', 0.711, 0.510, 51.00, 1.000, 0.510),
(750, 250, 43, 'ICN9055675874563173188', 'Mid_Grade', 0.011, 0.008, 0.80, 10.000, 0.080),
(751, 251, 19, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 10.000, 6.480),
(752, 251, 20, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 5.000, 0.240),
(753, 251, 21, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 7.500, 1.178),
(754, 251, 22, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 3.750, 0.551),
(755, 252, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 21.300, 5.069),
(756, 252, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.527, 52.70, 3.350, 1.765),
(757, 252, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 12.360, 0.581),
(758, 252, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.189, 18.90, 51.690, 9.769),
(759, 253, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.337, 0.314, 31.40, 4.680, 1.470),
(760, 253, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.010, 0.009, 0.90, 1.190, 0.011),
(761, 253, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.726, 0.677, 67.70, 2.490, 1.686),
(766, 258, 26, 'ICN5262563530192074018', 'Empty', 0.122, 0.056, 5.60, 0.000, 0.000),
(767, 258, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.805, 0.371, 37.10, 0.500, 0.186),
(768, 258, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.743, 0.342, 34.20, 0.120, 0.041),
(769, 258, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.501, 0.231, 23.10, 0.320, 0.074),
(770, 259, 105, 'ICN5262563530192074018', 'Empty', 0.042, 0.018, 1.80, -0.130, -0.002),
(771, 259, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.852, 0.366, 36.60, 0.540, 0.198),
(772, 259, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.804, 0.345, 34.50, 0.260, 0.090),
(773, 259, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.633, 0.272, 27.20, 0.420, 0.114),
(774, 260, 105, 'ICN5262563530192074018', 'Empty', 0.122, 0.056, 5.60, -0.130, -0.007),
(775, 260, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.805, 0.371, 37.10, 0.540, 0.200),
(776, 260, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.743, 0.342, 34.20, 0.260, 0.089),
(777, 260, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.501, 0.231, 23.10, 0.420, 0.097),
(778, 264, 92, 'ICN9055675874563173188', 'High_Grade', 0.671, 0.482, 48.20, 36.880, 17.776),
(779, 264, 90, 'ICN9055675874563173188', 'Low_Grade', 0.711, 0.510, 51.00, 12.700, 6.477),
(780, 264, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.011, 0.008, 0.80, 20.560, 0.164),
(796, 272, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(797, 272, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(798, 272, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(799, 272, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(800, 272, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(801, 273, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.088, 0.074, 7.40, 11.640, 0.861),
(802, 273, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.370, 0.311, 31.10, 9.730, 3.026),
(803, 273, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.054, 0.045, 4.50, 7.460, 0.336),
(804, 273, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.131, 0.110, 11.00, 2.540, 0.279),
(805, 273, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.548, 0.460, 46.00, 1.640, 0.754),
(806, 274, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.209, 0.227, 22.70, 11.640, 2.642),
(807, 274, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.208, 0.226, 22.60, 9.730, 2.199),
(808, 274, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.048, 0.052, 5.20, 7.460, 0.388),
(809, 274, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.133, 0.145, 14.50, 2.540, 0.368),
(810, 274, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.321, 0.349, 34.90, 1.640, 0.572),
(811, 275, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.088, 0.074, 7.40, 11.640, 0.861),
(812, 275, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.370, 0.311, 31.10, 9.730, 3.026),
(813, 275, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.054, 0.045, 4.50, 7.460, 0.336),
(814, 275, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.131, 0.110, 11.00, 2.540, 0.279),
(815, 275, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.548, 0.460, 46.00, 1.640, 0.754),
(816, 276, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(817, 276, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(818, 276, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(819, 276, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(820, 276, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(821, 277, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(822, 277, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(823, 277, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(824, 277, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(825, 277, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(826, 278, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(827, 278, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(828, 278, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(829, 278, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(830, 278, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(831, 279, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.209, 0.227, 22.70, 11.640, 2.642),
(832, 279, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.208, 0.226, 22.60, 9.730, 2.199),
(833, 279, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.048, 0.052, 5.20, 7.460, 0.388),
(834, 279, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.133, 0.145, 14.50, 2.540, 0.368),
(835, 279, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.321, 0.349, 34.90, 1.640, 0.572),
(836, 280, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(837, 280, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(838, 280, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(839, 280, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(840, 280, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(841, 281, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(842, 281, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(843, 281, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(844, 281, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(845, 281, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(846, 282, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(847, 282, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(848, 282, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(849, 282, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(850, 282, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(851, 283, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.209, 0.227, 22.70, 11.640, 2.642),
(852, 283, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.208, 0.226, 22.60, 9.730, 2.199),
(853, 283, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.048, 0.052, 5.20, 7.460, 0.388),
(854, 283, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.133, 0.145, 14.50, 2.540, 0.368),
(855, 283, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.321, 0.349, 34.90, 1.640, 0.572),
(856, 284, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.013, 0.015, 1.50, 6.000, 0.090),
(857, 284, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.340, 0.380, 38.00, 4.500, 1.710),
(858, 284, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.231, 0.258, 25.80, 3.000, 0.774),
(859, 284, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.085, 0.095, 9.50, 1.200, 0.114),
(860, 284, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.225, 0.252, 25.20, 0.150, 0.038),
(861, 285, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 11.640, 1.350),
(862, 285, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 9.730, 1.615),
(863, 285, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 7.460, 0.097),
(864, 285, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 2.540, 0.488),
(865, 285, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 1.640, 0.843),
(869, 288, 86, 'ICN1374427601567308279', 'High_Grade', 0.271, 0.270, 27.00, 1.000, 0.270),
(870, 288, 87, 'ICN1374427601567308279', 'Low_Grade', 0.168, 0.167, 16.70, 0.250, 0.042),
(871, 288, 88, 'ICN1374427601567308279', 'Mid_Grade', 0.565, 0.563, 56.30, 0.690, 0.388),
(878, 291, 86, 'ICN1374427601567308279', 'High_Grade', 0.361, 0.265, 26.50, 1.000, 0.265),
(879, 291, 87, 'ICN1374427601567308279', 'Low_Grade', 0.151, 0.111, 11.10, 0.250, 0.028),
(880, 291, 88, 'ICN1374427601567308279', 'Mid_Grade', 0.848, 0.624, 62.40, 0.690, 0.431),
(884, 295, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.389, 0.480, 48.00, 4.680, 2.246),
(885, 295, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.030, 0.037, 3.70, 1.190, 0.044),
(886, 295, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.392, 0.483, 48.30, 2.490, 1.203),
(887, 296, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 4.680, 0.360),
(888, 296, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.190, 0.221),
(889, 296, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.490, 1.835),
(890, 298, 101, 'ICN9055675874563173188', 'High_Grade', 0.881, 0.852, 85.20, 16.000, 13.632),
(891, 298, 99, 'ICN9055675874563173188', 'Low_Grade', 0.071, 0.069, 6.90, 5.000, 0.345),
(892, 298, 100, 'ICN9055675874563173188', 'Mid_Grade', 0.082, 0.079, 7.90, 6.000, 0.474),
(893, 299, 101, 'ICN9055675874563173188', 'High_Grade', 0.719, 0.542, 54.20, 16.000, 8.672),
(894, 299, 99, 'ICN9055675874563173188', 'Low_Grade', 0.587, 0.443, 44.30, 5.000, 2.215),
(895, 299, 100, 'ICN9055675874563173188', 'Mid_Grade', 0.020, 0.015, 1.50, 6.000, 0.090),
(896, 300, 101, 'ICN9055675874563173188', 'High_Grade', 0.747, 0.641, 64.10, 16.000, 10.256),
(897, 300, 99, 'ICN9055675874563173188', 'Low_Grade', 0.415, 0.356, 35.60, 5.000, 1.780),
(898, 300, 100, 'ICN9055675874563173188', 'Mid_Grade', 0.003, 0.003, 0.30, 6.000, 0.018),
(899, 301, 92, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.009, 0.010, 1.00, 3.000, 0.030),
(900, 301, 94, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.220, 0.233, 23.30, 1.000, 0.233),
(901, 301, 93, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.717, 0.758, 75.80, 2.250, 1.706),
(902, 302, 92, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.081, 0.149, 14.90, 3.000, 0.447),
(903, 302, 94, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.126, 0.232, 23.20, 1.000, 0.232),
(904, 302, 93, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.336, 0.619, 61.90, 2.250, 1.393),
(905, 303, 89, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.630, 0.539, 53.90, 2.000, 1.078),
(906, 303, 91, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.126, 0.108, 10.80, 1.000, 0.108),
(907, 303, 90, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.413, 0.353, 35.30, 1.500, 0.530),
(908, 304, 76, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 4.000, 2.592),
(909, 304, 77, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 2.000, 0.096),
(910, 304, 78, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 3.000, 0.471),
(911, 304, 79, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 1.000, 0.147),
(912, 305, 102, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.112, 0.172, 17.20, 3.250, 0.559),
(913, 305, 103, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.326, 0.501, 50.10, 3.000, 1.503),
(914, 305, 104, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.050, 0.077, 7.70, 2.250, 0.173),
(915, 305, 105, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.043, 0.066, 6.60, 1.000, 0.066),
(916, 305, 106, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.120, 0.184, 18.40, 0.250, 0.046),
(917, 306, 92, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.033, 0.052, 5.20, 3.000, 0.156),
(918, 306, 94, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.259, 0.412, 41.20, 1.000, 0.412),
(919, 306, 93, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.337, 0.536, 53.60, 2.250, 1.206),
(920, 307, 95, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 5.000, 1.190),
(921, 307, 98, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.527, 52.70, 1.000, 0.527),
(922, 307, 97, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 1.250, 0.059),
(923, 307, 96, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.189, 18.90, 20.000, 3.780),
(924, 308, 102, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.092, 0.116, 11.60, 3.250, 0.377),
(925, 308, 103, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.132, 0.166, 16.60, 3.000, 0.498),
(926, 308, 104, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.010, 0.013, 1.30, 2.250, 0.029),
(927, 308, 105, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.153, 0.192, 19.20, 1.000, 0.192),
(928, 308, 106, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.409, 0.514, 51.40, 0.250, 0.129),
(929, 312, 116, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.107, 0.156, 15.60, 4.160, 0.649),
(930, 312, 117, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.580, 0.844, 84.40, 2.870, 2.422),
(931, 315, 107, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.107, 0.156, 15.60, 3.000, 0.468),
(932, 315, 108, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.580, 0.844, 84.40, 1.250, 1.055),
(933, 316, 109, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.107, 0.156, 15.60, 3.000, 0.468),
(934, 316, 110, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.580, 0.844, 84.40, 1.500, 1.266),
(938, 318, 101, 'ICN9055675874563173188', 'High_Grade', 0.881, 0.852, 85.20, 16.000, 13.632),
(939, 318, 99, 'ICN9055675874563173188', 'Low_Grade', 0.071, 0.069, 6.90, 5.000, 0.345),
(940, 318, 100, 'ICN9055675874563173188', 'Mid_Grade', 0.082, 0.079, 7.90, 6.000, 0.474),
(941, 319, 95, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 5.000, 1.190),
(942, 319, 98, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.527, 52.70, 1.000, 0.527),
(943, 319, 97, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 1.250, 0.059),
(944, 319, 96, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.189, 18.90, 20.000, 3.780),
(945, 320, 101, 'ICN9055675874563173188', 'High_Grade', 0.850, 0.794, 79.40, 16.000, 12.704),
(946, 320, 99, 'ICN9055675874563173188', 'Low_Grade', 0.156, 0.146, 14.60, 5.000, 0.730),
(947, 320, 100, 'ICN9055675874563173188', 'Mid_Grade', 0.064, 0.060, 6.00, 6.000, 0.360),
(948, 321, 92, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.452, 0.719, 71.90, 3.000, 2.157),
(949, 321, 94, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.047, 0.075, 7.50, 1.000, 0.075),
(950, 321, 93, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.130, 0.207, 20.70, 2.250, 0.466),
(951, 322, 32, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.630, 0.539, 53.90, 10.000, 5.390),
(952, 322, 34, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.126, 0.108, 10.80, 1.000, 0.108),
(953, 322, 33, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.413, 0.353, 35.30, 5.000, 1.765),
(954, 323, 26, 'ICN5262563530192074018', 'Empty', 0.042, 0.018, 1.80, 0.000, 0.000),
(955, 323, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.852, 0.366, 36.60, 0.500, 0.183),
(956, 323, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.804, 0.345, 34.50, 0.120, 0.041),
(957, 323, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.633, 0.272, 27.20, 0.320, 0.087),
(958, 324, 19, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.927, 0.681, 68.10, 22.000, 14.982),
(959, 324, 20, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.024, 0.018, 1.80, 12.000, 0.216),
(960, 324, 21, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.237, 0.174, 17.40, 13.750, 2.393),
(961, 324, 22, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.174, 0.128, 12.80, 6.000, 0.768),
(962, 325, 19, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 22.000, 14.256),
(963, 325, 20, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 12.000, 0.576),
(964, 325, 21, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 13.750, 2.159),
(965, 325, 22, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 6.000, 0.882),
(966, 326, 98, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 31.260, 20.256),
(967, 326, 99, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 17.320, 0.831),
(968, 326, 100, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 15.950, 2.504),
(969, 326, 101, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 8.690, 1.277),
(970, 328, 95, 'ICN1374427601567308279', 'High_Grade', 0.599, 0.499, 49.90, 2.160, 1.078),
(971, 328, 96, 'ICN1374427601567308279', 'Low_Grade', 0.242, 0.201, 20.10, 0.520, 0.105),
(972, 328, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.360, 0.300, 30.00, 0.850, 0.255),
(973, 330, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 4.680, 0.360),
(974, 330, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.190, 0.221),
(975, 330, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.490, 1.835),
(976, 331, 26, 'ICN5262563530192074018', 'Empty', 0.047, 0.025, 2.50, 0.000, 0.000),
(977, 331, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.589, 0.314, 31.40, 0.140, 0.044),
(978, 331, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.852, 0.455, 45.50, 0.080, 0.036),
(979, 331, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.386, 0.206, 20.60, 0.120, 0.025),
(980, 333, 105, 'ICN5262563530192074018', 'Empty', 0.060, 0.036, 3.60, 0.000, 0.000),
(981, 333, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.708, 0.424, 42.40, 0.540, 0.229),
(982, 333, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.572, 0.343, 34.30, 0.260, 0.089),
(983, 333, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.330, 0.198, 19.80, 0.420, 0.083),
(984, 334, 26, 'ICN5262563530192074018', 'Empty', 0.060, 0.036, 3.60, 0.000, 0.000),
(985, 334, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.708, 0.424, 42.40, 0.140, 0.059),
(986, 334, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.572, 0.343, 34.30, 0.080, 0.027),
(987, 334, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.330, 0.198, 19.80, 0.120, 0.024),
(988, 335, 105, 'ICN5262563530192074018', 'Empty', 0.060, 0.036, 3.60, 0.000, 0.000),
(989, 335, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.708, 0.424, 42.40, 0.540, 0.229),
(990, 335, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.572, 0.343, 34.30, 0.260, 0.089),
(991, 335, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.330, 0.198, 19.80, 0.420, 0.083),
(992, 336, 105, 'ICN5262563530192074018', 'Empty', 0.094, 0.064, 6.40, 0.000, 0.000),
(993, 336, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.694, 0.470, 47.00, 0.540, 0.254),
(994, 336, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.366, 0.248, 24.80, 0.260, 0.064),
(995, 336, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.324, 0.219, 21.90, 0.420, 0.092),
(996, 337, 105, 'ICN5262563530192074018', 'Empty', 0.107, 0.108, 10.80, 0.000, 0.000),
(997, 337, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.366, 0.370, 37.00, 0.540, 0.200),
(998, 337, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.418, 0.423, 42.30, 0.260, 0.110),
(999, 337, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.097, 0.098, 9.80, 0.420, 0.041),
(1000, 338, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.203, 0.231, 23.10, 6.200, 1.432),
(1001, 338, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.056, 0.064, 6.40, 3.000, 0.192),
(1002, 338, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.620, 0.705, 70.50, 3.500, 2.468),
(1003, 339, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.203, 0.231, 23.10, 6.970, 1.610),
(1004, 339, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.056, 0.064, 6.40, 1.190, 0.076),
(1005, 339, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.620, 0.705, 70.50, 2.770, 1.953),
(1006, 340, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.204, 0.207, 20.70, 6.970, 1.443),
(1007, 340, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.121, 0.123, 12.30, 1.190, 0.146),
(1008, 340, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.659, 0.670, 67.00, 2.770, 1.856),
(1009, 341, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.203, 0.231, 23.10, 6.100, 1.409),
(1010, 341, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.056, 0.064, 6.40, 1.100, 0.070),
(1011, 341, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.620, 0.705, 70.50, 2.700, 1.904),
(1012, 342, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.204, 0.207, 20.70, 6.100, 1.263),
(1013, 342, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.121, 0.123, 12.30, 1.100, 0.135),
(1014, 342, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.659, 0.670, 67.00, 2.700, 1.809),
(1015, 343, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.137, 0.146, 14.60, 6.100, 0.891),
(1016, 343, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.019, 0.020, 2.00, 1.100, 0.022),
(1017, 343, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.781, 0.834, 83.40, 2.700, 2.252),
(1018, 344, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.171, 0.244, 24.40, 7.250, 1.769),
(1019, 344, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.258, 0.368, 36.80, 5.400, 1.987),
(1020, 344, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.008, 0.011, 1.10, 4.200, 0.046),
(1021, 344, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.168, 0.239, 23.90, 2.100, 0.502),
(1022, 344, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.097, 0.138, 13.80, 1.250, 0.173),
(1023, 345, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.176, 0.152, 15.20, 7.250, 1.102),
(1024, 345, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.574, 0.497, 49.70, 5.400, 2.684),
(1025, 345, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.019, 0.016, 1.60, 4.200, 0.067),
(1026, 345, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.185, 0.160, 16.00, 2.100, 0.336),
(1027, 345, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.202, 0.175, 17.50, 1.250, 0.219),
(1028, 347, 28, 'ICN9118051636822650169', 'High_Grade', 0.972, 0.732, 73.20, 6.500, 4.758),
(1029, 347, 27, 'ICN9118051636822650169', 'Low_Grade', 0.356, 0.268, 26.80, 3.200, 0.858);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(1030, 348, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.204, 0.207, 20.70, 6.100, 1.263),
(1031, 348, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.121, 0.123, 12.30, 1.100, 0.135),
(1032, 348, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.659, 0.670, 67.00, 2.700, 1.809),
(1033, 349, 29, 'ICN1374427601567308279', 'High_Grade', 0.656, 0.676, 67.60, 2.000, 1.352),
(1034, 349, 30, 'ICN1374427601567308279', 'Low_Grade', 0.116, 0.119, 11.90, 1.000, 0.119),
(1035, 349, 31, 'ICN1374427601567308279', 'Mid_Grade', 0.199, 0.205, 20.50, 1.500, 0.308),
(1036, 350, 95, 'ICN1374427601567308279', 'High_Grade', 0.656, 0.676, 67.60, 0.860, 0.581),
(1037, 350, 96, 'ICN1374427601567308279', 'Low_Grade', 0.116, 0.119, 11.90, 0.420, 0.050),
(1038, 350, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.199, 0.205, 20.50, 0.480, 0.098),
(1039, 351, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.154, 0.247, 24.70, 11.640, 2.875),
(1040, 351, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.286, 0.458, 45.80, 8.520, 3.902),
(1041, 351, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.028, 0.045, 4.50, 5.520, 0.248),
(1042, 351, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.039, 0.063, 6.30, 2.540, 0.160),
(1043, 351, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.117, 0.188, 18.80, 1.640, 0.308),
(1044, 352, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.345, 0.329, 32.90, 7.250, 2.385),
(1045, 352, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.331, 0.315, 31.50, 5.400, 1.701),
(1046, 352, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.048, 0.046, 4.60, 4.200, 0.193),
(1047, 352, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.197, 0.188, 18.80, 2.100, 0.395),
(1048, 352, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.129, 0.123, 12.30, 1.250, 0.154),
(1049, 353, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.345, 0.329, 32.90, 11.640, 3.830),
(1050, 353, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.331, 0.315, 31.50, 8.520, 2.684),
(1051, 353, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.048, 0.046, 4.60, 5.520, 0.254),
(1052, 353, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.197, 0.188, 18.80, 2.540, 0.478),
(1053, 353, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.129, 0.123, 12.30, 1.640, 0.202),
(1054, 355, 95, 'ICN1374427601567308279', 'High_Grade', 0.656, 0.676, 67.60, 12.420, 8.396),
(1055, 355, 96, 'ICN1374427601567308279', 'Low_Grade', 0.116, 0.119, 11.90, 2.020, 0.240),
(1056, 355, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.199, 0.205, 20.50, 4.570, 0.937),
(1057, 356, 94, 'ICN9118051636822650169', 'High_Grade', 0.990, 0.647, 64.70, 4.230, 2.737),
(1058, 356, 93, 'ICN9118051636822650169', 'Low_Grade', 0.539, 0.353, 35.30, 2.580, 0.911),
(1059, 357, 94, 'ICN9118051636822650169', 'High_Grade', 0.990, 0.647, 64.70, 5.930, 3.837),
(1060, 357, 93, 'ICN9118051636822650169', 'Low_Grade', 0.539, 0.353, 35.30, 4.070, 1.437),
(1061, 358, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.635, 0.826, 82.60, 148.380, 122.562),
(1062, 358, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.029, 0.038, 3.80, 39.160, 1.488),
(1063, 358, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.094, 0.122, 12.20, 84.010, 10.249),
(1064, 358, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.011, 0.014, 1.40, 247.840, 3.470),
(1065, 359, 38, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.635, 0.826, 82.60, 100.000, 82.600),
(1066, 359, 41, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.029, 0.038, 3.80, 9.000, 0.342),
(1067, 359, 40, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.094, 0.122, 12.20, 55.000, 6.710),
(1068, 359, 39, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.011, 0.014, 1.40, 165.000, 2.310),
(1069, 360, 26, 'ICN5262563530192074018', 'Empty', 0.031, 0.019, 1.90, 0.000, 0.000),
(1070, 360, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.415, 0.258, 25.80, 0.140, 0.036),
(1071, 360, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.765, 0.476, 47.60, 0.080, 0.038),
(1072, 360, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.396, 0.246, 24.60, 0.120, 0.030),
(1073, 361, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.477, 0.421, 42.10, 148.380, 62.468),
(1074, 361, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.262, 0.231, 23.10, 39.160, 9.046),
(1075, 361, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.095, 0.084, 8.40, 84.010, 7.057),
(1076, 361, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.298, 0.263, 26.30, 247.840, 65.182),
(1077, 362, 92, 'ICN9055675874563173188', 'High_Grade', 0.607, 0.452, 45.20, 36.880, 16.670),
(1078, 362, 90, 'ICN9055675874563173188', 'Low_Grade', 0.715, 0.533, 53.30, 12.700, 6.769),
(1079, 362, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.020, 0.015, 1.50, 20.560, 0.308),
(1080, 363, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.538, 0.774, 77.40, 7.250, 5.612),
(1081, 363, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.039, 0.056, 5.60, 5.400, 0.302),
(1082, 363, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.021, 0.030, 3.00, 4.200, 0.126),
(1083, 363, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.061, 0.088, 8.80, 2.100, 0.185),
(1084, 363, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.036, 0.052, 5.20, 1.250, 0.065),
(1085, 365, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.048, 0.057, 5.70, 6.100, 0.348),
(1086, 365, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.071, 0.085, 8.50, 1.100, 0.094),
(1087, 365, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.719, 0.858, 85.80, 2.700, 2.317),
(1088, 366, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.538, 0.774, 77.40, 11.640, 9.009),
(1089, 366, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.039, 0.056, 5.60, 8.520, 0.477),
(1090, 366, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.021, 0.030, 3.00, 5.520, 0.166),
(1091, 366, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.061, 0.088, 8.80, 2.540, 0.224),
(1092, 366, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.036, 0.052, 5.20, 1.640, 0.085),
(1093, 367, 98, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 31.260, 20.256),
(1094, 367, 99, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 17.320, 0.831),
(1095, 367, 100, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 15.950, 2.504),
(1096, 367, 101, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 8.690, 1.277),
(1101, 370, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.103, 0.100, 10.00, 148.380, 14.838),
(1102, 370, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.775, 0.755, 75.50, 39.160, 29.566),
(1103, 370, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.043, 0.042, 4.20, 84.010, 3.528),
(1104, 370, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.106, 0.103, 10.30, 247.840, 25.528),
(1105, 371, 105, 'ICN5262563530192074018', 'Empty', 0.102, 0.083, 8.30, 0.000, 0.000),
(1106, 371, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.333, 0.269, 26.90, 0.540, 0.145),
(1107, 371, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.452, 0.366, 36.60, 0.260, 0.095),
(1108, 371, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.349, 0.282, 28.20, 0.420, 0.118),
(1109, 372, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.580, 0.760, 76.00, 6.100, 4.636),
(1110, 372, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.047, 0.062, 6.20, 1.100, 0.068),
(1111, 372, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.136, 0.178, 17.80, 2.700, 0.481),
(1112, 373, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.767, 0.798, 79.80, 6.100, 4.868),
(1113, 373, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.028, 0.029, 2.90, 1.100, 0.032),
(1114, 373, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.166, 0.173, 17.30, 2.700, 0.467),
(1115, 375, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.573, 0.455, 45.50, 6.100, 2.776),
(1116, 375, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.015, 0.012, 1.20, 1.100, 0.013),
(1117, 375, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.670, 0.533, 53.30, 2.700, 1.439),
(1121, 379, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.091, 0.099, 9.90, 6.100, 0.604),
(1122, 379, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.054, 0.059, 5.90, 1.100, 0.065),
(1123, 379, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.772, 0.842, 84.20, 2.700, 2.273),
(1124, 381, 92, 'ICN9055675874563173188', 'High_Grade', 0.565, 0.492, 49.20, 36.880, 18.145),
(1125, 381, 90, 'ICN9055675874563173188', 'Low_Grade', 0.575, 0.501, 50.10, 12.700, 6.363),
(1126, 381, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.008, 0.007, 0.70, 20.560, 0.144),
(1127, 382, 44, 'ICN9055675874563173188', 'High_Grade', 0.565, 0.492, 49.20, 26.500, 13.038),
(1128, 382, 42, 'ICN9055675874563173188', 'Low_Grade', 0.575, 0.501, 50.10, 14.500, 7.265),
(1129, 382, 43, 'ICN9055675874563173188', 'Mid_Grade', 0.008, 0.007, 0.70, 14.500, 0.102),
(1130, 383, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.218, 0.301, 30.10, 148.380, 44.662),
(1131, 383, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.163, 0.225, 22.50, 39.160, 8.811),
(1132, 383, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.077, 0.106, 10.60, 84.010, 8.905),
(1133, 383, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.267, 0.368, 36.80, 247.840, 91.205),
(1134, 384, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 7.250, 1.182),
(1135, 384, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 5.400, 2.306),
(1136, 384, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 4.200, 0.290),
(1137, 384, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.100, 0.176),
(1138, 384, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.250, 0.321),
(1139, 385, 105, 'ICN5262563530192074018', 'Empty', 0.086, 0.050, 5.00, 0.000, 0.000),
(1140, 385, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.878, 0.510, 51.00, 0.540, 0.275),
(1141, 385, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.462, 0.268, 26.80, 0.260, 0.070),
(1142, 385, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.295, 0.171, 17.10, 0.420, 0.072),
(1143, 386, 105, 'ICN5262563530192074018', 'Empty', 0.086, 0.050, 5.00, 0.000, 0.000),
(1144, 386, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.878, 0.510, 51.00, 0.540, 0.275),
(1145, 386, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.462, 0.268, 26.80, 0.260, 0.070),
(1146, 386, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.295, 0.171, 17.10, 0.420, 0.072),
(1147, 387, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 11.640, 1.897),
(1148, 387, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 8.520, 3.638),
(1149, 387, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 5.520, 0.381),
(1150, 387, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.540, 0.213),
(1151, 387, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.640, 0.421),
(1152, 388, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.180, 0.213, 21.30, 6.970, 1.485),
(1153, 388, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.039, 0.046, 4.60, 1.190, 0.055),
(1154, 388, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.628, 0.741, 74.10, 2.770, 2.053),
(1155, 389, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 7.250, 1.182),
(1156, 389, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 5.400, 2.306),
(1157, 389, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 4.200, 0.290),
(1158, 389, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.100, 0.176),
(1159, 389, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.250, 0.321),
(1160, 390, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 7.250, 1.182),
(1161, 390, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 5.400, 2.306),
(1162, 390, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 4.200, 0.290),
(1163, 390, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.100, 0.176),
(1164, 390, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.250, 0.321),
(1165, 391, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.160, 16.00, 7.250, 1.160),
(1166, 391, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.250, 0.412, 41.20, 5.400, 2.225),
(1167, 391, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.042, 0.069, 6.90, 4.200, 0.290),
(1168, 391, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.047, 0.077, 7.70, 2.100, 0.162),
(1169, 391, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.171, 0.282, 28.20, 1.250, 0.353),
(1170, 392, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.160, 16.00, 7.250, 1.160),
(1171, 392, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.250, 0.412, 41.20, 5.400, 2.225),
(1172, 392, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.042, 0.069, 6.90, 4.200, 0.290),
(1173, 392, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.047, 0.077, 7.70, 2.100, 0.162),
(1174, 392, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.171, 0.282, 28.20, 1.250, 0.353),
(1175, 393, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.160, 16.00, 7.250, 1.160),
(1176, 393, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.250, 0.412, 41.20, 5.400, 2.225),
(1177, 393, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.042, 0.069, 6.90, 4.200, 0.290),
(1178, 393, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.047, 0.077, 7.70, 2.100, 0.162),
(1179, 393, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.171, 0.282, 28.20, 1.250, 0.353),
(1180, 394, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 7.250, 1.182),
(1181, 394, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 5.400, 2.306),
(1182, 394, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 4.200, 0.290),
(1183, 394, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.100, 0.176),
(1184, 394, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.250, 0.321),
(1185, 395, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 7.250, 1.182),
(1186, 395, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 5.400, 2.306),
(1187, 395, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 4.200, 0.290),
(1188, 395, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.100, 0.176),
(1189, 395, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.250, 0.321),
(1190, 396, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 11.640, 1.897),
(1191, 396, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 8.520, 3.638),
(1192, 396, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 5.520, 0.381),
(1193, 396, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.540, 0.213),
(1194, 396, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.640, 0.421),
(1195, 397, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.097, 0.163, 16.30, 11.640, 1.897),
(1196, 397, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.254, 0.427, 42.70, 8.520, 3.638),
(1197, 397, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.069, 6.90, 5.520, 0.381),
(1198, 397, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.050, 0.084, 8.40, 2.540, 0.213),
(1199, 397, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.153, 0.257, 25.70, 1.640, 0.421),
(1200, 398, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.207, 0.175, 17.50, 148.380, 25.967),
(1201, 398, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.909, 0.770, 77.00, 39.160, 30.153),
(1202, 398, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.047, 0.040, 4.00, 84.010, 3.360),
(1203, 398, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.018, 0.015, 1.50, 247.840, 3.718),
(1204, 399, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.170, 0.187, 18.70, 6.970, 1.303),
(1205, 399, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.022, 0.024, 2.40, 1.190, 0.029),
(1206, 399, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.718, 0.789, 78.90, 2.770, 2.186),
(1207, 400, 105, 'ICN5262563530192074018', 'Empty', 0.170, 0.124, 12.40, 0.000, 0.000),
(1208, 400, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.362, 0.264, 26.40, 0.540, 0.143),
(1209, 400, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.372, 0.272, 27.20, 0.260, 0.071),
(1210, 400, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.465, 0.340, 34.00, 0.420, 0.143),
(1211, 402, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.045, 0.067, 6.70, 7.250, 0.486),
(1212, 402, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.252, 0.373, 37.30, 5.400, 2.014),
(1213, 402, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.148, 0.219, 21.90, 4.200, 0.920),
(1214, 402, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.039, 0.058, 5.80, 2.100, 0.122),
(1215, 402, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.191, 0.283, 28.30, 1.250, 0.354),
(1216, 403, 71, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.045, 0.067, 6.70, 7.250, 0.486),
(1217, 403, 72, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.252, 0.373, 37.30, 5.400, 2.014),
(1218, 403, 73, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.148, 0.219, 21.90, 4.200, 0.920),
(1219, 403, 74, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.039, 0.058, 5.80, 2.100, 0.122),
(1220, 403, 75, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.191, 0.283, 28.30, 1.250, 0.354),
(1221, 404, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.045, 0.067, 6.70, 11.640, 0.780),
(1222, 404, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.252, 0.373, 37.30, 8.520, 3.178),
(1223, 404, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.148, 0.219, 21.90, 5.520, 1.209),
(1224, 404, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.039, 0.058, 5.80, 2.540, 0.147),
(1225, 404, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.191, 0.283, 28.30, 1.640, 0.464),
(1226, 405, 44, 'ICN9055675874563173188', 'High_Grade', 0.817, 0.548, 54.80, 26.500, 14.522),
(1227, 405, 42, 'ICN9055675874563173188', 'Low_Grade', 0.659, 0.442, 44.20, 14.500, 6.409),
(1228, 405, 43, 'ICN9055675874563173188', 'Mid_Grade', 0.014, 0.009, 0.90, 14.500, 0.131),
(1229, 406, 92, 'ICN9055675874563173188', 'High_Grade', 0.817, 0.548, 54.80, 36.880, 20.210),
(1230, 406, 90, 'ICN9055675874563173188', 'Low_Grade', 0.659, 0.442, 44.20, 12.700, 5.613),
(1231, 406, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.014, 0.009, 0.90, 20.560, 0.185),
(1232, 407, 92, 'ICN9055675874563173188', 'High_Grade', 0.841, 0.719, 71.90, 36.880, 26.517),
(1233, 407, 90, 'ICN9055675874563173188', 'Low_Grade', 0.316, 0.270, 27.00, 12.700, 3.429),
(1234, 407, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.013, 0.011, 1.10, 20.560, 0.226),
(1235, 408, 94, 'ICN9118051636822650169', 'High_Grade', 0.786, 0.629, 62.90, 5.930, 3.730),
(1236, 408, 93, 'ICN9118051636822650169', 'Low_Grade', 0.464, 0.371, 37.10, 4.070, 1.510),
(1237, 409, 98, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.753, 0.644, 64.40, 31.260, 20.131),
(1238, 409, 99, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.063, 0.054, 5.40, 17.320, 0.935),
(1239, 409, 100, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.231, 0.198, 19.80, 15.950, 3.158),
(1240, 409, 101, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.122, 0.104, 10.40, 8.690, 0.904),
(1241, 410, 98, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.240, 0.280, 28.00, 31.260, 8.753),
(1242, 410, 99, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.066, 0.077, 7.70, 17.320, 1.334),
(1243, 410, 100, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.385, 0.450, 45.00, 15.950, 7.178),
(1244, 410, 101, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.165, 0.193, 19.30, 8.690, 1.677),
(1245, 411, 95, 'ICN1374427601567308279', 'High_Grade', 0.866, 0.584, 58.40, 12.420, 7.253),
(1246, 411, 96, 'ICN1374427601567308279', 'Low_Grade', 0.486, 0.328, 32.80, 2.020, 0.663),
(1247, 411, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.130, 0.088, 8.80, 4.570, 0.402),
(1248, 412, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.485, 0.563, 56.30, 6.970, 3.924),
(1249, 412, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.018, 0.021, 2.10, 1.190, 0.025),
(1250, 412, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.358, 0.416, 41.60, 2.770, 1.152),
(1251, 413, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.256, 0.383, 38.30, 6.970, 2.670),
(1252, 413, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.053, 0.079, 7.90, 1.190, 0.094),
(1253, 413, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.359, 0.537, 53.70, 2.770, 1.487),
(1254, 414, 92, 'ICN9055675874563173188', 'High_Grade', 0.841, 0.719, 71.90, 36.880, 26.517),
(1255, 414, 90, 'ICN9055675874563173188', 'Low_Grade', 0.316, 0.270, 27.00, 12.700, 3.429),
(1256, 414, 91, 'ICN9055675874563173188', 'Mid_Grade', 0.013, 0.011, 1.10, 20.560, 0.226),
(1257, 415, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.029, 0.029, 2.90, 148.380, 4.303),
(1258, 415, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.888, 0.880, 88.00, 39.160, 34.461),
(1259, 415, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.045, 0.045, 4.50, 84.010, 3.780),
(1260, 415, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.047, 0.047, 4.70, 247.840, 11.648),
(1261, 416, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.059, 0.089, 8.90, 11.640, 1.036),
(1262, 416, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.105, 0.159, 15.90, 8.520, 1.355),
(1263, 416, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.006, 0.009, 0.90, 5.520, 0.050),
(1264, 416, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.055, 0.083, 8.30, 2.540, 0.211),
(1265, 416, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.435, 0.659, 65.90, 1.640, 1.081),
(1266, 417, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.081, 0.149, 14.90, 6.970, 1.039),
(1267, 417, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.126, 0.232, 23.20, 1.190, 0.276),
(1268, 417, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.336, 0.619, 61.90, 2.770, 1.715),
(1269, 420, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1270, 420, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1271, 420, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1272, 421, 87, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.153, 0.191, 19.10, 5.170, 0.987),
(1273, 421, 89, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.208, 0.259, 25.90, 2.940, 0.761),
(1274, 421, 88, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.441, 0.550, 55.00, 8.250, 4.538),
(1275, 423, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.485, 0.563, 56.30, 6.100, 3.434),
(1276, 423, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.018, 0.021, 2.10, 1.100, 0.023),
(1277, 423, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.358, 0.416, 41.60, 2.700, 1.123),
(1280, 425, 116, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.179, 0.287, 28.70, 12.600, 3.616),
(1281, 425, 117, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.444, 0.713, 71.30, 9.850, 7.023),
(1282, 426, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.186, 0.259, 25.90, 10.340, 2.678),
(1283, 426, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.533, 0.741, 74.10, 6.780, 5.024),
(1284, 427, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.186, 0.259, 25.90, 10.340, 2.678),
(1285, 427, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.533, 0.741, 74.10, 6.780, 5.024),
(1286, 428, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.162, 0.356, 35.60, 10.340, 3.681),
(1287, 428, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.293, 0.644, 64.40, 6.780, 4.366),
(1288, 429, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1289, 429, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1290, 429, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1291, 431, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1292, 431, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1293, 431, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1294, 433, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.018, 0.020, 2.00, 10.340, 0.207),
(1295, 433, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.870, 0.980, 98.00, 6.780, 6.644),
(1300, 443, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.245, 0.238, 23.80, 148.380, 35.314),
(1301, 443, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.542, 0.527, 52.70, 39.160, 20.637),
(1302, 443, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.048, 0.047, 4.70, 84.010, 3.948),
(1303, 443, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.194, 0.189, 18.90, 247.840, 46.842),
(1304, 444, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.722, 0.648, 64.80, 31.260, 20.256),
(1305, 444, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.053, 0.048, 4.80, 17.320, 0.831),
(1306, 444, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.175, 0.157, 15.70, 15.950, 2.504),
(1307, 444, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.164, 0.147, 14.70, 8.690, 1.277),
(1308, 445, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.389, 0.480, 48.00, 6.970, 3.346),
(1309, 445, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.030, 0.037, 3.70, 1.190, 0.044),
(1310, 445, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.392, 0.483, 48.30, 2.770, 1.338),
(1311, 447, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1312, 447, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1313, 447, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1314, 448, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1315, 448, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1316, 448, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1317, 449, 19, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.626, 0.643, 64.30, 22.000, 14.146),
(1318, 449, 20, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.109, 0.112, 11.20, 12.000, 1.344),
(1319, 449, 21, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.164, 0.169, 16.90, 13.750, 2.324),
(1320, 449, 22, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.074, 0.076, 7.60, 6.000, 0.456),
(1321, 450, 26, 'ICN5262563530192074018', 'Empty', 0.085, 0.043, 4.30, 0.000, 0.000),
(1322, 450, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.680, 0.343, 34.30, 0.140, 0.048),
(1323, 450, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.844, 0.426, 42.60, 0.080, 0.034),
(1324, 450, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.373, 0.188, 18.80, 0.120, 0.023),
(1325, 451, 26, 'ICN5262563530192074018', 'Empty', 0.101, 0.048, 4.80, 0.000, 0.000),
(1326, 451, 23, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.721, 0.344, 34.40, 0.140, 0.048),
(1327, 451, 25, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.678, 0.324, 32.40, 0.080, 0.026),
(1328, 451, 24, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.594, 0.284, 28.40, 0.120, 0.034),
(1337, 454, 29, 'ICN1374427601567308279', 'High_Grade', 0.129, 0.150, 15.00, 2.000, 0.300),
(1338, 454, 30, 'ICN1374427601567308279', 'Low_Grade', 0.258, 0.300, 30.00, 1.000, 0.300),
(1339, 454, 31, 'ICN1374427601567308279', 'Mid_Grade', 0.472, 0.549, 54.90, 1.500, 0.824),
(1340, 455, 95, 'ICN1374427601567308279', 'High_Grade', 0.129, 0.150, 15.00, 12.420, 1.863),
(1341, 455, 96, 'ICN1374427601567308279', 'Low_Grade', 0.258, 0.300, 30.00, 2.020, 0.606),
(1342, 455, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.472, 0.549, 54.90, 4.570, 2.509),
(1343, 456, 105, 'ICN5262563530192074018', 'Empty', 0.085, 0.043, 4.30, 0.000, 0.000),
(1344, 456, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.680, 0.343, 34.30, 0.540, 0.185),
(1345, 456, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.844, 0.426, 42.60, 0.260, 0.111),
(1346, 456, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.373, 0.188, 18.80, 0.420, 0.079),
(1347, 457, 105, 'ICN5262563530192074018', 'Empty', 0.143, 0.090, 9.00, 0.000, 0.000),
(1348, 457, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.634, 0.397, 39.70, 0.540, 0.214),
(1349, 457, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.539, 0.338, 33.80, 0.260, 0.088),
(1350, 457, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.281, 0.176, 17.60, 0.420, 0.074),
(1351, 458, 105, 'ICN5262563530192074018', 'Empty', 0.042, 0.021, 2.10, 0.000, 0.000),
(1352, 458, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.805, 0.399, 39.90, 0.540, 0.215),
(1353, 458, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.797, 0.395, 39.50, 0.260, 0.103),
(1354, 458, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.376, 0.186, 18.60, 0.420, 0.078),
(1355, 459, 105, 'ICN5262563530192074018', 'Empty', 0.165, 0.068, 6.80, 0.000, 0.000),
(1356, 459, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.950, 0.390, 39.00, 0.540, 0.211),
(1357, 459, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.826, 0.339, 33.90, 0.260, 0.088),
(1358, 459, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.492, 0.202, 20.20, 0.420, 0.085),
(1359, 460, 105, 'ICN5262563530192074018', 'Empty', 0.153, 0.088, 8.80, 0.000, 0.000),
(1360, 460, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.710, 0.408, 40.80, 0.540, 0.220),
(1361, 460, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.170, 0.098, 9.80, 0.260, 0.025),
(1362, 460, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.708, 0.407, 40.70, 0.420, 0.171),
(1363, 465, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.894, 0.913, 91.30, 6.970, 6.364),
(1364, 465, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.005, 0.005, 0.50, 1.190, 0.006),
(1365, 465, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.080, 0.082, 8.20, 2.770, 0.227),
(1366, 466, 95, 'ICN1374427601567308279', 'High_Grade', 0.629, 0.460, 46.00, 12.420, 5.713),
(1367, 466, 96, 'ICN1374427601567308279', 'Low_Grade', 0.182, 0.133, 13.30, 2.020, 0.269),
(1368, 466, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.556, 0.407, 40.70, 4.570, 1.860),
(1369, 467, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1370, 467, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1371, 467, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1372, 468, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.970, 0.258),
(1373, 468, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.190, 0.195),
(1374, 468, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.770, 2.213),
(1395, 474, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.519, 0.377, 37.70, 31.260, 11.785),
(1396, 474, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.034, 0.025, 2.50, 17.320, 0.433),
(1397, 474, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.720, 0.524, 52.40, 15.950, 8.358),
(1398, 474, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.102, 0.074, 7.40, 8.690, 0.643),
(1399, 475, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.649, 0.751, 75.10, 6.970, 5.234),
(1400, 475, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.110, 0.127, 12.70, 1.190, 0.151),
(1401, 475, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.105, 0.122, 12.20, 2.770, 0.338),
(1402, 476, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.635, 0.461, 46.10, 26.260, 12.106),
(1403, 476, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.027, 0.020, 2.00, 17.320, 0.346),
(1404, 476, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.609, 0.443, 44.30, 14.750, 6.534),
(1405, 476, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.105, 0.076, 7.60, 7.890, 0.600),
(1406, 477, 402, 'ICN9055675874563173188', 'High_Grade', 0.697, 0.538, 53.80, 36.880, 19.841),
(1407, 477, 400, 'ICN9055675874563173188', 'Low_Grade', 0.567, 0.438, 43.80, 12.700, 5.563),
(1408, 477, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.032, 0.025, 2.50, 12.050, 0.301),
(1409, 478, 522, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.033, 0.032, 3.20, 2.200, 0.070),
(1410, 478, 525, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.954, 0.912, 91.20, 0.270, 0.246),
(1411, 478, 524, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.004, 0.004, 0.40, 0.880, 0.004),
(1412, 478, 523, 'ICN5560960097584433023', 'Mid_Grade', 0.055, 0.053, 5.30, 1.810, 0.096),
(1413, 480, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.100, 0.226),
(1414, 480, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.100, 0.180),
(1415, 480, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.700, 2.157),
(1416, 481, 35, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.100, 0.226),
(1417, 481, 37, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.100, 0.180),
(1418, 481, 36, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.700, 2.157),
(1419, 482, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.100, 0.226),
(1420, 482, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.100, 0.180),
(1421, 482, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.700, 2.157),
(1426, 484, 234, 'ICN5262563530192074018', 'Empty', 0.101, 0.048, 4.80, 0.000, 0.000),
(1427, 484, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.721, 0.344, 34.40, 0.140, 0.048),
(1428, 484, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.678, 0.324, 32.40, 0.080, 0.026),
(1429, 484, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.594, 0.284, 28.40, 0.120, 0.034),
(1430, 485, 197, 'ICN5262563530192074018', 'Empty', 0.101, 0.048, 4.80, 0.000, 0.000),
(1431, 485, 194, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.721, 0.344, 34.40, 0.140, 0.048),
(1432, 485, 196, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.678, 0.324, 32.40, 0.080, 0.026),
(1433, 485, 195, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.594, 0.284, 28.40, 0.120, 0.034),
(1434, 486, 234, 'ICN5262563530192074018', 'Empty', 0.101, 0.048, 4.80, 0.000, 0.000),
(1435, 486, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.721, 0.344, 34.40, 0.240, 0.083),
(1436, 486, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.678, 0.324, 32.40, 0.090, 0.029),
(1437, 486, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.594, 0.284, 28.40, 0.160, 0.045),
(1438, 487, 234, 'ICN5262563530192074018', 'Empty', 0.086, 0.050, 5.00, 0.000, 0.000),
(1439, 487, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.878, 0.510, 51.00, 0.240, 0.122),
(1440, 487, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.462, 0.268, 26.80, 0.090, 0.024),
(1441, 487, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.295, 0.171, 17.10, 0.160, 0.027),
(1442, 488, 234, 'ICN5262563530192074018', 'Empty', 0.117, 0.086, 8.60, 0.000, 0.000),
(1443, 488, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.513, 0.375, 37.50, 0.240, 0.090),
(1444, 488, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.522, 0.382, 38.20, 0.090, 0.034),
(1445, 488, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.215, 0.157, 15.70, 0.160, 0.025),
(1446, 489, 234, 'ICN5262563530192074018', 'Empty', 0.058, 0.027, 2.70, 0.000, 0.000),
(1447, 489, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.747, 0.346, 34.60, 0.240, 0.083),
(1448, 489, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.682, 0.316, 31.60, 0.090, 0.028),
(1449, 489, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.672, 0.311, 31.10, 0.160, 0.050),
(1450, 491, 234, 'ICN5262563530192074018', 'Empty', 0.045, 0.028, 2.80, 0.000, 0.000),
(1451, 491, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.663, 0.417, 41.70, 0.240, 0.100),
(1452, 491, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.503, 0.316, 31.60, 0.090, 0.028),
(1453, 491, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.380, 0.239, 23.90, 0.160, 0.038),
(1454, 492, 345, 'ICN5262563530192074018', 'Empty', 0.018, 0.011, 1.10, 0.000, 0.000),
(1455, 492, 342, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.619, 0.379, 37.90, 0.280, 0.106),
(1456, 492, 344, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.529, 0.324, 32.40, 0.140, 0.045),
(1457, 492, 343, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.468, 0.286, 28.60, 0.190, 0.054),
(1458, 493, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.026, 0.067, 6.70, 9.650, 0.647),
(1459, 493, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.171, 0.438, 43.80, 6.900, 3.022),
(1460, 493, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.041, 0.105, 10.50, 3.920, 0.412),
(1461, 493, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.039, 0.100, 10.00, 2.330, 0.233),
(1462, 493, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.113, 0.290, 29.00, 1.380, 0.400),
(1463, 494, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.091, 0.213, 21.30, 9.650, 2.055),
(1464, 494, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.140, 0.327, 32.70, 6.900, 2.256),
(1465, 494, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.016, 0.037, 3.70, 3.920, 0.145),
(1466, 494, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.062, 0.145, 14.50, 2.330, 0.338),
(1467, 494, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.119, 0.278, 27.80, 1.380, 0.384),
(1468, 496, 522, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.128, 0.140, 14.00, 2.200, 0.308),
(1469, 496, 525, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.067, 0.073, 7.30, 0.270, 0.020),
(1470, 496, 524, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.075, 0.082, 8.20, 0.880, 0.072),
(1471, 496, 523, 'ICN5560960097584433023', 'Mid_Grade', 0.645, 0.705, 70.50, 1.810, 1.276),
(1491, 502, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.362, 0.556, 55.60, 6.970, 3.875),
(1492, 502, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.033, 0.051, 5.10, 1.190, 0.061),
(1493, 502, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.256, 0.393, 39.30, 2.770, 1.089),
(1494, 503, 84, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 8.520, 0.656),
(1495, 503, 86, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.920, 0.357),
(1496, 503, 85, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.140, 1.577),
(1497, 504, 111, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.028, 0.032, 3.20, 12.100, 0.387),
(1498, 504, 112, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.420, 0.484, 48.40, 4.540, 2.197),
(1499, 504, 113, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.046, 0.053, 5.30, 3.390, 0.180),
(1500, 504, 114, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.085, 0.098, 9.80, 2.430, 0.238),
(1501, 504, 115, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.288, 0.332, 33.20, 1.350, 0.448),
(1502, 506, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.036, 0.094, 9.40, 9.650, 0.907),
(1503, 506, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.051, 0.133, 13.30, 6.900, 0.918),
(1504, 506, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.015, 0.039, 3.90, 3.920, 0.153),
(1505, 506, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.135, 0.352, 35.20, 2.330, 0.820),
(1506, 506, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.147, 0.383, 38.30, 1.380, 0.529),
(1507, 507, 246, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.190, 0.235, 23.50, 1.150, 0.270),
(1508, 507, 249, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.016, 0.020, 2.00, 0.800, 0.016),
(1509, 507, 248, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.089, 0.110, 11.00, 1.000, 0.110),
(1510, 507, 247, 'ICN5560960097584433023', 'Mid_Grade', 0.514, 0.635, 63.50, 1.110, 0.705),
(1511, 508, 259, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.028, 0.032, 3.20, 7.250, 0.232),
(1512, 508, 260, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.420, 0.484, 48.40, 5.400, 2.614),
(1513, 508, 261, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.046, 0.053, 5.30, 4.200, 0.223),
(1514, 508, 262, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.085, 0.098, 9.80, 2.100, 0.206),
(1515, 508, 263, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.288, 0.332, 33.20, 1.250, 0.415),
(1516, 509, 234, 'ICN5262563530192074018', 'Empty', 0.060, 0.036, 3.60, 0.000, 0.000),
(1517, 509, 231, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.708, 0.424, 42.40, 0.240, 0.102),
(1518, 509, 233, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.572, 0.343, 34.30, 0.090, 0.031),
(1519, 509, 232, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.330, 0.198, 19.80, 0.160, 0.032),
(1520, 511, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.157, 0.145, 14.50, 9.650, 1.399),
(1521, 511, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.565, 0.520, 52.00, 6.900, 3.588),
(1522, 511, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.014, 0.013, 1.30, 3.920, 0.051),
(1523, 511, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.156, 0.144, 14.40, 2.330, 0.336),
(1524, 511, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.194, 0.179, 17.90, 1.380, 0.247),
(1525, 512, 404, 'ICN9118051636822650169', 'High_Grade', 0.396, 0.834, 83.40, 5.930, 4.946),
(1526, 512, 403, 'ICN9118051636822650169', 'Low_Grade', 0.079, 0.166, 16.60, 4.070, 0.676),
(1527, 513, 522, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.080, 0.105, 10.50, 2.200, 0.231),
(1528, 513, 525, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.190, 0.250, 25.00, 0.270, 0.068),
(1529, 513, 524, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.465, 0.611, 61.10, 0.880, 0.538),
(1530, 513, 523, 'ICN5560960097584433023', 'Mid_Grade', 0.026, 0.034, 3.40, 1.810, 0.062),
(1531, 514, 105, 'ICN5262563530192074018', 'Empty', 0.354, 0.150, 15.00, 0.000, 0.000),
(1532, 514, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.828, 0.350, 35.00, 0.540, 0.189),
(1533, 514, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.937, 0.396, 39.60, 0.260, 0.103),
(1534, 514, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.246, 0.104, 10.40, 0.420, 0.044),
(1535, 515, 95, 'ICN1374427601567308279', 'High_Grade', 0.957, 0.728, 72.80, 12.420, 9.042),
(1536, 515, 96, 'ICN1374427601567308279', 'Low_Grade', 0.020, 0.015, 1.50, 2.020, 0.030),
(1537, 515, 97, 'ICN1374427601567308279', 'Mid_Grade', 0.337, 0.256, 25.60, 4.570, 1.170),
(1538, 516, 106, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.015, 0.022, 2.20, 148.380, 3.264),
(1539, 516, 109, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.152, 0.224, 22.40, 39.160, 8.772),
(1540, 516, 108, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.023, 0.034, 3.40, 84.010, 2.856),
(1541, 516, 107, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.490, 0.721, 72.10, 247.840, 178.693),
(1554, 526, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1555, 526, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.997, 99.70, 0.340, 0.339),
(1556, 526, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.003, 0.003, 0.30, 0.450, 0.001),
(1557, 527, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1558, 527, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.938, 0.786, 78.60, 0.340, 0.267),
(1559, 527, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.255, 0.214, 21.40, 0.450, 0.096),
(1560, 528, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1561, 528, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.892, 0.533, 53.30, 0.340, 0.181),
(1562, 528, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.781, 0.467, 46.70, 0.450, 0.210),
(1563, 529, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1564, 529, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.984, 0.794, 79.40, 0.340, 0.270),
(1565, 529, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.255, 0.206, 20.60, 0.450, 0.093),
(1566, 530, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1567, 530, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.450, 0.317, 31.70, 0.340, 0.108),
(1568, 530, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.969, 0.683, 68.30, 0.450, 0.307),
(1569, 531, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1570, 531, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.720, 0.502, 50.20, 0.340, 0.171),
(1571, 531, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.715, 0.498, 49.80, 0.450, 0.224),
(1572, 532, 536, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.700, 0.000),
(1573, 532, 534, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.720, 0.502, 50.20, 0.340, 0.171),
(1574, 532, 535, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.715, 0.498, 49.80, 0.450, 0.224),
(1581, 535, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1582, 535, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.999, 99.90, 0.570, 0.569),
(1583, 535, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.001, 0.001, 0.10, 0.860, 0.001),
(1584, 536, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1585, 536, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.997, 99.70, 0.620, 0.618),
(1586, 536, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.003, 0.003, 0.30, 0.860, 0.003),
(1624, 563, 405, 'ICN1374427601567308279', 'High_Grade', 0.629, 0.460, 46.00, 12.420, 5.713),
(1625, 563, 406, 'ICN1374427601567308279', 'Low_Grade', 0.182, 0.133, 13.30, 2.020, 0.269),
(1626, 563, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.556, 0.407, 40.70, 4.570, 1.860),
(1627, 566, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1628, 566, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.997, 99.70, 0.620, 0.618),
(1629, 566, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.003, 0.003, 0.30, 0.860, 0.003),
(1630, 569, 405, 'ICN1374427601567308279', 'High_Grade', 0.229, 0.175, 17.50, 11.700, 2.048),
(1631, 569, 406, 'ICN1374427601567308279', 'Low_Grade', 0.259, 0.197, 19.70, 2.780, 0.548),
(1632, 569, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.824, 0.628, 62.80, 4.140, 2.600),
(1633, 571, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1634, 571, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.984, 0.794, 79.40, 0.620, 0.492),
(1635, 571, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.255, 0.206, 20.60, 0.860, 0.177),
(1636, 573, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1637, 573, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.997, 99.70, 0.620, 0.618),
(1638, 573, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.003, 0.003, 0.30, 0.860, 0.003),
(1639, 577, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1640, 577, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.938, 0.786, 78.60, 0.620, 0.487),
(1641, 577, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.255, 0.214, 21.40, 0.860, 0.184),
(1646, 579, 405, 'ICN1374427601567308279', 'High_Grade', 0.229, 0.175, 17.50, 11.700, 2.048),
(1647, 579, 406, 'ICN1374427601567308279', 'Low_Grade', 0.259, 0.197, 19.70, 2.780, 0.548),
(1648, 579, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.824, 0.628, 62.80, 4.140, 2.600),
(1649, 580, 415, 'ICN5262563530192074018', 'Empty', 0.040, 0.029, 2.90, 0.000, 0.000),
(1650, 580, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.547, 0.391, 39.10, 0.400, 0.156),
(1651, 580, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.648, 0.463, 46.30, 0.150, 0.069),
(1652, 580, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.165, 0.118, 11.80, 0.300, 0.035),
(1653, 581, 415, 'ICN5262563530192074018', 'Empty', 0.061, 0.033, 3.30, 0.000, 0.000),
(1654, 581, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.648, 0.348, 34.80, 0.400, 0.139),
(1655, 581, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.742, 0.399, 39.90, 0.150, 0.060),
(1656, 581, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.409, 0.220, 22.00, 0.300, 0.066),
(1657, 583, 415, 'ICN5262563530192074018', 'Empty', 0.197, 0.117, 11.70, 0.000, 0.000),
(1658, 583, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.582, 0.345, 34.50, 0.400, 0.138),
(1659, 583, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.697, 0.413, 41.30, 0.150, 0.062),
(1660, 583, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.210, 0.125, 12.50, 0.300, 0.038),
(1661, 584, 415, 'ICN5262563530192074018', 'Empty', 0.040, 0.029, 2.90, 0.000, 0.000),
(1662, 584, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.547, 0.391, 39.10, 0.400, 0.156),
(1663, 584, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.648, 0.463, 46.30, 0.150, 0.069);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(1664, 584, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.165, 0.118, 11.80, 0.300, 0.035),
(1665, 585, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.406, 0.301, 30.10, 26.260, 7.904),
(1666, 585, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.187, 0.139, 13.90, 17.320, 2.407),
(1667, 585, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.642, 0.476, 47.60, 14.750, 7.021),
(1668, 585, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.114, 0.085, 8.50, 7.890, 0.671),
(1669, 586, 405, 'ICN1374427601567308279', 'High_Grade', 0.010, 0.010, 1.00, 11.700, 0.117),
(1670, 586, 406, 'ICN1374427601567308279', 'Low_Grade', 0.054, 0.055, 5.50, 2.780, 0.153),
(1671, 586, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.915, 0.935, 93.50, 4.140, 3.871),
(1675, 588, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.738, 0.700, 70.00, 6.970, 4.879),
(1676, 588, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.047, 0.045, 4.50, 3.140, 0.141),
(1677, 588, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.270, 0.256, 25.60, 2.770, 0.709),
(1681, 590, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.013, 0.020, 2.00, 6.970, 0.139),
(1682, 590, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.253, 0.387, 38.70, 3.140, 1.215),
(1683, 590, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.387, 0.593, 59.30, 2.770, 1.643),
(1684, 591, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.180, 0.235, 23.50, 6.970, 1.638),
(1685, 591, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.031, 0.040, 4.00, 3.140, 0.126),
(1686, 591, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.555, 0.725, 72.50, 2.770, 2.008),
(1687, 593, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.080, 0.167, 16.70, 6.970, 1.164),
(1688, 593, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.278, 0.580, 58.00, 3.140, 1.821),
(1689, 593, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.121, 0.253, 25.30, 2.770, 0.701),
(1690, 594, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.007, 0.007, 0.70, 6.970, 0.049),
(1691, 594, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.186, 0.194, 19.40, 3.140, 0.609),
(1692, 594, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.765, 0.799, 79.90, 2.770, 2.213),
(1693, 595, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.226, 0.365, 36.50, 6.970, 2.544),
(1694, 595, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.207, 0.334, 33.40, 3.140, 1.049),
(1695, 595, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.186, 0.300, 30.00, 2.770, 0.831),
(1696, 596, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.135, 0.232, 23.20, 6.970, 1.617),
(1697, 596, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.088, 0.151, 15.10, 3.140, 0.474),
(1698, 596, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.359, 0.617, 61.70, 2.770, 1.709),
(1699, 597, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.155, 0.236, 23.60, 6.610, 1.560),
(1700, 597, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.082, 0.125, 12.50, 1.340, 0.168),
(1701, 597, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.421, 0.640, 64.00, 2.980, 1.907),
(1702, 598, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.016, 0.018, 1.80, 6.610, 0.119),
(1703, 598, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.156, 0.178, 17.80, 1.340, 0.239),
(1704, 598, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.702, 0.803, 80.30, 2.980, 2.393),
(1705, 599, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.050, 0.085, 8.50, 6.610, 0.562),
(1706, 599, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.093, 0.158, 15.80, 1.340, 0.212),
(1707, 599, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.446, 0.757, 75.70, 2.980, 2.256),
(1708, 600, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.317, 0.442, 44.20, 6.610, 2.922),
(1709, 600, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.087, 0.121, 12.10, 1.340, 0.162),
(1710, 600, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.313, 0.437, 43.70, 2.980, 1.302),
(1711, 601, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.085, 0.127, 12.70, 6.610, 0.839),
(1712, 601, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.173, 0.259, 25.90, 1.340, 0.347),
(1713, 601, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.409, 0.613, 61.30, 2.980, 1.827),
(1714, 602, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.096, 0.239, 23.90, 6.610, 1.580),
(1715, 602, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.082, 0.204, 20.40, 1.340, 0.273),
(1716, 602, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.224, 0.557, 55.70, 2.980, 1.660),
(1720, 604, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.019, 0.016, 1.60, 9.650, 0.154),
(1721, 604, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.867, 0.751, 75.10, 6.900, 5.182),
(1722, 604, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.189, 0.164, 16.40, 3.920, 0.643),
(1723, 604, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.020, 0.017, 1.70, 2.330, 0.040),
(1724, 604, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.059, 0.051, 5.10, 1.380, 0.070),
(1728, 606, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.072, 0.101, 10.10, 9.650, 0.975),
(1729, 606, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.364, 0.508, 50.80, 6.900, 3.505),
(1730, 606, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.057, 0.080, 8.00, 3.920, 0.314),
(1731, 606, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.053, 0.074, 7.40, 2.330, 0.172),
(1732, 606, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.170, 0.237, 23.70, 1.380, 0.327),
(1733, 610, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 5.250, 0.194),
(1734, 610, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.500, 0.246),
(1735, 610, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.200, 1.758),
(1739, 616, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.039, 0.054, 5.40, 6.610, 0.357),
(1740, 616, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.196, 0.269, 26.90, 1.340, 0.360),
(1741, 616, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.493, 0.677, 67.70, 2.980, 2.017),
(1745, 618, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.006, 0.010, 1.00, 6.610, 0.066),
(1746, 618, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.156, 0.268, 26.80, 1.340, 0.359),
(1747, 618, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.420, 0.722, 72.20, 2.980, 2.152),
(1755, 622, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1756, 622, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.207, 0.175, 17.50, 0.620, 0.109),
(1757, 622, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.973, 0.825, 82.50, 0.860, 0.710),
(1758, 623, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.017, 1.70, 6.610, 0.112),
(1759, 623, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.074, 7.40, 1.340, 0.099),
(1760, 623, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.364, 36.40, 2.980, 1.085),
(1761, 624, 405, 'ICN1374427601567308279', 'High_Grade', 0.183, 0.165, 16.50, 11.700, 1.931),
(1762, 624, 406, 'ICN1374427601567308279', 'Low_Grade', 0.099, 0.089, 8.90, 2.780, 0.247),
(1763, 624, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.827, 0.746, 74.60, 4.140, 3.088),
(1764, 630, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.077, 0.049, 4.90, 2.640, 0.129),
(1765, 630, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.315, 0.199, 19.90, 0.410, 0.082),
(1766, 630, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.131, 0.083, 8.30, 1.010, 0.084),
(1767, 630, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.171, 0.108, 10.80, 1.710, 0.185),
(1768, 632, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.237, 0.147, 14.70, 2.640, 0.388),
(1769, 632, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.016, 0.010, 1.00, 0.410, 0.004),
(1770, 632, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.058, 0.036, 3.60, 1.010, 0.036),
(1771, 632, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.506, 0.313, 31.30, 1.710, 0.535),
(1772, 633, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.019, 0.011, 1.10, 6.610, 0.073),
(1773, 633, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.193, 0.111, 11.10, 1.340, 0.149),
(1774, 633, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.542, 0.312, 31.20, 2.980, 0.930),
(1775, 634, 402, 'ICN9055675874563173188', 'High_Grade', 0.746, 0.311, 31.10, 36.880, 11.470),
(1776, 634, 400, 'ICN9055675874563173188', 'Low_Grade', 0.518, 0.216, 21.60, 12.700, 2.743),
(1777, 634, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.026, 0.011, 1.10, 12.050, 0.133),
(1778, 635, 402, 'ICN9055675874563173188', 'High_Grade', 0.746, 0.311, 31.10, 36.880, 11.470),
(1779, 635, 400, 'ICN9055675874563173188', 'Low_Grade', 0.518, 0.216, 21.60, 12.700, 2.743),
(1780, 635, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.026, 0.011, 1.10, 12.050, 0.133),
(1781, 636, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.402, 0.367, 36.70, 6.610, 2.426),
(1782, 636, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.080, 0.073, 7.30, 1.340, 0.098),
(1783, 636, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.098, 0.089, 8.90, 2.980, 0.265),
(1792, 645, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.402, 0.367, 36.70, 6.610, 2.426),
(1793, 645, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.080, 0.073, 7.30, 1.340, 0.098),
(1794, 645, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.098, 0.089, 8.90, 2.980, 0.265),
(1795, 646, 402, 'ICN9055675874563173188', 'High_Grade', 0.746, 0.311, 31.10, 36.880, 11.470),
(1796, 646, 400, 'ICN9055675874563173188', 'Low_Grade', 0.518, 0.216, 21.60, 12.700, 2.743),
(1797, 646, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.026, 0.011, 1.10, 12.050, 0.133),
(1798, 647, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.402, 0.367, 36.70, 6.610, 2.426),
(1799, 647, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.080, 0.073, 7.30, 1.340, 0.098),
(1800, 647, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.098, 0.089, 8.90, 2.980, 0.265),
(1810, 651, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.031, 0.018, 1.80, 9.650, 0.174),
(1811, 651, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.273, 0.158, 15.80, 6.900, 1.090),
(1812, 651, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.030, 0.017, 1.70, 3.920, 0.067),
(1813, 651, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.139, 0.080, 8.00, 2.330, 0.186),
(1814, 651, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.344, 0.199, 19.90, 1.380, 0.275),
(1815, 652, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.157, 0.089, 8.90, 9.650, 0.859),
(1816, 652, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.395, 0.225, 22.50, 6.900, 1.553),
(1817, 652, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.029, 0.016, 1.60, 3.920, 0.063),
(1818, 652, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.021, 0.012, 1.20, 2.330, 0.028),
(1819, 652, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.126, 0.072, 7.20, 1.380, 0.099),
(1820, 653, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.079, 0.051, 5.10, 6.610, 0.337),
(1821, 653, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.139, 0.089, 8.90, 1.340, 0.119),
(1822, 653, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.300, 0.193, 19.30, 2.980, 0.575),
(1823, 657, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.017, 1.70, 6.610, 0.112),
(1824, 657, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.074, 7.40, 1.340, 0.099),
(1825, 657, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.364, 36.40, 2.980, 1.085),
(1826, 658, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.017, 1.70, 6.610, 0.112),
(1827, 658, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.074, 7.40, 1.340, 0.099),
(1828, 658, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.364, 36.40, 2.980, 1.085),
(1829, 659, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1830, 659, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.207, 0.175, 17.50, 0.620, 0.109),
(1831, 659, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.973, 0.825, 82.50, 0.860, 0.710),
(1832, 660, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1833, 660, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.207, 0.090, 9.00, 0.620, 0.056),
(1834, 660, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.973, 0.425, 42.50, 0.860, 0.366),
(1859, 667, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.131, 0.154, 15.40, 2.640, 0.407),
(1860, 667, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.354, 0.417, 41.70, 0.410, 0.171),
(1861, 667, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.185, 0.218, 21.80, 1.010, 0.220),
(1862, 667, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.178, 0.210, 21.00, 1.710, 0.359),
(1863, 668, 405, 'ICN1374427601567308279', 'High_Grade', 0.027, 0.025, 2.50, 11.700, 0.293),
(1864, 668, 406, 'ICN1374427601567308279', 'Low_Grade', 0.263, 0.247, 24.70, 2.780, 0.687),
(1865, 668, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.776, 0.728, 72.80, 4.140, 3.014),
(1870, 670, 404, 'ICN9118051636822650169', 'High_Grade', 0.831, 0.625, 62.50, 5.930, 3.706),
(1871, 670, 403, 'ICN9118051636822650169', 'Low_Grade', 0.499, 0.375, 37.50, 4.070, 1.526),
(1872, 671, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.610, 0.245),
(1873, 671, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.128, 0.164, 16.40, 1.340, 0.220),
(1874, 671, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.625, 0.799, 79.90, 2.980, 2.381),
(1884, 674, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.072, 0.101, 10.10, 9.650, 0.975),
(1885, 674, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.364, 0.508, 50.80, 6.900, 3.505),
(1886, 674, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.057, 0.080, 8.00, 3.920, 0.314),
(1887, 674, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.053, 0.074, 7.40, 2.330, 0.172),
(1888, 674, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.170, 0.237, 23.70, 1.380, 0.327),
(1893, 676, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.063, 0.096, 9.60, 2.640, 0.253),
(1894, 676, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.087, 0.132, 13.20, 0.410, 0.054),
(1895, 676, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.166, 0.252, 25.20, 1.010, 0.255),
(1896, 676, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.343, 0.520, 52.00, 1.710, 0.889),
(1897, 677, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.096, 0.239, 23.90, 6.610, 1.580),
(1898, 677, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.082, 0.204, 20.40, 1.340, 0.273),
(1899, 677, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.224, 0.557, 55.70, 2.980, 1.660),
(1900, 678, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.022, 0.020, 2.00, 9.650, 0.193),
(1901, 678, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.804, 0.725, 72.50, 6.900, 5.003),
(1902, 678, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.192, 0.173, 17.30, 3.920, 0.678),
(1903, 678, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.014, 0.013, 1.30, 2.330, 0.030),
(1904, 678, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.077, 0.069, 6.90, 1.380, 0.095),
(1905, 679, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.079, 0.153, 15.30, 6.610, 1.011),
(1906, 679, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.139, 0.268, 26.80, 1.340, 0.359),
(1907, 679, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.300, 0.579, 57.90, 2.980, 1.725),
(1908, 680, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.072, 0.101, 10.10, 9.650, 0.975),
(1909, 680, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.364, 0.508, 50.80, 6.900, 3.505),
(1910, 680, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.057, 0.080, 8.00, 3.920, 0.314),
(1911, 680, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.053, 0.074, 7.40, 2.330, 0.172),
(1912, 680, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.170, 0.237, 23.70, 1.380, 0.327),
(1913, 681, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.893, 0.578, 57.80, 26.260, 15.178),
(1914, 681, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.050, 0.032, 3.20, 17.320, 0.554),
(1915, 681, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.462, 0.299, 29.90, 14.750, 4.410),
(1916, 681, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.139, 0.090, 9.00, 7.890, 0.710),
(1917, 682, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.120, 0.175, 17.50, 2.640, 0.462),
(1918, 682, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.175, 0.255, 25.50, 0.410, 0.105),
(1919, 682, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.100, 0.146, 14.60, 1.010, 0.147),
(1920, 682, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.291, 0.424, 42.40, 1.710, 0.725),
(1921, 683, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.107, 0.109, 10.90, 6.610, 0.720),
(1922, 683, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.013, 0.013, 1.30, 1.340, 0.017),
(1923, 683, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.864, 0.878, 87.80, 2.980, 2.616),
(1924, 684, 404, 'ICN9118051636822650169', 'High_Grade', 0.831, 0.625, 62.50, 5.930, 3.706),
(1925, 684, 403, 'ICN9118051636822650169', 'Low_Grade', 0.499, 0.375, 37.50, 4.070, 1.526),
(1930, 686, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.063, 0.096, 9.60, 2.640, 0.253),
(1931, 686, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.087, 0.132, 13.20, 0.410, 0.054),
(1932, 686, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.166, 0.252, 25.20, 1.010, 0.255),
(1933, 686, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.343, 0.520, 52.00, 1.710, 0.889),
(1934, 687, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1935, 687, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 1.000, 0.997, 99.70, 0.620, 0.618),
(1936, 687, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.003, 0.003, 0.30, 0.860, 0.003),
(1941, 689, 405, 'ICN1374427601567308279', 'High_Grade', 0.161, 0.151, 15.10, 11.700, 1.767),
(1942, 689, 406, 'ICN1374427601567308279', 'Low_Grade', 0.088, 0.082, 8.20, 2.780, 0.228),
(1943, 689, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.818, 0.767, 76.70, 4.140, 3.175),
(1944, 690, 397, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.164, 0.277, 27.70, 5.170, 1.432),
(1945, 690, 399, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.147, 0.248, 24.80, 2.940, 0.729),
(1946, 690, 398, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.281, 0.475, 47.50, 8.250, 3.919),
(1952, 692, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.034, 0.025, 2.50, 9.650, 0.241),
(1953, 692, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.513, 0.377, 37.70, 6.900, 2.601),
(1954, 692, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.090, 0.066, 6.60, 3.920, 0.259),
(1955, 692, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.101, 0.074, 7.40, 2.330, 0.172),
(1956, 692, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.624, 0.458, 45.80, 1.380, 0.632),
(1962, 694, 410, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.013, 0.010, 1.00, 7.250, 0.073),
(1963, 694, 411, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.424, 0.332, 33.20, 5.400, 1.793),
(1964, 694, 412, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.054, 0.042, 4.20, 4.200, 0.176),
(1965, 694, 413, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.058, 0.045, 4.50, 2.100, 0.095),
(1966, 694, 414, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.730, 0.571, 57.10, 1.250, 0.714),
(1967, 695, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.016, 0.019, 1.90, 10.640, 0.202),
(1968, 695, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.807, 0.981, 98.10, 8.930, 8.760),
(1969, 696, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.922, 0.978, 97.80, 10.640, 10.406),
(1970, 696, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.021, 0.022, 2.20, 8.930, 0.196),
(1971, 697, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(1972, 697, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.963, 0.719, 71.90, 0.620, 0.446),
(1973, 697, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.377, 0.281, 28.10, 0.860, 0.242),
(1978, 699, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.846, 0.572, 57.20, 26.260, 15.021),
(1979, 699, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.050, 0.034, 3.40, 17.320, 0.589),
(1980, 699, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.466, 0.315, 31.50, 14.750, 4.646),
(1981, 699, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.116, 0.078, 7.80, 7.890, 0.615),
(1982, 700, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.103, 0.100, 10.00, 148.380, 14.838),
(1983, 700, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.775, 0.755, 75.50, 39.160, 29.566),
(1984, 700, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.043, 0.042, 4.20, 84.010, 3.528),
(1985, 700, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.106, 0.103, 10.30, 247.840, 25.528),
(1986, 701, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.045, 0.077, 7.70, 6.610, 0.509),
(1987, 701, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.109, 0.186, 18.60, 1.340, 0.249),
(1988, 701, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.432, 0.737, 73.70, 2.980, 2.196),
(1989, 702, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.527, 0.395, 39.50, 2.640, 1.043),
(1990, 702, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.009, 0.007, 0.70, 0.410, 0.003),
(1991, 702, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.437, 0.328, 32.80, 1.010, 0.331),
(1992, 702, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.360, 0.270, 27.00, 1.710, 0.462),
(1993, 703, 415, 'ICN5262563530192074018', 'Empty', 0.105, 0.056, 5.60, 0.000, 0.000),
(1994, 703, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.960, 0.508, 50.80, 0.400, 0.203),
(1995, 703, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.709, 0.375, 37.50, 0.150, 0.056),
(1996, 703, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.117, 0.062, 6.20, 0.300, 0.019),
(1997, 704, 415, 'ICN5262563530192074018', 'Empty', 0.094, 0.064, 6.40, 0.000, 0.000),
(1998, 704, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.694, 0.470, 47.00, 0.400, 0.188),
(1999, 704, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.366, 0.248, 24.80, 0.150, 0.037),
(2000, 704, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.324, 0.219, 21.90, 0.300, 0.066),
(2001, 705, 397, 'ICN6193062173998597390', 'HighGrade_Pre2002_and_Military', 0.027, 0.030, 3.00, 5.170, 0.155),
(2002, 705, 399, 'ICN6193062173998597390', 'LowGrade_2014_and_Netbooks', 0.071, 0.079, 7.90, 2.940, 0.232),
(2003, 705, 398, 'ICN6193062173998597390', 'MidGrade_Pentium_AMD', 0.796, 0.890, 89.00, 8.250, 7.343),
(2004, 706, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(2005, 706, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.998, 0.976, 97.60, 0.620, 0.605),
(2006, 706, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.025, 0.024, 2.40, 0.860, 0.021),
(2014, 709, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.174, 0.202, 20.20, 2.640, 0.533),
(2015, 709, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.007, 0.008, 0.80, 0.410, 0.003),
(2016, 709, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.069, 0.080, 8.00, 1.010, 0.081),
(2017, 709, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.610, 0.709, 70.90, 1.710, 1.212),
(2018, 710, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(2019, 710, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.229, 0.267, 26.70, 0.620, 0.166),
(2020, 710, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.629, 0.733, 73.30, 0.860, 0.630),
(2021, 711, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.237, 0.290, 29.00, 2.640, 0.766),
(2022, 711, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.016, 0.020, 2.00, 0.410, 0.008),
(2023, 711, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.058, 0.071, 7.10, 1.010, 0.072),
(2024, 711, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.506, 0.619, 61.90, 1.710, 1.058),
(2025, 712, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.079, 0.153, 15.30, 6.610, 1.011),
(2026, 712, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.139, 0.268, 26.80, 1.340, 0.359),
(2027, 712, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.300, 0.579, 57.90, 2.980, 1.725),
(2028, 713, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.031, 0.038, 3.80, 9.650, 0.367),
(2029, 713, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.273, 0.334, 33.40, 6.900, 2.305),
(2030, 713, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.030, 0.037, 3.70, 3.920, 0.145),
(2031, 713, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.139, 0.170, 17.00, 2.330, 0.396),
(2032, 713, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.344, 0.421, 42.10, 1.380, 0.581),
(2033, 715, 405, 'ICN1374427601567308279', 'High_Grade', 0.161, 0.151, 15.10, 11.700, 1.767),
(2034, 715, 406, 'ICN1374427601567308279', 'Low_Grade', 0.088, 0.082, 8.20, 2.780, 0.228),
(2035, 715, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.818, 0.767, 76.70, 4.140, 3.175),
(2044, 719, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.103, 0.100, 10.00, 148.380, 14.838),
(2045, 719, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.775, 0.755, 75.50, 39.160, 29.566),
(2046, 719, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.043, 0.042, 4.20, 84.010, 3.528),
(2047, 719, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.106, 0.103, 10.30, 247.840, 25.528),
(2070, 726, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.676, 0.530, 53.00, 26.260, 13.918),
(2071, 726, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.030, 0.024, 2.40, 17.320, 0.416),
(2072, 726, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.440, 0.345, 34.50, 14.750, 5.089),
(2073, 726, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.129, 0.101, 10.10, 7.890, 0.797),
(2089, 735, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.063, 0.096, 9.60, 2.640, 0.253),
(2090, 735, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.087, 0.132, 13.20, 0.410, 0.054),
(2091, 735, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.166, 0.252, 25.20, 1.010, 0.255),
(2092, 735, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.343, 0.520, 52.00, 1.710, 0.889),
(2093, 736, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(2094, 736, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.892, 0.533, 53.30, 0.620, 0.330),
(2095, 736, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.781, 0.467, 46.70, 0.860, 0.402),
(2096, 737, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.124, 0.199, 19.90, 2.640, 0.525),
(2097, 737, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.188, 0.302, 30.20, 0.410, 0.124),
(2098, 737, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.130, 0.209, 20.90, 1.010, 0.211),
(2099, 737, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.181, 0.291, 29.10, 1.710, 0.498),
(2103, 739, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.676, 0.530, 53.00, 29.520, 15.646),
(2104, 739, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.030, 0.024, 2.40, 23.460, 0.563),
(2105, 739, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.440, 0.345, 34.50, 13.910, 4.799),
(2106, 739, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.129, 0.101, 10.10, 6.190, 0.625),
(2112, 741, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.572, 0.654, 65.40, 29.520, 19.306),
(2113, 741, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.004, 0.005, 0.50, 23.460, 0.117),
(2114, 741, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.205, 0.235, 23.50, 13.910, 3.269),
(2115, 741, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.093, 0.106, 10.60, 6.190, 0.656),
(2121, 743, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.990, 0.906, 90.60, 29.520, 26.745),
(2122, 743, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.026, 0.024, 2.40, 23.460, 0.563),
(2123, 743, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.043, 0.039, 3.90, 13.910, 0.542),
(2124, 743, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.034, 0.031, 3.10, 6.190, 0.192),
(2129, 745, 455, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.828, 0.708, 70.80, 25.000, 17.700),
(2130, 745, 456, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.101, 0.086, 8.60, 20.000, 1.720),
(2131, 745, 457, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.134, 0.115, 11.50, 15.000, 1.725),
(2132, 745, 458, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.106, 0.091, 9.10, 8.000, 0.728),
(2133, 746, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(2134, 746, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.099, 0.092, 9.20, 0.620, 0.057),
(2135, 746, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.974, 0.908, 90.80, 0.860, 0.781),
(2136, 749, 465, 'ICN3840662788361032827', 'High_End_CRTs', 0.071, 0.034, 3.40, 0.750, 0.026),
(2137, 749, 463, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.000, 0.000, 0.00, 0.550, 0.000),
(2138, 749, 464, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.978, 0.466, 46.60, 0.680, 0.317),
(2139, 751, 465, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.750, 0.000),
(2140, 751, 463, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.207, 0.175, 17.50, 0.550, 0.096),
(2141, 751, 464, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.973, 0.825, 82.50, 0.680, 0.561),
(2151, 754, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.094, 0.091, 9.10, 9.650, 0.878),
(2152, 754, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.384, 0.372, 37.20, 6.900, 2.567),
(2153, 754, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.054, 0.052, 5.20, 3.920, 0.204),
(2154, 754, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.227, 0.220, 22.00, 2.330, 0.513),
(2155, 754, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.274, 0.265, 26.50, 1.380, 0.366),
(2160, 756, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.018, 0.020, 2.00, 12.280, 0.246),
(2161, 756, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.893, 0.980, 98.00, 10.340, 10.133),
(2162, 757, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.524, 0.657, 65.70, 9.650, 6.340),
(2163, 757, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.032, 0.040, 4.00, 6.900, 0.276),
(2164, 757, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.012, 0.015, 1.50, 3.920, 0.059),
(2165, 757, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.181, 0.227, 22.70, 2.330, 0.529),
(2166, 757, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.048, 0.060, 6.00, 1.380, 0.083),
(2167, 758, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.170, 0.294, 29.40, 9.650, 2.837),
(2168, 758, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.059, 0.102, 10.20, 6.900, 0.704),
(2169, 758, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.011, 0.019, 1.90, 3.920, 0.074),
(2170, 758, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.216, 0.373, 37.30, 2.330, 0.869),
(2171, 758, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.123, 0.212, 21.20, 1.380, 0.293),
(2172, 759, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.050, 0.056, 5.60, 9.650, 0.540),
(2173, 759, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.182, 0.205, 20.50, 6.900, 1.415),
(2174, 759, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.025, 0.028, 2.80, 3.920, 0.110),
(2175, 759, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.125, 0.141, 14.10, 2.330, 0.329),
(2176, 759, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.506, 0.570, 57.00, 1.380, 0.787),
(2185, 762, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.000, 0.000),
(2186, 762, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.646, 0.482, 48.20, 0.620, 0.299),
(2187, 762, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.693, 0.518, 51.80, 0.860, 0.445),
(2188, 763, 420, 'ICN8270463710298358732', 'Grade_AAA_Shielded', 0.524, 0.657, 65.70, 9.650, 6.340),
(2189, 763, 421, 'ICN8270463710298358732', 'Grade_AA_Finger_Conn', 0.032, 0.040, 4.00, 6.900, 0.276),
(2190, 763, 422, 'ICN8270463710298358732', 'Grade_A_Pinned_Conn', 0.012, 0.015, 1.50, 3.920, 0.059),
(2191, 763, 423, 'ICN8270463710298358732', 'Grade_B_Low_PMs', 0.181, 0.227, 22.70, 2.330, 0.529),
(2192, 763, 424, 'ICN8270463710298358732', 'Grade_C_Heavy_Copper', 0.048, 0.060, 6.00, 1.380, 0.083),
(2196, 765, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2197, 765, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.646, 0.482, 48.20, 1.050, 0.506),
(2198, 765, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.693, 0.518, 51.80, 2.370, 1.228),
(2218, 773, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2219, 773, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.099, 0.092, 9.20, 0.930, 0.086),
(2220, 773, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.974, 0.908, 90.80, 2.370, 2.152),
(2231, 776, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.995, 0.878, 87.80, 9.650, 8.473),
(2232, 776, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.025, 0.022, 2.20, 6.900, 0.152),
(2233, 776, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.035, 0.031, 3.10, 3.920, 0.122),
(2234, 776, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.049, 0.043, 4.30, 2.330, 0.100),
(2235, 776, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.029, 0.026, 2.60, 1.380, 0.036),
(2236, 777, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.389, 0.406, 40.60, 2.640, 1.072),
(2237, 777, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.050, 0.052, 5.20, 0.410, 0.021),
(2238, 777, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.064, 0.067, 6.70, 1.010, 0.068),
(2239, 777, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.456, 0.475, 47.50, 1.710, 0.812),
(2255, 781, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.883, 0.695, 69.50, 9.650, 6.707),
(2256, 781, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.027, 0.021, 2.10, 6.900, 0.145),
(2257, 781, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.099, 0.078, 7.80, 3.920, 0.306),
(2258, 781, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.183, 0.144, 14.40, 2.330, 0.336),
(2259, 781, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.078, 0.061, 6.10, 1.380, 0.084),
(2260, 782, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.394, 0.475, 47.50, 9.650, 4.584),
(2261, 782, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.023, 0.028, 2.80, 6.900, 0.193),
(2262, 782, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.260, 0.313, 31.30, 3.920, 1.227),
(2263, 782, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.096, 0.116, 11.60, 2.330, 0.270),
(2264, 782, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.057, 0.069, 6.90, 1.380, 0.095),
(2265, 783, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.569, 0.543, 54.30, 148.380, 80.570),
(2266, 783, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.264, 0.252, 25.20, 30.750, 7.749),
(2267, 783, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.040, 0.038, 3.80, 84.010, 3.192),
(2268, 783, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.175, 0.167, 16.70, 247.840, 41.389),
(2269, 784, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2270, 784, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.999, 0.995, 99.50, 0.930, 0.925),
(2271, 784, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.005, 0.005, 0.50, 2.370, 0.012),
(2272, 785, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.063, 0.096, 9.60, 2.640, 0.253),
(2273, 785, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.087, 0.132, 13.20, 0.410, 0.054),
(2274, 785, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.166, 0.252, 25.20, 1.010, 0.255),
(2275, 785, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.343, 0.520, 52.00, 1.710, 0.889),
(2276, 786, 415, 'ICN5262563530192074018', 'Empty', 0.086, 0.068, 6.80, 0.000, 0.000),
(2277, 786, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.190, 0.150, 15.00, 0.400, 0.060),
(2278, 786, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.556, 0.440, 44.00, 0.150, 0.066),
(2279, 786, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.431, 0.341, 34.10, 0.300, 0.102),
(2280, 787, 415, 'ICN5262563530192074018', 'Empty', 0.034, 0.024, 2.40, 0.000, 0.000),
(2281, 787, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.563, 0.396, 39.60, 0.400, 0.158),
(2282, 787, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.675, 0.474, 47.40, 0.150, 0.071),
(2283, 787, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.151, 0.106, 10.60, 0.300, 0.032),
(2284, 788, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.354, 0.266, 26.60, 182.710, 48.601),
(2285, 788, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.677, 0.508, 50.80, 48.280, 24.526),
(2286, 788, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.083, 0.062, 6.20, 108.200, 6.708),
(2287, 788, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.219, 0.164, 16.40, 291.500, 47.806),
(2288, 789, 415, 'ICN5262563530192074018', 'Empty', 0.049, 0.031, 3.10, 0.000, 0.000),
(2289, 789, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.850, 0.541, 54.10, 0.400, 0.216),
(2290, 789, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.331, 0.211, 21.10, 0.150, 0.032),
(2291, 789, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.341, 0.217, 21.70, 0.300, 0.065),
(2292, 790, 415, 'ICN5262563530192074018', 'Empty', 0.116, 0.083, 8.30, 0.000, 0.000),
(2293, 790, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.781, 0.556, 55.60, 0.400, 0.222),
(2294, 790, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.213, 0.152, 15.20, 0.150, 0.023),
(2295, 790, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.295, 0.210, 21.00, 0.300, 0.063),
(2296, 791, 415, 'ICN5262563530192074018', 'Empty', 0.116, 0.083, 8.30, 0.000, 0.000),
(2297, 791, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.781, 0.556, 55.60, 0.400, 0.222),
(2298, 791, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.213, 0.152, 15.20, 0.150, 0.023),
(2299, 791, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.295, 0.210, 21.00, 0.300, 0.063),
(2300, 792, 415, 'ICN5262563530192074018', 'Empty', 0.049, 0.031, 3.10, 0.000, 0.000),
(2301, 792, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.850, 0.541, 54.10, 0.400, 0.216),
(2302, 792, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.331, 0.211, 21.10, 0.150, 0.032),
(2303, 792, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.341, 0.217, 21.70, 0.300, 0.065),
(2304, 793, 415, 'ICN5262563530192074018', 'Empty', 0.017, 0.008, 0.80, 0.000, 0.000),
(2305, 793, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.629, 0.309, 30.90, 0.400, 0.124),
(2306, 793, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.734, 0.360, 36.00, 0.150, 0.054),
(2307, 793, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.657, 0.323, 32.30, 0.300, 0.097),
(2308, 794, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.001, 0.001, 0.10, 2.230, 0.002),
(2309, 794, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.076, 0.083, 8.30, 0.930, 0.077),
(2310, 794, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.836, 0.916, 91.60, 2.370, 2.171),
(2311, 795, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.440, 0.318, 31.80, 9.650, 3.069),
(2312, 795, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.141, 0.102, 10.20, 6.900, 0.704),
(2313, 795, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.197, 0.142, 14.20, 3.920, 0.557),
(2314, 795, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.388, 0.280, 28.00, 2.330, 0.652),
(2315, 795, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.219, 0.158, 15.80, 1.380, 0.218),
(2316, 796, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.060, 0.056, 5.60, 9.650, 0.540),
(2317, 796, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.117, 0.109, 10.90, 6.900, 0.752),
(2318, 796, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.257, 0.240, 24.00, 3.920, 0.941),
(2319, 796, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.395, 0.368, 36.80, 2.330, 0.857),
(2320, 796, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.244, 0.227, 22.70, 1.380, 0.313),
(2321, 797, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2322, 797, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.347, 0.266, 26.60, 0.930, 0.247),
(2323, 797, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.959, 0.734, 73.40, 2.370, 1.740),
(2324, 798, 415, 'ICN5262563530192074018', 'Empty', 0.111, 0.059, 5.90, 0.000, 0.000),
(2325, 798, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.673, 0.359, 35.90, 0.400, 0.144),
(2326, 798, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.573, 0.305, 30.50, 0.150, 0.046),
(2327, 798, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.519, 0.277, 27.70, 0.300, 0.083),
(2328, 799, 415, 'ICN5262563530192074018', 'Empty', 0.142, 0.107, 10.70, 0.000, 0.000),
(2329, 799, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.432, 0.327, 32.70, 0.400, 0.131),
(2330, 799, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.439, 0.332, 33.20, 0.150, 0.050),
(2331, 799, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.309, 0.234, 23.40, 0.300, 0.070),
(2332, 800, 415, 'ICN5262563530192074018', 'Empty', 0.589, 0.234, 23.40, 0.000, 0.000),
(2333, 800, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.820, 0.326, 32.60, 0.400, 0.130),
(2334, 800, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.599, 0.238, 23.80, 0.150, 0.036),
(2335, 800, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.509, 0.202, 20.20, 0.300, 0.061),
(2336, 803, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.922, 0.672, 67.20, 9.650, 6.485),
(2337, 803, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.077, 0.056, 5.60, 6.900, 0.386),
(2338, 803, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.212, 0.154, 15.40, 3.920, 0.604),
(2339, 803, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.117, 0.085, 8.50, 2.330, 0.198),
(2340, 803, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.045, 0.033, 3.30, 1.380, 0.046),
(2348, 808, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.261, 0.302, 30.20, 2.640, 0.797),
(2349, 808, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.124, 0.144, 14.40, 0.410, 0.059),
(2350, 808, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.321, 0.372, 37.20, 1.010, 0.376),
(2351, 808, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.158, 0.183, 18.30, 1.710, 0.313),
(2352, 810, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.189, 0.276, 27.60, 2.640, 0.729),
(2353, 810, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.039, 0.057, 5.70, 0.410, 0.023),
(2354, 810, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.333, 0.486, 48.60, 1.010, 0.491),
(2355, 810, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.124, 0.181, 18.10, 1.710, 0.310),
(2356, 811, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2357, 811, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.799, 0.789, 78.90, 0.930, 0.734),
(2358, 811, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.214, 0.211, 21.10, 2.370, 0.500),
(2359, 812, 415, 'ICN5262563530192074018', 'Empty', 0.041, 0.026, 2.60, 0.000, 0.000),
(2360, 812, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.514, 0.327, 32.70, 0.830, 0.271),
(2361, 812, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.754, 0.480, 48.00, 0.150, 0.072),
(2362, 812, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.262, 0.167, 16.70, 0.480, 0.080),
(2363, 813, 415, 'ICN5262563530192074018', 'Empty', 0.042, 0.028, 2.80, 0.000, 0.000),
(2364, 813, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.582, 0.391, 39.10, 0.830, 0.325),
(2365, 813, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.631, 0.424, 42.40, 0.150, 0.064),
(2366, 813, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.234, 0.157, 15.70, 0.480, 0.075),
(2367, 814, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.922, 0.672, 67.20, 9.650, 6.485),
(2368, 814, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.077, 0.056, 5.60, 6.900, 0.386),
(2369, 814, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.212, 0.154, 15.40, 3.920, 0.604),
(2370, 814, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.117, 0.085, 8.50, 2.330, 0.198),
(2371, 814, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.045, 0.033, 3.30, 1.380, 0.046),
(2372, 816, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.180, 0.263, 26.30, 2.640, 0.694),
(2373, 816, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.040, 0.058, 5.80, 0.410, 0.024),
(2374, 816, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.337, 0.492, 49.20, 1.010, 0.497),
(2375, 816, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.128, 0.187, 18.70, 1.710, 0.320),
(2376, 817, 404, 'ICN9118051636822650169', 'High_Grade', 0.713, 0.603, 60.30, 5.930, 3.576),
(2377, 817, 403, 'ICN9118051636822650169', 'Low_Grade', 0.470, 0.397, 39.70, 4.070, 1.616),
(2393, 822, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 2.230, 0.000),
(2394, 822, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.258, 0.224, 22.40, 0.930, 0.208),
(2395, 822, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.896, 0.776, 77.60, 2.370, 1.839),
(2396, 823, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.091, 0.086, 8.60, 29.520, 2.539),
(2397, 823, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.089, 0.084, 8.40, 23.460, 1.971),
(2398, 823, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.792, 0.751, 75.10, 13.910, 10.446),
(2399, 823, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.083, 0.079, 7.90, 6.190, 0.489),
(2400, 824, 405, 'ICN1374427601567308279', 'High_Grade', 0.745, 0.689, 68.90, 11.700, 8.061),
(2401, 824, 406, 'ICN1374427601567308279', 'Low_Grade', 0.139, 0.129, 12.90, 2.780, 0.359),
(2402, 824, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.197, 0.182, 18.20, 4.140, 0.753),
(2403, 826, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.541, 0.508, 50.80, 6.100, 3.099),
(2404, 826, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.005, 0.005, 0.50, 1.100, 0.006),
(2405, 826, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.520, 0.488, 48.80, 2.700, 1.318),
(2406, 827, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.087, 0.111, 11.10, 6.100, 0.677),
(2407, 827, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.045, 0.057, 5.70, 1.100, 0.063),
(2408, 827, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.651, 0.831, 83.10, 2.700, 2.244),
(2409, 828, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.593, 0.649, 64.90, 6.100, 3.959),
(2410, 828, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.013, 0.014, 1.40, 1.100, 0.015),
(2411, 828, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.308, 0.337, 33.70, 2.700, 0.910),
(2412, 829, 206, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.989, 0.978, 97.80, 6.100, 5.966),
(2413, 829, 208, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.015, 0.015, 1.50, 1.100, 0.017),
(2414, 829, 207, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.007, 0.007, 0.70, 2.700, 0.019),
(2419, 831, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.897, 0.575, 57.50, 13.530, 7.780),
(2420, 831, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.052, 0.033, 3.30, 6.280, 0.207),
(2421, 831, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.255, 0.164, 16.40, 3.920, 0.643),
(2422, 831, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.269, 0.173, 17.30, 2.330, 0.403),
(2423, 831, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.086, 0.055, 5.50, 1.380, 0.076),
(2424, 832, 425, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.041, 0.042, 4.20, 12.280, 0.516),
(2425, 832, 426, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.929, 0.958, 95.80, 10.340, 9.906),
(2426, 833, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.008, 0.008, 0.80, 13.530, 0.108),
(2427, 833, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.083, 0.084, 8.40, 6.280, 0.528),
(2428, 833, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.696, 0.708, 70.80, 3.920, 2.775),
(2429, 833, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.151, 0.154, 15.40, 2.330, 0.359),
(2430, 833, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.045, 0.046, 4.60, 1.380, 0.063),
(2431, 834, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.172, 0.206, 20.60, 13.530, 2.787),
(2432, 834, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.033, 0.040, 4.00, 6.280, 0.251),
(2433, 834, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.255, 0.306, 30.60, 3.920, 1.200),
(2434, 834, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.331, 0.397, 39.70, 2.330, 0.925),
(2435, 834, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.043, 0.052, 5.20, 1.380, 0.072),
(2436, 835, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.044, 0.059, 5.90, 13.530, 0.798),
(2437, 835, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.118, 0.159, 15.90, 6.280, 0.999);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(2438, 835, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.264, 0.355, 35.50, 3.920, 1.392),
(2439, 835, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.240, 0.323, 32.30, 2.330, 0.753),
(2440, 835, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.078, 0.105, 10.50, 1.380, 0.145),
(2441, 836, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.060, 0.060, 6.00, 182.710, 10.963),
(2442, 836, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.019, 0.019, 1.90, 48.280, 0.917),
(2443, 836, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.018, 0.018, 1.80, 108.200, 1.948),
(2444, 836, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.911, 0.904, 90.40, 291.500, 263.516),
(2460, 844, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 1.030, 0.000),
(2461, 844, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.422, 0.309, 30.90, 3.110, 0.961),
(2462, 844, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.942, 0.691, 69.10, 2.520, 1.741),
(2463, 845, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.112, 0.142, 14.20, 5.820, 0.826),
(2464, 845, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.039, 0.049, 4.90, 3.240, 0.159),
(2465, 845, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.284, 0.360, 36.00, 4.110, 1.480),
(2466, 845, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.354, 0.449, 44.90, 4.820, 2.164),
(2659, 898, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.804, 0.624, 62.40, 21.260, 13.266),
(2660, 898, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.028, 0.022, 2.20, 17.310, 0.381),
(2661, 898, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.226, 0.175, 17.50, 10.170, 1.780),
(2662, 898, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.231, 0.179, 17.90, 4.120, 0.737),
(2682, 904, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.880, 0.000),
(2683, 904, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.403, 0.300, 30.00, 0.440, 0.132),
(2684, 904, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.939, 0.700, 70.00, 0.830, 0.581),
(2691, 907, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.223, 0.207, 20.70, 11.370, 2.354),
(2692, 907, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.033, 0.031, 3.10, 8.250, 0.256),
(2693, 907, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.605, 0.562, 56.20, 3.300, 1.855),
(2694, 907, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.093, 0.086, 8.60, 1.950, 0.168),
(2695, 907, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.123, 0.114, 11.40, 1.100, 0.125),
(2696, 908, 415, 'ICN5262563530192074018', 'Empty', 0.043, 0.028, 2.80, 0.000, 0.000),
(2697, 908, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.595, 0.388, 38.80, 0.800, 0.310),
(2698, 908, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.633, 0.413, 41.30, 0.430, 0.178),
(2699, 908, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.261, 0.170, 17.00, 0.630, 0.107),
(2700, 909, 415, 'ICN5262563530192074018', 'Empty', 0.029, 0.021, 2.10, 0.000, 0.000),
(2701, 909, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 0.741, 0.528, 52.80, 0.800, 0.422),
(2702, 909, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 0.495, 0.353, 35.30, 0.430, 0.152),
(2703, 909, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 0.139, 0.099, 9.90, 0.630, 0.062),
(2704, 910, 416, 'ICN1352050014989540777', 'HighEnd_Ceramic', 0.147, 0.172, 17.20, 144.120, 24.789),
(2705, 910, 419, 'ICN1352050014989540777', 'LowYeild_Plastic', 0.402, 0.469, 46.90, 37.980, 17.813),
(2706, 910, 418, 'ICN1352050014989540777', 'MidRange_Ceramic', 0.092, 0.107, 10.70, 83.070, 8.888),
(2707, 910, 417, 'ICN1352050014989540777', 'UltraHigh_Ceramic', 0.216, 0.252, 25.20, 236.720, 59.653),
(2776, 941, 405, 'ICN1374427601567308279', 'High_Grade', 0.019, 0.017, 1.70, 10.520, 0.179),
(2777, 941, 406, 'ICN1374427601567308279', 'Low_Grade', 0.219, 0.192, 19.20, 2.500, 0.480),
(2778, 941, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.903, 0.791, 79.10, 4.000, 3.164),
(2779, 942, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.880, 0.000),
(2780, 942, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.371, 0.285, 28.50, 0.440, 0.125),
(2781, 942, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.933, 0.715, 71.50, 0.850, 0.608),
(2802, 949, 663, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.037, 3.70, 6.030, 0.223),
(2803, 949, 665, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.129, 0.164, 16.40, 1.260, 0.207),
(2804, 949, 664, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.628, 0.799, 79.90, 1.470, 1.175),
(2805, 950, 663, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.013, 0.020, 2.00, 6.050, 0.121),
(2806, 950, 665, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.417, 0.641, 64.10, 1.260, 0.808),
(2807, 950, 664, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.221, 0.339, 33.90, 1.470, 0.498),
(2808, 951, 677, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.930, 0.680, 68.00, 30.670, 20.856),
(2809, 951, 678, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.025, 0.018, 1.80, 19.100, 0.344),
(2810, 951, 679, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.238, 0.174, 17.40, 14.820, 2.579),
(2811, 951, 680, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.175, 0.128, 12.80, 8.420, 1.078),
(2812, 952, 674, 'ICN1374427601567308279', 'High_Grade', 0.454, 0.671, 67.10, 12.070, 8.099),
(2813, 952, 675, 'ICN1374427601567308279', 'Low_Grade', 0.125, 0.185, 18.50, 2.080, 0.385),
(2814, 952, 676, 'ICN1374427601567308279', 'Mid_Grade', 0.098, 0.145, 14.50, 4.290, 0.622),
(2815, 953, 674, 'ICN1374427601567308279', 'High_Grade', 0.697, 0.797, 79.70, 12.060, 9.612),
(2816, 953, 675, 'ICN1374427601567308279', 'Low_Grade', 0.159, 0.182, 18.20, 2.080, 0.379),
(2817, 953, 676, 'ICN1374427601567308279', 'Mid_Grade', 0.018, 0.021, 2.10, 4.290, 0.090),
(2914, 1012, 408, 'ICN5124169819646411186', 'HighGrade_Older_NoMetal', 0.936, 0.669, 66.90, 21.460, 14.357),
(2915, 1012, 409, 'ICN5124169819646411186', 'HighGrade_Older_WithMetal', 0.027, 0.019, 1.90, 17.560, 0.334),
(2916, 1012, 410, 'ICN5124169819646411186', 'SmartPhone_NoMetal', 0.249, 0.178, 17.80, 10.340, 1.841),
(2917, 1012, 411, 'ICN5124169819646411186', 'SmartPhone_WithMetal', 0.188, 0.134, 13.40, 4.230, 0.567),
(2918, 1013, 405, 'ICN1374427601567308279', 'High_Grade', 0.604, 0.673, 67.30, 9.320, 6.272),
(2919, 1013, 406, 'ICN1374427601567308279', 'Low_Grade', 0.026, 0.029, 2.90, 2.220, 0.064),
(2920, 1013, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.267, 0.298, 29.80, 3.550, 1.058),
(2980, 1037, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.820, 0.000),
(2981, 1037, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.660, 0.592, 59.20, 0.340, 0.201),
(2982, 1037, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.455, 0.408, 40.80, 0.770, 0.314),
(2983, 1038, 539, 'ICN3840662788361032827', 'High_End_CRTs', 0.000, 0.000, 0.00, 0.820, 0.000),
(2984, 1038, 537, 'ICN3840662788361032827', 'Low_Grade_HeavyMetal', 0.660, 0.592, 59.20, 1.470, 0.870),
(2985, 1038, 538, 'ICN3840662788361032827', 'Mid_Grade_LowPMs', 0.455, 0.408, 40.80, 3.370, 1.375),
(3004, 1044, 420, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.424, 0.322, 32.20, 10.940, 3.523),
(3005, 1044, 421, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.138, 0.105, 10.50, 7.670, 0.805),
(3006, 1044, 422, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.086, 0.065, 6.50, 3.020, 0.196),
(3007, 1044, 423, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.538, 0.409, 40.90, -1.420, -0.581),
(3008, 1044, 424, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.131, 0.099, 9.90, 0.960, 0.095),
(3009, 1045, 415, 'ICN5262563530192074018', 'Empty', 0.578, 0.084, 8.40, 0.000, 0.000),
(3010, 1045, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 2.758, 0.403, 40.30, 0.710, 0.286),
(3011, 1045, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 1.051, 0.153, 15.30, 0.390, 0.060),
(3012, 1045, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 2.461, 0.359, 35.90, 0.560, 0.201),
(3013, 1046, 415, 'ICN5262563530192074018', 'Empty', 0.755, 0.051, 5.10, 0.000, 0.000),
(3014, 1046, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 5.381, 0.360, 36.00, 0.710, 0.256),
(3015, 1046, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 5.074, 0.340, 34.00, 0.390, 0.133),
(3016, 1046, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 3.725, 0.249, 24.90, 0.560, 0.139),
(3017, 1047, 415, 'ICN5262563530192074018', 'Empty', 0.487, 0.039, 3.90, 0.000, 0.000),
(3018, 1047, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 4.777, 0.382, 38.20, 0.710, 0.271),
(3019, 1047, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 3.585, 0.287, 28.70, 0.390, 0.112),
(3020, 1047, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 3.661, 0.293, 29.30, 0.560, 0.164),
(3038, 1060, 526, 'ICN5560960097584433023', 'High_Grade_High_PMs', 0.063, 0.081, 8.10, 2.780, 0.225),
(3039, 1060, 529, 'ICN5560960097584433023', 'Low_Quality_BaseMet', 0.256, 0.329, 32.90, 1.540, 0.507),
(3040, 1060, 528, 'ICN5560960097584433023', 'Low_Quality_PMs', 0.425, 0.546, 54.60, 1.970, 1.076),
(3041, 1060, 527, 'ICN5560960097584433023', 'Mid_Grade', 0.034, 0.044, 4.40, 2.620, 0.115),
(3081, 1076, 592, 'ICN1374427601567308279', 'High_Grade', 0.937, 0.883, 88.30, 12.770, 11.276),
(3082, 1076, 593, 'ICN1374427601567308279', 'Low_Grade', 0.018, 0.017, 1.70, 1.970, 0.033),
(3083, 1076, 594, 'ICN1374427601567308279', 'Mid_Grade', 0.106, 0.100, 10.00, 5.610, 0.561),
(3202, 1115, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3203, 1115, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3204, 1115, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3208, 1117, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3209, 1117, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3210, 1117, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3214, 1119, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3215, 1119, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3216, 1119, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3217, 1121, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3218, 1121, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3219, 1121, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3220, 1122, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3221, 1122, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3222, 1122, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3223, 1123, 402, 'ICN9055675874563173188', 'High_Grade', 0.000, 0.000, 0.00, 39.590, 0.000),
(3224, 1123, 400, 'ICN9055675874563173188', 'Low_Grade', 0.000, 0.000, 0.00, 16.020, 0.000),
(3225, 1123, 401, 'ICN9055675874563173188', 'Mid_Grade', 0.000, 0.000, 0.00, 7.680, 0.000),
(3226, 1124, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.032, 0.041, 4.10, 3.870, 0.159),
(3227, 1124, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.119, 0.154, 15.40, 1.570, 0.242),
(3228, 1124, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.624, 0.805, 80.50, 2.320, 1.868),
(3229, 1125, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.000, 0.000, 0.00, 3.870, 0.000),
(3230, 1125, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.000, 0.000, 0.00, 1.570, 0.000),
(3231, 1125, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.000, 0.000, 0.00, 2.320, 0.000),
(3232, 1126, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.042, 4.20, 3.870, 0.163),
(3233, 1126, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.107, 0.153, 15.30, 1.570, 0.240),
(3234, 1126, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.562, 0.805, 80.50, 2.320, 1.868),
(3235, 1127, 394, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.029, 0.042, 4.20, 3.870, 0.163),
(3236, 1127, 396, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.107, 0.153, 15.30, 1.570, 0.240),
(3237, 1127, 395, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.562, 0.805, 80.50, 2.320, 1.868),
(3288, 1152, 592, 'ICN1374427601567308279', 'High_Grade', 0.590, 0.786, 78.60, 12.860, 10.108),
(3289, 1152, 593, 'ICN1374427601567308279', 'Low_Grade', 0.011, 0.015, 1.50, 1.980, 0.030),
(3290, 1152, 594, 'ICN1374427601567308279', 'Mid_Grade', 0.150, 0.200, 20.00, 5.650, 1.130),
(3291, 1153, 405, 'ICN1374427601567308279', 'High_Grade', 0.284, 0.289, 28.90, 6.930, 2.003),
(3292, 1153, 406, 'ICN1374427601567308279', 'Low_Grade', 0.067, 0.068, 6.80, 1.650, 0.112),
(3293, 1153, 407, 'ICN1374427601567308279', 'Mid_Grade', 0.631, 0.643, 64.30, 2.630, 1.691),
(3301, 1163, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3302, 1163, 714, 'ICN8888790648522539008', '5424799926978714545', 0.000, 0.000, 0.00, 16.060, 0.000),
(3303, 1163, 714, 'ICN8888790648522539008', '5424799926978714545', 0.257, 0.094, 9.40, 16.060, 1.510),
(3304, 1163, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3305, 1163, 96, 'ICN8888790648522539008', '8585093516795170284', 0.000, 0.000, 0.00, 3.010, 0.000),
(3306, 1163, 96, 'ICN8888790648522539008', '8585093516795170284', 0.246, 0.090, 9.00, 3.010, 0.271),
(3307, 1163, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3308, 1163, 95, 'ICN8888790648522539008', '8811682051984321777', 0.000, 0.000, 0.00, 8.490, 0.000),
(3309, 1163, 95, 'ICN8888790648522539008', '8811682051984321777', 0.014, 0.005, 0.50, 8.490, 0.042),
(3310, 1163, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3311, 1164, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3312, 1164, 714, 'ICN8888790648522539008', '5424799926978714545', 0.000, 0.000, 0.00, 16.060, 0.000),
(3313, 1164, 714, 'ICN8888790648522539008', '5424799926978714545', 0.257, 0.094, 9.40, 16.060, 1.510),
(3314, 1164, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3315, 1164, 96, 'ICN8888790648522539008', '8585093516795170284', 0.000, 0.000, 0.00, 3.010, 0.000),
(3316, 1164, 96, 'ICN8888790648522539008', '8585093516795170284', 0.246, 0.090, 9.00, 3.010, 0.271),
(3317, 1164, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3318, 1164, 95, 'ICN8888790648522539008', '8811682051984321777', 0.000, 0.000, 0.00, 8.490, 0.000),
(3319, 1164, 95, 'ICN8888790648522539008', '8811682051984321777', 0.014, 0.005, 0.50, 8.490, 0.042),
(3320, 1164, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3321, 1165, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3322, 1165, 714, 'ICN8888790648522539008', '5424799926978714545', 0.000, 0.000, 0.00, 16.060, 0.000),
(3323, 1165, 714, 'ICN8888790648522539008', '5424799926978714545', 0.257, 0.094, 9.40, 16.060, 1.510),
(3324, 1165, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3325, 1165, 96, 'ICN8888790648522539008', '8585093516795170284', 0.000, 0.000, 0.00, 3.010, 0.000),
(3326, 1165, 96, 'ICN8888790648522539008', '8585093516795170284', 0.246, 0.090, 9.00, 3.010, 0.271),
(3327, 1165, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3328, 1165, 95, 'ICN8888790648522539008', '8811682051984321777', 0.000, 0.000, 0.00, 8.490, 0.000),
(3329, 1165, 95, 'ICN8888790648522539008', '8811682051984321777', 0.014, 0.005, 0.50, 8.490, 0.042),
(3330, 1165, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3331, 1167, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3332, 1167, 714, 'ICN8888790648522539008', '5424799926978714545', 0.000, 0.000, 0.00, 16.060, 0.000),
(3333, 1167, 714, 'ICN8888790648522539008', '5424799926978714545', 0.257, 0.094, 9.40, 16.060, 1.510),
(3334, 1167, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3335, 1167, 96, 'ICN8888790648522539008', '8585093516795170284', 0.000, 0.000, 0.00, 3.010, 0.000),
(3336, 1167, 96, 'ICN8888790648522539008', '8585093516795170284', 0.246, 0.090, 9.00, 3.010, 0.271),
(3337, 1167, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3338, 1167, 95, 'ICN8888790648522539008', '8811682051984321777', 0.000, 0.000, 0.00, 8.490, 0.000),
(3339, 1167, 95, 'ICN8888790648522539008', '8811682051984321777', 0.014, 0.005, 0.50, 8.490, 0.042),
(3340, 1167, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3341, 1168, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3342, 1168, 714, 'ICN8888790648522539008', '5424799926978714545', 0.000, 0.000, 0.00, 16.060, 0.000),
(3343, 1168, 714, 'ICN8888790648522539008', '5424799926978714545', 0.257, 0.094, 9.40, 16.060, 1.510),
(3344, 1168, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3345, 1168, 96, 'ICN8888790648522539008', '8585093516795170284', 0.000, 0.000, 0.00, 3.010, 0.000),
(3346, 1168, 96, 'ICN8888790648522539008', '8585093516795170284', 0.246, 0.090, 9.00, 3.010, 0.271),
(3347, 1168, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3348, 1168, 95, 'ICN8888790648522539008', '8811682051984321777', 0.000, 0.000, 0.00, 8.490, 0.000),
(3349, 1168, 95, 'ICN8888790648522539008', '8811682051984321777', 0.014, 0.005, 0.50, 8.490, 0.042),
(3350, 1168, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3351, 1170, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3352, 1170, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3353, 1170, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3354, 1170, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3355, 1171, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3356, 1171, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3357, 1171, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3358, 1171, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3359, 1173, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.985, 0.362, 36.20, 16.060, 5.814),
(3360, 1173, 96, 'ICN8888790648522539008', 'Low_Grade', 0.178, 0.065, 6.50, 3.010, 0.196),
(3361, 1173, 95, 'ICN8888790648522539008', 'High_Grade', 0.189, 0.069, 6.90, 8.490, 0.586),
(3362, 1173, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.009, 0.003, 0.30, 6.070, 0.018),
(3363, 1175, 714, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.854, 0.311, 31.10, 16.060, 4.995),
(3364, 1175, 96, 'ICN8888790648522539008', 'Low_Grade', 0.257, 0.094, 9.40, 3.010, 0.283),
(3365, 1175, 95, 'ICN8888790648522539008', 'High_Grade', 0.246, 0.090, 9.00, 8.490, 0.764),
(3366, 1175, 97, 'ICN8888790648522539008', 'Mid_Grade', 0.014, 0.005, 0.50, 6.070, 0.030),
(3367, 1176, 105, 'ICN5262563530192074018', 'Empty', 7.106, 0.082, 8.20, 0.000, 0.000),
(3368, 1176, 102, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 34.775, 0.401, 40.10, 1.040, 0.417),
(3369, 1176, 104, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 28.229, 0.326, 32.60, 0.190, 0.062),
(3370, 1176, 103, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 16.538, 0.191, 19.10, 0.400, 0.076),
(3371, 1177, 415, 'ICN5262563530192074018', 'Empty', 1.466, 0.050, 5.00, -0.160, -0.008),
(3372, 1177, 412, 'ICN5262563530192074018', 'MultiLayer_HighGrade', 10.169, 0.345, 34.50, 0.680, 0.235),
(3373, 1177, 414, 'ICN5262563530192074018', 'SingleLayer_LowGrade', 9.434, 0.320, 32.00, 0.060, 0.019),
(3374, 1177, 413, 'ICN5262563530192074018', 'Two_Layer_MidGrade', 8.409, 0.285, 28.50, 0.220, 0.063),
(3450, 1208, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.900, 0.916, 91.60, 19.340, 17.715),
(3451, 1208, 489, 'ICN8888790648522539008', 'Low_Grade', 0.009, 0.009, 0.90, 3.110, 0.028),
(3452, 1208, 488, 'ICN8888790648522539008', 'High_Grade', 0.060, 0.061, 6.10, 17.940, 1.094),
(3453, 1208, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.013, 0.013, 1.30, 6.380, 0.083),
(3454, 1209, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.896, 0.678, 67.80, 19.340, 13.113),
(3455, 1209, 489, 'ICN8888790648522539008', 'Low_Grade', 0.060, 0.045, 4.50, 3.110, 0.140),
(3456, 1209, 488, 'ICN8888790648522539008', 'High_Grade', 0.361, 0.273, 27.30, 17.940, 4.898),
(3457, 1209, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.004, 0.003, 0.30, 6.380, 0.019),
(3458, 1210, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.887, 0.724, 72.40, 19.340, 14.002),
(3459, 1210, 489, 'ICN8888790648522539008', 'Low_Grade', 0.160, 0.131, 13.10, 3.110, 0.407),
(3460, 1210, 488, 'ICN8888790648522539008', 'High_Grade', 0.170, 0.139, 13.90, 17.940, 2.494),
(3461, 1210, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.008, 0.007, 0.70, 6.380, 0.045),
(3462, 1211, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.900, 0.968, 96.80, 19.340, 18.721),
(3463, 1211, 489, 'ICN8888790648522539008', 'Low_Grade', 0.005, 0.005, 0.50, 3.110, 0.016),
(3464, 1211, 488, 'ICN8888790648522539008', 'High_Grade', 0.020, 0.022, 2.20, 17.940, 0.395),
(3465, 1211, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.005, 0.005, 0.50, 6.380, 0.032),
(3466, 1212, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.001, 0.001, 0.10, 19.340, 0.019),
(3467, 1212, 489, 'ICN8888790648522539008', 'Low_Grade', 0.051, 0.032, 3.20, 3.110, 0.100),
(3468, 1212, 488, 'ICN8888790648522539008', 'High_Grade', 0.681, 0.432, 43.20, 17.940, 7.750),
(3469, 1212, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.842, 0.535, 53.50, 6.380, 3.413),
(3470, 1213, 105, 'ICN199095167511166976', 'Empty', 0.030, 0.031, 3.10, 0.000, 0.000),
(3471, 1213, 102, 'ICN199095167511166976', 'MultiLayer_HighGrade', 0.048, 0.049, 4.90, 1.050, 0.051),
(3472, 1213, 104, 'ICN199095167511166976', 'SingleLayer_LowGrade', 0.264, 0.270, 27.00, 0.190, 0.051),
(3473, 1213, 103, 'ICN199095167511166976', 'Two_Layer_MidGrade', 0.635, 0.650, 65.00, 0.400, 0.260),
(3593, 1259, 501, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.057, 0.070, 7.00, 45.040, 3.153),
(3594, 1259, 500, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.007, 0.009, 0.90, 277.720, 2.499),
(3595, 1259, 499, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.582, 0.712, 71.20, 137.870, 98.163),
(3596, 1259, 502, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.171, 0.209, 20.90, 24.300, 5.079),
(3597, 1260, 477, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.079, 0.129, 12.90, 10.110, 1.304),
(3598, 1260, 479, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.179, 0.292, 29.20, 3.440, 1.004),
(3599, 1260, 478, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.354, 0.578, 57.80, 4.800, 2.774),
(3720, 1300, 498, 'ICN4269223330747252736', 'Empty', 0.400, 0.322, 32.20, 0.000, 0.000),
(3721, 1300, 495, 'ICN4269223330747252736', 'MultiLayer_HighGrade', 0.000, 0.000, 0.00, 1.210, 0.000),
(3722, 1300, 497, 'ICN4269223330747252736', 'SingleLayer_LowGrade', 0.840, 0.676, 67.60, 0.710, 0.480),
(3723, 1300, 496, 'ICN4269223330747252736', 'Two_Layer_MidGrade', 0.002, 0.002, 0.20, 1.000, 0.002),
(3724, 1301, 503, 'ICN6977681689343872147', 'Grade_AAA_Shielded', 0.707, 0.359, 35.90, 13.510, 4.850),
(3725, 1301, 504, 'ICN6977681689343872147', 'Grade_AA_Finger_Conn', 0.523, 0.266, 26.60, 7.060, 1.878),
(3726, 1301, 505, 'ICN6977681689343872147', 'Grade_A_Pinned_Conn', 0.154, 0.078, 7.80, 2.970, 0.232),
(3727, 1301, 506, 'ICN6977681689343872147', 'Grade_B_Low_PMs', 0.471, 0.239, 23.90, 5.750, 1.374),
(3728, 1301, 507, 'ICN6977681689343872147', 'Grade_C_Heavy_Copper', 0.112, 0.057, 5.70, -3.870, -0.221),
(3729, 1302, 508, 'ICN7840664651223839192', 'Server_Boards_High_Grade', 0.167, 0.434, 43.40, 9.970, 4.327),
(3730, 1302, 509, 'ICN7840664651223839192', 'Server_Boards_Low_Grade', 0.218, 0.566, 56.60, 6.040, 3.419),
(3731, 1303, 477, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.870, 0.968, 96.80, 10.020, 9.699),
(3732, 1303, 479, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.005, 0.006, 0.60, 3.430, 0.021),
(3733, 1303, 478, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.024, 0.027, 2.70, 4.780, 0.129),
(3734, 1304, 723, 'ICN8888790648522539008', 'UltraHG_HardCoat', 0.900, 0.905, 90.50, 18.780, 16.996),
(3735, 1304, 489, 'ICN8888790648522539008', 'Low_Grade', 0.075, 0.075, 7.50, 3.030, 0.227),
(3736, 1304, 488, 'ICN8888790648522539008', 'High_Grade', 0.017, 0.017, 1.70, 17.400, 0.296),
(3737, 1304, 490, 'ICN8888790648522539008', 'Mid_Grade', 0.002, 0.002, 0.20, 6.200, 0.012),
(3738, 1305, 498, 'ICN4269223330747252736', 'Empty', 0.400, 0.322, 32.20, 0.000, 0.000),
(3739, 1305, 495, 'ICN4269223330747252736', 'MultiLayer_HighGrade', 0.000, 0.000, 0.00, 1.210, 0.000),
(3740, 1305, 497, 'ICN4269223330747252736', 'SingleLayer_LowGrade', 0.840, 0.676, 67.60, 0.710, 0.480),
(3741, 1305, 496, 'ICN4269223330747252736', 'Two_Layer_MidGrade', 0.002, 0.002, 0.20, 1.000, 0.002),
(3863, 1343, 243, 'ICN4797712617434078908', 'High_Grade_1979_1995', 0.172, 0.182, 18.20, 6.100, 1.110),
(3864, 1343, 245, 'ICN4797712617434078908', 'Low_Grade_2004_Latest', 0.048, 0.051, 5.10, 1.100, 0.056),
(3865, 1343, 244, 'ICN4797712617434078908', 'Mid_Grade_1996_2003', 0.727, 0.768, 76.80, 2.700, 2.074),
(3924, 1371, 84, 'ICN4463194774072983552', 'High_Grade', 0.108, 0.111, 11.10, 5.070, 0.563),
(3925, 1371, 86, 'ICN4463194774072983552', 'Low_Yield', 0.109, 0.112, 11.20, 1.530, 0.171),
(3926, 1371, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.061, 0.063, 6.30, 2.430, 0.153),
(3927, 1371, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.608, 0.626, 62.60, 6.520, 4.082),
(3928, 1372, 84, 'ICN4463194774072983552', 'High_Grade', 0.086, 0.099, 9.90, 5.070, 0.502),
(3929, 1372, 86, 'ICN4463194774072983552', 'Low_Yield', 0.025, 0.029, 2.90, 1.530, 0.044),
(3930, 1372, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.012, 0.014, 1.40, 2.430, 0.034),
(3931, 1372, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.733, 0.842, 84.20, 6.520, 5.490),
(3932, 1373, 84, 'ICN4463194774072983552', 'High_Grade', 0.108, 0.111, 11.10, 5.070, 0.563),
(3933, 1373, 86, 'ICN4463194774072983552', 'Low_Yield', 0.109, 0.112, 11.20, 1.530, 0.171),
(3934, 1373, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.061, 0.063, 6.30, 2.430, 0.153),
(3935, 1373, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.608, 0.626, 62.60, 6.520, 4.082),
(3936, 1375, 84, 'ICN4463194774072983552', 'High_Grade', 0.017, 0.020, 2.00, 5.070, 0.101),
(3937, 1375, 86, 'ICN4463194774072983552', 'Low_Yield', 0.081, 0.094, 9.40, 1.530, 0.144),
(3938, 1375, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.155, 0.181, 18.10, 2.430, 0.440),
(3939, 1375, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.400, 0.466, 46.60, 6.520, 3.038),
(3940, 1376, 84, 'ICN4463194774072983552', 'High_Grade', 0.017, 0.020, 2.00, 5.070, 0.101),
(3941, 1376, 86, 'ICN4463194774072983552', 'Low_Yield', 0.081, 0.094, 9.40, 1.530, 0.144),
(3942, 1376, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.155, 0.181, 18.10, 2.430, 0.440),
(3943, 1376, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.400, 0.466, 46.60, 6.520, 3.038),
(3944, 1377, 84, 'ICN4463194774072983552', 'High_Grade', 0.017, 0.020, 2.00, 5.060, 0.101),
(3945, 1377, 86, 'ICN4463194774072983552', 'Low_Yield', 0.081, 0.094, 9.40, 1.530, 0.144),
(3946, 1377, 726, 'ICN4463194774072983552', 'LowYeild_Metal', 0.205, 0.239, 23.90, 1.000, 0.239),
(3947, 1377, 85, 'ICN4463194774072983552', 'Mid_Grade', 0.155, 0.181, 18.10, 2.430, 0.440),
(3948, 1377, 738, 'ICN4463194774072983552', 'Ultra_High_Grade', 0.400, 0.466, 46.60, 6.520, 3.038),
(4042, 1399, 113, 'ICN8790309591045898240', 'Grade_A_Pinned_Conn', 0.114, 0.068, 6.80, 7.150, 0.486),
(4043, 1399, 111, 'ICN8790309591045898240', 'Grade_AAA_Shielded', 0.337, 0.202, 20.20, 13.830, 2.794),
(4044, 1399, 112, 'ICN8790309591045898240', 'Grade_AA_Finger_Conn', 0.214, 0.128, 12.80, 8.090, 1.036),
(4045, 1399, 115, 'ICN8790309591045898240', 'Grade_C_Heavy_Copper', 0.121, 0.072, 7.20, 1.750, 0.126),
(4046, 1399, 114, 'ICN8790309591045898240', 'Grade_B_Low_PMs', 0.049, 0.029, 2.90, 2.560, 0.074),
(4056, 1424, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4057, 1424, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4058, 1424, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4059, 1424, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4060, 1424, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4061, 1425, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4062, 1425, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4063, 1425, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4064, 1425, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4065, 1425, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4066, 1431, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4067, 1431, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4068, 1431, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4069, 1431, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4070, 1431, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4071, 1432, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4072, 1432, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4073, 1432, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4074, 1432, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4075, 1432, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4076, 1433, 84, 'ICN2556984659137265664', 'High_Grade', 0.053, 0.051, 5.10, 5.120, 0.261),
(4077, 1433, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.283, 0.274, 27.40, 1.020, 0.279),
(4078, 1433, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.107, 0.104, 10.40, 6.600, 0.686),
(4079, 1433, 86, 'ICN2556984659137265664', 'Low_Yield', 0.321, 0.311, 31.10, 1.570, 0.488),
(4080, 1433, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.269, 0.260, 26.00, 2.470, 0.642),
(4081, 1435, 84, 'ICN2556984659137265664', 'High_Grade', 0.053, 0.051, 5.10, 5.120, 0.261),
(4082, 1435, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.283, 0.274, 27.40, 1.020, 0.279),
(4083, 1435, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.107, 0.104, 10.40, 6.600, 0.686),
(4084, 1435, 86, 'ICN2556984659137265664', 'Low_Yield', 0.321, 0.311, 31.10, 1.570, 0.488),
(4085, 1435, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.269, 0.260, 26.00, 2.470, 0.642),
(4086, 1438, 84, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.088, 8.80, 5.120, 0.451),
(4087, 1438, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.233, 0.265, 26.50, 1.020, 0.270),
(4088, 1438, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.168, 0.191, 19.10, 6.600, 1.261),
(4089, 1438, 86, 'ICN2556984659137265664', 'Low_Yield', 0.121, 0.138, 13.80, 1.570, 0.217),
(4090, 1438, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.280, 0.319, 31.90, 2.470, 0.788),
(4091, 1441, 84, 'ICN2556984659137265664', 'High_Grade', 0.079, 0.079, 7.90, 5.120, 0.404),
(4092, 1441, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.566, 0.567, 56.70, 1.020, 0.578),
(4093, 1441, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.134, 0.134, 13.40, 6.600, 0.884),
(4094, 1441, 86, 'ICN2556984659137265664', 'Low_Yield', 0.086, 0.086, 8.60, 1.570, 0.135),
(4095, 1441, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.133, 0.133, 13.30, 2.470, 0.329),
(4096, 1446, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4097, 1446, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4098, 1446, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4099, 1446, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4100, 1446, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4101, 1448, 84, 'ICN2556984659137265664', 'High_Grade', 0.083, 0.099, 9.90, 5.120, 0.507),
(4102, 1448, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.377, 0.449, 44.90, 1.020, 0.458),
(4103, 1448, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.165, 0.197, 19.70, 6.600, 1.300),
(4104, 1448, 86, 'ICN2556984659137265664', 'Low_Yield', 0.139, 0.166, 16.60, 1.570, 0.261),
(4105, 1448, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.075, 0.089, 8.90, 2.470, 0.220),
(4106, 1450, 84, 'ICN2556984659137265664', 'High_Grade', 0.107, 0.093, 9.30, 5.120, 0.476),
(4107, 1450, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.725, 0.633, 63.30, 1.020, 0.646),
(4108, 1450, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.119, 0.104, 10.40, 6.600, 0.686),
(4109, 1450, 86, 'ICN2556984659137265664', 'Low_Yield', 0.083, 0.072, 7.20, 1.570, 0.113),
(4110, 1450, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.111, 0.097, 9.70, 2.470, 0.240),
(4111, 1458, 84, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.060, 6.00, 5.120, 0.307),
(4112, 1458, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.203, 0.248, 24.80, 1.020, 0.253),
(4113, 1458, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.206, 0.252, 25.20, 6.600, 1.663),
(4114, 1458, 86, 'ICN2556984659137265664', 'Low_Yield', 0.101, 0.123, 12.30, 1.570, 0.193),
(4115, 1458, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.259, 0.317, 31.70, 2.470, 0.783),
(4116, 1462, 107, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.125, 0.115, 11.50, 195.180, 22.446),
(4117, 1462, 109, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.831, 0.767, 76.70, 34.290, 26.300),
(4118, 1462, 106, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.056, 0.052, 5.20, 127.400, 6.625),
(4119, 1462, 108, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.071, 0.066, 6.60, 78.380, 5.173),
(4120, 1463, 107, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.802, 0.773, 77.30, 195.180, 150.874),
(4121, 1463, 109, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.046, 0.044, 4.40, 34.290, 1.509),
(4122, 1463, 106, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.130, 0.125, 12.50, 127.400, 15.925),
(4123, 1463, 108, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.059, 0.057, 5.70, 78.380, 4.468),
(4124, 1466, 107, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.123, 0.111, 11.10, 195.180, 21.665),
(4125, 1466, 109, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.906, 0.815, 81.50, 34.290, 27.946),
(4126, 1466, 106, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.034, 0.031, 3.10, 127.400, 3.949),
(4127, 1466, 108, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.048, 0.043, 4.30, 78.380, 3.370),
(4128, 1469, 105, 'ICN5080750872976162816', 'Empty', 0.048, 0.044, 4.40, 0.000, 0.000),
(4129, 1469, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.056, 0.052, 5.20, 0.580, 0.030),
(4130, 1469, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.907, 0.835, 83.50, 0.200, 0.167),
(4131, 1469, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.075, 0.069, 6.90, 1.100, 0.076),
(4132, 1471, 105, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, 0.000, 0.000),
(4133, 1471, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.580, 0.210),
(4134, 1471, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.200, 0.022),
(4135, 1471, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.100, 0.274),
(4136, 1474, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.691, 0.602, 60.20, 31.860, 19.180),
(4137, 1474, 96, 'ICN5348152100851286016', 'Low_Grade', 0.052, 0.045, 4.50, 1.000, 0.045),
(4138, 1474, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.181, 0.158, 15.80, 7.250, 1.146),
(4139, 1474, 95, 'ICN5348152100851286016', 'High_Grade', 0.223, 0.194, 19.40, 21.830, 4.235),
(4140, 1475, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.164, 0.156, 15.60, 31.860, 4.970),
(4141, 1475, 96, 'ICN5348152100851286016', 'Low_Grade', 0.544, 0.519, 51.90, 1.000, 0.519),
(4142, 1475, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.146, 0.139, 13.90, 7.250, 1.008),
(4143, 1475, 95, 'ICN5348152100851286016', 'High_Grade', 0.195, 0.186, 18.60, 21.830, 4.060),
(4144, 1478, 525, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.051, 0.047, 4.70, 0.830, 0.039),
(4145, 1478, 524, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.053, 0.049, 4.90, 2.970, 0.146),
(4146, 1478, 523, 'ICN5491985813950431232', 'Mid_Grade', 0.689, 0.637, 63.70, 3.400, 2.166),
(4147, 1478, 522, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.289, 0.267, 26.70, 3.990, 1.065),
(4148, 1479, 525, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.151, 0.148, 14.80, 0.830, 0.123),
(4149, 1479, 524, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.113, 0.111, 11.10, 2.970, 0.330),
(4150, 1479, 523, 'ICN5491985813950431232', 'Mid_Grade', 0.461, 0.453, 45.30, 3.400, 1.540),
(4151, 1479, 522, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.292, 0.287, 28.70, 3.990, 1.145),
(4152, 1487, 535, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.148, 0.129, 12.90, 2.080, 0.268),
(4153, 1487, 536, 'ICN7981429672816672768', 'High_End_CRTs', 0.680, 0.591, 59.10, 1.110, 0.656),
(4154, 1487, 534, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.322, 0.280, 28.00, 1.210, 0.339),
(4155, 1488, 535, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.209, 0.178, 17.80, 2.080, 0.370),
(4156, 1488, 536, 'ICN7981429672816672768', 'High_End_CRTs', 0.071, 0.060, 6.00, 1.110, 0.067),
(4157, 1488, 534, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.894, 0.761, 76.10, 1.210, 0.921),
(4158, 1491, 101, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.050, 0.050, 5.00, 8.290, 0.415),
(4159, 1491, 99, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.875, 0.867, 86.70, 18.690, 16.204),
(4160, 1491, 100, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.039, 0.039, 3.90, 14.510, 0.566),
(4161, 1491, 98, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.045, 0.045, 4.50, 29.930, 1.347),
(4162, 1492, 89, 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 0.326, 0.290, 29.00, 4.200, 1.218),
(4163, 1492, 88, 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 0.095, 0.084, 8.40, 10.970, 0.921),
(4164, 1492, 87, 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 0.705, 0.626, 62.60, 6.920, 4.332),
(4165, 1493, 89, 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 0.052, 0.055, 5.50, 4.200, 0.231),
(4166, 1493, 88, 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 0.036, 0.038, 3.80, 10.970, 0.417),
(4167, 1493, 87, 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 0.854, 0.907, 90.70, 6.920, 6.276),
(4168, 1497, 94, 'ICN2261506302335254528', 'High_Grade', 0.604, 0.467, 46.70, 7.900, 3.689),
(4169, 1497, 93, 'ICN2261506302335254528', 'Low_Grade', 0.690, 0.533, 53.30, 5.960, 3.177),
(4170, 1498, 94, 'ICN2261506302335254528', 'High_Grade', 0.714, 0.705, 70.50, 7.900, 5.570),
(4171, 1498, 93, 'ICN2261506302335254528', 'Low_Grade', 0.299, 0.295, 29.50, 5.960, 1.758),
(4172, 1501, 111, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.210, 0.147, 14.70, 14.060, 2.067),
(4173, 1501, 113, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.087, 0.061, 6.10, 7.240, 0.442),
(4174, 1501, 114, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.216, 0.151, 15.10, 2.600, 0.393),
(4175, 1501, 115, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.777, 0.543, 54.30, 1.800, 0.977),
(4176, 1501, 112, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.141, 0.099, 9.90, 8.210, 0.813),
(4177, 1505, 92, 'ICN3203040099432398848', 'High_Grade', 0.099, 0.098, 9.80, 48.150, 4.719),
(4178, 1505, 90, 'ICN3203040099432398848', 'Low_Grade', 0.826, 0.820, 82.00, 19.510, 15.998),
(4179, 1505, 91, 'ICN3203040099432398848', 'Mid_Grade', 0.082, 0.081, 8.10, 29.090, 2.356),
(4180, 1506, 92, 'ICN3203040099432398848', 'High_Grade', 0.110, 0.106, 10.60, 48.150, 5.104),
(4181, 1506, 90, 'ICN3203040099432398848', 'Low_Grade', 0.714, 0.687, 68.70, 19.510, 13.403),
(4182, 1506, 91, 'ICN3203040099432398848', 'Mid_Grade', 0.215, 0.207, 20.70, 29.090, 6.022),
(4183, 1507, 84, 'ICN2556984659137265664', 'High_Grade', 0.107, 0.093, 9.30, 5.120, 0.476),
(4184, 1507, 726, 'ICN2556984659137265664', 'LowYeild_Metal', 0.549, 0.479, 47.90, 1.020, 0.489),
(4185, 1507, 738, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.157, 0.137, 13.70, 6.600, 0.904),
(4186, 1507, 86, 'ICN2556984659137265664', 'Low_Yield', 0.124, 0.108, 10.80, 1.570, 0.170),
(4187, 1507, 85, 'ICN2556984659137265664', 'Mid_Grade', 0.210, 0.183, 18.30, 2.470, 0.452),
(4188, 1508, 402, 'ICN3203040099432398848', 'High_Grade', 0.110, 0.106, 10.60, 52.960, 5.614),
(4189, 1508, 400, 'ICN3203040099432398848', 'Low_Grade', 0.714, 0.687, 68.70, 21.460, 14.743),
(4190, 1508, 401, 'ICN3203040099432398848', 'Mid_Grade', 0.215, 0.207, 20.70, 10.160, 2.103),
(4191, 1509, 402, 'ICN3203040099432398848', 'High_Grade', 0.110, 0.106, 10.60, 52.960, 5.614),
(4192, 1509, 400, 'ICN3203040099432398848', 'Low_Grade', 0.714, 0.687, 68.70, 21.460, 14.743),
(4193, 1509, 401, 'ICN3203040099432398848', 'Mid_Grade', 0.215, 0.207, 20.70, 10.160, 2.103),
(4194, 1510, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.826, 0.868, 86.80, 1.900, 1.649),
(4195, 1510, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.055, 0.058, 5.80, 2.110, 0.122),
(4196, 1510, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.071, 0.075, 7.50, 0.830, 0.062),
(4197, 1511, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.262, 0.227, 22.70, 15.280, 3.469),
(4198, 1511, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.075, 0.065, 6.50, 8.470, 0.551),
(4199, 1511, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.043, 0.037, 3.70, 3.040, 0.112),
(4200, 1511, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.328, 0.284, 28.40, 2.050, 0.582),
(4201, 1511, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.446, 0.386, 38.60, 9.430, 3.640),
(4202, 1515, 602, 'ICN5080750872976162816', 'Empty', 0.076, 0.070, 7.00, -0.360, -0.025),
(4203, 1515, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.088, 0.081, 8.10, 0.550, 0.045),
(4204, 1515, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.875, 0.809, 80.90, 0.270, 0.218),
(4205, 1515, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.043, 0.040, 4.00, 0.950, 0.038),
(4206, 1516, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.209, 0.178, 17.80, 1.900, 0.338),
(4207, 1516, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.071, 0.060, 6.00, 2.110, 0.127),
(4208, 1516, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.894, 0.761, 76.10, 0.830, 0.632),
(4209, 1517, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.051, 0.048, 4.80, 47.090, 2.260),
(4210, 1517, 593, 'ICN5348152100851286016', 'Low_Grade', 0.415, 0.390, 39.00, 2.410, 0.940),
(4211, 1517, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.503, 0.473, 47.30, 6.870, 3.250),
(4212, 1517, 592, 'ICN5348152100851286016', 'High_Grade', 0.095, 0.089, 8.90, 15.630, 1.391),
(4213, 1518, 598, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.033, 0.032, 3.20, 9.830, 0.315),
(4214, 1518, 596, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.783, 0.762, 76.20, 22.190, 16.909),
(4215, 1518, 597, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.086, 0.084, 8.40, 16.740, 1.406),
(4216, 1518, 595, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.126, 0.123, 12.30, 36.660, 4.509),
(4217, 1528, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.134, 0.146, 14.60, 1.900, 0.277),
(4218, 1528, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.054, 0.059, 5.90, 2.110, 0.124),
(4219, 1528, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.730, 0.795, 79.50, 0.830, 0.660),
(4220, 1529, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.209, 0.178, 17.80, 1.900, 0.338),
(4221, 1529, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.071, 0.060, 6.00, 2.110, 0.127),
(4222, 1529, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.894, 0.761, 76.10, 0.830, 0.632),
(4223, 1530, 535, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.459, 0.378, 37.80, 2.080, 0.786),
(4224, 1530, 536, 'ICN7981429672816672768', 'High_End_CRTs', 0.290, 0.239, 23.90, 1.110, 0.265),
(4225, 1530, 534, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.464, 0.383, 38.30, 1.210, 0.463),
(4226, 1533, 415, 'ICN5080750872976162816', 'Empty', 0.070, 0.074, 7.40, -0.220, -0.016),
(4227, 1533, 413, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.050, 0.053, 5.30, 0.330, 0.017),
(4228, 1533, 414, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.594, 0.625, 62.50, 0.090, 0.056),
(4229, 1533, 412, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.236, 0.248, 24.80, 0.980, 0.243),
(4230, 1534, 415, 'ICN5080750872976162816', 'Empty', 0.148, 0.164, 16.40, -0.220, -0.036),
(4231, 1534, 413, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.115, 0.127, 12.70, 0.330, 0.042),
(4232, 1534, 414, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.270, 0.299, 29.90, 0.090, 0.027),
(4233, 1534, 412, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.369, 0.409, 40.90, 0.980, 0.401),
(4234, 1535, 404, 'ICN2261506302335254528', 'High_Grade', 0.298, 0.271, 27.10, 6.270, 1.699),
(4235, 1535, 403, 'ICN2261506302335254528', 'Low_Grade', 0.801, 0.729, 72.90, 4.300, 3.135),
(4236, 1536, 415, 'ICN5080750872976162816', 'Empty', 0.179, 0.153, 15.30, -0.220, -0.034),
(4237, 1536, 413, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.094, 0.081, 8.10, 0.330, 0.027),
(4238, 1536, 414, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.810, 0.694, 69.40, 0.090, 0.062),
(4239, 1536, 412, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.084, 0.072, 7.20, 0.980, 0.071),
(4245, 1540, 399, 'ICN239530807134257152', 'LowGrade_2014_and_Netbooks', 0.177, 0.175, 17.50, 4.620, 0.809),
(4246, 1540, 398, 'ICN239530807134257152', 'MidGrade_Pentium_AMD', 0.021, 0.021, 2.10, 12.070, 0.253),
(4247, 1540, 397, 'ICN239530807134257152', 'HighGrade_Pre2002_and_Military', 0.812, 0.804, 80.40, 7.610, 6.118),
(4248, 1541, 420, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.369, 0.226, 22.60, 11.880, 2.685),
(4249, 1541, 422, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.263, 0.161, 16.10, 3.200, 0.515),
(4250, 1541, 423, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.147, 0.090, 9.00, 0.960, 0.086),
(4251, 1541, 424, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.388, 0.237, 23.70, 1.010, 0.239),
(4252, 1541, 421, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.469, 0.287, 28.70, 8.210, 2.356),
(4253, 1544, 415, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.220, -0.061),
(4254, 1544, 413, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.330, 0.119),
(4255, 1544, 414, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.090, 0.010),
(4256, 1544, 412, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 0.980, 0.244),
(4257, 1545, 404, 'ICN2261506302335254528', 'High_Grade', 0.448, 0.402, 40.20, 6.270, 2.521),
(4258, 1545, 403, 'ICN2261506302335254528', 'Low_Grade', 0.666, 0.598, 59.80, 4.300, 2.571),
(4259, 1553, 538, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.862, 0.891, 89.10, 0.640, 0.570),
(4260, 1553, 539, 'ICN7981429672816672768', 'High_End_CRTs', 0.045, 0.047, 4.70, 0.820, 0.039),
(4261, 1553, 537, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.060, 0.062, 6.20, 0.280, 0.017),
(4262, 1554, 500, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.360, 0.354, 35.40, 278.940, 98.745),
(4263, 1554, 502, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.430, 0.423, 42.30, 24.430, 10.334),
(4264, 1554, 499, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.052, 0.051, 5.10, 138.490, 7.063),
(4265, 1554, 501, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.072, 0.071, 7.10, 45.270, 3.214),
(4266, 1555, 394, 'ICN2556984659137265664', 'High_Grade', 0.067, 0.064, 6.40, 5.260, 0.337),
(4267, 1555, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.042, 0.040, 4.00, 0.810, 0.032),
(4268, 1555, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.732, 0.696, 69.60, 4.910, 3.417),
(4269, 1555, 396, 'ICN2556984659137265664', 'Low_Yield', 0.045, 0.043, 4.30, 2.130, 0.092),
(4270, 1555, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.165, 0.157, 15.70, 3.150, 0.495),
(4271, 1556, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.369, 0.272, 27.20, 1.900, 0.517),
(4272, 1556, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.044, 0.032, 3.20, 2.110, 0.068),
(4273, 1556, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.944, 0.696, 69.60, 0.830, 0.578),
(4274, 1557, 581, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.062, 6.20, 8.330, 0.516),
(4275, 1557, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.236, 0.225, 22.50, 1.280, 0.288),
(4276, 1557, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.527, 0.502, 50.20, 9.640, 4.839),
(4277, 1557, 583, 'ICN2556984659137265664', 'Low_Yield', 0.034, 0.032, 3.20, 1.810, 0.058),
(4278, 1557, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.187, 0.178, 17.80, 2.370, 0.422),
(4279, 1558, 581, 'ICN2556984659137265664', 'High_Grade', 0.059, 0.056, 5.60, 8.330, 0.466),
(4280, 1558, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.212, 0.202, 20.20, 1.280, 0.259),
(4281, 1558, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.474, 0.452, 45.20, 9.640, 4.357),
(4282, 1558, 583, 'ICN2556984659137265664', 'Low_Yield', 0.031, 0.030, 3.00, 1.810, 0.054),
(4283, 1558, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.168, 0.160, 16.00, 2.370, 0.379),
(4284, 1559, 394, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.062, 6.20, 5.260, 0.326),
(4285, 1559, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.234, 0.223, 22.30, 0.590, 0.132);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(4286, 1559, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.530, 0.505, 50.50, 6.110, 3.086),
(4287, 1559, 396, 'ICN2556984659137265664', 'Low_Yield', 0.034, 0.032, 3.20, 2.130, 0.068),
(4288, 1559, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.187, 0.178, 17.80, 3.150, 0.561),
(4289, 1565, 105, 'ICN5080750872976162816', 'Empty', 0.304, 0.318, 31.80, 0.000, 0.000),
(4290, 1565, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.282, 0.295, 29.50, 0.580, 0.171),
(4291, 1565, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.103, 0.108, 10.80, 0.200, 0.022),
(4292, 1565, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.268, 0.280, 28.00, 1.100, 0.308),
(4293, 1566, 105, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, 0.000, 0.000),
(4294, 1566, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.580, 0.184),
(4295, 1566, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4296, 1566, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.100, 0.344),
(4297, 1567, 105, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, 0.000, 0.000),
(4298, 1567, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.580, 0.184),
(4299, 1567, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4300, 1567, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.100, 0.344),
(4301, 1568, 105, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, 0.000, 0.000),
(4302, 1568, 103, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.580, 0.184),
(4303, 1568, 104, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4304, 1568, 102, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.100, 0.344),
(4305, 1569, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.078, 0.071, 7.10, 22.630, 1.607),
(4306, 1569, 96, 'ICN5348152100851286016', 'Low_Grade', 0.095, 0.087, 8.70, 1.000, 0.087),
(4307, 1569, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.748, 0.684, 68.40, 7.250, 4.959),
(4308, 1569, 95, 'ICN5348152100851286016', 'High_Grade', 0.172, 0.157, 15.70, 21.830, 3.427),
(4333, 1578, 602, 'ICN5080750872976162816', 'Empty', 0.094, 0.073, 7.30, -0.360, -0.026),
(4334, 1578, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.186, 0.144, 14.40, 0.550, 0.079),
(4335, 1578, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.586, 0.453, 45.30, 0.270, 0.122),
(4336, 1578, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.298, 0.230, 23.00, 0.950, 0.219),
(4337, 1580, 602, 'ICN5080750872976162816', 'Empty', 0.064, 0.062, 6.20, -0.360, -0.022),
(4338, 1580, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.446, 0.430, 43.00, 0.550, 0.237),
(4339, 1580, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.175, 0.169, 16.90, 0.270, 0.046),
(4340, 1580, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.248, 0.239, 23.90, 0.950, 0.227),
(4341, 1581, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.043, 0.033, 3.30, 47.090, 1.554),
(4342, 1581, 593, 'ICN5348152100851286016', 'Low_Grade', 0.801, 0.622, 62.20, 2.410, 1.499),
(4343, 1581, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.283, 0.220, 22.00, 6.870, 1.511),
(4344, 1581, 592, 'ICN5348152100851286016', 'High_Grade', 0.032, 0.025, 2.50, 15.630, 0.391),
(4345, 1582, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.059, 0.053, 5.30, 47.090, 2.496),
(4346, 1582, 593, 'ICN5348152100851286016', 'Low_Grade', 0.101, 0.091, 9.10, 2.410, 0.219),
(4347, 1582, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.771, 0.691, 69.10, 6.870, 4.747),
(4348, 1582, 592, 'ICN5348152100851286016', 'High_Grade', 0.072, 0.065, 6.50, 15.630, 1.016),
(4349, 1583, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.058, 0.054, 5.40, 47.090, 2.543),
(4350, 1583, 593, 'ICN5348152100851286016', 'Low_Grade', 0.528, 0.489, 48.90, 2.410, 1.178),
(4351, 1583, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.266, 0.246, 24.60, 6.870, 1.690),
(4352, 1583, 592, 'ICN5348152100851286016', 'High_Grade', 0.120, 0.111, 11.10, 15.630, 1.735),
(4353, 1584, 602, 'ICN5080750872976162816', 'Empty', 0.275, 0.287, 28.70, -0.360, -0.103),
(4354, 1584, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.253, 0.264, 26.40, 0.550, 0.145),
(4355, 1584, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.093, 0.097, 9.70, 0.270, 0.026),
(4356, 1584, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.241, 0.252, 25.20, 0.950, 0.239),
(4357, 1585, 602, 'ICN5080750872976162816', 'Empty', 0.275, 0.287, 28.70, -0.360, -0.103),
(4358, 1585, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.253, 0.264, 26.40, 0.550, 0.145),
(4359, 1585, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.093, 0.097, 9.70, 0.270, 0.026),
(4360, 1585, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.241, 0.252, 25.20, 0.950, 0.239),
(4361, 1586, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.070, 0.064, 6.40, 47.090, 3.014),
(4362, 1586, 593, 'ICN5348152100851286016', 'Low_Grade', 0.086, 0.079, 7.90, 2.410, 0.190),
(4363, 1586, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.673, 0.616, 61.60, 6.870, 4.232),
(4364, 1586, 592, 'ICN5348152100851286016', 'High_Grade', 0.155, 0.142, 14.20, 15.630, 2.219),
(4365, 1589, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.386, 0.341, 34.10, 17.610, 6.005),
(4366, 1589, 96, 'ICN5348152100851286016', 'Low_Grade', 0.069, 0.061, 6.10, 1.450, 0.088),
(4367, 1589, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.292, 0.258, 25.80, 5.120, 1.321),
(4368, 1589, 95, 'ICN5348152100851286016', 'High_Grade', 0.386, 0.341, 34.10, 10.580, 3.608),
(4369, 1590, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.056, 0.048, 4.80, 17.610, 0.845),
(4370, 1590, 96, 'ICN5348152100851286016', 'Low_Grade', 0.678, 0.582, 58.20, 1.450, 0.844),
(4371, 1590, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.330, 0.284, 28.40, 5.120, 1.454),
(4372, 1590, 95, 'ICN5348152100851286016', 'High_Grade', 0.100, 0.086, 8.60, 10.580, 0.910),
(4373, 1593, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.386, 0.341, 34.10, 19.420, 6.622),
(4374, 1593, 406, 'ICN5348152100851286016', 'Low_Grade', 0.069, 0.061, 6.10, 0.660, 0.040),
(4375, 1593, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.292, 0.258, 25.80, 4.410, 1.138),
(4376, 1593, 405, 'ICN5348152100851286016', 'High_Grade', 0.386, 0.341, 34.10, 9.200, 3.137),
(4377, 1594, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.164, 0.156, 15.60, 19.420, 3.030),
(4378, 1594, 406, 'ICN5348152100851286016', 'Low_Grade', 0.544, 0.519, 51.90, 0.660, 0.343),
(4379, 1594, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.146, 0.139, 13.90, 4.410, 0.613),
(4380, 1594, 405, 'ICN5348152100851286016', 'High_Grade', 0.195, 0.186, 18.60, 9.200, 1.711),
(4381, 1595, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.063, 6.30, 19.420, 1.223),
(4382, 1595, 406, 'ICN5348152100851286016', 'Low_Grade', 0.447, 0.378, 37.80, 0.660, 0.249),
(4383, 1595, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.536, 0.453, 45.30, 4.410, 1.998),
(4384, 1595, 405, 'ICN5348152100851286016', 'High_Grade', 0.124, 0.105, 10.50, 9.200, 0.966),
(4385, 1596, 714, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.063, 6.30, 17.610, 1.109),
(4386, 1596, 96, 'ICN5348152100851286016', 'Low_Grade', 0.447, 0.378, 37.80, 1.450, 0.548),
(4387, 1596, 97, 'ICN5348152100851286016', 'Mid_Grade', 0.536, 0.453, 45.30, 5.120, 2.319),
(4388, 1596, 95, 'ICN5348152100851286016', 'High_Grade', 0.124, 0.105, 10.50, 10.580, 1.111),
(4389, 1597, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.063, 6.30, 19.420, 1.223),
(4390, 1597, 406, 'ICN5348152100851286016', 'Low_Grade', 0.447, 0.378, 37.80, 0.660, 0.249),
(4391, 1597, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.536, 0.453, 45.30, 4.410, 1.998),
(4392, 1597, 405, 'ICN5348152100851286016', 'High_Grade', 0.124, 0.105, 10.50, 9.200, 0.966),
(4393, 1608, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.078, 0.071, 7.10, 47.090, 3.343),
(4394, 1608, 593, 'ICN5348152100851286016', 'Low_Grade', 0.095, 0.087, 8.70, 2.410, 0.210),
(4395, 1608, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.748, 0.684, 68.40, 6.870, 4.699),
(4396, 1608, 592, 'ICN5348152100851286016', 'High_Grade', 0.172, 0.157, 15.70, 15.630, 2.454),
(4397, 1610, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.360, -0.065),
(4398, 1610, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.550, 0.174),
(4399, 1610, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(4400, 1610, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.950, 0.297),
(4401, 1611, 602, 'ICN5080750872976162816', 'Empty', 0.104, 0.080, 8.00, -0.360, -0.029),
(4402, 1611, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.207, 0.160, 16.00, 0.550, 0.088),
(4403, 1611, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.651, 0.503, 50.30, 0.270, 0.136),
(4404, 1611, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.331, 0.256, 25.60, 0.950, 0.243),
(4405, 1612, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.360, -0.065),
(4406, 1612, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.550, 0.174),
(4407, 1612, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(4408, 1612, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.950, 0.297),
(4409, 1613, 602, 'ICN5080750872976162816', 'Empty', 0.157, 0.164, 16.40, -0.360, -0.059),
(4410, 1613, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.274, 0.285, 28.50, 0.550, 0.157),
(4411, 1613, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.164, 0.171, 17.10, 0.270, 0.046),
(4412, 1613, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.270, 0.281, 28.10, 0.950, 0.267),
(4413, 1615, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4414, 1615, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4415, 1615, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4416, 1615, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4417, 1616, 602, 'ICN5080750872976162816', 'Empty', 0.094, 0.073, 7.30, -0.360, -0.026),
(4418, 1616, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.186, 0.144, 14.40, 0.550, 0.079),
(4419, 1616, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.586, 0.453, 45.30, 0.270, 0.122),
(4420, 1616, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.298, 0.230, 23.00, 0.950, 0.219),
(4421, 1617, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4422, 1617, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4423, 1617, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4424, 1617, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4425, 1618, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.162, 0.139, 13.90, 47.090, 6.546),
(4426, 1618, 593, 'ICN5348152100851286016', 'Low_Grade', 0.284, 0.243, 24.30, 2.410, 0.586),
(4427, 1618, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.360, 0.308, 30.80, 6.870, 2.116),
(4428, 1618, 592, 'ICN5348152100851286016', 'High_Grade', 0.245, 0.210, 21.00, 15.630, 3.282),
(4429, 1619, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.162, 0.139, 13.90, 47.090, 6.546),
(4430, 1619, 593, 'ICN5348152100851286016', 'Low_Grade', 0.284, 0.243, 24.30, 2.410, 0.586),
(4431, 1619, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.360, 0.308, 30.80, 6.870, 2.116),
(4432, 1619, 592, 'ICN5348152100851286016', 'High_Grade', 0.245, 0.210, 21.00, 15.630, 3.282),
(4433, 1621, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4434, 1621, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4435, 1621, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4436, 1621, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4437, 1622, 581, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.071, 7.10, 8.330, 0.591),
(4438, 1622, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.184, 0.168, 16.80, 1.280, 0.215),
(4439, 1622, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.071, 7.10, 9.640, 0.684),
(4440, 1622, 583, 'ICN2556984659137265664', 'Low_Yield', 0.578, 0.529, 52.90, 1.810, 0.957),
(4441, 1622, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.176, 0.161, 16.10, 2.370, 0.382),
(4442, 1623, 581, 'ICN2556984659137265664', 'High_Grade', 0.069, 0.063, 6.30, 8.330, 0.525),
(4443, 1623, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.166, 0.152, 15.20, 1.280, 0.195),
(4444, 1623, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.069, 0.063, 6.30, 9.640, 0.607),
(4445, 1623, 583, 'ICN2556984659137265664', 'Low_Yield', 0.520, 0.476, 47.60, 1.810, 0.862),
(4446, 1623, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.158, 0.145, 14.50, 2.370, 0.344),
(4447, 1625, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.386, 0.341, 34.10, 19.420, 6.622),
(4448, 1625, 406, 'ICN5348152100851286016', 'Low_Grade', 0.069, 0.061, 6.10, 0.660, 0.040),
(4449, 1625, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.292, 0.258, 25.80, 4.410, 1.138),
(4450, 1625, 405, 'ICN5348152100851286016', 'High_Grade', 0.386, 0.341, 34.10, 9.200, 3.137),
(4451, 1631, 500, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.360, 0.354, 35.40, 278.940, 98.745),
(4452, 1631, 502, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.430, 0.423, 42.30, 24.430, 10.334),
(4453, 1631, 499, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.052, 0.051, 5.10, 138.490, 7.063),
(4454, 1631, 501, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.072, 0.071, 7.10, 45.270, 3.214),
(4455, 1632, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.537, 0.399, 39.90, 15.280, 6.097),
(4456, 1632, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.104, 0.077, 7.70, 8.470, 0.652),
(4457, 1632, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.365, 0.271, 27.10, 3.040, 0.824),
(4458, 1632, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.102, 0.076, 7.60, 2.050, 0.156),
(4459, 1632, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.104, 0.077, 7.70, 9.430, 0.726),
(4460, 1634, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.056, 0.048, 4.80, 19.420, 0.932),
(4461, 1634, 406, 'ICN5348152100851286016', 'Low_Grade', 0.678, 0.582, 58.20, 0.660, 0.384),
(4462, 1634, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.330, 0.284, 28.40, 4.410, 1.252),
(4463, 1634, 405, 'ICN5348152100851286016', 'High_Grade', 0.100, 0.086, 8.60, 9.200, 0.791),
(4464, 1635, 720, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.064, 6.40, 19.420, 1.243),
(4465, 1635, 406, 'ICN5348152100851286016', 'Low_Grade', 0.436, 0.371, 37.10, 0.660, 0.245),
(4466, 1635, 407, 'ICN5348152100851286016', 'Mid_Grade', 0.541, 0.460, 46.00, 4.410, 2.029),
(4467, 1635, 405, 'ICN5348152100851286016', 'High_Grade', 0.123, 0.105, 10.50, 9.200, 0.966),
(4468, 1636, 581, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.071, 7.10, 8.330, 0.591),
(4469, 1636, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.184, 0.168, 16.80, 1.280, 0.215),
(4470, 1636, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.071, 7.10, 9.640, 0.684),
(4471, 1636, 583, 'ICN2556984659137265664', 'Low_Yield', 0.578, 0.529, 52.90, 1.810, 0.957),
(4472, 1636, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.176, 0.161, 16.10, 2.370, 0.382),
(4473, 1637, 581, 'ICN2556984659137265664', 'High_Grade', 0.069, 0.063, 6.30, 8.330, 0.525),
(4474, 1637, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.166, 0.152, 15.20, 1.280, 0.195),
(4475, 1637, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.069, 0.063, 6.30, 9.640, 0.607),
(4476, 1637, 583, 'ICN2556984659137265664', 'Low_Yield', 0.520, 0.476, 47.60, 1.810, 0.862),
(4477, 1637, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.158, 0.145, 14.50, 2.370, 0.344),
(4478, 1638, 581, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.071, 7.10, 8.330, 0.591),
(4479, 1638, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.184, 0.168, 16.80, 1.280, 0.215),
(4480, 1638, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.071, 7.10, 9.640, 0.684),
(4481, 1638, 583, 'ICN2556984659137265664', 'Low_Yield', 0.578, 0.529, 52.90, 1.810, 0.957),
(4482, 1638, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.176, 0.161, 16.10, 2.370, 0.382),
(4483, 1639, 581, 'ICN2556984659137265664', 'High_Grade', 0.069, 0.063, 6.30, 8.330, 0.525),
(4484, 1639, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.166, 0.152, 15.20, 1.280, 0.195),
(4485, 1639, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.069, 0.063, 6.30, 9.640, 0.607),
(4486, 1639, 583, 'ICN2556984659137265664', 'Low_Yield', 0.520, 0.476, 47.60, 1.810, 0.862),
(4487, 1639, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.158, 0.145, 14.50, 2.370, 0.344),
(4488, 1642, 394, 'ICN2556984659137265664', 'High_Grade', 0.081, 0.081, 8.10, 5.260, 0.426),
(4489, 1642, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.075, 0.075, 7.50, 0.590, 0.044),
(4490, 1642, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.594, 0.597, 59.70, 6.110, 3.648),
(4491, 1642, 396, 'ICN2556984659137265664', 'Low_Yield', 0.054, 0.054, 5.40, 2.130, 0.115),
(4492, 1642, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.191, 0.192, 19.20, 3.150, 0.605),
(4493, 1644, 394, 'ICN2556984659137265664', 'High_Grade', 0.097, 0.093, 9.30, 5.260, 0.489),
(4494, 1644, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.034, 0.033, 3.30, 0.590, 0.019),
(4495, 1644, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.738, 0.710, 71.00, 6.110, 4.338),
(4496, 1644, 396, 'ICN2556984659137265664', 'Low_Yield', 0.044, 0.042, 4.20, 2.130, 0.089),
(4497, 1644, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.127, 0.122, 12.20, 3.150, 0.384),
(4498, 1645, 394, 'ICN2556984659137265664', 'High_Grade', 0.041, 0.053, 5.30, 5.260, 0.279),
(4499, 1645, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.188, 0.242, 24.20, 0.590, 0.143),
(4500, 1645, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.286, 0.368, 36.80, 6.110, 2.248),
(4501, 1645, 396, 'ICN2556984659137265664', 'Low_Yield', 0.149, 0.192, 19.20, 2.130, 0.409),
(4502, 1645, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.114, 0.147, 14.70, 3.150, 0.463),
(4503, 1647, 394, 'ICN2556984659137265664', 'High_Grade', 0.062, 0.085, 8.50, 5.260, 0.447),
(4504, 1647, 732, 'ICN2556984659137265664', 'LowYeild_Metal', 0.096, 0.131, 13.10, 0.590, 0.077),
(4505, 1647, 744, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.273, 0.373, 37.30, 6.110, 2.279),
(4506, 1647, 396, 'ICN2556984659137265664', 'Low_Yield', 0.210, 0.287, 28.70, 2.130, 0.611),
(4507, 1647, 395, 'ICN2556984659137265664', 'Mid_Grade', 0.090, 0.123, 12.30, 3.150, 0.387),
(4510, 1650, 35, 'ICN2556984659137265664', 'High_Grade', 0.027, 0.027, 2.70, 6.100, 0.165),
(4511, 1650, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.069, 0.070, 7.00, 2.700, 0.189),
(4512, 1658, 589, 'ICN3203040099432398848', 'High_Grade', 0.075, 0.084, 8.40, 55.030, 4.623),
(4513, 1658, 587, 'ICN3203040099432398848', 'Low_Grade', 0.598, 0.666, 66.60, 7.000, 4.662),
(4514, 1658, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.136, 0.151, 15.10, 29.860, 4.509),
(4515, 1659, 589, 'ICN3203040099432398848', 'High_Grade', 0.309, 0.342, 34.20, 55.030, 18.820),
(4516, 1659, 587, 'ICN3203040099432398848', 'Low_Grade', 0.268, 0.296, 29.60, 7.000, 2.072),
(4517, 1659, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.237, 0.262, 26.20, 29.860, 7.823),
(4518, 1660, 589, 'ICN3203040099432398848', 'High_Grade', 0.287, 0.243, 24.30, 55.030, 13.372),
(4519, 1660, 587, 'ICN3203040099432398848', 'Low_Grade', 0.721, 0.611, 61.10, 7.000, 4.277),
(4520, 1660, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.054, 0.046, 4.60, 29.860, 1.374),
(4521, 1661, 35, 'ICN2556984659137265664', 'High_Grade', 0.101, 0.109, 10.90, 6.100, 0.665),
(4522, 1661, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.258, 0.279, 27.90, 2.700, 0.753),
(4523, 1664, 415, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.220, -0.040),
(4524, 1664, 413, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.330, 0.105),
(4525, 1664, 414, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.090, 0.017),
(4526, 1664, 412, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.860, 0.269),
(4527, 1667, 538, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.102, 0.091, 9.10, 0.640, 0.058),
(4528, 1667, 539, 'ICN7981429672816672768', 'High_End_CRTs', 0.073, 0.065, 6.50, 0.820, 0.053),
(4529, 1667, 537, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.948, 0.844, 84.40, 0.280, 0.236),
(4530, 1670, 602, 'ICN5080750872976162816', 'Empty', 0.152, 0.112, 11.20, -0.360, -0.040),
(4531, 1670, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.268, 0.197, 19.70, 0.550, 0.108),
(4532, 1670, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.684, 0.504, 50.40, 0.270, 0.136),
(4533, 1670, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.118, 0.087, 8.70, 0.950, 0.083),
(4534, 1671, 602, 'ICN5080750872976162816', 'Empty', 0.157, 0.164, 16.40, -0.360, -0.059),
(4535, 1671, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.274, 0.285, 28.50, 0.550, 0.157),
(4536, 1671, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.164, 0.171, 17.10, 0.270, 0.046),
(4537, 1671, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.270, 0.281, 28.10, 0.950, 0.267),
(4538, 1672, 602, 'ICN5080750872976162816', 'Empty', 0.157, 0.164, 16.40, -0.360, -0.059),
(4539, 1672, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.274, 0.285, 28.50, 0.550, 0.157),
(4540, 1672, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.164, 0.171, 17.10, 0.270, 0.046),
(4541, 1672, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.270, 0.281, 28.10, 0.950, 0.267),
(4542, 1673, 602, 'ICN5080750872976162816', 'Empty', 0.157, 0.164, 16.40, -0.360, -0.059),
(4543, 1673, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.274, 0.285, 28.50, 0.550, 0.157),
(4544, 1673, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.164, 0.171, 17.10, 0.270, 0.046),
(4545, 1673, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.270, 0.281, 28.10, 0.950, 0.267),
(4546, 1674, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.360, -0.065),
(4547, 1674, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.550, 0.174),
(4548, 1674, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(4549, 1674, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.950, 0.297),
(4550, 1675, 602, 'ICN5080750872976162816', 'Empty', 0.192, 0.142, 14.20, -0.360, -0.051),
(4551, 1675, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.207, 0.153, 15.30, 0.550, 0.084),
(4552, 1675, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.458, 0.338, 33.80, 0.270, 0.091),
(4553, 1675, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.498, 0.368, 36.80, 0.950, 0.350),
(4554, 1677, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.360, -0.100),
(4555, 1677, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.550, 0.199),
(4556, 1677, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.270, 0.029),
(4557, 1677, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 0.950, 0.237),
(4558, 1679, 787, 'ICN2556984659137265664', 'High_Grade', 0.041, 0.053, 5.30, 5.120, 0.271),
(4559, 1679, 833, 'ICN2556984659137265664', 'LowYeild_Metal', 0.188, 0.242, 24.20, 1.020, 0.247),
(4560, 1679, 834, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.286, 0.368, 36.80, 6.600, 2.429),
(4561, 1679, 789, 'ICN2556984659137265664', 'Low_Yield', 0.149, 0.192, 19.20, 1.570, 0.301),
(4562, 1679, 788, 'ICN2556984659137265664', 'Mid_Grade', 0.114, 0.147, 14.70, 2.470, 0.363),
(4567, 1682, 808, 'ICN5080750872976162816', 'Empty', 0.100, 0.095, 9.50, 0.000, 0.000),
(4568, 1682, 806, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.496, 0.469, 46.90, 0.580, 0.272),
(4569, 1682, 807, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.104, 0.098, 9.80, 0.200, 0.020),
(4570, 1682, 805, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.358, 0.338, 33.80, 1.100, 0.372),
(4571, 1683, 602, 'ICN5080750872976162816', 'Empty', 0.071, 0.068, 6.80, -0.360, -0.024),
(4572, 1683, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.496, 0.478, 47.80, 0.550, 0.263),
(4573, 1683, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.194, 0.187, 18.70, 0.270, 0.050),
(4574, 1683, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.276, 0.266, 26.60, 0.950, 0.253),
(4579, 1685, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.165, 0.174, 17.40, 47.090, 8.194),
(4580, 1685, 593, 'ICN5348152100851286016', 'Low_Grade', 0.077, 0.081, 8.10, 2.410, 0.195),
(4581, 1685, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.638, 0.671, 67.10, 6.870, 4.610),
(4582, 1685, 592, 'ICN5348152100851286016', 'High_Grade', 0.071, 0.075, 7.50, 15.630, 1.172),
(4583, 1686, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4584, 1686, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4585, 1686, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4586, 1686, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4587, 1690, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4588, 1690, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4589, 1690, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4590, 1690, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4591, 1691, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.165, 0.174, 17.40, 47.090, 8.194),
(4592, 1691, 593, 'ICN5348152100851286016', 'Low_Grade', 0.077, 0.081, 8.10, 2.410, 0.195),
(4593, 1691, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.638, 0.671, 67.10, 6.870, 4.610),
(4594, 1691, 592, 'ICN5348152100851286016', 'High_Grade', 0.071, 0.075, 7.50, 15.630, 1.172),
(4595, 1692, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4596, 1692, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4597, 1692, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4598, 1692, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4599, 1693, 602, 'ICN5080750872976162816', 'Empty', 0.071, 0.068, 6.80, -0.360, -0.024),
(4600, 1693, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.496, 0.478, 47.80, 0.550, 0.263),
(4601, 1693, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.194, 0.187, 18.70, 0.270, 0.050),
(4602, 1693, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.276, 0.266, 26.60, 0.950, 0.253),
(4603, 1694, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.069, 6.90, 47.090, 3.249),
(4604, 1694, 593, 'ICN5348152100851286016', 'Low_Grade', 0.814, 0.750, 75.00, 2.410, 1.808),
(4605, 1694, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.110, 0.101, 10.10, 6.870, 0.694),
(4606, 1694, 592, 'ICN5348152100851286016', 'High_Grade', 0.086, 0.079, 7.90, 15.630, 1.235),
(4607, 1695, 581, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.062, 6.20, 8.330, 0.516),
(4608, 1695, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.234, 0.223, 22.30, 1.280, 0.285),
(4609, 1695, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.530, 0.505, 50.50, 9.640, 4.868),
(4610, 1695, 583, 'ICN2556984659137265664', 'Low_Yield', 0.034, 0.032, 3.20, 1.810, 0.058),
(4611, 1695, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.187, 0.178, 17.80, 2.370, 0.422),
(4612, 1696, 581, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.062, 6.20, 8.330, 0.516),
(4613, 1696, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.234, 0.223, 22.30, 1.280, 0.285),
(4614, 1696, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.530, 0.505, 50.50, 9.640, 4.868),
(4615, 1696, 583, 'ICN2556984659137265664', 'Low_Yield', 0.034, 0.032, 3.20, 1.810, 0.058),
(4616, 1696, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.187, 0.178, 17.80, 2.370, 0.422),
(4617, 1697, 581, 'ICN2556984659137265664', 'High_Grade', 0.100, 0.095, 9.50, 8.330, 0.791),
(4618, 1697, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.238, 0.225, 22.50, 1.280, 0.288),
(4619, 1697, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.407, 0.385, 38.50, 9.640, 3.711),
(4620, 1697, 583, 'ICN2556984659137265664', 'Low_Yield', 0.057, 0.054, 5.40, 1.810, 0.098),
(4621, 1697, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.254, 0.241, 24.10, 2.370, 0.571),
(4622, 1698, 581, 'ICN2556984659137265664', 'High_Grade', 0.100, 0.095, 9.50, 8.330, 0.791),
(4623, 1698, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.238, 0.225, 22.50, 1.280, 0.288),
(4624, 1698, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.407, 0.385, 38.50, 9.640, 3.711),
(4625, 1698, 583, 'ICN2556984659137265664', 'Low_Yield', 0.057, 0.054, 5.40, 1.810, 0.098),
(4626, 1698, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.254, 0.241, 24.10, 2.370, 0.571),
(4627, 1699, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.075, 0.069, 6.90, 47.090, 3.249),
(4628, 1699, 593, 'ICN5348152100851286016', 'Low_Grade', 0.814, 0.750, 75.00, 2.410, 1.808),
(4629, 1699, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.110, 0.101, 10.10, 6.870, 0.694),
(4630, 1699, 592, 'ICN5348152100851286016', 'High_Grade', 0.086, 0.079, 7.90, 15.630, 1.235),
(4631, 1703, 602, 'ICN5080750872976162816', 'Empty', 0.054, 0.031, 3.10, -0.360, -0.011),
(4632, 1703, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.866, 0.490, 49.00, 0.550, 0.270),
(4633, 1703, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.163, 0.092, 9.20, 0.270, 0.025),
(4634, 1703, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.685, 0.387, 38.70, 0.950, 0.368),
(4635, 1704, 602, 'ICN5080750872976162816', 'Empty', 0.154, 0.092, 9.20, -0.360, -0.033),
(4636, 1704, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.676, 0.402, 40.20, 0.550, 0.221),
(4637, 1704, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.777, 0.462, 46.20, 0.270, 0.125),
(4638, 1704, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.074, 0.044, 4.40, 0.950, 0.042),
(4639, 1705, 602, 'ICN5080750872976162816', 'Empty', 0.080, 0.073, 7.30, -0.360, -0.026),
(4640, 1705, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.067, 0.061, 6.10, 0.550, 0.034),
(4641, 1705, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.913, 0.832, 83.20, 0.270, 0.225),
(4642, 1705, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.038, 0.035, 3.50, 0.950, 0.033),
(4643, 1706, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.360, -0.065),
(4644, 1706, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.550, 0.174),
(4645, 1706, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(4646, 1706, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.950, 0.297),
(4647, 1708, 411, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.052, 0.050, 5.00, 3.750, 0.188),
(4648, 1708, 409, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.689, 0.668, 66.80, 15.640, 10.448),
(4649, 1708, 410, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.126, 0.122, 12.20, 9.200, 1.122),
(4650, 1708, 408, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.164, 0.159, 15.90, 18.940, 3.011),
(4651, 1709, 411, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.052, 0.050, 5.00, 3.750, 0.188),
(4652, 1709, 409, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.689, 0.668, 66.80, 15.640, 10.448),
(4653, 1709, 410, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.126, 0.122, 12.20, 9.200, 1.122),
(4654, 1709, 408, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.164, 0.159, 15.90, 18.940, 3.011),
(4655, 1710, 411, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.052, 0.050, 5.00, 3.750, 0.188),
(4656, 1710, 409, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.689, 0.668, 66.80, 15.640, 10.448),
(4657, 1710, 410, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.126, 0.122, 12.20, 9.200, 1.122),
(4658, 1710, 408, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.164, 0.159, 15.90, 18.940, 3.011),
(4659, 1711, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.910, 0.577, 57.70, 15.280, 8.817),
(4660, 1711, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.064, 0.041, 4.10, 8.470, 0.347),
(4661, 1711, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.252, 0.160, 16.00, 3.040, 0.486),
(4662, 1711, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.251, 0.159, 15.90, 2.050, 0.326),
(4663, 1711, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.100, 0.063, 6.30, 9.430, 0.594),
(4664, 1713, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.910, 0.577, 57.70, 15.280, 8.817),
(4665, 1713, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.064, 0.041, 4.10, 8.470, 0.347),
(4666, 1713, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.252, 0.160, 16.00, 3.040, 0.486),
(4667, 1713, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.251, 0.159, 15.90, 2.050, 0.326),
(4668, 1713, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.100, 0.063, 6.30, 9.430, 0.594),
(4669, 1714, 602, 'ICN5080750872976162816', 'Empty', 0.066, 0.053, 5.30, -0.360, -0.019),
(4670, 1714, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.652, 0.521, 52.10, 0.550, 0.287),
(4671, 1714, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.476, 0.380, 38.00, 0.270, 0.103),
(4672, 1714, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.057, 0.046, 4.60, 0.950, 0.044),
(4673, 1715, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.360, -0.065),
(4674, 1715, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.550, 0.174),
(4675, 1715, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(4676, 1715, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.950, 0.297),
(4677, 1716, 602, 'ICN5080750872976162816', 'Empty', 0.179, 0.153, 15.30, -0.360, -0.055),
(4678, 1716, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.094, 0.081, 8.10, 0.550, 0.045),
(4679, 1716, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.810, 0.694, 69.40, 0.270, 0.187),
(4680, 1716, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.084, 0.072, 7.20, 0.950, 0.068),
(4681, 1719, 602, 'ICN5080750872976162816', 'Empty', 0.179, 0.153, 15.30, -0.360, -0.055),
(4682, 1719, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.094, 0.081, 8.10, 0.550, 0.045),
(4683, 1719, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.810, 0.694, 69.40, 0.270, 0.187),
(4684, 1719, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.084, 0.072, 7.20, 0.950, 0.068),
(4685, 1720, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.360, -0.100),
(4686, 1720, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.550, 0.199),
(4687, 1720, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.270, 0.029),
(4688, 1720, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 0.950, 0.237),
(4689, 1721, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.308, 0.220, 22.00, 15.280, 3.362),
(4690, 1721, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.067, 0.048, 4.80, 8.470, 0.407),
(4691, 1721, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.142, 0.102, 10.20, 3.040, 0.310),
(4692, 1721, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.676, 0.484, 48.40, 2.050, 0.992),
(4693, 1721, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.205, 0.147, 14.70, 9.430, 1.386),
(4694, 1726, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.180, 0.154, 15.40, 47.090, 7.252),
(4695, 1726, 593, 'ICN5348152100851286016', 'Low_Grade', 0.315, 0.270, 27.00, 2.410, 0.651),
(4696, 1726, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.400, 0.343, 34.30, 6.870, 2.356),
(4697, 1726, 592, 'ICN5348152100851286016', 'High_Grade', 0.272, 0.233, 23.30, 15.630, 3.642),
(4698, 1727, 500, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.593, 0.574, 57.40, 278.940, 160.112),
(4699, 1727, 502, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.058, 0.056, 5.60, 24.430, 1.368),
(4700, 1727, 499, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.323, 0.313, 31.30, 138.490, 43.347),
(4701, 1727, 501, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.059, 0.057, 5.70, 45.270, 2.580),
(4702, 1728, 420, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.080, 0.060, 6.00, 13.420, 0.805),
(4703, 1728, 422, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.140, 0.105, 10.50, 3.450, 0.362),
(4704, 1728, 423, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.077, 0.058, 5.80, 1.010, 0.059),
(4705, 1728, 424, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.924, 0.692, 69.20, 1.040, 0.720),
(4706, 1728, 421, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.114, 0.085, 8.50, 8.960, 0.762),
(4707, 1729, 420, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.910, 0.577, 57.70, 13.420, 7.743),
(4708, 1729, 422, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.064, 0.041, 4.10, 3.450, 0.141),
(4709, 1729, 423, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.252, 0.160, 16.00, 1.010, 0.162),
(4710, 1729, 424, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.251, 0.159, 15.90, 1.040, 0.165),
(4711, 1729, 421, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.100, 0.063, 6.30, 8.960, 0.564),
(4712, 1730, 813, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.046, 0.048, 4.80, 6.010, 0.288),
(4713, 1730, 815, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.151, 0.158, 15.80, 3.210, 0.507),
(4714, 1730, 816, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.110, 0.115, 11.50, 1.450, 0.167),
(4715, 1730, 817, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.377, 0.395, 39.50, 0.730, 0.288),
(4716, 1730, 814, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.270, 0.283, 28.30, 3.780, 1.070),
(4717, 1732, 813, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.028, 0.023, 2.30, 6.010, 0.138),
(4718, 1732, 815, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.120, 0.100, 10.00, 3.210, 0.321),
(4719, 1732, 816, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.100, 0.084, 8.40, 1.450, 0.122),
(4720, 1732, 817, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.885, 0.739, 73.90, 0.730, 0.539),
(4721, 1732, 814, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.064, 0.053, 5.30, 3.780, 0.200),
(4722, 1733, 813, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.910, 0.577, 57.70, 5.980, 3.450),
(4723, 1733, 815, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.064, 0.041, 4.10, 3.210, 0.132),
(4724, 1733, 816, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.252, 0.160, 16.00, 1.450, 0.232),
(4725, 1733, 817, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.251, 0.159, 15.90, 0.740, 0.118),
(4726, 1733, 814, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.100, 0.063, 6.30, 3.770, 0.238),
(4727, 1734, 830, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.028, 0.026, 2.60, 1.680, 0.044),
(4728, 1734, 831, 'ICN7981429672816672768', 'High_End_CRTs', 0.162, 0.148, 14.80, 1.120, 0.166),
(4729, 1734, 829, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.908, 0.827, 82.70, 1.040, 0.860),
(4730, 1735, 828, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.081, 0.073, 7.30, 0.710, 0.052),
(4731, 1735, 827, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.060, 0.054, 5.40, 1.230, 0.066),
(4732, 1735, 826, 'ICN5491985813950431232', 'Mid_Grade', 0.904, 0.813, 81.30, 2.650, 2.154),
(4733, 1735, 825, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.067, 0.060, 6.00, 3.120, 0.187),
(4734, 1736, 828, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.101, 0.090, 9.00, 0.460, 0.041),
(4735, 1736, 827, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.032, 0.028, 2.80, 0.780, 0.022),
(4736, 1736, 826, 'ICN5491985813950431232', 'Mid_Grade', 0.952, 0.844, 84.40, 2.690, 2.270),
(4737, 1736, 825, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.043, 0.038, 3.80, 2.690, 0.102),
(4738, 1737, 828, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.082, 0.072, 7.20, 0.460, 0.033),
(4739, 1737, 827, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.078, 0.069, 6.90, 0.780, 0.054),
(4740, 1737, 826, 'ICN5491985813950431232', 'Mid_Grade', 0.936, 0.823, 82.30, 2.690, 2.214),
(4741, 1737, 825, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.041, 0.036, 3.60, 2.690, 0.097),
(4742, 1738, 828, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.061, 0.055, 5.50, 0.460, 0.025),
(4743, 1738, 827, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.057, 0.051, 5.10, 0.780, 0.040),
(4744, 1738, 826, 'ICN5491985813950431232', 'Mid_Grade', 0.957, 0.857, 85.70, 2.690, 2.305),
(4745, 1738, 825, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.042, 0.038, 3.80, 2.690, 0.102),
(4746, 1739, 500, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.714, 0.695, 69.50, 312.420, 217.132),
(4747, 1739, 502, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.202, 0.196, 19.60, 28.060, 5.500),
(4748, 1739, 499, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.080, 0.078, 7.80, 155.610, 12.138),
(4749, 1739, 501, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.032, 0.031, 3.10, 51.540, 1.598),
(4750, 1740, 508, 'ICN237138269832216576', 'Server_Boards_High_Grade', 0.242, 0.248, 24.80, 12.530, 3.107),
(4751, 1740, 509, 'ICN237138269832216576', 'Server_Boards_Low_Grade', 0.735, 0.752, 75.20, 8.100, 6.091),
(4752, 1741, 485, 'ICN3203040099432398848', 'High_Grade', 0.220, 0.189, 18.90, 80.330, 15.182),
(4753, 1741, 483, 'ICN3203040099432398848', 'Low_Grade', 0.329, 0.283, 28.30, 32.470, 9.189),
(4754, 1741, 484, 'ICN3203040099432398848', 'Mid_Grade', 0.613, 0.528, 52.80, 38.450, 20.302),
(4755, 1742, 581, 'ICN2556984659137265664', 'High_Grade', 0.072, 0.078, 7.80, 6.410, 0.500),
(4756, 1742, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.055, 0.060, 6.00, 0.530, 0.032),
(4757, 1742, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.296, 0.320, 32.00, 5.860, 1.875),
(4758, 1742, 583, 'ICN2556984659137265664', 'Low_Yield', 0.144, 0.156, 15.60, 0.990, 0.154),
(4759, 1742, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.357, 0.386, 38.60, 1.650, 0.637),
(4767, 1752, 888, 'ICN6909537777130405888', 'Small_And_AllInOne', 1.000, 0.500, 50.00, 0.120, 0.060),
(4768, 1752, 875, 'ICN6909537777130405888', 'Large_Printers_Copiers', 1.000, 0.500, 50.00, 0.060, 0.030),
(4769, 1753, 888, 'ICN6909537777130405888', 'Small_And_AllInOne', 1.000, 0.500, 50.00, 0.120, 0.060),
(4770, 1753, 875, 'ICN6909537777130405888', 'Large_Printers_Copiers', 1.000, 0.500, 50.00, 0.060, 0.030),
(4771, 1754, 888, 'ICN6909537777130405888', 'Small_And_AllInOne', 1.000, 0.500, 50.00, 0.080, 0.040),
(4772, 1754, 875, 'ICN6909537777130405888', 'Large_Printers_Copiers', 1.000, 0.500, 50.00, 0.050, 0.025),
(4773, 1755, 888, 'ICN6909537777130405888', 'Small_And_AllInOne', 1.000, 0.500, 50.00, 0.140, 0.070),
(4774, 1755, 875, 'ICN6909537777130405888', 'Large_Printers_Copiers', 1.000, 0.500, 50.00, 0.060, 0.030),
(4775, 1756, 602, 'ICN5080750872976162816', 'Empty', 0.058, 0.049, 4.90, -0.260, -0.013),
(4776, 1756, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.798, 0.672, 67.20, 0.280, 0.188),
(4777, 1756, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.116, 0.098, 9.80, 0.150, 0.015),
(4778, 1756, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.216, 0.182, 18.20, 0.500, 0.091),
(4779, 1758, 602, 'ICN5080750872976162816', 'Empty', 0.049, 0.028, 2.80, -0.260, -0.007),
(4780, 1758, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.742, 0.423, 42.30, 0.310, 0.131),
(4781, 1758, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.162, 0.092, 9.20, 0.160, 0.015),
(4782, 1758, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.800, 0.456, 45.60, 0.550, 0.251),
(4787, 1760, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.260, -0.047),
(4788, 1760, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.310, 0.098),
(4789, 1760, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.160, 0.030),
(4790, 1760, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.550, 0.172),
(4791, 1761, 602, 'ICN5080750872976162816', 'Empty', 0.078, 0.068, 6.80, -0.260, -0.018),
(4792, 1761, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.095, 0.083, 8.30, 0.310, 0.026),
(4793, 1761, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.075, 0.066, 6.60, 0.160, 0.011),
(4794, 1761, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.891, 0.782, 78.20, 0.550, 0.430),
(4795, 1762, 602, 'ICN5080750872976162816', 'Empty', 0.075, 0.065, 6.50, -0.260, -0.017),
(4796, 1762, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.079, 0.069, 6.90, 0.300, 0.021),
(4797, 1762, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.936, 0.815, 81.50, 0.150, 0.122),
(4798, 1762, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.058, 0.051, 5.10, 0.530, 0.027),
(4799, 1763, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.260, -0.047),
(4800, 1763, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.300, 0.095),
(4801, 1763, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.150, 0.029),
(4802, 1763, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.530, 0.166),
(4803, 1765, 602, 'ICN5080750872976162816', 'Empty', 0.057, 0.045, 4.50, -0.260, -0.012),
(4804, 1765, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.249, 0.197, 19.70, 0.300, 0.059),
(4805, 1765, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.690, 0.547, 54.70, 0.150, 0.082),
(4806, 1765, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.266, 0.211, 21.10, 0.530, 0.112),
(4807, 1772, 602, 'ICN5080750872976162816', 'Empty', 0.076, 0.060, 6.00, -0.260, -0.016),
(4808, 1772, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.185, 0.145, 14.50, 0.310, 0.045),
(4809, 1772, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.925, 0.725, 72.50, 0.160, 0.116),
(4810, 1772, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.090, 0.071, 7.10, 0.540, 0.038),
(4811, 1775, 598, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.098, 0.101, 10.10, 7.280, 0.735),
(4812, 1775, 596, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.541, 0.558, 55.80, 17.600, 9.821),
(4813, 1775, 597, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.113, 0.116, 11.60, 13.110, 1.521),
(4814, 1775, 595, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.218, 0.225, 22.50, 29.610, 6.662),
(4815, 1776, 602, 'ICN5080750872976162816', 'Empty', 0.035, 0.033, 3.30, -0.260, -0.009),
(4816, 1776, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.558, 0.523, 52.30, 0.380, 0.199),
(4817, 1776, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.160, 0.150, 15.00, 0.190, 0.029),
(4818, 1776, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.314, 0.294, 29.40, 0.670, 0.197),
(4819, 1777, 602, 'ICN5080750872976162816', 'Empty', 0.047, 0.047, 4.70, -0.260, -0.012),
(4820, 1777, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.068, 0.068, 6.80, 0.380, 0.026),
(4821, 1777, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.138, 0.137, 13.70, 0.190, 0.026),
(4822, 1777, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.753, 0.749, 74.90, 0.670, 0.502),
(4823, 1779, 589, 'ICN3203040099432398848', 'High_Grade', 0.204, 0.185, 18.50, 49.350, 9.130),
(4824, 1779, 587, 'ICN3203040099432398848', 'Low_Grade', 0.477, 0.433, 43.30, 6.520, 2.823),
(4825, 1779, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.421, 0.382, 38.20, 26.880, 10.268),
(4826, 1781, 589, 'ICN3203040099432398848', 'High_Grade', 0.204, 0.185, 18.50, 49.350, 9.130),
(4827, 1781, 587, 'ICN3203040099432398848', 'Low_Grade', 0.477, 0.433, 43.30, 6.520, 2.823),
(4828, 1781, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.421, 0.382, 38.20, 26.880, 10.268),
(4829, 1782, 602, 'ICN5080750872976162816', 'Empty', 0.088, 0.079, 7.90, -0.260, -0.021),
(4830, 1782, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.294, 0.264, 26.40, 0.440, 0.116),
(4831, 1782, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.501, 0.450, 45.00, 0.210, 0.095),
(4832, 1782, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.231, 0.207, 20.70, 0.760, 0.157),
(4833, 1783, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.260, -0.047),
(4834, 1783, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.440, 0.139),
(4835, 1783, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.210, 0.040),
(4836, 1783, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.760, 0.238),
(4837, 1785, 602, 'ICN5080750872976162816', 'Empty', 0.070, 0.059, 5.90, -0.260, -0.015),
(4838, 1785, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.158, 0.134, 13.40, 0.440, 0.059),
(4839, 1785, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.859, 0.726, 72.60, 0.210, 0.152),
(4840, 1785, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.096, 0.081, 8.10, 0.760, 0.062),
(4841, 1786, 602, 'ICN5080750872976162816', 'Empty', 0.124, 0.124, 12.40, -0.260, -0.032),
(4842, 1786, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.122, 0.122, 12.20, 0.440, 0.054),
(4843, 1786, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.080, 0.080, 8.00, 0.210, 0.017),
(4844, 1786, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.675, 0.674, 67.40, 0.760, 0.512),
(4845, 1787, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.056, 0.047, 4.70, 45.540, 2.140),
(4846, 1787, 593, 'ICN5348152100851286016', 'Low_Grade', 0.096, 0.081, 8.10, 2.650, 0.215),
(4847, 1787, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.899, 0.762, 76.20, 6.970, 5.311);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(4848, 1787, 592, 'ICN5348152100851286016', 'High_Grade', 0.129, 0.109, 10.90, 15.430, 1.682),
(4849, 1803, 0, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.056, 0.047, 4.70, 0.000, 0.000),
(4850, 1803, 0, 'ICN5348152100851286016', 'Low_Grade', 0.096, 0.081, 8.10, 0.000, 0.000),
(4851, 1803, 0, 'ICN5348152100851286016', 'Mid_Grade', 0.899, 0.762, 76.20, 0.000, 0.000),
(4852, 1803, 0, 'ICN5348152100851286016', 'High_Grade', 0.129, 0.109, 10.90, 0.000, 0.000),
(4853, 1805, 622, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.061, 0.055, 5.50, 0.710, 0.039),
(4854, 1805, 621, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.052, 0.047, 4.70, 1.000, 0.047),
(4855, 1805, 620, 'ICN5491985813950431232', 'Mid_Grade', 0.920, 0.831, 83.10, 1.870, 1.554),
(4856, 1805, 619, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.074, 0.067, 6.70, 5.120, 0.343),
(4857, 1809, 604, 'ICN8294737710174699520', 'UltraHigh_Ceramic', 0.826, 0.766, 76.60, 206.940, 158.516),
(4858, 1809, 606, 'ICN8294737710174699520', 'LowYeild_Plastic', 0.084, 0.078, 7.80, 15.970, 1.246),
(4859, 1809, 603, 'ICN8294737710174699520', 'HighEnd_Ceramic', 0.094, 0.087, 8.70, 156.460, 13.612),
(4860, 1809, 605, 'ICN8294737710174699520', 'MidRange_Ceramic', 0.075, 0.070, 7.00, 62.770, 4.394),
(4861, 1811, 602, 'ICN5080750872976162816', 'Empty', 0.037, 0.030, 3.00, -0.240, -0.007),
(4862, 1811, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.184, 0.148, 14.80, 0.420, 0.062),
(4863, 1811, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.882, 0.708, 70.80, 0.200, 0.142),
(4864, 1811, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.143, 0.115, 11.50, 0.720, 0.083),
(4865, 1813, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4866, 1813, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.420, 0.133),
(4867, 1813, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4868, 1813, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.720, 0.225),
(4869, 1814, 602, 'ICN5080750872976162816', 'Empty', 0.063, 0.049, 4.90, -0.240, -0.012),
(4870, 1814, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.691, 0.543, 54.30, 0.420, 0.228),
(4871, 1814, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.121, 0.095, 9.50, 0.200, 0.019),
(4872, 1814, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.398, 0.313, 31.30, 0.730, 0.228),
(4873, 1816, 602, 'ICN5080750872976162816', 'Empty', 0.063, 0.049, 4.90, -0.240, -0.012),
(4874, 1816, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.691, 0.543, 54.30, 0.420, 0.228),
(4875, 1816, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.121, 0.095, 9.50, 0.200, 0.019),
(4876, 1816, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.398, 0.313, 31.30, 0.730, 0.228),
(4877, 1817, 602, 'ICN5080750872976162816', 'Empty', 0.070, 0.059, 5.90, -0.240, -0.014),
(4878, 1817, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.211, 0.179, 17.90, 0.420, 0.075),
(4879, 1817, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.639, 0.542, 54.20, 0.200, 0.108),
(4880, 1817, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.260, 0.220, 22.00, 0.730, 0.161),
(4881, 1818, 602, 'ICN5080750872976162816', 'Empty', 0.063, 0.049, 4.90, -0.240, -0.012),
(4882, 1818, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.691, 0.543, 54.30, 0.420, 0.228),
(4883, 1818, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.121, 0.095, 9.50, 0.200, 0.019),
(4884, 1818, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.398, 0.313, 31.30, 0.730, 0.228),
(4885, 1820, 602, 'ICN5080750872976162816', 'Empty', 0.041, 0.021, 2.10, -0.240, -0.005),
(4886, 1820, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.962, 0.485, 48.50, 0.420, 0.204),
(4887, 1820, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.030, 0.015, 1.50, 0.200, 0.003),
(4888, 1820, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.950, 0.479, 47.90, 0.730, 0.350),
(4889, 1821, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4890, 1821, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.420, 0.133),
(4891, 1821, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4892, 1821, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.730, 0.228),
(4893, 1822, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.839, 0.654, 65.40, 1.180, 0.772),
(4894, 1822, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.078, 0.061, 6.10, 1.250, 0.076),
(4895, 1822, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.366, 0.285, 28.50, 0.550, 0.157),
(4896, 1824, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.616, 0.431, 43.10, 1.180, 0.509),
(4897, 1824, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.115, 0.081, 8.10, 1.250, 0.101),
(4898, 1824, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.697, 0.488, 48.80, 0.550, 0.268),
(4899, 1825, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.673, 0.680, 68.00, 1.190, 0.809),
(4900, 1825, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.139, 0.141, 14.10, 1.260, 0.178),
(4901, 1825, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.177, 0.179, 17.90, 0.560, 0.100),
(4902, 1827, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.889, 0.818, 81.80, 1.190, 0.973),
(4903, 1827, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.061, 0.056, 5.60, 1.260, 0.071),
(4904, 1827, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.137, 0.126, 12.60, 0.560, 0.071),
(4905, 1828, 602, 'ICN5080750872976162816', 'Empty', 0.188, 0.212, 21.20, -0.240, -0.051),
(4906, 1828, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.312, 0.353, 35.30, 0.430, 0.152),
(4907, 1828, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.186, 0.210, 21.00, 0.210, 0.044),
(4908, 1828, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.199, 0.225, 22.50, 0.750, 0.169),
(4909, 1830, 602, 'ICN5080750872976162816', 'Empty', 0.072, 0.067, 6.70, -0.240, -0.016),
(4910, 1830, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.092, 0.086, 8.60, 0.430, 0.037),
(4911, 1830, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.320, 0.299, 29.90, 0.210, 0.063),
(4912, 1830, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.586, 0.548, 54.80, 0.750, 0.411),
(4913, 1832, 602, 'ICN5080750872976162816', 'Empty', 0.048, 0.029, 2.90, -0.240, -0.007),
(4914, 1832, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.831, 0.509, 50.90, 0.430, 0.219),
(4915, 1832, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.246, 0.151, 15.10, 0.210, 0.032),
(4916, 1832, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.507, 0.311, 31.10, 0.750, 0.233),
(4917, 1834, 602, 'ICN5080750872976162816', 'Empty', 0.078, 0.071, 7.10, -0.240, -0.017),
(4918, 1834, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.351, 0.318, 31.80, 0.430, 0.137),
(4919, 1834, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.562, 0.509, 50.90, 0.210, 0.107),
(4920, 1834, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.114, 0.103, 10.30, 0.740, 0.076),
(4921, 1835, 602, 'ICN5080750872976162816', 'Empty', 0.043, 0.025, 2.50, -0.240, -0.006),
(4922, 1835, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.634, 0.371, 37.10, 0.430, 0.160),
(4923, 1835, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.640, 0.375, 37.50, 0.210, 0.079),
(4924, 1835, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.390, 0.228, 22.80, 0.740, 0.169),
(4925, 1837, 602, 'ICN5080750872976162816', 'Empty', 0.084, 0.071, 7.10, -0.240, -0.017),
(4926, 1837, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.334, 0.283, 28.30, 0.430, 0.122),
(4927, 1837, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.694, 0.588, 58.80, 0.210, 0.123),
(4928, 1837, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.069, 0.058, 5.80, 0.740, 0.043),
(4929, 1838, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4930, 1838, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.430, 0.136),
(4931, 1838, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.210, 0.040),
(4932, 1838, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.740, 0.232),
(4937, 1841, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4938, 1841, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.420, 0.133),
(4939, 1841, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4940, 1841, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.730, 0.228),
(4945, 1844, 602, 'ICN5080750872976162816', 'Empty', 0.055, 0.050, 5.00, -0.240, -0.012),
(4946, 1844, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.117, 0.105, 10.50, 0.420, 0.044),
(4947, 1844, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.725, 0.653, 65.30, 0.200, 0.131),
(4948, 1844, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.213, 0.192, 19.20, 0.730, 0.140),
(4949, 1845, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4950, 1845, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.420, 0.133),
(4951, 1845, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4952, 1845, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.730, 0.228),
(4953, 1847, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(4954, 1847, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.420, 0.133),
(4955, 1847, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.200, 0.038),
(4956, 1847, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.730, 0.228),
(4957, 1848, 602, 'ICN5080750872976162816', 'Empty', 0.077, 0.050, 5.00, -0.240, -0.012),
(4958, 1848, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.584, 0.378, 37.80, 0.420, 0.159),
(4959, 1848, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.089, 0.058, 5.80, 0.200, 0.012),
(4960, 1848, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.793, 0.514, 51.40, 0.730, 0.375),
(4961, 1849, 602, 'ICN5080750872976162816', 'Empty', 0.105, 0.098, 9.80, -0.240, -0.024),
(4962, 1849, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.409, 0.382, 38.20, 0.430, 0.164),
(4963, 1849, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.483, 0.451, 45.10, 0.200, 0.090),
(4964, 1849, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.075, 0.070, 7.00, 0.730, 0.051),
(4965, 1851, 602, 'ICN5080750872976162816', 'Empty', 0.060, 0.054, 5.40, -0.240, -0.013),
(4966, 1851, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.219, 0.198, 19.80, 0.430, 0.085),
(4967, 1851, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.715, 0.645, 64.50, 0.200, 0.129),
(4968, 1851, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.114, 0.103, 10.30, 0.730, 0.075),
(4969, 1852, 602, 'ICN5080750872976162816', 'Empty', 0.071, 0.077, 7.70, -0.240, -0.018),
(4970, 1852, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.064, 0.069, 6.90, 0.430, 0.030),
(4971, 1852, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.361, 0.390, 39.00, 0.200, 0.078),
(4972, 1852, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.429, 0.464, 46.40, 0.740, 0.343),
(4973, 1853, 602, 'ICN5080750872976162816', 'Empty', 0.089, 0.079, 7.90, -0.240, -0.019),
(4974, 1853, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.050, 0.044, 4.40, 0.430, 0.019),
(4975, 1853, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.872, 0.774, 77.40, 0.200, 0.155),
(4976, 1853, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.116, 0.103, 10.30, 0.740, 0.076),
(4977, 1856, 602, 'ICN5080750872976162816', 'Empty', 0.075, 0.061, 6.10, -0.240, -0.015),
(4978, 1856, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.153, 0.124, 12.40, 0.430, 0.053),
(4979, 1856, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.918, 0.746, 74.60, 0.200, 0.149),
(4980, 1856, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.084, 0.068, 6.80, 0.730, 0.050),
(4981, 1857, 602, 'ICN5080750872976162816', 'Empty', 0.111, 0.100, 10.00, -0.240, -0.024),
(4982, 1857, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.078, 0.070, 7.00, 0.430, 0.030),
(4983, 1857, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.718, 0.645, 64.50, 0.200, 0.129),
(4984, 1857, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.207, 0.186, 18.60, 0.730, 0.136),
(4985, 1859, 602, 'ICN5080750872976162816', 'Empty', 0.043, 0.038, 3.80, -0.240, -0.009),
(4986, 1859, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.084, 0.074, 7.40, 0.430, 0.032),
(4987, 1859, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.923, 0.813, 81.30, 0.200, 0.163),
(4988, 1859, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.086, 0.076, 7.60, 0.730, 0.055),
(4989, 1860, 26, 'ICN5080750872976162816', 'Empty', 0.071, 0.077, 7.70, 0.000, 0.000),
(4990, 1860, 24, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.064, 0.069, 6.90, 0.120, 0.008),
(4991, 1860, 25, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.361, 0.390, 39.00, 0.080, 0.031),
(4992, 1860, 23, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.429, 0.464, 46.40, 0.140, 0.065),
(4993, 1862, 602, 'ICN5080750872976162816', 'Empty', 0.138, 0.129, 12.90, -0.240, -0.031),
(4994, 1862, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.249, 0.232, 23.20, 0.420, 0.097),
(4995, 1862, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.551, 0.514, 51.40, 0.200, 0.103),
(4996, 1862, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.133, 0.124, 12.40, 0.720, 0.089),
(5001, 1867, 234, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, 0.000, 0.000),
(5002, 1867, 232, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.440, 0.159),
(5003, 1867, 233, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.220, 0.024),
(5004, 1867, 231, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 0.770, 0.192),
(5005, 1869, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5006, 1869, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.440, 0.139),
(5007, 1869, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.210, 0.040),
(5008, 1869, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.760, 0.238),
(5009, 1870, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.919, 0.815, 81.50, 1.160, 0.945),
(5010, 1870, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.089, 0.079, 7.90, 1.250, 0.099),
(5011, 1870, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.120, 0.106, 10.60, 0.550, 0.058),
(5012, 1871, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.605, 0.623, 62.30, 1.160, 0.723),
(5013, 1871, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.143, 0.147, 14.70, 1.250, 0.184),
(5014, 1871, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.223, 0.230, 23.00, 0.550, 0.127),
(5015, 1872, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.235, 0.204, 20.40, 1.160, 0.237),
(5016, 1872, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.097, 9.70, 1.250, 0.121),
(5017, 1872, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.803, 0.698, 69.80, 0.550, 0.384),
(5018, 1873, 602, 'ICN5080750872976162816', 'Empty', 0.093, 0.097, 9.70, -0.240, -0.023),
(5019, 1873, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.045, 0.047, 4.70, 0.440, 0.021),
(5020, 1873, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.486, 0.505, 50.50, 0.210, 0.106),
(5021, 1873, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.339, 0.352, 35.20, 0.760, 0.268),
(5022, 1874, 602, 'ICN5080750872976162816', 'Empty', 0.058, 0.056, 5.60, -0.240, -0.013),
(5023, 1874, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.246, 0.237, 23.70, 0.440, 0.104),
(5024, 1874, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.621, 0.599, 59.90, 0.210, 0.126),
(5025, 1874, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.112, 0.108, 10.80, 0.760, 0.082),
(5026, 1875, 602, 'ICN5080750872976162816', 'Empty', 0.065, 0.059, 5.90, -0.240, -0.014),
(5027, 1875, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.107, 0.097, 9.70, 0.440, 0.043),
(5028, 1875, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.866, 0.787, 78.70, 0.210, 0.165),
(5029, 1875, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.063, 0.057, 5.70, 0.760, 0.043),
(5030, 1876, 602, 'ICN5080750872976162816', 'Empty', 0.059, 0.041, 4.10, -0.240, -0.010),
(5031, 1876, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.382, 0.266, 26.60, 0.440, 0.117),
(5032, 1876, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.946, 0.659, 65.90, 0.210, 0.138),
(5033, 1876, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.048, 0.033, 3.30, 0.760, 0.025),
(5034, 1879, 602, 'ICN5080750872976162816', 'Empty', 0.089, 0.079, 7.90, -0.240, -0.019),
(5035, 1879, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.050, 0.044, 4.40, 0.440, 0.019),
(5036, 1879, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.872, 0.774, 77.40, 0.210, 0.163),
(5037, 1879, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.116, 0.103, 10.30, 0.760, 0.078),
(5038, 1880, 602, 'ICN5080750872976162816', 'Empty', 0.043, 0.039, 3.90, -0.240, -0.009),
(5039, 1880, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.072, 0.065, 6.50, 0.470, 0.031),
(5040, 1880, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.914, 0.824, 82.40, 0.220, 0.181),
(5041, 1880, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.080, 0.072, 7.20, 0.810, 0.058),
(5042, 1881, 602, 'ICN5080750872976162816', 'Empty', 0.596, 0.432, 43.20, -0.240, -0.104),
(5043, 1881, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.072, 0.052, 5.20, 0.470, 0.024),
(5044, 1881, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.670, 0.486, 48.60, 0.220, 0.107),
(5045, 1881, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.042, 0.030, 3.00, 0.810, 0.024),
(5046, 1882, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5047, 1882, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.470, 0.149),
(5048, 1882, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.220, 0.042),
(5049, 1882, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 0.810, 0.254),
(5050, 1883, 602, 'ICN5080750872976162816', 'Empty', 0.637, 0.492, 49.20, -0.240, -0.118),
(5051, 1883, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.051, 0.039, 3.90, 0.500, 0.020),
(5052, 1883, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.523, 0.404, 40.40, 0.240, 0.097),
(5053, 1883, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.083, 0.064, 6.40, 0.870, 0.056),
(5054, 1884, 602, 'ICN5080750872976162816', 'Empty', 0.128, 0.133, 13.30, -0.240, -0.032),
(5055, 1884, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.349, 0.364, 36.40, 0.500, 0.182),
(5056, 1884, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.230, 0.240, 24.00, 0.240, 0.058),
(5057, 1884, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.253, 0.264, 26.40, 0.870, 0.230),
(5058, 1885, 602, 'ICN5080750872976162816', 'Empty', 0.065, 0.059, 5.90, -0.240, -0.014),
(5059, 1885, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.160, 0.145, 14.50, 0.500, 0.073),
(5060, 1885, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.776, 0.701, 70.10, 0.240, 0.168),
(5061, 1885, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.106, 0.096, 9.60, 0.860, 0.083),
(5062, 1887, 602, 'ICN5080750872976162816', 'Empty', 0.043, 0.044, 4.40, -0.240, -0.011),
(5063, 1887, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.168, 0.172, 17.20, 0.500, 0.086),
(5064, 1887, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.673, 0.690, 69.00, 0.240, 0.166),
(5065, 1887, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.091, 0.093, 9.30, 0.860, 0.080),
(5066, 1888, 602, 'ICN5080750872976162816', 'Empty', 0.071, 0.073, 7.30, -0.240, -0.018),
(5067, 1888, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.072, 0.074, 7.40, 0.510, 0.038),
(5068, 1888, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.599, 0.617, 61.70, 0.240, 0.148),
(5069, 1888, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.229, 0.236, 23.60, 0.870, 0.205),
(5070, 1890, 602, 'ICN5080750872976162816', 'Empty', 0.051, 0.051, 5.10, -0.240, -0.012),
(5071, 1890, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.054, 0.054, 5.40, 0.510, 0.028),
(5072, 1890, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.841, 0.837, 83.70, 0.240, 0.201),
(5073, 1890, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.059, 0.059, 5.90, 0.870, 0.051),
(5074, 1891, 602, 'ICN5080750872976162816', 'Empty', 0.042, 0.041, 4.10, -0.240, -0.010),
(5075, 1891, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.081, 0.079, 7.90, 0.510, 0.040),
(5076, 1891, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.852, 0.834, 83.40, 0.240, 0.200),
(5077, 1891, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.047, 0.046, 4.60, 0.870, 0.040),
(5078, 1892, 602, 'ICN5080750872976162816', 'Empty', 0.283, 0.323, 32.30, -0.240, -0.078),
(5079, 1892, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.107, 0.122, 12.20, 0.540, 0.066),
(5080, 1892, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.314, 0.358, 35.80, 0.250, 0.090),
(5081, 1892, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.172, 0.196, 19.60, 0.990, 0.194),
(5082, 1893, 602, 'ICN5080750872976162816', 'Empty', 0.047, 0.046, 4.60, -0.240, -0.011),
(5083, 1893, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.128, 0.124, 12.40, 0.540, 0.067),
(5084, 1893, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.379, 0.368, 36.80, 0.250, 0.092),
(5085, 1893, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.475, 0.462, 46.20, 0.990, 0.457),
(5086, 1895, 602, 'ICN5080750872976162816', 'Empty', 0.040, 0.032, 3.20, -0.240, -0.008),
(5087, 1895, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.275, 0.222, 22.20, 0.520, 0.115),
(5088, 1895, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.074, 0.060, 6.00, 0.240, 0.014),
(5089, 1895, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.848, 0.686, 68.60, 0.970, 0.665),
(5090, 1896, 602, 'ICN5080750872976162816', 'Empty', 0.158, 0.124, 12.40, -0.240, -0.030),
(5091, 1896, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.133, 0.104, 10.40, 0.520, 0.054),
(5092, 1896, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.924, 0.723, 72.30, 0.240, 0.174),
(5093, 1896, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.063, 0.049, 4.90, 0.960, 0.047),
(5094, 1898, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.059, 0.034, 3.40, 39.750, 1.352),
(5095, 1898, 593, 'ICN5348152100851286016', 'Low_Grade', 0.070, 0.040, 4.00, 2.370, 0.095),
(5096, 1898, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.880, 0.502, 50.20, 6.110, 3.067),
(5097, 1898, 592, 'ICN5348152100851286016', 'High_Grade', 0.743, 0.424, 42.40, 13.470, 5.711),
(5098, 1899, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.065, 0.036, 3.60, 39.750, 1.431),
(5099, 1899, 593, 'ICN5348152100851286016', 'Low_Grade', 0.086, 0.047, 4.70, 2.370, 0.111),
(5100, 1899, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.838, 0.458, 45.80, 6.110, 2.798),
(5101, 1899, 592, 'ICN5348152100851286016', 'High_Grade', 0.841, 0.460, 46.00, 13.470, 6.196),
(5102, 1900, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.040, 0.037, 3.70, 39.750, 1.471),
(5103, 1900, 593, 'ICN5348152100851286016', 'Low_Grade', 0.762, 0.698, 69.80, 2.370, 1.654),
(5104, 1900, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.238, 0.218, 21.80, 6.110, 1.332),
(5105, 1900, 592, 'ICN5348152100851286016', 'High_Grade', 0.052, 0.048, 4.80, 13.470, 0.647),
(5106, 1901, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.065, 0.056, 5.60, 39.750, 2.226),
(5107, 1901, 593, 'ICN5348152100851286016', 'Low_Grade', 0.134, 0.115, 11.50, 2.370, 0.273),
(5108, 1901, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.386, 0.331, 33.10, 6.110, 2.022),
(5109, 1901, 592, 'ICN5348152100851286016', 'High_Grade', 0.581, 0.498, 49.80, 13.470, 6.708),
(5110, 1902, 589, 'ICN3203040099432398848', 'High_Grade', 0.279, 0.294, 29.40, 46.450, 13.656),
(5111, 1902, 587, 'ICN3203040099432398848', 'Low_Grade', 0.534, 0.563, 56.30, 6.180, 3.479),
(5112, 1902, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.136, 0.143, 14.30, 25.350, 3.625),
(5113, 1903, 602, 'ICN5080750872976162816', 'Empty', 0.039, 0.020, 2.00, -0.240, -0.005),
(5114, 1903, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.831, 0.418, 41.80, 0.510, 0.213),
(5115, 1903, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.412, 0.207, 20.70, 0.240, 0.050),
(5116, 1903, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.706, 0.355, 35.50, 0.950, 0.337),
(5117, 1905, 602, 'ICN5080750872976162816', 'Empty', 0.172, 0.166, 16.60, -0.240, -0.040),
(5118, 1905, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.128, 0.123, 12.30, 0.510, 0.063),
(5119, 1905, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.433, 0.417, 41.70, 0.240, 0.100),
(5120, 1905, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.305, 0.294, 29.40, 0.950, 0.279),
(5121, 1906, 602, 'ICN5080750872976162816', 'Empty', 0.107, 0.088, 8.80, -0.240, -0.021),
(5122, 1906, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.179, 0.147, 14.70, 0.510, 0.075),
(5123, 1906, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.136, 0.111, 11.10, 0.240, 0.027),
(5124, 1906, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.798, 0.654, 65.40, 0.950, 0.621),
(5125, 1907, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.510, 0.545, 54.50, 1.290, 0.703),
(5126, 1907, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.058, 0.062, 6.20, 1.400, 0.087),
(5127, 1907, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.367, 0.393, 39.30, 0.630, 0.248),
(5128, 1909, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.877, 0.843, 84.30, 1.290, 1.087),
(5129, 1909, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.076, 0.073, 7.30, 1.400, 0.102),
(5130, 1909, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.087, 0.084, 8.40, 0.630, 0.053),
(5131, 1910, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.920, 0.851, 85.10, 1.320, 1.123),
(5132, 1910, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.071, 0.066, 6.60, 1.430, 0.094),
(5133, 1910, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.090, 0.083, 8.30, 0.650, 0.054),
(5134, 1911, 602, 'ICN5080750872976162816', 'Empty', 0.079, 0.040, 4.00, -0.240, -0.010),
(5135, 1911, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.954, 0.485, 48.50, 0.570, 0.276),
(5136, 1911, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.031, 0.016, 1.60, 0.260, 0.004),
(5137, 1911, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.901, 0.459, 45.90, 1.040, 0.477),
(5138, 1912, 602, 'ICN5080750872976162816', 'Empty', 0.038, 0.035, 3.50, -0.240, -0.008),
(5139, 1912, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.510, 0.467, 46.70, 0.570, 0.266),
(5140, 1912, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.468, 0.428, 42.80, 0.260, 0.111),
(5141, 1912, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.077, 0.070, 7.00, 1.050, 0.074),
(5142, 1913, 602, 'ICN5080750872976162816', 'Empty', 0.049, 0.044, 4.40, -0.240, -0.011),
(5143, 1913, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.064, 0.058, 5.80, 0.570, 0.033),
(5144, 1913, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.943, 0.856, 85.60, 0.260, 0.223),
(5145, 1913, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.046, 0.042, 4.20, 1.050, 0.044),
(5146, 1914, 602, 'ICN5080750872976162816', 'Empty', 0.087, 0.086, 8.60, -0.240, -0.021),
(5147, 1914, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.580, 0.571, 57.10, 0.570, 0.325),
(5148, 1914, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.251, 0.247, 24.70, 0.260, 0.064),
(5149, 1914, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.098, 0.096, 9.60, 1.050, 0.101),
(5150, 1915, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5151, 1915, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.570, 0.181),
(5152, 1915, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.260, 0.049),
(5153, 1915, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.050, 0.329),
(5154, 1916, 602, 'ICN5080750872976162816', 'Empty', 0.038, 0.035, 3.50, -0.240, -0.008),
(5155, 1916, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.510, 0.467, 46.70, 0.570, 0.266),
(5156, 1916, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.468, 0.428, 42.80, 0.260, 0.111),
(5157, 1916, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.077, 0.070, 7.00, 1.050, 0.074),
(5158, 1917, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.431, 0.388, 38.80, 1.320, 0.512),
(5159, 1917, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.150, 0.135, 13.50, 1.440, 0.194),
(5160, 1917, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.529, 0.477, 47.70, 0.650, 0.310),
(5161, 1918, 602, 'ICN5080750872976162816', 'Empty', 0.056, 0.062, 6.20, -0.240, -0.015),
(5162, 1918, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.174, 0.194, 19.40, 0.590, 0.114),
(5163, 1918, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.489, 0.545, 54.50, 0.270, 0.147),
(5164, 1918, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.178, 0.198, 19.80, 1.080, 0.214),
(5165, 1922, 602, 'ICN5080750872976162816', 'Empty', 0.426, 0.329, 32.90, -0.240, -0.079),
(5166, 1922, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.080, 0.062, 6.20, 0.590, 0.037),
(5167, 1922, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.614, 0.474, 47.40, 0.270, 0.128),
(5168, 1922, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.176, 0.136, 13.60, 1.090, 0.148),
(5169, 1923, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5170, 1923, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.590, 0.187),
(5171, 1923, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(5172, 1923, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.080, 0.338),
(5173, 1924, 602, 'ICN5080750872976162816', 'Empty', 0.111, 0.112, 11.20, -0.240, -0.027),
(5174, 1924, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.210, 0.211, 21.10, 0.590, 0.124),
(5175, 1924, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.258, 0.260, 26.00, 0.270, 0.070),
(5176, 1924, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.414, 0.417, 41.70, 1.080, 0.450),
(5177, 1925, 602, 'ICN5080750872976162816', 'Empty', 0.055, 0.050, 5.00, -0.240, -0.012),
(5178, 1925, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.069, 0.063, 6.30, 0.590, 0.037),
(5179, 1925, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.888, 0.812, 81.20, 0.270, 0.219),
(5180, 1925, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.081, 0.074, 7.40, 1.080, 0.080),
(5181, 1926, 602, 'ICN5080750872976162816', 'Empty', 0.100, 0.092, 9.20, -0.240, -0.022),
(5182, 1926, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.259, 0.239, 23.90, 0.590, 0.141),
(5183, 1926, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.115, 0.106, 10.60, 0.270, 0.029),
(5184, 1926, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.608, 0.562, 56.20, 1.080, 0.607),
(5185, 1927, 602, 'ICN5080750872976162816', 'Empty', 0.057, 0.051, 5.10, -0.240, -0.012),
(5186, 1927, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.073, 0.065, 6.50, 0.590, 0.038),
(5187, 1927, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.928, 0.831, 83.10, 0.270, 0.224),
(5188, 1927, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.059, 0.053, 5.30, 1.080, 0.057),
(5189, 1928, 602, 'ICN5080750872976162816', 'Empty', 0.102, 0.079, 7.90, -0.240, -0.019),
(5190, 1928, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.354, 0.274, 27.40, 0.590, 0.162),
(5191, 1928, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.684, 0.530, 53.00, 0.270, 0.143),
(5192, 1928, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.150, 0.116, 11.60, 1.080, 0.125),
(5193, 1929, 602, 'ICN5080750872976162816', 'Empty', 0.089, 0.072, 7.20, -0.240, -0.017),
(5194, 1929, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.157, 0.127, 12.70, 0.590, 0.075),
(5195, 1929, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.842, 0.680, 68.00, 0.270, 0.184),
(5196, 1929, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.151, 0.122, 12.20, 1.080, 0.132),
(5201, 1931, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.054, 0.051, 5.10, 38.220, 1.949),
(5202, 1931, 593, 'ICN5348152100851286016', 'Low_Grade', 0.198, 0.187, 18.70, 2.290, 0.428),
(5203, 1931, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.738, 0.698, 69.80, 5.880, 4.104),
(5204, 1931, 592, 'ICN5348152100851286016', 'High_Grade', 0.068, 0.064, 6.40, 12.930, 0.828),
(5205, 1932, 602, 'ICN5080750872976162816', 'Empty', 0.065, 0.053, 5.30, -0.240, -0.013),
(5206, 1932, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.111, 0.090, 9.00, 0.590, 0.053),
(5207, 1932, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.840, 0.679, 67.90, 0.270, 0.183),
(5208, 1932, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.221, 0.179, 17.90, 1.080, 0.193),
(5209, 1933, 602, 'ICN5080750872976162816', 'Empty', 0.095, 0.079, 7.90, -0.240, -0.019),
(5210, 1933, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.064, 0.053, 5.30, 0.590, 0.031),
(5211, 1933, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.667, 0.551, 55.10, 0.270, 0.149),
(5212, 1933, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.384, 0.317, 31.70, 1.080, 0.342),
(5213, 1934, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5214, 1934, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.590, 0.187),
(5215, 1934, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.270, 0.051),
(5216, 1934, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.080, 0.338),
(5217, 1935, 602, 'ICN5080750872976162816', 'Empty', 0.120, 0.108, 10.80, -0.240, -0.026),
(5218, 1935, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.125, 0.112, 11.20, 0.590, 0.066),
(5219, 1935, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.700, 0.629, 62.90, 0.270, 0.170),
(5220, 1935, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.168, 0.151, 15.10, 1.080, 0.163),
(5221, 1936, 602, 'ICN5080750872976162816', 'Empty', 0.157, 0.088, 8.80, -0.240, -0.021),
(5222, 1936, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.711, 0.396, 39.60, 0.590, 0.234),
(5223, 1936, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.865, 0.482, 48.20, 0.270, 0.130),
(5224, 1936, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.061, 0.034, 3.40, 1.080, 0.037),
(5225, 1939, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.614, 0.566, 56.60, 1.310, 0.741),
(5226, 1939, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.059, 0.054, 5.40, 1.440, 0.078),
(5227, 1939, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.411, 0.379, 37.90, 0.650, 0.246),
(5228, 1941, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.874, 0.796, 79.60, 1.310, 1.043),
(5229, 1941, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.077, 0.070, 7.00, 1.440, 0.101),
(5230, 1941, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.147, 0.134, 13.40, 0.650, 0.087),
(5231, 1942, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.644, 0.642, 64.20, 1.310, 0.841),
(5232, 1942, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.190, 0.189, 18.90, 1.440, 0.272),
(5233, 1942, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.169, 0.168, 16.80, 0.650, 0.109),
(5234, 1943, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.597, 0.507, 50.70, 1.300, 0.659),
(5235, 1943, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.411, 0.349, 34.90, 1.440, 0.503),
(5236, 1943, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.170, 0.144, 14.40, 0.640, 0.092),
(5237, 1948, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5238, 1948, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5239, 1948, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5240, 1948, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5241, 1951, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5242, 1951, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5243, 1951, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5244, 1951, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5245, 1952, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5246, 1952, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5247, 1952, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5248, 1952, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5249, 1953, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5250, 1953, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5251, 1953, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5252, 1953, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5253, 1954, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5254, 1954, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5255, 1954, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5256, 1954, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5257, 1955, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5258, 1955, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5259, 1955, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5260, 1955, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5261, 1956, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5262, 1956, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5263, 1956, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5264, 1956, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5265, 1957, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5266, 1957, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5267, 1957, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5268, 1957, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5269, 1958, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5270, 1958, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5271, 1958, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5272, 1958, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5273, 1959, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5274, 1959, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5275, 1959, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5276, 1959, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5277, 1960, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5278, 1960, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5279, 1960, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5280, 1960, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5281, 1961, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5282, 1961, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5283, 1961, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5284, 1961, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5285, 1962, 602, 'ICN5080750872976162816', 'Empty', 0.233, 0.279, 27.90, -0.240, -0.067),
(5286, 1962, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.302, 0.362, 36.20, 0.630, 0.228),
(5287, 1962, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.091, 0.109, 10.90, 0.290, 0.032),
(5288, 1962, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.208, 0.249, 24.90, 1.160, 0.289),
(5289, 1963, 602, 'ICN5080750872976162816', 'Empty', 0.159, 0.160, 16.00, -0.240, -0.038),
(5290, 1963, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.649, 0.654, 65.40, 0.640, 0.419),
(5291, 1963, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.067, 0.067, 6.70, 0.290, 0.019),
(5292, 1963, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.118, 0.119, 11.90, 1.170, 0.139),
(5293, 1964, 602, 'ICN5080750872976162816', 'Empty', 0.195, 0.163, 16.30, -0.240, -0.039),
(5294, 1964, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.442, 0.369, 36.90, 0.640, 0.236),
(5295, 1964, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.374, 0.312, 31.20, 0.290, 0.090),
(5296, 1964, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.187, 0.156, 15.60, 1.180, 0.184),
(5297, 1966, 602, 'ICN5080750872976162816', 'Empty', 0.159, 0.158, 15.80, -0.240, -0.038),
(5298, 1966, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.657, 0.654, 65.40, 0.640, 0.419),
(5299, 1966, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.064, 0.064, 6.40, 0.290, 0.019),
(5300, 1966, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.125, 0.124, 12.40, 1.180, 0.146),
(5301, 1967, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.854, 0.760, 76.00, 1.370, 1.041),
(5302, 1967, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.107, 0.095, 9.50, 1.510, 0.143),
(5303, 1967, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.162, 0.144, 14.40, 0.690, 0.099),
(5304, 1968, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.235, 0.204, 20.40, 1.370, 0.279),
(5305, 1968, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.097, 9.70, 1.510, 0.146),
(5306, 1968, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.803, 0.698, 69.80, 0.690, 0.482),
(5316, 1972, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.468, 0.367, 36.70, 1.370, 0.503),
(5317, 1972, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.077, 0.060, 6.00, 1.510, 0.091),
(5318, 1972, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.731, 0.573, 57.30, 0.690, 0.395),
(5319, 1973, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.641, 0.723, 72.30, 1.370, 0.991),
(5320, 1973, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.077, 0.087, 8.70, 1.510, 0.131),
(5321, 1973, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.169, 0.191, 19.10, 0.690, 0.132),
(5322, 1974, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.099, 0.119, 11.90, 1.370, 0.163),
(5323, 1974, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.194, 0.233, 23.30, 1.510, 0.352),
(5324, 1974, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.538, 0.647, 64.70, 0.690, 0.446),
(5328, 1976, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.239, 0.202, 20.20, 1.370, 0.277),
(5329, 1976, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.139, 0.117, 11.70, 1.510, 0.177),
(5330, 1976, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.806, 0.681, 68.10, 0.690, 0.470),
(5331, 1977, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.778, 0.708, 70.80, 1.370, 0.970),
(5332, 1977, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.056, 0.051, 5.10, 1.510, 0.077),
(5333, 1977, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.265, 0.241, 24.10, 0.690, 0.166),
(5343, 1981, 602, 'ICN5080750872976162816', 'Empty', 0.030, 0.027, 2.70, -0.240, -0.006),
(5344, 1981, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.979, 0.888, 88.80, 0.650, 0.577),
(5345, 1981, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.061, 0.055, 5.50, 0.300, 0.017),
(5346, 1981, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.032, 0.029, 2.90, 1.200, 0.035),
(5347, 1982, 602, 'ICN5080750872976162816', 'Empty', 0.036, 0.031, 3.10, -0.240, -0.007),
(5348, 1982, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.788, 0.679, 67.90, 0.650, 0.441),
(5349, 1982, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.236, 0.203, 20.30, 0.300, 0.061),
(5350, 1982, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.101, 0.087, 8.70, 1.200, 0.104),
(5351, 1983, 602, 'ICN5080750872976162816', 'Empty', 0.062, 0.054, 5.40, -0.240, -0.013),
(5352, 1983, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.428, 0.376, 37.60, 0.650, 0.244),
(5353, 1983, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.489, 0.429, 42.90, 0.300, 0.129),
(5354, 1983, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.160, 0.140, 14.00, 1.200, 0.168),
(5355, 1984, 602, 'ICN5080750872976162816', 'Empty', 0.045, 0.027, 2.70, -0.240, -0.006),
(5356, 1984, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.641, 0.389, 38.90, 0.650, 0.253),
(5357, 1984, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.825, 0.501, 50.10, 0.300, 0.150),
(5358, 1984, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.136, 0.083, 8.30, 1.200, 0.100),
(5359, 1985, 602, 'ICN5080750872976162816', 'Empty', 0.058, 0.047, 4.70, -0.240, -0.011),
(5360, 1985, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.849, 0.689, 68.90, 0.650, 0.448),
(5361, 1985, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.170, 0.138, 13.80, 0.300, 0.041),
(5362, 1985, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.155, 0.126, 12.60, 1.200, 0.151),
(5363, 1986, 602, 'ICN5080750872976162816', 'Empty', 0.068, 0.058, 5.80, -0.240, -0.014),
(5364, 1986, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.117, 0.099, 9.90, 0.650, 0.064),
(5365, 1986, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.906, 0.770, 77.00, 0.300, 0.231),
(5366, 1986, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.085, 0.072, 7.20, 1.200, 0.086),
(5379, 1992, 602, 'ICN5080750872976162816', 'Empty', 0.104, 0.092, 9.20, -0.240, -0.022),
(5380, 1992, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.045, 0.040, 4.00, 0.650, 0.026),
(5381, 1992, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.912, 0.807, 80.70, 0.300, 0.242),
(5382, 1992, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.069, 0.061, 6.10, 1.200, 0.073),
(5387, 1994, 602, 'ICN5080750872976162816', 'Empty', 0.050, 0.041, 4.10, -0.240, -0.010),
(5388, 1994, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.125, 0.103, 10.30, 0.650, 0.067),
(5389, 1994, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.969, 0.798, 79.80, 0.300, 0.239),
(5390, 1994, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.070, 0.058, 5.80, 1.200, 0.070),
(5395, 1996, 602, 'ICN5080750872976162816', 'Empty', 0.050, 0.040, 4.00, -0.240, -0.010),
(5396, 1996, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.203, 0.164, 16.40, 0.650, 0.107),
(5397, 1996, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.935, 0.755, 75.50, 0.290, 0.219),
(5398, 1996, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.051, 0.041, 4.10, 1.190, 0.049),
(5399, 1997, 602, 'ICN5080750872976162816', 'Empty', 0.054, 0.042, 4.20, -0.240, -0.010),
(5400, 1997, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.280, 0.218, 21.80, 0.650, 0.142),
(5401, 1997, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.780, 0.608, 60.80, 0.290, 0.176),
(5402, 1997, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.168, 0.131, 13.10, 1.190, 0.156),
(5403, 1998, 602, 'ICN5080750872976162816', 'Empty', 0.049, 0.048, 4.80, -0.240, -0.012),
(5404, 1998, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.707, 0.696, 69.60, 0.640, 0.445),
(5405, 1998, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.179, 0.176, 17.60, 0.290, 0.051),
(5406, 1998, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.081, 0.080, 8.00, 1.180, 0.094),
(5407, 1999, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.235, 0.204, 20.40, 1.320, 0.269),
(5408, 1999, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.097, 9.70, 1.470, 0.143),
(5409, 1999, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.803, 0.698, 69.80, 0.660, 0.461),
(5410, 2000, 602, 'ICN5080750872976162816', 'Empty', 0.056, 0.037, 3.70, -0.240, -0.009),
(5411, 2000, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.557, 0.373, 37.30, 0.620, 0.231),
(5412, 2000, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.099, 0.066, 6.60, 0.280, 0.018),
(5413, 2000, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.783, 0.524, 52.40, 1.140, 0.597),
(5422, 2003, 589, 'ICN3203040099432398848', 'High_Grade', 0.177, 0.167, 16.70, 43.880, 7.328);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(5423, 2003, 587, 'ICN3203040099432398848', 'Low_Grade', 0.428, 0.403, 40.30, 5.810, 2.341),
(5424, 2003, 588, 'ICN3203040099432398848', 'Mid_Grade', 0.456, 0.430, 43.00, 23.950, 10.299),
(5457, 2013, 602, 'ICN5080750872976162816', 'Empty', 0.060, 0.044, 4.40, -0.240, -0.011),
(5458, 2013, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.309, 0.225, 22.50, 0.610, 0.137),
(5459, 2013, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.846, 0.615, 61.50, 0.280, 0.172),
(5460, 2013, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.161, 0.117, 11.70, 1.130, 0.132),
(5461, 2014, 602, 'ICN5080750872976162816', 'Empty', 0.127, 0.128, 12.80, -0.240, -0.031),
(5462, 2014, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.135, 0.136, 13.60, 0.620, 0.084),
(5463, 2014, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.654, 0.659, 65.90, 0.280, 0.185),
(5464, 2014, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.077, 0.078, 7.80, 1.130, 0.088),
(5465, 2015, 602, 'ICN5080750872976162816', 'Empty', 0.099, 0.094, 9.40, -0.240, -0.023),
(5466, 2015, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.134, 0.128, 12.80, 0.700, 0.090),
(5467, 2015, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.621, 0.592, 59.20, 0.320, 0.189),
(5468, 2015, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.195, 0.186, 18.60, 1.280, 0.238),
(5469, 2017, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.253, 0.193, 19.30, 13.630, 2.631),
(5470, 2017, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.364, 0.278, 27.80, 7.560, 2.102),
(5471, 2017, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.147, 0.112, 11.20, 2.850, 0.319),
(5472, 2017, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.298, 0.227, 22.70, 1.680, 0.381),
(5473, 2017, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.249, 0.190, 19.00, 8.520, 1.619),
(5474, 2018, 602, 'ICN5080750872976162816', 'Empty', 0.037, 0.031, 3.10, -0.240, -0.007),
(5475, 2018, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.175, 0.149, 14.90, 0.650, 0.097),
(5476, 2018, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.924, 0.785, 78.50, 0.300, 0.236),
(5477, 2018, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.041, 0.035, 3.50, 1.190, 0.042),
(5482, 2021, 963, 'ICN5080750872976162816', 'Empty', 0.041, 0.036, 3.60, -0.170, -0.006),
(5483, 2021, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.093, 0.082, 8.20, 0.500, 0.041),
(5484, 2021, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.932, 0.819, 81.90, 0.110, 0.090),
(5485, 2021, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.072, 0.063, 6.30, 1.040, 0.066),
(5486, 2022, 963, 'ICN5080750872976162816', 'Empty', 0.096, 0.068, 6.80, -0.170, -0.012),
(5487, 2022, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.391, 0.279, 27.90, 0.500, 0.140),
(5488, 2022, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.598, 0.426, 42.60, 0.110, 0.047),
(5489, 2022, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.318, 0.227, 22.70, 1.040, 0.236),
(5490, 2025, 963, 'ICN5080750872976162816', 'Empty', 0.541, 0.484, 48.40, -0.210, -0.102),
(5491, 2025, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.105, 0.094, 9.40, 0.660, 0.062),
(5492, 2025, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.395, 0.354, 35.40, 0.160, 0.057),
(5493, 2025, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.076, 0.068, 6.80, 1.380, 0.094),
(5494, 2026, 963, 'ICN5080750872976162816', 'Empty', 0.816, 0.800, 80.00, -0.210, -0.168),
(5495, 2026, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.045, 0.044, 4.40, 0.660, 0.029),
(5496, 2026, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.126, 0.124, 12.40, 0.160, 0.020),
(5497, 2026, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.033, 0.032, 3.20, 1.380, 0.044),
(5498, 2027, 963, 'ICN5080750872976162816', 'Empty', 0.068, 0.059, 5.90, -0.210, -0.012),
(5499, 2027, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.218, 0.189, 18.90, 0.660, 0.125),
(5500, 2027, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.583, 0.507, 50.70, 0.160, 0.081),
(5501, 2027, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.282, 0.245, 24.50, 1.380, 0.338),
(5502, 2028, 963, 'ICN5080750872976162816', 'Empty', 0.445, 0.489, 48.90, -0.210, -0.103),
(5503, 2028, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.081, 0.089, 8.90, 0.660, 0.059),
(5504, 2028, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.307, 0.337, 33.70, 0.160, 0.054),
(5505, 2028, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.077, 0.085, 8.50, 1.380, 0.117),
(5506, 2029, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.304, 0.334, 33.40, 2.970, 0.992),
(5507, 2029, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.109, 0.120, 12.00, 2.800, 0.336),
(5508, 2029, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.240, 0.264, 26.40, 1.300, 0.343),
(5509, 2029, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.135, 0.149, 14.90, 1.480, 0.221),
(5510, 2029, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.121, 0.133, 13.30, 1.040, 0.138),
(5511, 2032, 602, 'ICN5080750872976162816', 'Empty', 0.082, 0.063, 6.30, -0.240, -0.015),
(5512, 2032, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.121, 0.092, 9.20, 0.660, 0.061),
(5513, 2032, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.779, 0.595, 59.50, 0.300, 0.179),
(5514, 2032, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.327, 0.250, 25.00, 1.200, 0.300),
(5515, 2033, 602, 'ICN5080750872976162816', 'Empty', 0.064, 0.057, 5.70, -0.240, -0.014),
(5516, 2033, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.069, 0.061, 6.10, 0.660, 0.040),
(5517, 2033, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.879, 0.781, 78.10, 0.300, 0.234),
(5518, 2033, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.114, 0.101, 10.10, 1.200, 0.121),
(5519, 2035, 581, 'ICN2556984659137265664', 'High_Grade', 0.108, 0.126, 12.60, 7.270, 0.916),
(5520, 2035, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.236, 0.276, 27.60, 1.030, 0.284),
(5521, 2035, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.173, 0.202, 20.20, 7.100, 1.434),
(5522, 2035, 583, 'ICN2556984659137265664', 'Low_Yield', 0.119, 0.139, 13.90, 1.630, 0.227),
(5523, 2035, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.220, 0.257, 25.70, 2.180, 0.560),
(5524, 2036, 602, 'ICN5080750872976162816', 'Empty', 0.042, 0.049, 4.90, -0.240, -0.012),
(5525, 2036, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.351, 0.409, 40.90, 0.640, 0.262),
(5526, 2036, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.345, 0.402, 40.20, 0.290, 0.117),
(5527, 2036, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.120, 0.140, 14.00, 1.180, 0.165),
(5528, 2037, 602, 'ICN5080750872976162816', 'Empty', 0.081, 0.088, 8.80, -0.240, -0.021),
(5529, 2037, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.403, 0.438, 43.80, 0.640, 0.280),
(5530, 2037, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.276, 0.300, 30.00, 0.290, 0.087),
(5531, 2037, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.161, 0.175, 17.50, 1.180, 0.207),
(5532, 2039, 602, 'ICN5080750872976162816', 'Empty', 0.034, 0.023, 2.30, -0.240, -0.006),
(5533, 2039, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.750, 0.509, 50.90, 0.640, 0.326),
(5534, 2039, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.578, 0.392, 39.20, 0.290, 0.114),
(5535, 2039, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.111, 0.075, 7.50, 1.180, 0.089),
(5536, 2040, 602, 'ICN5080750872976162816', 'Empty', 0.038, 0.021, 2.10, -0.240, -0.005),
(5537, 2040, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.744, 0.412, 41.20, 0.640, 0.264),
(5538, 2040, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.960, 0.532, 53.20, 0.290, 0.154),
(5539, 2040, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.062, 0.034, 3.40, 1.180, 0.040),
(5540, 2041, 963, 'ICN5080750872976162816', 'Empty', 0.231, 0.197, 19.70, -0.210, -0.041),
(5541, 2041, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.158, 0.134, 13.40, 0.640, 0.086),
(5542, 2041, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.706, 0.601, 60.10, 0.150, 0.090),
(5543, 2041, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.080, 0.068, 6.80, 1.330, 0.090),
(5544, 2043, 602, 'ICN5080750872976162816', 'Empty', 0.174, 0.181, 18.10, -0.240, -0.043),
(5545, 2043, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.304, 0.317, 31.70, 0.650, 0.206),
(5546, 2043, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.182, 0.190, 19.00, 0.300, 0.057),
(5547, 2043, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.300, 0.313, 31.30, 1.190, 0.372),
(5552, 2046, 602, 'ICN5080750872976162816', 'Empty', 0.304, 0.380, 38.00, -0.240, -0.091),
(5553, 2046, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.172, 0.215, 21.50, 0.650, 0.140),
(5554, 2046, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.198, 0.247, 24.70, 0.300, 0.074),
(5555, 2046, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.127, 0.159, 15.90, 1.190, 0.189),
(5560, 2048, 602, 'ICN5080750872976162816', 'Empty', 0.135, 0.141, 14.10, -0.240, -0.034),
(5561, 2048, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.342, 0.357, 35.70, 0.650, 0.232),
(5562, 2048, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.149, 0.156, 15.60, 0.300, 0.047),
(5563, 2048, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.331, 0.346, 34.60, 1.190, 0.412),
(5564, 2049, 602, 'ICN5080750872976162816', 'Empty', 0.062, 0.053, 5.30, -0.240, -0.013),
(5565, 2049, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.828, 0.705, 70.50, 0.760, 0.536),
(5566, 2049, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.224, 0.191, 19.10, 0.340, 0.065),
(5567, 2049, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.061, 0.052, 5.20, 1.380, 0.072),
(5568, 2052, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.125, 0.137, 13.70, 1.400, 0.192),
(5569, 2052, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.223, 0.244, 24.40, 1.570, 0.383),
(5570, 2052, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.567, 0.620, 62.00, 0.730, 0.453),
(5571, 2054, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.664, 0.647, 64.70, 1.400, 0.906),
(5572, 2054, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.300, 0.292, 29.20, 1.560, 0.456),
(5573, 2054, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.063, 0.061, 6.10, 0.730, 0.045),
(5574, 2056, 602, 'ICN5080750872976162816', 'Empty', 0.114, 0.092, 9.20, -0.240, -0.022),
(5575, 2056, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.291, 0.236, 23.60, 0.700, 0.165),
(5576, 2056, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.745, 0.604, 60.40, 0.310, 0.187),
(5577, 2056, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.084, 0.068, 6.80, 1.280, 0.087),
(5578, 2061, 581, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.070, 7.00, 7.050, 0.494),
(5579, 2061, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.175, 0.159, 15.90, 1.040, 0.165),
(5580, 2061, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.070, 7.00, 7.000, 0.490),
(5581, 2061, 583, 'ICN2556984659137265664', 'Low_Yield', 0.590, 0.534, 53.40, 1.620, 0.865),
(5582, 2061, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.185, 0.168, 16.80, 2.170, 0.365),
(5583, 2062, 942, 'ICN2556984659137265664', 'High_Grade', 0.106, 0.100, 10.00, 1.580, 0.158),
(5584, 2062, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.454, 0.430, 43.00, 0.350, 0.151),
(5585, 2062, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.400, 0.379, 37.90, 2.610, 0.989),
(5586, 2062, 944, 'ICN2556984659137265664', 'Low_Yield', 0.044, 0.042, 4.20, 0.900, 0.038),
(5587, 2062, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.052, 0.049, 4.90, 1.480, 0.073),
(5596, 2068, 987, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.055, 0.040, 4.00, 12.550, 0.502),
(5597, 2068, 954, 'ICN5348152100851286016', 'Low_Grade', 0.326, 0.238, 23.80, 1.190, 0.283),
(5598, 2068, 955, 'ICN5348152100851286016', 'Mid_Grade', 0.896, 0.655, 65.50, 3.750, 2.456),
(5599, 2068, 953, 'ICN5348152100851286016', 'High_Grade', 0.091, 0.067, 6.70, 7.580, 0.508),
(5600, 2069, 963, 'ICN5080750872976162816', 'Empty', 0.043, 0.031, 3.10, -0.140, -0.004),
(5601, 2069, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.343, 0.249, 24.90, 0.470, 0.117),
(5602, 2069, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.904, 0.655, 65.50, 0.120, 0.079),
(5603, 2069, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.090, 0.065, 6.50, 0.980, 0.064),
(5604, 2072, 963, 'ICN5080750872976162816', 'Empty', 0.088, 0.087, 8.70, -0.140, -0.012),
(5605, 2072, 961, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.329, 0.324, 32.40, 0.470, 0.152),
(5606, 2072, 962, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.429, 0.423, 42.30, 0.120, 0.051),
(5607, 2072, 960, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.168, 0.166, 16.60, 0.970, 0.161),
(5608, 2075, 602, 'ICN5080750872976162816', 'Empty', 0.065, 0.058, 5.80, -0.240, -0.014),
(5609, 2075, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.146, 0.129, 12.90, 0.510, 0.066),
(5610, 2075, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.629, 0.557, 55.70, 0.110, 0.061),
(5611, 2075, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.289, 0.256, 25.60, 1.140, 0.292),
(5612, 2077, 602, 'ICN5080750872976162816', 'Empty', 0.197, 0.194, 19.40, -0.240, -0.047),
(5613, 2077, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.604, 0.593, 59.30, 0.510, 0.302),
(5614, 2077, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.113, 0.111, 11.10, 0.110, 0.012),
(5615, 2077, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.104, 0.102, 10.20, 1.140, 0.116),
(5621, 2079, 942, 'ICN2556984659137265664', 'High_Grade', 0.073, 0.071, 7.10, 2.190, 0.155),
(5622, 2079, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.458, 0.447, 44.70, 0.400, 0.179),
(5623, 2079, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.330, 0.322, 32.20, 2.910, 0.937),
(5624, 2079, 944, 'ICN2556984659137265664', 'Low_Yield', 0.090, 0.088, 8.80, 1.290, 0.114),
(5625, 2079, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.073, 0.071, 7.10, 2.280, 0.162),
(5626, 2081, 602, 'ICN5080750872976162816', 'Empty', 0.124, 0.144, 14.40, -0.240, -0.035),
(5627, 2081, 600, 'ICN5080750872976162816', 'Two_Layer_MidGrade', 0.170, 0.198, 19.80, 0.500, 0.099),
(5628, 2081, 601, 'ICN5080750872976162816', 'SingleLayer_LowGrade', 0.439, 0.511, 51.10, 0.100, 0.051),
(5629, 2081, 599, 'ICN5080750872976162816', 'MultiLayer_HighGrade', 0.126, 0.147, 14.70, 1.120, 0.165),
(5642, 2098, 602, 'ICN2661396482334130176', 'Empty', 0.126, 0.114, 11.40, -0.240, -0.027),
(5643, 2098, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.074, 0.067, 6.70, 0.510, 0.034),
(5644, 2098, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.136, 0.123, 12.30, 0.110, 0.014),
(5645, 2098, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.773, 0.697, 69.70, 1.140, 0.795),
(5646, 2101, 602, 'ICN2661396482334130176', 'Empty', 0.157, 0.163, 16.30, -0.240, -0.039),
(5647, 2101, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.326, 0.339, 33.90, 0.510, 0.173),
(5648, 2101, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.179, 0.186, 18.60, 0.110, 0.020),
(5649, 2101, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.299, 0.311, 31.10, 1.140, 0.355),
(5650, 2103, 602, 'ICN2661396482334130176', 'Empty', 0.129, 0.118, 11.80, -0.240, -0.028),
(5651, 2103, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.137, 0.126, 12.60, 0.510, 0.064),
(5652, 2103, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.301, 0.276, 27.60, 0.110, 0.030),
(5653, 2103, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.522, 0.479, 47.90, 1.140, 0.546),
(5654, 2105, 602, 'ICN2661396482334130176', 'Empty', 0.137, 0.128, 12.80, -0.240, -0.031),
(5655, 2105, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.140, 0.131, 13.10, 0.970, 0.127),
(5656, 2105, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.307, 0.287, 28.70, 0.320, 0.092),
(5657, 2105, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.485, 0.454, 45.40, 1.860, 0.844),
(5658, 2106, 602, 'ICN2661396482334130176', 'Empty', 0.163, 0.161, 16.10, -0.240, -0.039),
(5659, 2106, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.880, 0.283),
(5660, 2106, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.290, 0.080),
(5661, 2106, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.700, 0.408),
(5662, 2108, 602, 'ICN2661396482334130176', 'Empty', 0.163, 0.161, 16.10, -0.240, -0.039),
(5663, 2108, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.880, 0.283),
(5664, 2108, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.290, 0.080),
(5665, 2108, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.700, 0.408),
(5666, 2111, 602, 'ICN2661396482334130176', 'Empty', 0.163, 0.161, 16.10, -0.240, -0.039),
(5667, 2111, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.880, 0.283),
(5668, 2111, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.290, 0.080),
(5669, 2111, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.700, 0.408),
(5670, 2112, 602, 'ICN2661396482334130176', 'Empty', 0.156, 0.122, 12.20, -0.260, -0.032),
(5671, 2112, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.299, 0.234, 23.40, 0.970, 0.227),
(5672, 2112, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.799, 0.626, 62.60, 0.320, 0.200),
(5673, 2112, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.023, 0.018, 1.80, 1.870, 0.034),
(5674, 2118, 602, 'ICN2661396482334130176', 'Empty', 0.019, 0.017, 1.70, -0.260, -0.004),
(5675, 2118, 600, 'ICN2661396482334130176', 'Two_Layer_MidGrade', 0.430, 0.389, 38.90, 0.970, 0.377),
(5676, 2118, 601, 'ICN2661396482334130176', 'SingleLayer_LowGrade', 0.066, 0.060, 6.00, 0.320, 0.019),
(5677, 2118, 599, 'ICN2661396482334130176', 'MultiLayer_HighGrade', 0.590, 0.534, 53.40, 1.880, 1.004),
(5686, 2123, 602, 'ICN6597401819167588352', 'Empty', 0.148, 0.159, 15.90, -0.260, -0.041),
(5687, 2123, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.202, 0.218, 21.80, 0.970, 0.211),
(5688, 2123, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.222, 0.239, 23.90, 0.320, 0.076),
(5689, 2123, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.356, 0.384, 38.40, 1.880, 0.722),
(5690, 2124, 602, 'ICN6597401819167588352', 'Empty', 0.163, 0.161, 16.10, -0.260, -0.042),
(5691, 2124, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.970, 0.312),
(5692, 2124, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.320, 0.089),
(5693, 2124, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.880, 0.451),
(5694, 2126, 602, 'ICN6597401819167588352', 'Empty', 0.031, 0.024, 2.40, -0.260, -0.006),
(5695, 2126, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.867, 0.660, 66.00, 0.960, 0.634),
(5696, 2126, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.051, 0.039, 3.90, 0.320, 0.012),
(5697, 2126, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.364, 0.277, 27.70, 1.870, 0.518),
(5698, 2127, 602, 'ICN6597401819167588352', 'Empty', 0.047, 0.047, 4.70, -0.260, -0.012),
(5699, 2127, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.383, 0.387, 38.70, 0.960, 0.372),
(5700, 2127, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.439, 0.443, 44.30, 0.320, 0.142),
(5701, 2127, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.121, 0.122, 12.20, 1.870, 0.228),
(5702, 2128, 602, 'ICN6597401819167588352', 'Empty', 0.075, 0.062, 6.20, -0.260, -0.016),
(5703, 2128, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.177, 0.147, 14.70, 0.960, 0.141),
(5704, 2128, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.799, 0.664, 66.40, 0.320, 0.212),
(5705, 2128, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.153, 0.127, 12.70, 1.870, 0.237),
(5706, 2129, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.260, -0.019),
(5707, 2129, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.960, 0.420),
(5708, 2129, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.320, 0.067),
(5709, 2129, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.870, 0.520),
(5710, 2130, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.260, -0.019),
(5711, 2130, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.960, 0.420),
(5712, 2130, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.320, 0.067),
(5713, 2130, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.860, 0.517),
(5718, 2133, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.260, -0.019),
(5719, 2133, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.960, 0.420),
(5720, 2133, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.320, 0.067),
(5721, 2133, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.860, 0.517),
(5722, 2134, 602, 'ICN6597401819167588352', 'Empty', 0.183, 0.158, 15.80, -0.260, -0.041),
(5723, 2134, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.718, 0.619, 61.90, 0.960, 0.594),
(5724, 2134, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.152, 0.131, 13.10, 0.320, 0.042),
(5725, 2134, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.106, 0.091, 9.10, 1.860, 0.169),
(5726, 2136, 602, 'ICN6597401819167588352', 'Empty', 0.120, 0.116, 11.60, -0.210, -0.024),
(5727, 2136, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.115, 0.111, 11.10, 0.780, 0.087),
(5728, 2136, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.741, 0.717, 71.70, 0.260, 0.186),
(5729, 2136, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.058, 0.056, 5.60, 1.520, 0.085),
(5730, 2137, 602, 'ICN6597401819167588352', 'Empty', 0.163, 0.161, 16.10, -0.210, -0.034),
(5731, 2137, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.780, 0.251),
(5732, 2137, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.260, 0.072),
(5733, 2137, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.520, 0.365),
(5734, 2139, 602, 'ICN6597401819167588352', 'Empty', 0.038, 0.034, 3.40, -0.210, -0.007),
(5735, 2139, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.061, 0.055, 5.50, 0.780, 0.043),
(5736, 2139, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.938, 0.849, 84.90, 0.260, 0.221),
(5737, 2139, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.068, 0.062, 6.20, 1.510, 0.094),
(5738, 2143, 602, 'ICN6597401819167588352', 'Empty', 0.163, 0.161, 16.10, -0.210, -0.034),
(5739, 2143, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.327, 0.322, 32.20, 0.810, 0.261),
(5740, 2143, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.281, 0.277, 27.70, 0.270, 0.075),
(5741, 2143, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.244, 0.240, 24.00, 1.570, 0.377),
(5742, 2144, 602, 'ICN6597401819167588352', 'Empty', 0.076, 0.067, 6.70, -0.210, -0.014),
(5743, 2144, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.715, 0.627, 62.70, 0.820, 0.514),
(5744, 2144, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.130, 0.114, 11.40, 0.270, 0.031),
(5745, 2144, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.219, 0.192, 19.20, 1.590, 0.305),
(5746, 2145, 581, 'ICN2556984659137265664', 'High_Grade', 0.046, 0.044, 4.40, 6.090, 0.268),
(5747, 2145, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.086, 0.082, 8.20, 0.960, 0.079),
(5748, 2145, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.711, 0.681, 68.10, 6.130, 4.175),
(5749, 2145, 583, 'ICN2556984659137265664', 'Low_Yield', 0.078, 0.075, 7.50, 1.480, 0.111),
(5750, 2145, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.123, 0.118, 11.80, 1.920, 0.227),
(5751, 2146, 602, 'ICN6597401819167588352', 'Empty', 0.059, 0.053, 5.30, -0.210, -0.011),
(5752, 2146, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.930, 0.834, 83.40, 0.810, 0.676),
(5753, 2146, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.045, 0.040, 4.00, 0.270, 0.011),
(5754, 2146, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.081, 0.073, 7.30, 1.570, 0.115),
(5755, 2147, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(5756, 2147, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.810, 0.355),
(5757, 2147, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(5758, 2147, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.570, 0.436),
(5775, 2158, 963, 'ICN6597401819167588352', 'Empty', 0.093, 0.083, 8.30, -0.260, -0.022),
(5776, 2158, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.648, 0.579, 57.90, 1.020, 0.591),
(5777, 2158, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.245, 0.219, 21.90, 0.290, 0.064),
(5778, 2158, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.134, 0.120, 12.00, 1.670, 0.200),
(5779, 2159, 963, 'ICN6597401819167588352', 'Empty', 0.053, 0.052, 5.20, -0.260, -0.014),
(5780, 2159, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.674, 0.657, 65.70, 1.030, 0.677),
(5781, 2159, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.166, 0.162, 16.20, 0.290, 0.047),
(5782, 2159, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.133, 0.130, 13.00, 1.680, 0.218),
(5783, 2160, 602, 'ICN6597401819167588352', 'Empty', 0.056, 0.056, 5.60, -0.210, -0.012),
(5784, 2160, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.535, 0.534, 53.40, 0.820, 0.438),
(5785, 2160, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.295, 0.295, 29.50, 0.280, 0.083),
(5786, 2160, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.115, 0.115, 11.50, 1.600, 0.184),
(5787, 2162, 602, 'ICN6597401819167588352', 'Empty', 0.054, 0.052, 5.20, -0.210, -0.011),
(5788, 2162, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.698, 0.669, 66.90, 0.820, 0.549),
(5789, 2162, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.158, 0.151, 15.10, 0.280, 0.042),
(5790, 2162, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.134, 0.128, 12.80, 1.600, 0.205),
(5791, 2163, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(5792, 2163, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.820, 0.359),
(5793, 2163, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.280, 0.059),
(5794, 2163, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.600, 0.445),
(5795, 2165, 602, 'ICN6597401819167588352', 'Empty', 0.072, 0.062, 6.20, -0.210, -0.013),
(5796, 2165, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.493, 0.426, 42.60, 0.810, 0.345),
(5797, 2165, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.272, 0.235, 23.50, 0.270, 0.063),
(5798, 2165, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.276, 27.60, 1.570, 0.433),
(5799, 2168, 602, 'ICN6597401819167588352', 'Empty', 0.049, 0.056, 5.60, -0.210, -0.012),
(5800, 2168, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.163, 0.187, 18.70, 0.800, 0.150),
(5801, 2168, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.261, 0.300, 30.00, 0.270, 0.081),
(5802, 2168, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.398, 0.457, 45.70, 1.560, 0.713),
(5803, 2170, 602, 'ICN6597401819167588352', 'Empty', 0.098, 0.121, 12.10, -0.210, -0.025),
(5804, 2170, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.099, 0.122, 12.20, 0.800, 0.098),
(5805, 2170, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.338, 0.417, 41.70, 0.270, 0.113),
(5806, 2170, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.275, 0.340, 34.00, 1.560, 0.530),
(5807, 2171, 963, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.260, -0.030),
(5808, 2171, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 1.010, 0.535),
(5809, 2171, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.280, 0.055),
(5810, 2171, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.640, 0.261),
(5815, 2174, 963, 'ICN6597401819167588352', 'Empty', 0.045, 0.051, 5.10, -0.260, -0.013),
(5816, 2174, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.333, 0.376, 37.60, 1.010, 0.380),
(5817, 2174, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.362, 0.409, 40.90, 0.280, 0.115),
(5818, 2174, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.145, 0.164, 16.40, 1.640, 0.269),
(5822, 2180, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(5823, 2180, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.810, 0.429),
(5824, 2180, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.270, 0.053),
(5825, 2180, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.570, 0.250),
(5826, 2182, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(5827, 2182, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.810, 0.429),
(5828, 2182, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.270, 0.053),
(5829, 2182, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.570, 0.250),
(5830, 2184, 602, 'ICN6597401819167588352', 'Empty', 0.082, 0.080, 8.00, -0.210, -0.017),
(5831, 2184, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.466, 0.456, 45.60, 0.810, 0.369),
(5832, 2184, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.253, 0.248, 24.80, 0.270, 0.067),
(5833, 2184, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.221, 0.216, 21.60, 1.570, 0.339),
(5834, 2188, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(5835, 2188, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.810, 0.355),
(5836, 2188, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(5837, 2188, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.570, 0.436),
(5838, 2190, 602, 'ICN6597401819167588352', 'Empty', 0.056, 0.050, 5.00, -0.210, -0.011),
(5839, 2190, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.109, 0.098, 9.80, 0.810, 0.079),
(5840, 2190, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.348, 0.314, 31.40, 0.270, 0.085),
(5841, 2190, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.596, 0.537, 53.70, 1.580, 0.848),
(5842, 2191, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(5843, 2191, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.810, 0.355),
(5844, 2191, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(5845, 2191, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.580, 0.439),
(5850, 2197, 602, 'ICN6597401819167588352', 'Empty', 0.320, 0.339, 33.90, -0.210, -0.071),
(5851, 2197, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.094, 0.100, 10.00, 0.810, 0.081),
(5852, 2197, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.441, 0.468, 46.80, 0.270, 0.126),
(5853, 2197, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.088, 0.093, 9.30, 1.580, 0.147),
(5854, 2198, 602, 'ICN6597401819167588352', 'Empty', 0.072, 0.062, 6.20, -0.210, -0.013),
(5855, 2198, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.493, 0.426, 42.60, 0.810, 0.345),
(5856, 2198, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.272, 0.235, 23.50, 0.270, 0.063),
(5857, 2198, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.276, 27.60, 1.570, 0.433),
(5858, 2199, 602, 'ICN6597401819167588352', 'Empty', 0.043, 0.036, 3.60, -0.210, -0.008),
(5859, 2199, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.149, 0.123, 12.30, 0.810, 0.100),
(5860, 2199, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.919, 0.760, 76.00, 0.270, 0.205),
(5861, 2199, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.099, 0.082, 8.20, 1.570, 0.129),
(5862, 2200, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(5863, 2200, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.810, 0.355),
(5864, 2200, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(5865, 2200, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.570, 0.436),
(5866, 2201, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.065, 0.061, 6.10, 35.280, 2.152),
(5867, 2201, 593, 'ICN5348152100851286016', 'Low_Grade', 0.790, 0.736, 73.60, 2.200, 1.619),
(5868, 2201, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.136, 0.127, 12.70, 5.490, 0.697),
(5869, 2201, 592, 'ICN5348152100851286016', 'High_Grade', 0.083, 0.077, 7.70, 11.980, 0.922),
(5870, 2202, 622, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.068, 0.061, 6.10, 0.940, 0.057),
(5871, 2202, 621, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.052, 0.047, 4.70, 1.110, 0.052),
(5872, 2202, 620, 'ICN5491985813950431232', 'Mid_Grade', 0.925, 0.833, 83.30, 1.750, 1.458),
(5873, 2202, 619, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.065, 0.059, 5.90, 1.650, 0.097),
(5874, 2203, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.113, 0.095, 9.50, 3.610, 0.343),
(5875, 2203, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.236, 0.198, 19.80, 3.790, 0.750),
(5876, 2203, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.554, 0.464, 46.40, 1.830, 0.849),
(5877, 2203, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.006, 0.005, 0.50, 1.270, 0.006),
(5878, 2203, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.284, 0.238, 23.80, 1.240, 0.295),
(5879, 2204, 959, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.077, 0.075, 7.50, 9.520, 0.714),
(5880, 2204, 957, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.163, 0.159, 15.90, 22.280, 3.543),
(5881, 2204, 958, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.162, 0.159, 15.90, 17.260, 2.744),
(5882, 2204, 956, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.620, 0.607, 60.70, 36.240, 21.998),
(5883, 2205, 963, 'ICN6597401819167588352', 'Empty', 0.026, 0.027, 2.70, -0.260, -0.007),
(5884, 2205, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.287, 0.298, 29.80, 0.410, 0.122),
(5885, 2205, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.081, 0.084, 8.40, 0.290, 0.024),
(5886, 2205, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.568, 0.590, 59.00, 0.670, 0.395),
(5887, 2206, 602, 'ICN6597401819167588352', 'Empty', 0.122, 0.145, 14.50, -0.210, -0.030),
(5888, 2206, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.437, 0.519, 51.90, 0.830, 0.431),
(5889, 2206, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.137, 0.163, 16.30, 0.280, 0.046),
(5890, 2206, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.146, 0.173, 17.30, 1.610, 0.279),
(5891, 2207, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(5892, 2207, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.830, 0.440),
(5893, 2207, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.280, 0.055),
(5894, 2207, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.610, 0.256),
(5895, 2208, 602, 'ICN6597401819167588352', 'Empty', 0.072, 0.062, 6.20, -0.210, -0.013),
(5896, 2208, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.493, 0.426, 42.60, 0.830, 0.354),
(5897, 2208, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.272, 0.235, 23.50, 0.280, 0.066),
(5898, 2208, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.276, 27.60, 1.610, 0.444),
(5931, 2219, 963, 'ICN6597401819167588352', 'Empty', 0.368, 0.385, 38.50, -0.260, -0.100),
(5932, 2219, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.311, 0.326, 32.60, 0.420, 0.137),
(5933, 2219, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.199, 0.208, 20.80, 0.290, 0.060),
(5934, 2219, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.077, 0.081, 8.10, 0.690, 0.056),
(5935, 2220, 963, 'ICN6597401819167588352', 'Empty', 0.134, 0.126, 12.60, -0.260, -0.033),
(5936, 2220, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.414, 0.388, 38.80, 0.420, 0.163),
(5937, 2220, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.257, 0.241, 24.10, 0.290, 0.070),
(5938, 2220, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.261, 0.245, 24.50, 0.690, 0.169),
(5939, 2221, 963, 'ICN6597401819167588352', 'Empty', 0.116, 0.128, 12.80, -0.260, -0.033),
(5940, 2221, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.464, 0.510, 51.00, 0.420, 0.214),
(5941, 2221, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.171, 0.188, 18.80, 0.290, 0.055),
(5942, 2221, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.158, 0.174, 17.40, 0.690, 0.120),
(5943, 2222, 963, 'ICN6597401819167588352', 'Empty', 0.071, 0.067, 6.70, -0.260, -0.017),
(5944, 2222, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.346, 0.329, 32.90, 0.420, 0.138),
(5945, 2222, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.409, 0.389, 38.90, 0.290, 0.113),
(5946, 2222, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.226, 0.215, 21.50, 0.690, 0.148),
(5947, 2224, 963, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.260, -0.030),
(5948, 2224, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.420, 0.223),
(5949, 2224, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.290, 0.057),
(5950, 2224, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 0.690, 0.110),
(5951, 2225, 963, 'ICN6597401819167588352', 'Empty', 0.109, 0.109, 10.90, -0.260, -0.028),
(5952, 2225, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.301, 0.301, 30.10, 0.420, 0.126),
(5953, 2225, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.446, 0.446, 44.60, 0.290, 0.129),
(5954, 2225, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.144, 0.144, 14.40, 0.690, 0.099),
(5955, 2226, 963, 'ICN6597401819167588352', 'Empty', 0.170, 0.157, 15.70, -0.260, -0.041),
(5956, 2226, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.612, 0.566, 56.60, 0.420, 0.238),
(5957, 2226, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.098, 0.091, 9.10, 0.290, 0.026),
(5958, 2226, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.202, 0.187, 18.70, 0.690, 0.129),
(5959, 2227, 963, 'ICN6597401819167588352', 'Empty', 0.136, 0.117, 11.70, -0.260, -0.030),
(5960, 2227, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.756, 0.649, 64.90, 0.420, 0.273),
(5961, 2227, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.092, 0.079, 7.90, 0.290, 0.023),
(5962, 2227, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.180, 0.155, 15.50, 0.690, 0.107),
(5963, 2228, 963, 'ICN6597401819167588352', 'Empty', 0.146, 0.158, 15.80, -0.260, -0.041),
(5964, 2228, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.281, 0.304, 30.40, 0.420, 0.128),
(5965, 2228, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.301, 0.325, 32.50, 0.290, 0.094),
(5966, 2228, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.197, 0.213, 21.30, 0.690, 0.147),
(5967, 2229, 963, 'ICN6597401819167588352', 'Empty', 0.343, 0.385, 38.50, -0.260, -0.100),
(5968, 2229, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.266, 0.299, 29.90, 0.420, 0.126),
(5969, 2229, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.160, 0.180, 18.00, 0.290, 0.052),
(5970, 2229, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.122, 0.137, 13.70, 0.690, 0.095),
(5971, 2230, 963, 'ICN6597401819167588352', 'Empty', 0.095, 0.091, 9.10, -0.260, -0.024),
(5972, 2230, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.370, 0.354, 35.40, 0.420, 0.149),
(5973, 2230, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.079, 0.076, 7.60, 0.290, 0.022),
(5974, 2230, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.501, 0.479, 47.90, 0.690, 0.331),
(5975, 2231, 602, 'ICN6597401819167588352', 'Empty', 0.079, 0.076, 7.60, -0.210, -0.016),
(5976, 2231, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.195, 0.187, 18.70, 0.830, 0.155),
(5977, 2231, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.688, 0.659, 65.90, 0.280, 0.185),
(5978, 2231, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.082, 0.079, 7.90, 1.610, 0.127),
(5979, 2232, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(5980, 2232, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.830, 0.440),
(5981, 2232, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.280, 0.055),
(5982, 2232, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.610, 0.256),
(5983, 2233, 602, 'ICN6597401819167588352', 'Empty', 0.050, 0.049, 4.90, -0.210, -0.010),
(5984, 2233, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.562, 0.546, 54.60, 0.830, 0.453),
(5985, 2233, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.209, 0.203, 20.30, 0.280, 0.057),
(5986, 2233, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.209, 0.203, 20.30, 1.610, 0.327),
(5987, 2234, 602, 'ICN6597401819167588352', 'Empty', 0.034, 0.028, 2.80, -0.210, -0.006),
(5988, 2234, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.567, 0.473, 47.30, 0.830, 0.393),
(5989, 2234, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.422, 0.352, 35.20, 0.280, 0.099),
(5990, 2234, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.175, 0.146, 14.60, 1.610, 0.235),
(5991, 2235, 602, 'ICN6597401819167588352', 'Empty', 0.075, 0.071, 7.10, -0.210, -0.015),
(5992, 2235, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.594, 0.559, 55.90, 0.830, 0.464),
(5993, 2235, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.293, 0.276, 27.60, 0.280, 0.077),
(5994, 2235, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.101, 0.095, 9.50, 1.610, 0.153),
(5995, 2236, 602, 'ICN6597401819167588352', 'Empty', 0.075, 0.066, 6.60, -0.210, -0.014),
(5996, 2236, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.507, 0.446, 44.60, 0.830, 0.370),
(5997, 2236, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.445, 0.391, 39.10, 0.280, 0.109),
(5998, 2236, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.110, 0.097, 9.70, 1.610, 0.156),
(5999, 2237, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6000, 2237, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.830, 0.440),
(6001, 2237, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.280, 0.055),
(6002, 2237, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.610, 0.256),
(6003, 2238, 602, 'ICN6597401819167588352', 'Empty', 0.060, 0.059, 5.90, -0.210, -0.012),
(6004, 2238, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.516, 0.510, 51.00, 0.830, 0.423),
(6005, 2238, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.244, 0.241, 24.10, 0.280, 0.067),
(6006, 2238, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.192, 0.190, 19.00, 1.610, 0.306),
(6007, 2239, 602, 'ICN6597401819167588352', 'Empty', 0.078, 0.073, 7.30, -0.210, -0.015),
(6008, 2239, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.101, 0.095, 9.50, 0.830, 0.079),
(6009, 2239, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.751, 0.704, 70.40, 0.280, 0.197),
(6010, 2239, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.137, 0.128, 12.80, 1.600, 0.205),
(6011, 2240, 602, 'ICN6597401819167588352', 'Empty', 0.086, 0.071, 7.10, -0.210, -0.015),
(6012, 2240, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.236, 0.194, 19.40, 0.830, 0.161),
(6013, 2240, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.616, 0.506, 50.60, 0.280, 0.142),
(6014, 2240, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.280, 0.230, 23.00, 1.600, 0.368),
(6015, 2243, 602, 'ICN6597401819167588352', 'Empty', 0.070, 0.068, 6.80, -0.210, -0.014),
(6016, 2243, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.189, 0.183, 18.30, 0.830, 0.152),
(6017, 2243, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.652, 0.633, 63.30, 0.280, 0.177),
(6018, 2243, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.119, 0.116, 11.60, 1.600, 0.186),
(6019, 2244, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6020, 2244, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.830, 0.440),
(6021, 2244, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.280, 0.055),
(6022, 2244, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.600, 0.254),
(6023, 2247, 602, 'ICN6597401819167588352', 'Empty', 0.046, 0.042, 4.20, -0.210, -0.009),
(6024, 2247, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.486, 0.446, 44.60, 0.830, 0.370),
(6025, 2247, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.481, 0.441, 44.10, 0.280, 0.123),
(6026, 2247, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.077, 0.071, 7.10, 1.600, 0.114),
(6027, 2248, 987, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.063, 0.058, 5.80, 15.220, 0.883),
(6028, 2248, 954, 'ICN5348152100851286016', 'Low_Grade', 0.876, 0.805, 80.50, 1.090, 0.877),
(6029, 2248, 955, 'ICN5348152100851286016', 'Mid_Grade', 0.081, 0.074, 7.40, 2.050, 0.152),
(6030, 2248, 953, 'ICN5348152100851286016', 'High_Grade', 0.068, 0.063, 6.30, 7.740, 0.488),
(6031, 2254, 987, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.031, 0.028, 2.80, 15.000, 0.420),
(6032, 2254, 954, 'ICN5348152100851286016', 'Low_Grade', 0.965, 0.869, 86.90, 1.070, 0.930),
(6033, 2254, 955, 'ICN5348152100851286016', 'Mid_Grade', 0.093, 0.084, 8.40, 1.990, 0.167),
(6034, 2254, 953, 'ICN5348152100851286016', 'High_Grade', 0.022, 0.020, 2.00, 7.610, 0.152),
(6035, 2255, 602, 'ICN6597401819167588352', 'Empty', 0.025, 0.018, 1.80, -0.210, -0.004),
(6036, 2255, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.678, 0.501, 50.10, 0.840, 0.421),
(6037, 2255, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.178, 0.132, 13.20, 0.280, 0.037),
(6038, 2255, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.471, 0.348, 34.80, 1.620, 0.564),
(6039, 2256, 602, 'ICN6597401819167588352', 'Empty', 0.025, 0.018, 1.80, -0.210, -0.004),
(6040, 2256, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.678, 0.501, 50.10, 0.840, 0.421),
(6041, 2256, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.178, 0.132, 13.20, 0.280, 0.037),
(6042, 2256, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.471, 0.348, 34.80, 1.620, 0.564),
(6043, 2257, 602, 'ICN6597401819167588352', 'Empty', 0.139, 0.157, 15.70, -0.210, -0.033),
(6044, 2257, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.258, 0.292, 29.20, 0.840, 0.245),
(6045, 2257, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.238, 0.270, 27.00, 0.280, 0.076),
(6046, 2257, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.248, 0.281, 28.10, 1.630, 0.458),
(6051, 2259, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6052, 2259, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.860, 0.377),
(6053, 2259, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.290, 0.061),
(6054, 2259, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.670, 0.464),
(6059, 2261, 602, 'ICN6597401819167588352', 'Empty', 0.076, 0.059, 5.90, -0.210, -0.012),
(6060, 2261, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.104, 0.081, 8.10, 0.860, 0.070),
(6061, 2261, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.865, 0.671, 67.10, 0.290, 0.195),
(6062, 2261, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.245, 0.190, 19.00, 1.670, 0.317),
(6063, 2262, 602, 'ICN6597401819167588352', 'Empty', 0.050, 0.043, 4.30, -0.210, -0.009),
(6064, 2262, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.736, 0.626, 62.60, 0.860, 0.538),
(6065, 2262, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.314, 0.267, 26.70, 0.290, 0.077),
(6066, 2262, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.076, 0.065, 6.50, 1.670, 0.109),
(6071, 2264, 602, 'ICN6597401819167588352', 'Empty', 0.070, 0.062, 6.20, -0.210, -0.013),
(6072, 2264, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.138, 0.122, 12.20, 0.860, 0.105),
(6073, 2264, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.767, 0.676, 67.60, 0.290, 0.196),
(6074, 2264, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.159, 0.140, 14.00, 1.670, 0.234),
(6075, 2265, 602, 'ICN6597401819167588352', 'Empty', 0.050, 0.044, 4.40, -0.210, -0.009),
(6076, 2265, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.404, 0.355, 35.50, 0.860, 0.305),
(6077, 2265, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.102, 0.090, 9.00, 0.290, 0.026),
(6078, 2265, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.581, 0.511, 51.10, 1.670, 0.853),
(6079, 2266, 602, 'ICN6597401819167588352', 'Empty', 0.089, 0.068, 6.80, -0.210, -0.014),
(6080, 2266, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.552, 0.423, 42.30, 0.860, 0.364),
(6081, 2266, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.596, 0.456, 45.60, 0.290, 0.132),
(6082, 2266, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.069, 0.053, 5.30, 1.670, 0.089),
(6083, 2267, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.072, 0.050, 5.00, 11.430, 0.572),
(6084, 2267, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.595, 0.409, 40.90, 6.600, 2.699);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(6085, 2267, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.464, 0.319, 31.90, 2.640, 0.842),
(6086, 2267, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.194, 0.133, 13.30, 1.490, 0.198),
(6087, 2267, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.129, 0.089, 8.90, 7.330, 0.652),
(6088, 2268, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.910, 0.577, 57.70, 11.430, 6.595),
(6089, 2268, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.064, 0.041, 4.10, 6.600, 0.271),
(6090, 2268, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.252, 0.160, 16.00, 2.640, 0.422),
(6091, 2268, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.251, 0.159, 15.90, 1.490, 0.237),
(6092, 2268, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.100, 0.063, 6.30, 7.330, 0.462),
(6093, 2269, 602, 'ICN6597401819167588352', 'Empty', 0.227, 0.187, 18.70, -0.210, -0.039),
(6094, 2269, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.018, 0.015, 1.50, 0.820, 0.012),
(6095, 2269, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.120, 0.099, 9.90, 0.280, 0.028),
(6096, 2269, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.851, 0.700, 70.00, 1.590, 1.113),
(6097, 2270, 602, 'ICN6597401819167588352', 'Empty', 0.095, 0.081, 8.10, -0.210, -0.017),
(6098, 2270, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.161, 0.137, 13.70, 0.820, 0.112),
(6099, 2270, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.129, 0.110, 11.00, 0.280, 0.031),
(6100, 2270, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.786, 0.671, 67.10, 1.590, 1.067),
(6101, 2271, 602, 'ICN6597401819167588352', 'Empty', 0.036, 0.032, 3.20, -0.210, -0.007),
(6102, 2271, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.118, 0.106, 10.60, 0.820, 0.087),
(6103, 2271, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.897, 0.805, 80.50, 0.280, 0.225),
(6104, 2271, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.063, 0.057, 5.70, 1.590, 0.091),
(6105, 2272, 602, 'ICN6597401819167588352', 'Empty', 0.055, 0.048, 4.80, -0.210, -0.010),
(6106, 2272, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.298, 0.260, 26.00, 0.820, 0.213),
(6107, 2272, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.603, 0.526, 52.60, 0.280, 0.147),
(6108, 2272, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.191, 0.167, 16.70, 1.590, 0.266),
(6109, 2273, 602, 'ICN6597401819167588352', 'Empty', 0.529, 0.531, 53.10, -0.210, -0.112),
(6110, 2273, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.193, 0.194, 19.40, 0.820, 0.159),
(6111, 2273, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.055, 0.055, 5.50, 0.280, 0.015),
(6112, 2273, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.220, 0.221, 22.10, 1.590, 0.351),
(6121, 2276, 602, 'ICN6597401819167588352', 'Empty', 0.032, 0.031, 3.10, -0.210, -0.007),
(6122, 2276, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.069, 0.067, 6.70, 0.820, 0.055),
(6123, 2276, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.382, 0.373, 37.30, 0.280, 0.104),
(6124, 2276, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.541, 0.528, 52.80, 1.590, 0.840),
(6125, 2277, 581, 'ICN2556984659137265664', 'High_Grade', 0.213, 0.186, 18.60, 6.420, 1.194),
(6126, 2277, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.140, 0.122, 12.20, 1.010, 0.123),
(6127, 2277, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.243, 0.212, 21.20, 6.360, 1.348),
(6128, 2277, 583, 'ICN2556984659137265664', 'Low_Yield', 0.062, 0.054, 5.40, 1.520, 0.082),
(6129, 2277, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.489, 0.426, 42.60, 2.000, 0.852),
(6134, 2281, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6135, 2281, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6136, 2281, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6137, 2281, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.500, 0.417),
(6142, 2283, 602, 'ICN6597401819167588352', 'Empty', 0.043, 0.044, 4.40, -0.210, -0.009),
(6143, 2283, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.510, 0.519, 51.90, 0.770, 0.400),
(6144, 2283, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.359, 0.366, 36.60, 0.260, 0.095),
(6145, 2283, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.070, 0.071, 7.10, 1.490, 0.106),
(6146, 2284, 602, 'ICN6597401819167588352', 'Empty', 0.087, 0.102, 10.20, -0.210, -0.021),
(6147, 2284, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.180, 0.211, 21.10, 0.770, 0.162),
(6148, 2284, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.468, 0.548, 54.80, 0.260, 0.142),
(6149, 2284, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.119, 0.139, 13.90, 1.490, 0.207),
(6150, 2285, 602, 'ICN6597401819167588352', 'Empty', 0.030, 0.026, 2.60, -0.210, -0.005),
(6151, 2285, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.468, 0.402, 40.20, 0.770, 0.310),
(6152, 2285, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.417, 0.358, 35.80, 0.260, 0.093),
(6153, 2285, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.250, 0.215, 21.50, 1.490, 0.320),
(6154, 2286, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6155, 2286, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6156, 2286, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6157, 2286, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6158, 2287, 602, 'ICN6597401819167588352', 'Empty', 0.042, 0.046, 4.60, -0.210, -0.010),
(6159, 2287, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.356, 0.393, 39.30, 0.770, 0.303),
(6160, 2287, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.376, 0.415, 41.50, 0.260, 0.108),
(6161, 2287, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.131, 0.145, 14.50, 1.490, 0.216),
(6162, 2288, 602, 'ICN6597401819167588352', 'Empty', 0.077, 0.071, 7.10, -0.210, -0.015),
(6163, 2288, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.205, 0.190, 19.00, 0.770, 0.146),
(6164, 2288, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.580, 0.538, 53.80, 0.260, 0.140),
(6165, 2288, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.217, 0.201, 20.10, 1.490, 0.299),
(6166, 2289, 602, 'ICN6597401819167588352', 'Empty', 0.057, 0.054, 5.40, -0.210, -0.011),
(6167, 2289, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.721, 0.689, 68.90, 0.770, 0.531),
(6168, 2289, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.202, 0.193, 19.30, 0.260, 0.050),
(6169, 2289, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.067, 0.064, 6.40, 1.490, 0.095),
(6170, 2290, 602, 'ICN6597401819167588352', 'Empty', 0.108, 0.119, 11.90, -0.210, -0.025),
(6171, 2290, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.590, 0.650, 65.00, 0.770, 0.501),
(6172, 2290, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.103, 0.113, 11.30, 0.260, 0.029),
(6173, 2290, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.107, 0.118, 11.80, 1.490, 0.176),
(6174, 2292, 602, 'ICN6597401819167588352', 'Empty', 0.051, 0.066, 6.60, -0.210, -0.014),
(6175, 2292, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.064, 0.082, 8.20, 0.770, 0.063),
(6176, 2292, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.172, 0.221, 22.10, 0.260, 0.057),
(6177, 2292, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.491, 0.631, 63.10, 1.490, 0.940),
(6178, 2293, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6179, 2293, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6180, 2293, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6181, 2293, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6182, 2294, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6183, 2294, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6184, 2294, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6185, 2294, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6186, 2295, 602, 'ICN6597401819167588352', 'Empty', 0.060, 0.056, 5.60, -0.210, -0.012),
(6187, 2295, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.335, 0.315, 31.50, 0.770, 0.243),
(6188, 2295, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.558, 0.524, 52.40, 0.260, 0.136),
(6189, 2295, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.111, 0.104, 10.40, 1.490, 0.155),
(6190, 2296, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.745, 0.681, 68.10, 1.200, 0.817),
(6191, 2296, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.102, 10.20, 1.320, 0.135),
(6192, 2296, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.237, 0.217, 21.70, 0.620, 0.135),
(6193, 2297, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.806, 0.658, 65.80, 1.200, 0.790),
(6194, 2297, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.099, 0.081, 8.10, 1.320, 0.107),
(6195, 2297, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.320, 0.261, 26.10, 0.620, 0.162),
(6196, 2298, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.744, 0.555, 55.50, 1.200, 0.666),
(6197, 2298, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.205, 0.153, 15.30, 1.320, 0.202),
(6198, 2298, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.391, 0.292, 29.20, 0.620, 0.181),
(6199, 2299, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.832, 0.700, 70.00, 1.200, 0.840),
(6200, 2299, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.116, 0.098, 9.80, 1.320, 0.129),
(6201, 2299, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.241, 0.203, 20.30, 0.620, 0.126),
(6202, 2300, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.878, 0.785, 78.50, 1.200, 0.942),
(6203, 2300, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.105, 0.094, 9.40, 1.320, 0.124),
(6204, 2300, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.135, 0.121, 12.10, 0.620, 0.075),
(6205, 2301, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.814, 0.516, 51.60, 1.190, 0.614),
(6206, 2301, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.139, 0.088, 8.80, 1.310, 0.115),
(6207, 2301, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.625, 0.396, 39.60, 0.620, 0.246),
(6208, 2302, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.183, 0.176, 17.60, 35.960, 6.329),
(6209, 2302, 593, 'ICN5348152100851286016', 'Low_Grade', 0.190, 0.183, 18.30, 2.240, 0.410),
(6210, 2302, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.312, 0.301, 30.10, 5.600, 1.686),
(6211, 2302, 592, 'ICN5348152100851286016', 'High_Grade', 0.352, 0.339, 33.90, 12.230, 4.146),
(6212, 2303, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.055, 0.056, 5.60, 35.960, 2.014),
(6213, 2303, 593, 'ICN5348152100851286016', 'Low_Grade', 0.131, 0.133, 13.30, 2.240, 0.298),
(6214, 2303, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.335, 0.339, 33.90, 5.600, 1.898),
(6215, 2303, 592, 'ICN5348152100851286016', 'High_Grade', 0.466, 0.472, 47.20, 12.230, 5.773),
(6216, 2304, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.300, 0.233, 23.30, 1.190, 0.277),
(6217, 2304, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.110, 0.085, 8.50, 1.320, 0.112),
(6218, 2304, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.878, 0.682, 68.20, 0.620, 0.423),
(6223, 2306, 602, 'ICN6597401819167588352', 'Empty', 0.074, 0.066, 6.60, -0.210, -0.014),
(6224, 2306, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.196, 0.174, 17.40, 0.790, 0.137),
(6225, 2306, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.700, 0.621, 62.10, 0.270, 0.168),
(6226, 2306, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.157, 0.139, 13.90, 1.540, 0.214),
(6227, 2307, 602, 'ICN6597401819167588352', 'Empty', 0.083, 0.080, 8.00, -0.210, -0.017),
(6228, 2307, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.499, 0.483, 48.30, 0.790, 0.382),
(6229, 2307, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.312, 0.302, 30.20, 0.270, 0.082),
(6230, 2307, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.139, 0.135, 13.50, 1.540, 0.208),
(6231, 2308, 602, 'ICN6597401819167588352', 'Empty', 0.057, 0.056, 5.60, -0.210, -0.012),
(6232, 2308, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.628, 0.616, 61.60, 0.790, 0.487),
(6233, 2308, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.173, 0.170, 17.00, 0.270, 0.046),
(6234, 2308, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.162, 0.159, 15.90, 1.540, 0.245),
(6235, 2309, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6236, 2309, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.790, 0.346),
(6237, 2309, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(6238, 2309, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.540, 0.428),
(6239, 2310, 987, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.123, 0.096, 9.60, 14.560, 1.398),
(6240, 2310, 954, 'ICN5348152100851286016', 'Low_Grade', 0.136, 0.106, 10.60, 1.000, 0.106),
(6241, 2310, 955, 'ICN5348152100851286016', 'Mid_Grade', 0.668, 0.520, 52.00, 1.840, 0.957),
(6242, 2310, 953, 'ICN5348152100851286016', 'High_Grade', 0.357, 0.278, 27.80, 7.330, 2.038),
(6243, 2311, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.122, 0.092, 9.20, 2.850, 0.262),
(6244, 2311, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.147, 0.111, 11.10, 3.070, 0.341),
(6245, 2311, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.280, 0.212, 21.20, 1.480, 0.314),
(6246, 2311, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.696, 0.528, 52.80, 1.040, 0.549),
(6247, 2311, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.074, 0.056, 5.60, 0.880, 0.049),
(6248, 2312, 607, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.284, 0.333, 33.30, 10.410, 3.467),
(6249, 2312, 609, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.024, 0.028, 2.80, 6.160, 0.172),
(6250, 2312, 610, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.257, 0.301, 30.10, 2.450, 0.737),
(6251, 2312, 611, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.166, 0.194, 19.40, 1.340, 0.260),
(6252, 2312, 608, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.123, 0.144, 14.40, 6.810, 0.981),
(6253, 2314, 602, 'ICN6597401819167588352', 'Empty', 0.087, 0.102, 10.20, -0.210, -0.021),
(6254, 2314, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.180, 0.211, 21.10, 0.790, 0.167),
(6255, 2314, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.468, 0.548, 54.80, 0.260, 0.142),
(6256, 2314, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.119, 0.139, 13.90, 1.520, 0.211),
(6257, 2318, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.786, 0.493, 49.30, 1.130, 0.557),
(6258, 2318, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.088, 0.055, 5.50, 1.260, 0.069),
(6259, 2318, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.719, 0.451, 45.10, 0.580, 0.262),
(6260, 2319, 602, 'ICN6597401819167588352', 'Empty', 0.083, 0.077, 7.70, -0.210, -0.016),
(6261, 2319, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.083, 0.077, 7.70, 0.760, 0.059),
(6262, 2319, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.754, 0.696, 69.60, 0.250, 0.174),
(6263, 2319, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.163, 0.151, 15.10, 1.480, 0.223),
(6264, 2320, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.235, 0.204, 20.40, 1.130, 0.231),
(6265, 2320, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.097, 9.70, 1.260, 0.122),
(6266, 2320, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.803, 0.698, 69.80, 0.580, 0.405),
(6267, 2321, 602, 'ICN6597401819167588352', 'Empty', 0.055, 0.051, 5.10, -0.210, -0.011),
(6268, 2321, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.689, 0.636, 63.60, 0.760, 0.483),
(6269, 2321, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.300, 0.277, 27.70, 0.250, 0.069),
(6270, 2321, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.039, 0.036, 3.60, 1.480, 0.053),
(6271, 2322, 602, 'ICN6597401819167588352', 'Empty', 0.039, 0.036, 3.60, -0.210, -0.008),
(6272, 2322, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.103, 0.095, 9.50, 0.770, 0.073),
(6273, 2322, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.571, 0.525, 52.50, 0.260, 0.137),
(6274, 2322, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.375, 0.345, 34.50, 1.490, 0.514),
(6275, 2323, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.545, 0.416, 41.60, 1.130, 0.470),
(6276, 2323, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.024, 0.018, 1.80, 1.270, 0.023),
(6277, 2323, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.741, 0.566, 56.60, 0.580, 0.328),
(6278, 2324, 602, 'ICN6597401819167588352', 'Empty', 0.505, 0.483, 48.30, -0.210, -0.101),
(6279, 2324, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.057, 0.054, 5.40, 0.770, 0.042),
(6280, 2324, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.147, 0.141, 14.10, 0.260, 0.037),
(6281, 2324, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.337, 0.322, 32.20, 1.490, 0.480),
(6282, 2325, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6283, 2325, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6284, 2325, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6285, 2325, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6286, 2326, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6287, 2326, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6288, 2326, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6289, 2326, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6290, 2327, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6291, 2327, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6292, 2327, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6293, 2327, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6294, 2328, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6295, 2328, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.770, 0.337),
(6296, 2328, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.260, 0.054),
(6297, 2328, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.490, 0.414),
(6298, 2334, 602, 'ICN6597401819167588352', 'Empty', 0.037, 0.036, 3.60, -0.210, -0.008),
(6299, 2334, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.135, 0.133, 13.30, 0.770, 0.102),
(6300, 2334, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.454, 0.448, 44.80, 0.250, 0.112),
(6301, 2334, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.388, 0.383, 38.30, 1.490, 0.571),
(6302, 2335, 602, 'ICN6597401819167588352', 'Empty', 0.078, 0.068, 6.80, -0.210, -0.014),
(6303, 2335, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.116, 0.100, 10.00, 0.770, 0.077),
(6304, 2335, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.583, 0.505, 50.50, 0.260, 0.131),
(6305, 2335, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.378, 0.327, 32.70, 1.500, 0.491),
(6306, 2336, 602, 'ICN6597401819167588352', 'Empty', 0.139, 0.157, 15.70, -0.210, -0.033),
(6307, 2336, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.258, 0.292, 29.20, 0.770, 0.225),
(6308, 2336, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.238, 0.270, 27.00, 0.260, 0.070),
(6309, 2336, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.248, 0.281, 28.10, 1.500, 0.422),
(6310, 2337, 602, 'ICN6597401819167588352', 'Empty', 0.079, 0.066, 6.60, -0.210, -0.014),
(6311, 2337, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.270, 0.226, 22.60, 0.750, 0.170),
(6312, 2337, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.773, 0.646, 64.60, 0.250, 0.162),
(6313, 2337, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.074, 0.062, 6.20, 1.460, 0.091),
(6314, 2338, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6315, 2338, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.750, 0.329),
(6316, 2338, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.250, 0.052),
(6317, 2338, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.460, 0.406),
(6318, 2339, 602, 'ICN6597401819167588352', 'Empty', 0.121, 0.120, 12.00, -0.210, -0.025),
(6319, 2339, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.206, 0.204, 20.40, 0.750, 0.153),
(6320, 2339, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.583, 0.577, 57.70, 0.250, 0.144),
(6321, 2339, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.100, 0.099, 9.90, 1.460, 0.145),
(6322, 2341, 602, 'ICN6597401819167588352', 'Empty', 0.106, 0.111, 11.10, -0.210, -0.023),
(6323, 2341, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.138, 0.144, 14.40, 0.750, 0.108),
(6324, 2341, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.229, 0.239, 23.90, 0.250, 0.060),
(6325, 2341, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.484, 0.506, 50.60, 1.460, 0.739),
(6326, 2343, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.226, 0.167, 16.70, 2.630, 0.439),
(6327, 2343, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.177, 0.131, 13.10, 2.870, 0.376),
(6328, 2343, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.282, 0.208, 20.80, 1.340, 0.279),
(6329, 2343, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.334, 0.246, 24.60, 0.900, 0.221),
(6330, 2343, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.336, 0.248, 24.80, 0.670, 0.166),
(6331, 2344, 963, 'ICN6597401819167588352', 'Empty', 0.071, 0.081, 8.10, -0.070, -0.006),
(6332, 2344, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.241, 0.275, 27.50, 0.400, 0.110),
(6333, 2344, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.346, 0.395, 39.50, 0.190, 0.075),
(6334, 2344, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.219, 0.250, 25.00, 0.760, 0.190),
(6339, 2346, 963, 'ICN6597401819167588352', 'Empty', 0.174, 0.185, 18.50, -0.070, -0.013),
(6340, 2346, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.316, 0.335, 33.50, 0.400, 0.134),
(6341, 2346, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.224, 0.238, 23.80, 0.190, 0.045),
(6342, 2346, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.228, 0.242, 24.20, 0.760, 0.184),
(6343, 2347, 963, 'ICN6597401819167588352', 'Empty', 0.066, 0.073, 7.30, -0.070, -0.005),
(6344, 2347, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.209, 0.232, 23.20, 0.400, 0.093),
(6345, 2347, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.430, 0.477, 47.70, 0.190, 0.091),
(6346, 2347, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.196, 0.218, 21.80, 0.760, 0.166),
(6347, 2348, 963, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.070, -0.008),
(6348, 2348, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.400, 0.212),
(6349, 2348, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.190, 0.037),
(6350, 2348, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 0.760, 0.121),
(6351, 2349, 985, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.341, 0.320, 32.00, 1.720, 0.550),
(6352, 2349, 986, 'ICN7981429672816672768', 'High_End_CRTs', 0.045, 0.042, 4.20, 1.120, 0.047),
(6353, 2349, 984, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.680, 0.638, 63.80, 1.070, 0.683),
(6354, 2350, 983, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.564, 0.433, 43.30, 0.910, 0.394),
(6355, 2350, 982, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.028, 0.021, 2.10, 1.380, 0.029),
(6356, 2350, 981, 'ICN5491985813950431232', 'Mid_Grade', 0.669, 0.513, 51.30, 2.590, 1.329),
(6357, 2350, 980, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.042, 0.032, 3.20, 2.880, 0.092),
(6358, 2352, 985, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.203, 0.185, 18.50, 1.710, 0.316),
(6359, 2352, 986, 'ICN7981429672816672768', 'High_End_CRTs', 0.225, 0.205, 20.50, 1.120, 0.230),
(6360, 2352, 984, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.669, 0.610, 61.00, 1.070, 0.653),
(6361, 2354, 602, 'ICN6597401819167588352', 'Empty', 0.113, 0.121, 12.10, -0.210, -0.025),
(6362, 2354, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.221, 0.237, 23.70, 0.650, 0.154),
(6363, 2354, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.119, 0.128, 12.80, 0.210, 0.027),
(6364, 2354, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.479, 0.514, 51.40, 1.260, 0.648),
(6365, 2355, 602, 'ICN6597401819167588352', 'Empty', 0.050, 0.039, 3.90, -0.210, -0.008),
(6366, 2355, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.607, 0.479, 47.90, 0.650, 0.311),
(6367, 2355, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.544, 0.429, 42.90, 0.210, 0.090),
(6368, 2355, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.066, 0.052, 5.20, 1.260, 0.066),
(6369, 2356, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6370, 2356, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.650, 0.285),
(6371, 2356, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6372, 2356, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6373, 2357, 602, 'ICN6597401819167588352', 'Empty', 0.044, 0.039, 3.90, -0.210, -0.008),
(6374, 2357, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.113, 0.101, 10.10, 0.630, 0.064),
(6375, 2357, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.890, 0.797, 79.70, 0.200, 0.159),
(6376, 2357, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.070, 0.063, 6.30, 1.230, 0.077),
(6377, 2358, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6378, 2358, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.630, 0.276),
(6379, 2358, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.200, 0.042),
(6380, 2358, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.230, 0.342),
(6381, 2360, 602, 'ICN6597401819167588352', 'Empty', 0.106, 0.111, 11.10, -0.210, -0.023),
(6382, 2360, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.138, 0.144, 14.40, 0.630, 0.091),
(6383, 2360, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.229, 0.239, 23.90, 0.200, 0.048),
(6384, 2360, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.484, 0.506, 50.60, 1.230, 0.622),
(6401, 2369, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.339, 0.272, 27.20, 3.130, 0.851),
(6402, 2369, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.097, 0.078, 7.80, 3.410, 0.266),
(6403, 2369, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.400, 0.321, 32.10, 1.570, 0.504),
(6404, 2369, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.147, 0.118, 11.80, 0.980, 0.116),
(6405, 2369, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.264, 0.212, 21.20, 0.700, 0.148),
(6410, 2373, 963, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.090, -0.007),
(6411, 2373, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.360, 0.158),
(6412, 2373, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.180, 0.038),
(6413, 2373, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.100, 0.306),
(6414, 2374, 602, 'ICN6597401819167588352', 'Empty', 0.031, 0.034, 3.40, -0.210, -0.007),
(6415, 2374, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.178, 0.193, 19.30, 0.570, 0.110),
(6416, 2374, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.629, 0.681, 68.10, 0.180, 0.123),
(6417, 2374, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.085, 0.092, 9.20, 1.110, 0.102),
(6418, 2375, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6419, 2375, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.570, 0.250),
(6420, 2375, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.180, 0.038),
(6421, 2375, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.110, 0.309),
(6422, 2376, 942, 'ICN2556984659137265664', 'High_Grade', 0.072, 0.076, 7.60, 5.990, 0.455),
(6423, 2376, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.323, 0.340, 34.00, 0.270, 0.092),
(6424, 2376, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.240, 0.252, 25.20, 2.740, 0.690),
(6425, 2376, 944, 'ICN2556984659137265664', 'Low_Yield', 0.184, 0.193, 19.30, 1.160, 0.224),
(6426, 2376, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.132, 0.139, 13.90, 2.680, 0.373),
(6427, 2377, 942, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.071, 7.10, 5.990, 0.425),
(6428, 2377, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.184, 0.168, 16.80, 0.260, 0.044),
(6429, 2377, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.071, 7.10, 2.740, 0.195),
(6430, 2377, 944, 'ICN2556984659137265664', 'Low_Yield', 0.578, 0.529, 52.90, 1.160, 0.614),
(6431, 2377, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.176, 0.161, 16.10, 2.680, 0.431),
(6432, 2378, 942, 'ICN2556984659137265664', 'High_Grade', 0.077, 0.071, 7.10, 5.990, 0.425),
(6433, 2378, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.184, 0.168, 16.80, 0.260, 0.044),
(6434, 2378, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.077, 0.071, 7.10, 2.740, 0.195),
(6435, 2378, 944, 'ICN2556984659137265664', 'Low_Yield', 0.578, 0.529, 52.90, 1.160, 0.614),
(6436, 2378, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.176, 0.161, 16.10, 2.680, 0.431),
(6437, 2382, 973, 'ICN237138269832216576', 'Server_Boards_High_Grade', 0.469, 0.419, 41.90, 10.610, 4.446),
(6438, 2382, 974, 'ICN237138269832216576', 'Server_Boards_Low_Grade', 0.650, 0.581, 58.10, 6.200, 3.602),
(6439, 2383, 968, 'ICN3800330000012410880', 'Grade_AAA_Shielded', 0.237, 0.194, 19.40, 9.600, 1.862),
(6440, 2383, 970, 'ICN3800330000012410880', 'Grade_A_Pinned_Conn', 0.050, 0.041, 4.10, 6.910, 0.283),
(6441, 2383, 971, 'ICN3800330000012410880', 'Grade_B_Low_PMs', 0.085, 0.070, 7.00, 5.070, 0.355),
(6442, 2383, 972, 'ICN3800330000012410880', 'Grade_C_Heavy_Copper', 0.740, 0.606, 60.60, 1.230, 0.745),
(6443, 2383, 969, 'ICN3800330000012410880', 'Grade_AA_Finger_Conn', 0.109, 0.089, 8.90, 7.520, 0.669),
(6444, 2384, 602, 'ICN6597401819167588352', 'Empty', 0.057, 0.060, 6.00, -0.210, -0.013),
(6445, 2384, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.597, 0.628, 62.80, 0.630, 0.396),
(6446, 2384, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.091, 0.096, 9.60, 0.210, 0.020),
(6447, 2384, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.205, 0.216, 21.60, 1.240, 0.268),
(6448, 2385, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6449, 2385, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.630, 0.334),
(6450, 2385, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6451, 2385, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.240, 0.197),
(6456, 2387, 602, 'ICN6597401819167588352', 'Empty', 0.043, 0.040, 4.00, -0.210, -0.008),
(6457, 2387, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.266, 0.249, 24.90, 0.650, 0.162),
(6458, 2387, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.170, 0.159, 15.90, 0.210, 0.033),
(6459, 2387, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.591, 0.552, 55.20, 1.260, 0.696),
(6460, 2388, 602, 'ICN6597401819167588352', 'Empty', 0.038, 0.043, 4.30, -0.210, -0.009),
(6461, 2388, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.564, 0.643, 64.30, 0.650, 0.418),
(6462, 2388, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.206, 0.235, 23.50, 0.210, 0.049),
(6463, 2388, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.069, 0.079, 7.90, 1.280, 0.101),
(6464, 2389, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6465, 2389, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.650, 0.285),
(6466, 2389, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6467, 2389, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.280, 0.356),
(6468, 2390, 602, 'ICN6597401819167588352', 'Empty', 0.045, 0.042, 4.20, -0.210, -0.009),
(6469, 2390, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.086, 0.081, 8.10, 0.660, 0.053),
(6470, 2390, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.884, 0.828, 82.80, 0.210, 0.174),
(6471, 2390, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.052, 0.049, 4.90, 1.280, 0.063),
(6472, 2391, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6473, 2391, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.660, 0.289),
(6474, 2391, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6475, 2391, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.280, 0.356),
(6476, 2393, 602, 'ICN6597401819167588352', 'Empty', 0.053, 0.049, 4.90, -0.210, -0.010),
(6477, 2393, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.818, 0.753, 75.30, 0.660, 0.497),
(6478, 2393, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.151, 0.139, 13.90, 0.210, 0.029),
(6479, 2393, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.065, 0.060, 6.00, 1.280, 0.077),
(6480, 2394, 942, 'ICN2556984659137265664', 'High_Grade', 0.089, 0.075, 7.50, 5.970, 0.448),
(6481, 2394, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.207, 0.174, 17.40, 0.300, 0.052),
(6482, 2394, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.523, 0.441, 44.10, 2.730, 1.204),
(6483, 2394, 944, 'ICN2556984659137265664', 'Low_Yield', 0.037, 0.031, 3.10, 1.200, 0.037),
(6484, 2394, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.331, 0.279, 27.90, 2.700, 0.753),
(6485, 2395, 942, 'ICN2556984659137265664', 'High_Grade', 0.084, 0.078, 7.80, 5.700, 0.445),
(6486, 2395, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.350, 0.326, 32.60, 0.480, 0.156),
(6487, 2395, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.103, 0.096, 9.60, 6.300, 0.605),
(6488, 2395, 944, 'ICN2556984659137265664', 'Low_Yield', 0.363, 0.338, 33.80, 1.160, 0.392),
(6489, 2395, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.173, 0.161, 16.10, 2.420, 0.390),
(6490, 2396, 602, 'ICN6597401819167588352', 'Empty', 0.082, 0.077, 7.70, -0.210, -0.016),
(6491, 2396, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.683, 0.640, 64.00, 0.660, 0.422),
(6492, 2396, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.176, 0.165, 16.50, 0.210, 0.035),
(6493, 2396, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.127, 0.119, 11.90, 1.280, 0.152),
(6494, 2399, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6495, 2399, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.660, 0.350),
(6496, 2399, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6497, 2399, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.280, 0.204),
(6506, 2402, 602, 'ICN6597401819167588352', 'Empty', 0.139, 0.146, 14.60, -0.210, -0.031),
(6507, 2402, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.229, 0.240, 24.00, 0.660, 0.158),
(6508, 2402, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.190, 0.199, 19.90, 0.210, 0.042),
(6509, 2402, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.396, 0.415, 41.50, 1.280, 0.531),
(6510, 2403, 602, 'ICN6597401819167588352', 'Empty', 0.347, 0.352, 35.20, -0.210, -0.074),
(6511, 2403, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.193, 0.196, 19.60, 0.660, 0.129),
(6512, 2403, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.225, 0.228, 22.80, 0.210, 0.048),
(6513, 2403, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.222, 0.225, 22.50, 1.280, 0.288),
(6514, 2405, 602, 'ICN6597401819167588352', 'Empty', 0.125, 0.126, 12.60, -0.210, -0.026),
(6515, 2405, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.412, 0.415, 41.50, 0.660, 0.274),
(6516, 2405, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.360, 0.363, 36.30, 0.210, 0.076),
(6517, 2405, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.095, 0.096, 9.60, 1.280, 0.123),
(6518, 2407, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6519, 2407, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.660, 0.350),
(6520, 2407, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6521, 2407, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.280, 0.204),
(6530, 2410, 602, 'ICN6597401819167588352', 'Empty', 0.092, 0.087, 8.70, -0.210, -0.018),
(6531, 2410, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.195, 0.185, 18.50, 0.660, 0.122),
(6532, 2410, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.566, 0.537, 53.70, 0.210, 0.113),
(6533, 2410, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.201, 0.191, 19.10, 1.280, 0.244),
(6534, 2411, 602, 'ICN6597401819167588352', 'Empty', 0.052, 0.055, 5.50, -0.210, -0.012),
(6535, 2411, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.629, 0.664, 66.40, 0.660, 0.438),
(6536, 2411, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.183, 0.193, 19.30, 0.210, 0.041),
(6537, 2411, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.083, 0.088, 8.80, 1.280, 0.113),
(6538, 2412, 602, 'ICN6597401819167588352', 'Empty', 0.081, 0.082, 8.20, -0.210, -0.017),
(6539, 2412, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.200, 0.202, 20.20, 0.660, 0.133),
(6540, 2412, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.247, 0.249, 24.90, 0.210, 0.052),
(6541, 2412, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.462, 0.467, 46.70, 1.280, 0.598),
(6542, 2413, 602, 'ICN6597401819167588352', 'Empty', 0.128, 0.148, 14.80, -0.210, -0.031),
(6543, 2413, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.409, 0.473, 47.30, 0.660, 0.312),
(6544, 2413, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.257, 0.297, 29.70, 0.210, 0.062),
(6545, 2413, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.071, 0.082, 8.20, 1.280, 0.105),
(6546, 2415, 602, 'ICN6597401819167588352', 'Empty', 0.198, 0.200, 20.00, -0.210, -0.042),
(6547, 2415, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.390, 0.394, 39.40, 0.660, 0.260),
(6548, 2415, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.250, 0.253, 25.30, 0.210, 0.053),
(6549, 2415, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.151, 0.153, 15.30, 1.280, 0.196),
(6550, 2416, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6551, 2416, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.660, 0.350),
(6552, 2416, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6553, 2416, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.280, 0.204),
(6554, 2417, 602, 'ICN6597401819167588352', 'Empty', 0.250, 0.270, 27.00, -0.210, -0.057),
(6555, 2417, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.320, 0.345, 34.50, 0.660, 0.228),
(6556, 2417, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.256, 0.276, 27.60, 0.210, 0.058),
(6557, 2417, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.101, 0.109, 10.90, 1.280, 0.140),
(6558, 2418, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6559, 2418, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.660, 0.350),
(6560, 2418, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6561, 2418, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.280, 0.204),
(6562, 2419, 602, 'ICN6597401819167588352', 'Empty', 0.031, 0.032, 3.20, -0.210, -0.007),
(6563, 2419, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.726, 0.746, 74.60, 0.660, 0.492),
(6564, 2419, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.154, 0.158, 15.80, 0.210, 0.033),
(6565, 2419, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.062, 0.064, 6.40, 1.280, 0.082),
(6566, 2420, 602, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.210, -0.024),
(6567, 2420, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.660, 0.350),
(6568, 2420, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.210, 0.041),
(6569, 2420, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.280, 0.204),
(6582, 2424, 602, 'ICN6597401819167588352', 'Empty', 0.125, 0.123, 12.30, -0.210, -0.026),
(6583, 2424, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.436, 0.430, 43.00, 0.660, 0.284),
(6584, 2424, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.148, 0.146, 14.60, 0.210, 0.031),
(6585, 2424, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.306, 0.301, 30.10, 1.280, 0.385),
(6586, 2425, 602, 'ICN6597401819167588352', 'Empty', 0.059, 0.070, 7.00, -0.210, -0.015),
(6587, 2425, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.193, 0.231, 23.10, 0.660, 0.152),
(6588, 2425, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.129, 0.154, 15.40, 0.210, 0.032),
(6589, 2425, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.456, 0.545, 54.50, 1.280, 0.698),
(6590, 2426, 602, 'ICN6597401819167588352', 'Empty', 0.083, 0.084, 8.40, -0.210, -0.018),
(6591, 2426, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.594, 0.599, 59.90, 0.660, 0.395),
(6592, 2426, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.263, 0.265, 26.50, 0.210, 0.056),
(6593, 2426, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.051, 0.051, 5.10, 1.280, 0.065),
(6594, 2427, 602, 'ICN6597401819167588352', 'Empty', 0.050, 0.051, 5.10, -0.210, -0.011),
(6595, 2427, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.287, 0.293, 29.30, 0.660, 0.193),
(6596, 2427, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.605, 0.619, 61.90, 0.210, 0.130),
(6597, 2427, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.036, 0.037, 3.70, 1.280, 0.047),
(6598, 2428, 602, 'ICN6597401819167588352', 'Empty', 0.059, 0.070, 7.00, -0.210, -0.015),
(6599, 2428, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.193, 0.231, 23.10, 0.660, 0.152),
(6600, 2428, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.129, 0.154, 15.40, 0.210, 0.032),
(6601, 2428, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.456, 0.545, 54.50, 1.280, 0.698),
(6602, 2429, 950, 'ICN3203040099432398848', 'High_Grade', 0.228, 0.232, 23.20, 43.220, 10.027),
(6603, 2429, 948, 'ICN3203040099432398848', 'Low_Grade', 0.460, 0.468, 46.80, 25.440, 11.906),
(6604, 2429, 949, 'ICN3203040099432398848', 'Mid_Grade', 0.295, 0.300, 30.00, 37.870, 11.361),
(6605, 2430, 602, 'ICN6597401819167588352', 'Empty', 0.086, 0.078, 7.80, -0.210, -0.016),
(6606, 2430, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.106, 0.097, 9.70, 0.660, 0.064),
(6607, 2430, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.310, 0.283, 28.30, 0.210, 0.059),
(6608, 2430, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.595, 0.542, 54.20, 1.280, 0.694),
(6609, 2431, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6610, 2431, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.660, 0.289),
(6611, 2431, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6612, 2431, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.280, 0.356),
(6613, 2432, 602, 'ICN6597401819167588352', 'Empty', 0.074, 0.065, 6.50, -0.210, -0.014),
(6614, 2432, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.783, 0.688, 68.80, 0.660, 0.454),
(6615, 2432, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.222, 0.195, 19.50, 0.210, 0.041),
(6616, 2432, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.059, 0.052, 5.20, 1.280, 0.067),
(6617, 2433, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6618, 2433, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.660, 0.289),
(6619, 2433, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6620, 2433, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.280, 0.356),
(6621, 2434, 985, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.525, 0.447, 44.70, 0.850, 0.380),
(6622, 2434, 986, 'ICN7981429672816672768', 'High_End_CRTs', 0.094, 0.080, 8.00, 0.940, 0.075),
(6623, 2434, 984, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.555, 0.473, 47.30, 0.410, 0.194),
(6624, 2435, 985, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.235, 0.204, 20.40, 0.850, 0.173),
(6625, 2435, 986, 'ICN7981429672816672768', 'High_End_CRTs', 0.112, 0.097, 9.70, 0.940, 0.091),
(6626, 2435, 984, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.803, 0.698, 69.80, 0.410, 0.286),
(6627, 2436, 602, 'ICN6597401819167588352', 'Empty', 0.035, 0.028, 2.80, -0.210, -0.006),
(6628, 2436, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.250, 0.202, 20.20, 0.650, 0.131),
(6629, 2436, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.829, 0.669, 66.90, 0.210, 0.140),
(6630, 2436, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.126, 0.102, 10.20, 1.260, 0.129),
(6631, 2437, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6632, 2437, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.650, 0.285),
(6633, 2437, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6634, 2437, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6635, 2439, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6636, 2439, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.650, 0.285),
(6637, 2439, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6638, 2439, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6639, 2440, 602, 'ICN6597401819167588352', 'Empty', 0.053, 0.045, 4.50, -0.210, -0.009),
(6640, 2440, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.624, 0.526, 52.60, 0.640, 0.337),
(6641, 2440, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.404, 0.340, 34.00, 0.210, 0.071),
(6642, 2440, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.106, 0.089, 8.90, 1.260, 0.112),
(6643, 2441, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6644, 2441, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.640, 0.280),
(6645, 2441, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6646, 2441, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6647, 2443, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6648, 2443, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.640, 0.280),
(6649, 2443, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6650, 2443, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6651, 2446, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6652, 2446, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.640, 0.280),
(6653, 2446, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.210, 0.044),
(6654, 2446, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.260, 0.350),
(6655, 2447, 942, 'ICN2556984659137265664', 'High_Grade', 0.049, 0.048, 4.80, 5.650, 0.271),
(6656, 2447, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.211, 0.208, 20.80, 0.450, 0.094),
(6657, 2447, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.570, 0.563, 56.30, 6.230, 3.507),
(6658, 2447, 944, 'ICN2556984659137265664', 'Low_Yield', 0.072, 0.071, 7.10, 1.140, 0.081),
(6659, 2447, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.111, 0.110, 11.00, 2.380, 0.262),
(6660, 2448, 942, 'ICN2556984659137265664', 'High_Grade', 0.048, 0.044, 4.40, 5.650, 0.249),
(6661, 2448, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.282, 0.257, 25.70, 0.450, 0.116),
(6662, 2448, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.614, 0.559, 55.90, 6.230, 3.483),
(6663, 2448, 944, 'ICN2556984659137265664', 'Low_Yield', 0.080, 0.073, 7.30, 1.140, 0.083),
(6664, 2448, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.075, 0.068, 6.80, 2.380, 0.162),
(6665, 2449, 983, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.074, 0.066, 6.60, 0.540, 0.036),
(6666, 2449, 982, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.087, 0.078, 7.80, 1.660, 0.129),
(6667, 2449, 981, 'ICN5491985813950431232', 'Mid_Grade', 0.811, 0.725, 72.50, 2.570, 1.863),
(6668, 2449, 980, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.146, 0.131, 13.10, 2.990, 0.392),
(6669, 2450, 952, 'ICN2261506302335254528', 'High_Grade', 0.484, 0.527, 52.70, 8.840, 4.659),
(6670, 2450, 951, 'ICN2261506302335254528', 'Low_Grade', 0.434, 0.473, 47.30, 6.460, 3.056);
INSERT INTO `viewpasimgdetail` (`id`, `imageid`, `productid`, `dataset`, `name`, `score`, `percent`, `finalpercent`, `offerprice`, `total`) VALUES
(6671, 2451, 963, 'ICN6597401819167588352', 'Empty', 0.134, 0.154, 15.40, -0.090, -0.014),
(6672, 2451, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.186, 0.214, 21.40, 0.520, 0.111),
(6673, 2451, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.442, 0.509, 50.90, 0.180, 0.092),
(6674, 2451, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.107, 0.123, 12.30, 1.120, 0.138),
(6675, 2452, 963, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.090, -0.007),
(6676, 2452, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.520, 0.228),
(6677, 2452, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.180, 0.038),
(6678, 2452, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.120, 0.311),
(6679, 2453, 602, 'ICN6597401819167588352', 'Empty', 0.076, 0.072, 7.20, -0.210, -0.015),
(6680, 2453, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.718, 0.677, 67.70, 0.620, 0.420),
(6681, 2453, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.083, 0.078, 7.80, 0.200, 0.016),
(6682, 2453, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.184, 0.173, 17.30, 1.220, 0.211),
(6683, 2454, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6684, 2454, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.620, 0.272),
(6685, 2454, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.200, 0.042),
(6686, 2454, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.210, 0.336),
(6687, 2455, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.210, -0.016),
(6688, 2455, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.620, 0.272),
(6689, 2455, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.200, 0.042),
(6690, 2455, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 1.210, 0.336),
(6691, 2456, 963, 'ICN6597401819167588352', 'Empty', 0.089, 0.096, 9.60, -0.090, -0.009),
(6692, 2456, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.193, 0.208, 20.80, 0.540, 0.112),
(6693, 2456, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.250, 0.269, 26.90, 0.190, 0.051),
(6694, 2456, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.398, 0.428, 42.80, 1.160, 0.496),
(6695, 2457, 963, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.090, -0.010),
(6696, 2457, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.540, 0.286),
(6697, 2457, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.190, 0.037),
(6698, 2457, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.160, 0.184),
(6699, 2458, 963, 'ICN6597401819167588352', 'Empty', 0.131, 0.114, 11.40, -0.090, -0.010),
(6700, 2458, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.608, 0.530, 53.00, 0.540, 0.286),
(6701, 2458, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.226, 0.197, 19.70, 0.190, 0.037),
(6702, 2458, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.183, 0.159, 15.90, 1.160, 0.184),
(6703, 2460, 963, 'ICN6597401819167588352', 'Empty', 0.097, 0.106, 10.60, -0.090, -0.010),
(6704, 2460, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.160, 0.174, 17.40, 0.550, 0.096),
(6705, 2460, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.346, 0.376, 37.60, 0.190, 0.071),
(6706, 2460, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.316, 0.344, 34.40, 1.170, 0.402),
(6707, 2461, 942, 'ICN2556984659137265664', 'High_Grade', 0.046, 0.042, 4.20, 5.430, 0.228),
(6708, 2461, 988, 'ICN2556984659137265664', 'LowYeild_Metal', 0.102, 0.094, 9.40, 0.390, 0.037),
(6709, 2461, 989, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.841, 0.777, 77.70, 5.960, 4.631),
(6710, 2461, 944, 'ICN2556984659137265664', 'Low_Yield', 0.063, 0.058, 5.80, 1.060, 0.061),
(6711, 2461, 943, 'ICN2556984659137265664', 'Mid_Grade', 0.031, 0.029, 2.90, 2.260, 0.066),
(6712, 2465, 602, 'ICN6597401819167588352', 'Empty', 0.044, 0.044, 4.40, -0.120, -0.005),
(6713, 2465, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.195, 0.197, 19.70, 0.360, 0.071),
(6714, 2465, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.108, 0.109, 10.90, 0.120, 0.013),
(6715, 2465, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.643, 0.649, 64.90, 0.690, 0.448),
(6716, 2467, 602, 'ICN6597401819167588352', 'Empty', 0.087, 0.090, 9.00, -0.120, -0.011),
(6717, 2467, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.139, 0.143, 14.30, 0.360, 0.051),
(6718, 2467, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.457, 0.471, 47.10, 0.120, 0.057),
(6719, 2467, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.287, 0.296, 29.60, 0.700, 0.207),
(6720, 2468, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6721, 2468, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.360, 0.158),
(6722, 2468, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.120, 0.025),
(6723, 2468, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.700, 0.195),
(6724, 2470, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6725, 2470, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.380, 0.166),
(6726, 2470, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.270, 0.056),
(6727, 2470, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.700, 0.195),
(6728, 2471, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.822, 0.500, 50.00, 0.560, 0.280),
(6729, 2471, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.086, 0.052, 5.20, 0.630, 0.033),
(6730, 2471, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.735, 0.447, 44.70, 0.270, 0.121),
(6731, 2472, 602, 'ICN6597401819167588352', 'Empty', 0.093, 0.108, 10.80, -0.120, -0.013),
(6732, 2472, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.218, 0.253, 25.30, 0.380, 0.096),
(6733, 2472, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.251, 0.292, 29.20, 0.270, 0.079),
(6734, 2472, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.299, 0.347, 34.70, 0.700, 0.243),
(6735, 2473, 963, 'ICN6597401819167588352', 'Empty', 0.074, 0.069, 6.90, -0.050, -0.003),
(6736, 2473, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.040, 0.037, 3.70, 0.350, 0.013),
(6737, 2473, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.201, 0.188, 18.80, 0.130, 0.024),
(6738, 2473, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.754, 0.705, 70.50, 0.740, 0.522),
(6739, 2474, 963, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.050, -0.004),
(6740, 2474, 961, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.350, 0.153),
(6741, 2474, 962, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.130, 0.027),
(6742, 2474, 960, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.740, 0.206),
(6743, 2475, 602, 'ICN6597401819167588352', 'Empty', 0.095, 0.073, 7.30, -0.120, -0.009),
(6744, 2475, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.851, 0.653, 65.30, 0.450, 0.294),
(6745, 2475, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.278, 0.213, 21.30, 0.310, 0.066),
(6746, 2475, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.080, 0.061, 6.10, 0.810, 0.049),
(6747, 2476, 602, 'ICN6597401819167588352', 'Empty', 0.033, 0.028, 2.80, -0.120, -0.003),
(6748, 2476, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.484, 0.417, 41.70, 0.450, 0.188),
(6749, 2476, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.550, 0.474, 47.40, 0.310, 0.147),
(6750, 2476, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.093, 0.080, 8.00, 0.810, 0.065),
(6751, 2477, 602, 'ICN6597401819167588352', 'Empty', 0.057, 0.051, 5.10, -0.120, -0.006),
(6752, 2477, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.372, 0.330, 33.00, 0.450, 0.149),
(6753, 2477, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.586, 0.520, 52.00, 0.310, 0.161),
(6754, 2477, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.113, 0.100, 10.00, 0.810, 0.081),
(6755, 2478, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6756, 2478, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6757, 2478, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6758, 2478, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6759, 2493, 622, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.158, 0.182, 18.20, 0.480, 0.087),
(6760, 2493, 621, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.137, 0.158, 15.80, 0.590, 0.093),
(6761, 2493, 620, 'ICN5491985813950431232', 'Mid_Grade', 0.342, 0.394, 39.40, 0.950, 0.374),
(6762, 2493, 619, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.230, 0.265, 26.50, 0.870, 0.231),
(6763, 2494, 622, 'ICN5491985813950431232', 'Low_Quality_BaseMet', 0.164, 0.160, 16.00, 0.480, 0.077),
(6764, 2494, 621, 'ICN5491985813950431232', 'Low_Quality_PMs', 0.116, 0.113, 11.30, 0.590, 0.067),
(6765, 2494, 620, 'ICN5491985813950431232', 'Mid_Grade', 0.447, 0.435, 43.50, 0.950, 0.413),
(6766, 2494, 619, 'ICN5491985813950431232', 'High_Grade_High_PMs', 0.301, 0.293, 29.30, 0.870, 0.255),
(6767, 2495, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.079, 0.074, 7.40, 0.640, 0.047),
(6768, 2495, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.951, 0.888, 88.80, 0.700, 0.622),
(6769, 2495, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.041, 0.038, 3.80, 0.330, 0.013),
(6770, 2496, 624, 'ICN7981429672816672768', 'Mid_Grade_LowPMs', 0.141, 0.141, 14.10, 0.640, 0.090),
(6771, 2496, 625, 'ICN7981429672816672768', 'High_End_CRTs', 0.557, 0.556, 55.60, 0.700, 0.389),
(6772, 2496, 623, 'ICN7981429672816672768', 'Low_Grade_HeavyMetal', 0.304, 0.303, 30.30, 0.330, 0.100),
(6773, 2497, 602, 'ICN6597401819167588352', 'Empty', 0.047, 0.047, 4.70, -0.120, -0.006),
(6774, 2497, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.076, 0.076, 7.60, 0.450, 0.034),
(6775, 2497, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.118, 0.118, 11.80, 0.320, 0.038),
(6776, 2497, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.763, 0.760, 76.00, 0.820, 0.623),
(6777, 2498, 602, 'ICN6597401819167588352', 'Empty', 0.079, 0.069, 6.90, -0.120, -0.008),
(6778, 2498, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.097, 0.085, 8.50, 0.460, 0.039),
(6779, 2498, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.701, 0.612, 61.20, 0.320, 0.196),
(6780, 2498, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.269, 0.235, 23.50, 0.830, 0.195),
(6781, 2499, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6782, 2499, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.460, 0.201),
(6783, 2499, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.320, 0.067),
(6784, 2499, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.830, 0.231),
(6785, 2500, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6786, 2500, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.470, 0.206),
(6787, 2500, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.330, 0.069),
(6788, 2500, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.850, 0.236),
(6789, 2501, 602, 'ICN6597401819167588352', 'Empty', 0.072, 0.059, 5.90, -0.120, -0.007),
(6790, 2501, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.903, 0.738, 73.80, 0.470, 0.347),
(6791, 2501, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.208, 0.170, 17.00, 0.330, 0.056),
(6792, 2501, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.040, 0.033, 3.30, 0.860, 0.028),
(6793, 2502, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6794, 2502, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.470, 0.206),
(6795, 2502, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.330, 0.069),
(6796, 2502, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.850, 0.236),
(6797, 2503, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6798, 2503, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.470, 0.206),
(6799, 2503, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.330, 0.069),
(6800, 2503, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.850, 0.236),
(6801, 2505, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6802, 2505, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.470, 0.206),
(6803, 2505, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.330, 0.069),
(6804, 2505, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.850, 0.236),
(6805, 2506, 602, 'ICN6597401819167588352', 'Empty', 0.069, 0.062, 6.20, -0.120, -0.007),
(6806, 2506, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.065, 0.059, 5.90, 0.470, 0.028),
(6807, 2506, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.777, 0.703, 70.30, 0.330, 0.232),
(6808, 2506, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.194, 0.176, 17.60, 0.850, 0.150),
(6809, 2507, 602, 'ICN6597401819167588352', 'Empty', 0.089, 0.087, 8.70, -0.120, -0.010),
(6810, 2507, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.109, 0.107, 10.70, 0.460, 0.049),
(6811, 2507, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.463, 0.455, 45.50, 0.330, 0.150),
(6812, 2507, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.357, 0.351, 35.10, 0.840, 0.295),
(6813, 2508, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6814, 2508, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.460, 0.201),
(6815, 2508, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.330, 0.069),
(6816, 2508, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.840, 0.234),
(6817, 2509, 602, 'ICN6597401819167588352', 'Empty', 0.064, 0.058, 5.80, -0.120, -0.007),
(6818, 2509, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.772, 0.700, 70.00, 0.450, 0.315),
(6819, 2509, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.190, 0.172, 17.20, 0.310, 0.053),
(6820, 2509, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.077, 0.070, 7.00, 0.810, 0.057),
(6821, 2510, 602, 'ICN6597401819167588352', 'Empty', 0.070, 0.073, 7.30, -0.120, -0.009),
(6822, 2510, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.530, 0.553, 55.30, 0.450, 0.249),
(6823, 2510, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.302, 0.315, 31.50, 0.310, 0.098),
(6824, 2510, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.056, 0.058, 5.80, 0.810, 0.047),
(6825, 2511, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6826, 2511, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6827, 2511, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6828, 2511, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6829, 2512, 602, 'ICN6597401819167588352', 'Empty', 0.067, 0.055, 5.50, -0.120, -0.007),
(6830, 2512, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.130, 0.107, 10.70, 0.450, 0.048),
(6831, 2512, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.856, 0.703, 70.30, 0.310, 0.218),
(6832, 2512, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.165, 0.135, 13.50, 0.810, 0.109),
(6833, 2514, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6834, 2514, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6835, 2514, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6836, 2514, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6837, 2516, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6838, 2516, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6839, 2516, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6840, 2516, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6841, 2517, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6842, 2517, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6843, 2517, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6844, 2517, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6845, 2518, 602, 'ICN6597401819167588352', 'Empty', 0.059, 0.066, 6.60, -0.120, -0.008),
(6846, 2518, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.170, 0.190, 19.00, 0.450, 0.086),
(6847, 2518, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.435, 0.485, 48.50, 0.310, 0.150),
(6848, 2518, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.232, 0.259, 25.90, 0.810, 0.210),
(6849, 2520, 602, 'ICN6597401819167588352', 'Empty', 0.034, 0.032, 3.20, -0.120, -0.004),
(6850, 2520, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.103, 0.098, 9.80, 0.450, 0.044),
(6851, 2520, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.541, 0.513, 51.30, 0.310, 0.159),
(6852, 2520, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.377, 0.357, 35.70, 0.810, 0.289),
(6853, 2521, 602, 'ICN6597401819167588352', 'Empty', 0.073, 0.069, 6.90, -0.120, -0.008),
(6854, 2521, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.824, 0.780, 78.00, 0.450, 0.351),
(6855, 2521, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.102, 0.097, 9.70, 0.310, 0.030),
(6856, 2521, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.057, 0.054, 5.40, 0.810, 0.044),
(6857, 2522, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.120, -0.009),
(6858, 2522, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.450, 0.197),
(6859, 2522, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.310, 0.065),
(6860, 2522, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.810, 0.225),
(6861, 2525, 602, 'ICN6597401819167588352', 'Empty', 0.114, 0.119, 11.90, -0.120, -0.014),
(6862, 2525, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.329, 0.342, 34.20, 0.450, 0.154),
(6863, 2525, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.406, 0.422, 42.20, 0.310, 0.131),
(6864, 2525, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.112, 0.117, 11.70, 0.810, 0.095),
(6865, 2527, 602, 'ICN6597401819167588352', 'Empty', 0.030, 0.034, 3.40, -0.120, -0.004),
(6866, 2527, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.498, 0.563, 56.30, 0.450, 0.253),
(6867, 2527, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.143, 0.162, 16.20, 0.310, 0.050),
(6868, 2527, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.214, 0.242, 24.20, 0.810, 0.196),
(6869, 2529, 602, 'ICN6597401819167588352', 'Empty', 0.043, 0.046, 4.60, -0.120, -0.006),
(6870, 2529, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.120, 0.128, 12.80, 0.450, 0.058),
(6871, 2529, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.480, 0.513, 51.30, 0.310, 0.159),
(6872, 2529, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.293, 0.313, 31.30, 0.810, 0.254),
(6873, 2530, 602, 'ICN6597401819167588352', 'Empty', 0.086, 0.074, 7.40, -0.120, -0.009),
(6874, 2530, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.082, 0.070, 7.00, 0.450, 0.032),
(6875, 2530, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.282, 0.241, 24.10, 0.310, 0.075),
(6876, 2530, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.718, 0.615, 61.50, 0.810, 0.498),
(6877, 2531, 602, 'ICN6597401819167588352', 'Empty', 0.086, 0.074, 7.40, -0.120, -0.009),
(6878, 2531, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.082, 0.070, 7.00, 0.450, 0.032),
(6879, 2531, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.278, 0.238, 23.80, 0.310, 0.074),
(6880, 2531, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.724, 0.619, 61.90, 0.810, 0.501),
(6881, 2532, 197, 'ICN6597401819167588352', 'Empty', 0.086, 0.074, 7.40, 0.000, 0.000),
(6882, 2532, 195, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.082, 0.070, 7.00, 0.000, 0.000),
(6883, 2532, 196, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.282, 0.241, 24.10, 0.000, 0.000),
(6884, 2532, 194, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.718, 0.615, 61.50, 0.000, 0.000),
(6885, 2533, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6886, 2533, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6887, 2533, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6888, 2533, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6889, 2533, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6890, 2536, 35, 'ICN2556984659137265664', 'High_Grade', 0.072, 0.075, 7.50, 6.100, 0.458),
(6891, 2536, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.193, 0.201, 20.10, 0.000, 0.000),
(6892, 2536, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.435, 0.454, 45.40, 0.000, 0.000),
(6893, 2536, 0, 'ICN2556984659137265664', 'Low_Yield', 0.113, 0.118, 11.80, 0.000, 0.000),
(6894, 2536, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.145, 0.151, 15.10, 2.700, 0.408),
(6895, 2541, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6896, 2541, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6897, 2541, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6898, 2541, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6899, 2541, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6900, 2544, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6901, 2544, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6902, 2544, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6903, 2544, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6904, 2544, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6905, 2545, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6906, 2545, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6907, 2545, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6908, 2545, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6909, 2545, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6910, 2547, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6911, 2547, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6912, 2547, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6913, 2547, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6914, 2547, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6915, 2548, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6916, 2548, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6917, 2548, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6918, 2548, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6919, 2548, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6920, 2549, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6921, 2549, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6922, 2549, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6923, 2549, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6924, 2549, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6925, 2551, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6926, 2551, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6927, 2551, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6928, 2551, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6929, 2551, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6930, 2552, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6931, 2552, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6932, 2552, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6933, 2552, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6934, 2552, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6935, 2553, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6936, 2553, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6937, 2553, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6938, 2553, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6939, 2553, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6940, 2554, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6941, 2554, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6942, 2554, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6943, 2554, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6944, 2554, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6945, 2555, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6946, 2555, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6947, 2555, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6948, 2555, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6949, 2555, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6950, 2556, 35, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.054, 5.40, 6.100, 0.329),
(6951, 2556, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.141, 0.117, 11.70, 0.000, 0.000),
(6952, 2556, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.788, 0.653, 65.30, 0.000, 0.000),
(6953, 2556, 0, 'ICN2556984659137265664', 'Low_Yield', 0.098, 0.081, 8.10, 0.000, 0.000),
(6954, 2556, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.115, 0.095, 9.50, 2.700, 0.257),
(6955, 2557, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6956, 2557, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6957, 2557, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6958, 2557, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6959, 2557, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6960, 2558, 35, 'ICN2556984659137265664', 'High_Grade', 0.061, 0.051, 5.10, 6.100, 0.311),
(6961, 2558, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.082, 0.069, 6.90, 0.000, 0.000),
(6962, 2558, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.908, 0.762, 76.20, 0.000, 0.000),
(6963, 2558, 0, 'ICN2556984659137265664', 'Low_Yield', 0.055, 0.046, 4.60, 0.000, 0.000),
(6964, 2558, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.086, 0.072, 7.20, 2.700, 0.194),
(6965, 2560, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6966, 2560, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6967, 2560, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6968, 2560, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6969, 2560, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6970, 2561, 35, 'ICN2556984659137265664', 'High_Grade', 0.065, 0.059, 5.90, 6.100, 0.360),
(6971, 2561, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.635, 0.574, 57.40, 0.000, 0.000),
(6972, 2561, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.170, 0.154, 15.40, 0.000, 0.000),
(6973, 2561, 0, 'ICN2556984659137265664', 'Low_Yield', 0.150, 0.136, 13.60, 0.000, 0.000),
(6974, 2561, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.086, 0.078, 7.80, 2.700, 0.211),
(6975, 2562, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6976, 2562, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6977, 2562, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6978, 2562, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6979, 2562, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6980, 2563, 35, 'ICN2556984659137265664', 'High_Grade', 0.052, 0.051, 5.10, 6.100, 0.311),
(6981, 2563, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.093, 0.091, 9.10, 0.000, 0.000),
(6982, 2563, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.705, 0.687, 68.70, 0.000, 0.000),
(6983, 2563, 0, 'ICN2556984659137265664', 'Low_Yield', 0.120, 0.117, 11.70, 0.000, 0.000),
(6984, 2563, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.056, 0.055, 5.50, 2.700, 0.149),
(6985, 2564, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6986, 2564, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6987, 2564, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6988, 2564, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6989, 2564, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(6990, 2565, 35, 'ICN2556984659137265664', 'High_Grade', 0.072, 0.062, 6.20, 6.100, 0.378),
(6991, 2565, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.130, 0.112, 11.20, 0.000, 0.000),
(6992, 2565, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.757, 0.653, 65.30, 0.000, 0.000),
(6993, 2565, 0, 'ICN2556984659137265664', 'Low_Yield', 0.098, 0.085, 8.50, 0.000, 0.000),
(6994, 2565, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.102, 0.088, 8.80, 2.700, 0.238),
(6995, 2566, 35, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(6996, 2566, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(6997, 2566, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(6998, 2566, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(6999, 2566, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(7000, 2567, 35, 'ICN2556984659137265664', 'High_Grade', 0.033, 0.031, 3.10, 6.100, 0.189),
(7001, 2567, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.696, 0.660, 66.00, 0.000, 0.000),
(7002, 2567, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.104, 0.099, 9.90, 0.000, 0.000),
(7003, 2567, 0, 'ICN2556984659137265664', 'Low_Yield', 0.173, 0.164, 16.40, 0.000, 0.000),
(7004, 2567, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.048, 0.046, 4.60, 2.700, 0.124),
(7010, 2573, 35, 'ICN2556984659137265664', 'High_Grade', 0.103, 0.118, 11.80, 6.100, 0.720),
(7011, 2573, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.350, 0.401, 40.10, 0.000, 0.000),
(7012, 2573, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.180, 0.206, 20.60, 0.000, 0.000),
(7013, 2573, 0, 'ICN2556984659137265664', 'Low_Yield', 0.111, 0.127, 12.70, 0.000, 0.000),
(7014, 2573, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.128, 0.147, 14.70, 2.700, 0.397),
(7015, 2574, 199, 'ICN2261506302335254528', 'High_Grade', 0.245, 0.225, 22.50, 0.000, 0.000),
(7016, 2574, 198, 'ICN2261506302335254528', 'Low_Grade', 0.845, 0.775, 77.50, 0.000, 0.000),
(7017, 2575, 26, 'ICN6597401819167588352', 'Empty', 0.065, 0.058, 5.80, 0.000, 0.000),
(7018, 2575, 24, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.412, 0.367, 36.70, 0.120, 0.044),
(7019, 2575, 25, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.233, 0.208, 20.80, 0.080, 0.017),
(7020, 2575, 23, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.412, 0.367, 36.70, 0.140, 0.051),
(7021, 2576, 234, 'ICN6597401819167588352', 'Empty', 0.065, 0.058, 5.80, 0.000, 0.000),
(7022, 2576, 232, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.412, 0.367, 36.70, 0.440, 0.161),
(7023, 2576, 233, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.233, 0.208, 20.80, 0.220, 0.046),
(7024, 2576, 231, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.412, 0.367, 36.70, 0.770, 0.283),
(7025, 2578, 234, 'ICN6597401819167588352', 'Empty', 0.065, 0.058, 5.80, 0.000, 0.000),
(7026, 2578, 232, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.412, 0.367, 36.70, 0.440, 0.161),
(7027, 2578, 233, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.233, 0.208, 20.80, 0.220, 0.046),
(7028, 2578, 231, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.412, 0.367, 36.70, 0.770, 0.283),
(7029, 2579, 234, 'ICN6597401819167588352', 'Empty', 0.082, 0.076, 7.60, 0.000, 0.000),
(7030, 2579, 232, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.187, 0.173, 17.30, 0.440, 0.076),
(7031, 2579, 233, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.141, 0.131, 13.10, 0.220, 0.029),
(7032, 2579, 231, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.668, 0.620, 62.00, 0.770, 0.477),
(7033, 2581, 708, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.132, 0.118, 11.80, 13.020, 1.536),
(7034, 2581, 238, 'ICN5348152100851286016', 'Low_Grade', 0.499, 0.448, 44.80, 1.000, 0.448),
(7035, 2581, 239, 'ICN5348152100851286016', 'Mid_Grade', 0.293, 0.263, 26.30, 1.500, 0.395),
(7036, 2581, 237, 'ICN5348152100851286016', 'High_Grade', 0.190, 0.171, 17.10, 2.000, 0.342),
(7037, 2582, 602, 'ICN6597401819167588352', 'Empty', 0.115, 0.103, 10.30, -0.120, -0.012),
(7038, 2582, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.063, 0.056, 5.60, 0.450, 0.025),
(7039, 2582, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.047, 0.042, 4.20, 0.310, 0.013),
(7040, 2582, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.894, 0.799, 79.90, 0.810, 0.647),
(7041, 2583, 602, 'ICN6597401819167588352', 'Empty', 0.175, 0.144, 14.40, -0.120, -0.017),
(7042, 2583, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.183, 0.150, 15.00, 0.450, 0.068),
(7043, 2583, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.772, 0.634, 63.40, 0.310, 0.197),
(7044, 2583, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.087, 0.071, 7.10, 0.810, 0.058),
(7045, 2584, 243, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 3.550, 0.245),
(7046, 2584, 709, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.600, 0.069),
(7047, 2584, 710, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 5.500, 0.413),
(7048, 2584, 245, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 1.100, 0.586),
(7049, 2584, 244, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(7050, 2585, 354, 'ICN2556984659137265664', 'High_Grade', 0.076, 0.069, 6.90, 6.100, 0.421),
(7051, 2585, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.126, 0.115, 11.50, 0.000, 0.000),
(7052, 2585, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.082, 0.075, 7.50, 0.000, 0.000),
(7053, 2585, 0, 'ICN2556984659137265664', 'Low_Yield', 0.583, 0.533, 53.30, 0.000, 0.000),
(7054, 2585, 355, 'ICN2556984659137265664', 'Mid_Grade', 0.227, 0.207, 20.70, 2.700, 0.559),
(7055, 2586, 354, 'ICN2556984659137265664', 'High_Grade', 0.061, 0.056, 5.60, 6.100, 0.342),
(7056, 2586, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.083, 0.077, 7.70, 0.000, 0.000),
(7057, 2586, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.556, 0.514, 51.40, 0.000, 0.000),
(7058, 2586, 0, 'ICN2556984659137265664', 'Low_Yield', 0.066, 0.061, 6.10, 0.000, 0.000),
(7059, 2586, 355, 'ICN2556984659137265664', 'Mid_Grade', 0.315, 0.291, 29.10, 2.700, 0.786),
(7060, 2591, 581, 'ICN2556984659137265664', 'High_Grade', 0.033, 0.036, 3.60, 3.530, 0.127),
(7061, 2591, 736, 'ICN2556984659137265664', 'LowYeild_Metal', 0.202, 0.221, 22.10, 0.490, 0.108),
(7062, 2591, 748, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.424, 0.464, 46.40, 3.510, 1.629),
(7063, 2591, 583, 'ICN2556984659137265664', 'Low_Yield', 0.087, 0.095, 9.50, 0.780, 0.074),
(7064, 2591, 582, 'ICN2556984659137265664', 'Mid_Grade', 0.167, 0.183, 18.30, 1.080, 0.198),
(7065, 2592, 612, 'ICN237138269832216576', 'Server_Boards_High_Grade', 0.366, 0.373, 37.30, 5.880, 2.193),
(7066, 2592, 613, 'ICN237138269832216576', 'Server_Boards_Low_Grade', 0.614, 0.627, 62.70, 4.140, 2.596),
(7067, 2593, 602, 'ICN6597401819167588352', 'Empty', 0.078, 0.071, 7.10, -0.120, -0.009),
(7068, 2593, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.926, 0.840, 84.00, 0.440, 0.370),
(7069, 2593, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.040, 0.036, 3.60, 0.310, 0.011),
(7070, 2593, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.059, 0.053, 5.30, 0.810, 0.043),
(7071, 2594, 602, 'ICN6597401819167588352', 'Empty', 0.137, 0.135, 13.50, -0.120, -0.016),
(7072, 2594, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.673, 0.662, 66.20, 0.440, 0.291),
(7073, 2594, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.054, 0.053, 5.30, 0.310, 0.016),
(7074, 2594, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.153, 0.150, 15.00, 0.810, 0.122),
(7075, 2595, 598, 'ICN7017588983815208960', 'SmartPhone_WithMetal', 0.071, 0.068, 6.80, 3.870, 0.263),
(7076, 2595, 596, 'ICN7017588983815208960', 'HighGrade_Older_WithMetal', 0.818, 0.786, 78.60, 9.250, 7.271),
(7077, 2595, 597, 'ICN7017588983815208960', 'SmartPhone_NoMetal', 0.065, 0.062, 6.20, 6.900, 0.428),
(7078, 2595, 595, 'ICN7017588983815208960', 'HighGrade_Older_NoMetal', 0.087, 0.084, 8.40, 15.480, 1.300),
(7079, 2596, 591, 'ICN2261506302335254528', 'High_Grade', 0.546, 0.629, 62.90, 3.780, 2.378),
(7080, 2596, 590, 'ICN2261506302335254528', 'Low_Grade', 0.322, 0.371, 37.10, 2.540, 0.942),
(7081, 2598, 602, 'ICN6597401819167588352', 'Empty', 0.079, 0.064, 6.40, -0.160, -0.010),
(7082, 2598, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.202, 0.163, 16.30, 0.520, 0.085),
(7083, 2598, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.835, 0.673, 67.30, 0.370, 0.249),
(7084, 2598, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.124, 0.100, 10.00, 0.960, 0.096),
(7085, 2600, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.160, -0.012),
(7086, 2600, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.520, 0.228),
(7087, 2600, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.370, 0.077),
(7088, 2600, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.960, 0.267),
(7089, 2604, 35, 'ICN2556984659137265664', 'High_Grade', 0.042, 0.039, 3.90, 6.100, 0.238),
(7090, 2604, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.166, 0.153, 15.30, 0.000, 0.000),
(7091, 2604, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.623, 0.573, 57.30, 0.000, 0.000),
(7092, 2604, 0, 'ICN2556984659137265664', 'Low_Yield', 0.115, 0.106, 10.60, 0.000, 0.000),
(7093, 2604, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.142, 0.131, 13.10, 2.700, 0.354),
(7094, 2605, 602, 'ICN6597401819167588352', 'Empty', 0.047, 0.039, 3.90, -0.160, -0.006),
(7095, 2605, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.155, 0.130, 13.00, 0.520, 0.068),
(7096, 2605, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.251, 0.210, 21.00, 0.370, 0.078),
(7097, 2605, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.741, 0.621, 62.10, 0.960, 0.596),
(7098, 2607, 35, 'ICN2556984659137265664', 'High_Grade', 0.075, 0.073, 7.30, 6.100, 0.445),
(7099, 2607, 0, 'ICN2556984659137265664', 'LowYeild_Metal', 0.140, 0.136, 13.60, 0.000, 0.000),
(7100, 2607, 0, 'ICN2556984659137265664', 'Ultra_High_Grade', 0.406, 0.395, 39.50, 0.000, 0.000),
(7101, 2607, 0, 'ICN2556984659137265664', 'Low_Yield', 0.055, 0.054, 5.40, 0.000, 0.000),
(7102, 2607, 36, 'ICN2556984659137265664', 'Mid_Grade', 0.351, 0.342, 34.20, 2.700, 0.923),
(7103, 2608, 602, 'ICN6597401819167588352', 'Empty', 0.035, 0.036, 3.60, -0.160, -0.006),
(7104, 2608, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.307, 0.315, 31.50, 0.520, 0.164),
(7105, 2608, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.553, 0.567, 56.70, 0.370, 0.210),
(7106, 2608, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.080, 0.082, 8.20, 0.960, 0.079),
(7107, 2609, 602, 'ICN6597401819167588352', 'Empty', 0.049, 0.041, 4.10, -0.160, -0.007),
(7108, 2609, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.683, 0.578, 57.80, 0.520, 0.301),
(7109, 2609, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.407, 0.344, 34.40, 0.370, 0.127),
(7110, 2609, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.043, 0.036, 3.60, 0.960, 0.035),
(7111, 2610, 602, 'ICN6597401819167588352', 'Empty', 0.047, 0.039, 3.90, -0.160, -0.006),
(7112, 2610, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.665, 0.556, 55.60, 0.520, 0.289),
(7113, 2610, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.444, 0.371, 37.10, 0.370, 0.137),
(7114, 2610, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.041, 0.034, 3.40, 0.960, 0.033),
(7115, 2611, 724, 'ICN5348152100851286016', 'UltraHG_HardCoat', 0.051, 0.039, 3.90, 27.810, 1.085),
(7116, 2611, 593, 'ICN5348152100851286016', 'Low_Grade', 0.131, 0.100, 10.00, 1.690, 0.169),
(7117, 2611, 594, 'ICN5348152100851286016', 'Mid_Grade', 0.946, 0.719, 71.90, 4.310, 3.099),
(7118, 2611, 592, 'ICN5348152100851286016', 'High_Grade', 0.187, 0.142, 14.20, 9.460, 1.343),
(7119, 2613, 602, 'ICN6597401819167588352', 'Empty', 0.063, 0.058, 5.80, -0.160, -0.009),
(7120, 2613, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.943, 0.862, 86.20, 0.520, 0.448),
(7121, 2613, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.027, 0.025, 2.50, 0.370, 0.009),
(7122, 2613, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.061, 0.056, 5.60, 0.960, 0.054),
(7123, 2614, 602, 'ICN6597401819167588352', 'Empty', 0.040, 0.029, 2.90, -0.160, -0.005),
(7124, 2614, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.786, 0.570, 57.00, 0.520, 0.296),
(7125, 2614, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.344, 0.250, 25.00, 0.370, 0.093),
(7126, 2614, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.208, 0.151, 15.10, 0.960, 0.145),
(7127, 2615, 602, 'ICN6597401819167588352', 'Empty', 0.041, 0.035, 3.50, -0.160, -0.006),
(7128, 2615, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.443, 0.376, 37.60, 0.520, 0.196),
(7129, 2615, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.362, 0.307, 30.70, 0.370, 0.114),
(7130, 2615, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.332, 0.282, 28.20, 0.960, 0.271),
(7131, 2616, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.160, -0.012),
(7132, 2616, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.520, 0.228),
(7133, 2616, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.370, 0.077),
(7134, 2616, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.960, 0.267),
(7135, 2617, 602, 'ICN6597401819167588352', 'Empty', 0.085, 0.074, 7.40, -0.160, -0.012),
(7136, 2617, 600, 'ICN6597401819167588352', 'Two_Layer_MidGrade', 0.502, 0.438, 43.80, 0.520, 0.228),
(7137, 2617, 601, 'ICN6597401819167588352', 'SingleLayer_LowGrade', 0.240, 0.209, 20.90, 0.370, 0.077),
(7138, 2617, 599, 'ICN6597401819167588352', 'MultiLayer_HighGrade', 0.319, 0.278, 27.80, 0.960, 0.267);

-- --------------------------------------------------------

--
-- Table structure for table `viewpasmemberdetail`
--

CREATE TABLE `viewpasmemberdetail` (
  `id` int(11) NOT NULL,
  `adminid` int(11) DEFAULT 1,
  `memberid` int(11) NOT NULL,
  `packageid` int(11) NOT NULL,
  `totalimages` int(11) NOT NULL,
  `used` int(11) NOT NULL,
  `balance` int(11) NOT NULL,
  `imageoverage` float(13,2) NOT NULL,
  `imgoveragecount` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpasmemberdetail`
--

INSERT INTO `viewpasmemberdetail` (`id`, `adminid`, `memberid`, `packageid`, `totalimages`, `used`, `balance`, `imageoverage`, `imgoveragecount`, `sysdate`, `status`) VALUES
(1, 1, 1, 2, 80, 0, 80, 3.75, 0, '2025-09-02', 3),
(6, 1, 6, 2, 75, 0, 75, 3.50, 0, '2019-05-20', 1),
(7, 1, 7, 3, 80, 0, 80, 2.75, 0, '2019-11-16', 3),
(16, 1, 16, 2, 75, 0, 75, 3.50, 0, '2019-03-18', 3),
(17, 1, 17, 2, 75, 1, 74, 3.50, 0, '2019-03-18', 1),
(18, 1, 18, 2, 75, 3, 72, 3.50, 0, '2019-05-18', 1),
(19, 1, 1, 1, 80, 0, 80, 10.00, 0, '2025-09-02', 3),
(20, 7, 0, 4, 100, 0, 100, 5.00, 0, '2020-04-08', 1),
(21, 10, 0, 4, 100, 0, 100, 5.00, 0, '2020-04-08', 1),
(22, 11, 0, 4, 100, 0, 100, 5.00, 0, '2020-04-08', 1),
(23, 11, 0, 4, 100, 0, 100, 5.00, 0, '2020-04-08', 1),
(24, 14, 0, 4, 100, 0, 100, 5.00, 0, '2020-04-08', 1),
(25, 15, 0, 5, 500, 0, 500, 5.00, 0, '2021-08-24', 1),
(26, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-04', 1),
(27, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-04', 1),
(28, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-08-04', 1),
(29, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-04', 1),
(30, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-04', 1),
(31, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-08-04', 1),
(32, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-05', 1),
(33, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-08-05', 1),
(34, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-08-05', 1),
(35, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-09-01', 1),
(36, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-09-01', 1),
(37, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-09-01', 1),
(38, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-09-06', 1),
(39, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-09-06', 1),
(40, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-09-06', 1),
(41, 7, 0, 4, 100, 0, 100, 5.00, 0, '2022-10-22', 1),
(42, 11, 0, 4, 100, 0, 100, 5.00, 0, '2022-10-22', 1),
(43, 15, 0, 5, 500, 0, 500, 5.00, 0, '2022-10-22', 1),
(44, 1, 0, 4, 100, 0, 100, 5.00, 0, '2023-01-11', 1),
(45, 7, 0, 4, 100, 0, 100, 5.00, 0, '2023-01-11', 1),
(46, 11, 0, 4, 100, 0, 100, 5.00, 0, '2023-01-11', 1),
(47, 15, 0, 5, 500, 0, 500, 5.00, 0, '2023-01-11', 1),
(48, 16, 0, 3, 80, 0, 80, 5.00, 0, '2023-03-16', 1),
(49, 1, 1, 3, 80, 0, 80, 5.00, 0, '2025-09-02', 1),
(50, 7, 0, 4, 100, 0, 100, 5.00, 0, '2023-03-31', 1),
(51, 11, 0, 4, 100, 0, 100, 5.00, 0, '2023-03-31', 1),
(52, 15, 0, 5, 500, 0, 500, 5.00, 0, '2023-03-31', 1),
(53, 16, 0, 3, 80, 0, 80, 5.00, 0, '2023-03-31', 1),
(54, 7, 0, 4, 100, 0, 100, 5.00, 0, '2023-06-19', 1),
(55, 11, 0, 4, 100, 0, 100, 5.00, 0, '2023-06-19', 1),
(56, 15, 0, 5, 500, 0, 500, 5.00, 0, '2023-06-19', 1),
(57, 16, 0, 3, 80, 0, 80, 5.00, 0, '2023-06-19', 1),
(58, 7, 0, 4, 100, 0, 100, 5.00, 0, '2023-09-08', 1),
(59, 11, 0, 4, 100, 0, 100, 5.00, 0, '2023-09-08', 1),
(60, 15, 0, 5, 500, 0, 500, 5.00, 0, '2023-09-08', 1),
(61, 16, 0, 3, 80, 0, 80, 5.00, 0, '2023-09-08', 1),
(62, 7, 0, 4, 100, 0, 100, 5.00, 0, '2023-11-26', 1),
(63, 11, 0, 4, 100, 0, 100, 5.00, 0, '2023-11-26', 1),
(64, 15, 0, 5, 500, 0, 500, 5.00, 0, '2023-11-26', 1),
(65, 16, 0, 3, 80, 0, 80, 5.00, 0, '2023-11-26', 1),
(66, 7, 0, 4, 100, 0, 100, 5.00, 0, '2024-02-14', 1),
(67, 11, 0, 4, 100, 0, 100, 5.00, 0, '2024-02-14', 1),
(68, 15, 0, 5, 500, 0, 500, 5.00, 0, '2024-02-14', 1),
(69, 16, 0, 3, 80, 0, 80, 5.00, 0, '2024-02-14', 1),
(70, 7, 0, 4, 100, 0, 100, 5.00, 0, '2024-05-05', 1),
(71, 7, 0, 4, 100, 0, 100, 5.00, 0, '2024-11-21', 1),
(72, 7, 0, 4, 100, 0, 100, 5.00, 0, '2025-01-12', 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpasmemberdetail2`
--

CREATE TABLE `viewpasmemberdetail2` (
  `id` int(11) NOT NULL,
  `memberid` int(11) NOT NULL,
  `packageid` int(11) NOT NULL,
  `totalimages` int(11) NOT NULL,
  `used` int(11) NOT NULL,
  `balance` int(11) NOT NULL,
  `imageoverage` float(13,2) NOT NULL,
  `imgoveragecount` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpasmemberdetail2`
--

INSERT INTO `viewpasmemberdetail2` (`id`, `memberid`, `packageid`, `totalimages`, `used`, `balance`, `imageoverage`, `imgoveragecount`, `sysdate`, `status`) VALUES
(1, 1, 2, 75, 75, 0, 3.75, 39, '2019-01-09', 1),
(2, 3, 1, 20, 1, 19, 4.50, 0, '2019-01-19', 1),
(3, 3, 2, 75, 0, 75, 3.50, 0, '2019-01-22', 1),
(4, 4, 2, 75, 0, 75, 3.50, 0, '2019-01-22', 1),
(5, 5, 2, 75, 0, 75, 3.50, 0, '2019-01-30', 1),
(6, 6, 2, 75, 4, 71, 3.50, 0, '2019-01-30', 1),
(7, 7, 3, 300, 29, 271, 2.75, 0, '2019-02-05', 1),
(16, 16, 2, 75, 0, 75, 3.50, 0, '2019-02-16', 1),
(17, 17, 2, 75, 0, 75, 3.50, 0, '2019-02-16', 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpasmemberdetail3`
--

CREATE TABLE `viewpasmemberdetail3` (
  `id` int(11) NOT NULL,
  `memberid` int(11) NOT NULL,
  `packageid` int(11) NOT NULL,
  `totalimages` int(11) NOT NULL,
  `used` int(11) NOT NULL,
  `balance` int(11) NOT NULL,
  `imageoverage` float(13,2) NOT NULL,
  `imgoveragecount` int(11) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpasmemberdetail3`
--

INSERT INTO `viewpasmemberdetail3` (`id`, `memberid`, `packageid`, `totalimages`, `used`, `balance`, `imageoverage`, `imgoveragecount`, `sysdate`, `status`) VALUES
(1, 1, 2, 75, 75, 75, 3.75, 0, '2019-02-26', 1),
(2, 3, 1, 20, 1, 19, 4.50, 0, '2019-01-19', 1),
(3, 3, 2, 75, 0, 75, 3.50, 0, '2019-01-22', 1),
(4, 4, 2, 75, 0, 75, 3.50, 0, '2019-01-22', 1),
(5, 5, 2, 75, 0, 75, 3.50, 0, '2019-01-30', 1),
(6, 6, 2, 75, 4, 71, 3.50, 0, '2019-01-30', 1),
(7, 7, 3, 300, 29, 271, 2.75, 0, '2019-02-05', 1),
(16, 16, 2, 75, 0, 75, 3.50, 0, '2019-02-16', 1),
(17, 17, 2, 75, 0, 75, 3.50, 0, '2019-02-16', 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpassmember`
--

CREATE TABLE `viewpassmember` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company` int(11) DEFAULT NULL,
  `packageid` int(11) NOT NULL,
  `environmentalno` varchar(100) DEFAULT NULL,
  `identificationno` varchar(100) DEFAULT NULL,
  `alias` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `code` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `address` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `postalcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `countryid` int(11) DEFAULT NULL,
  `countryname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `cityid` int(11) DEFAULT NULL,
  `cityname` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `province` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `currencyid` int(11) DEFAULT NULL,
  `phone` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `fax` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_mobile` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_office` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `contact_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `company_website` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `grade` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `iban` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankname` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `bankaddress` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `swiftcode` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `reliability` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `logo` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `tax` float(13,2) DEFAULT NULL,
  `weightunit` varchar(255) NOT NULL,
  `agentid` varchar(255) NOT NULL,
  `agentname` varchar(255) NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpassmember`
--

INSERT INTO `viewpassmember` (`id`, `userid`, `name`, `company`, `packageid`, `environmentalno`, `identificationno`, `alias`, `code`, `address`, `postalcode`, `countryid`, `countryname`, `cityid`, `cityname`, `province`, `currencyid`, `phone`, `fax`, `contact_name`, `contact_mobile`, `contact_office`, `contact_email`, `password`, `company_email`, `company_website`, `grade`, `iban`, `bankname`, `bankaddress`, `swiftcode`, `reliability`, `logo`, `tax`, `weightunit`, `agentid`, `agentname`, `sysdate`, `status`) VALUES
(1, 1, 'Ereciklaza', 1, 3, 'Not Applicable', '', 'Erec', 'NA', 'none', 'none', NULL, 'none', NULL, 'none', 'none', 2, 'none', 'none', 'Nino', '0000000', '0000000', 'ninoslav@ereciklaza.com', 'proba018', 'ninoslav@ereciklaza.com', 'none', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'kgs', '', '', '2023-03-16', 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpas_messages`
--

CREATE TABLE `viewpas_messages` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL,
  `adminid` int(11) NOT NULL,
  `subject` varchar(500) NOT NULL,
  `details` text NOT NULL,
  `sysdate` date NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpas_messages`
--

INSERT INTO `viewpas_messages` (`id`, `userid`, `adminid`, `subject`, `details`, `sysdate`, `status`) VALUES
(1, 1, 0, 'new test', 'this is new test', '2020-01-18', 1),
(2, 1, 0, 'new test', 'this is new test', '2020-01-18', 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpas_packages`
--

CREATE TABLE `viewpas_packages` (
  `id` int(11) NOT NULL,
  `package_name` varchar(255) NOT NULL,
  `image_assays` int(11) NOT NULL,
  `image_overage` float(13,2) NOT NULL,
  `subscription_fee` float(13,2) NOT NULL,
  `setup_fee` float(13,2) NOT NULL,
  `grouping` int(11) DEFAULT NULL,
  `inventory` int(11) DEFAULT NULL,
  `full_management` int(11) DEFAULT NULL,
  `status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpas_packages`
--

INSERT INTO `viewpas_packages` (`id`, `package_name`, `image_assays`, `image_overage`, `subscription_fee`, `setup_fee`, `grouping`, `inventory`, `full_management`, `status`) VALUES
(1, 'ViewPas Lite', 20, 10.00, 84.88, 220.00, 1, 1, 0, 1),
(2, 'ViewPas Basic', 40, 8.00, 422.00, 220.00, 1, 1, 1, 1),
(3, 'ViewPas Standard', 80, 5.00, 848.00, 220.00, 1, 1, 1, 1),
(4, 'ViewPasAdmin', 100, 5.00, 680.00, 2260.00, 1, 1, 1, 1),
(5, 'ViewPasEnterprise', 500, 5.00, 1440.00, 2880.00, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `viewpas_products`
--

CREATE TABLE `viewpas_products` (
  `id` int(11) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 1,
  `productid` int(11) NOT NULL,
  `name` varchar(500) NOT NULL,
  `memberid` int(11) NOT NULL,
  `datasetid` varchar(500) NOT NULL,
  `offerprice` float(13,3) NOT NULL,
  `listid` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `viewpas_products`
--

INSERT INTO `viewpas_products` (`id`, `userid`, `productid`, `name`, `memberid`, `datasetid`, `offerprice`, `listid`) VALUES
(1, 1, 84, 'High_Grade_1979_1995', 56, 'ICN2556984659137265664', 5.250, 0),
(2, 1, 98, 'HighGrade_Older_NoMetal', 56, 'ICN7017588983815208960', 10.000, 0),
(3, 1, 99, 'HighGrade_Older_WithMetal  ', 56, 'ICN7017588983815208960', 4.000, 0),
(4, 1, 100, 'SmartPhone_NoMetal', 56, 'ICN7017588983815208960', 5.000, 0),
(5, 1, 101, 'SmartPhone_WithMetal', 56, 'ICN7017588983815208960', 3.000, 0),
(6, 1, 85, 'Mid_Grade_1996_2003', 56, 'ICN2556984659137265664', 2.200, 0),
(7, 1, 86, 'Low_Grade_2004_Latest', 56, 'ICN2556984659137265664', 1.500, 0),
(8, 1, 93, 'Low_Grade', 56, 'ICN2261506302335254528', 4.000, 0),
(9, 1, 94, 'High_Grade', 56, 'ICN2261506302335254528', 6.000, 0),
(10, 1, 95, 'High_Grade', 56, 'ICN5348152100851286016', 2.000, 0),
(11, 1, 96, 'Low_Grade', 56, 'ICN5348152100851286016', 0.350, 0),
(12, 1, 97, 'Mid_Grade', 56, 'ICN5348152100851286016', 1.550, 0),
(13, 1, 88, 'MidGrade_Pentium_AMD', 56, 'ICN239530807134257152', 5.000, 0),
(14, 1, 87, 'HighGrade_Pre2002_and_Military', 56, 'ICN239530807134257152', 7.000, 0),
(15, 1, 89, 'LowGrade_2014_and_Netbooks', 56, 'ICN239530807134257152', 3.000, 0),
(16, 1, 90, 'Low_Grade', 56, 'ICN3203040099432398848', 7.000, 0),
(17, 1, 91, 'Mid_Grade', 56, 'ICN3203040099432398848', 13.000, 0),
(18, 1, 92, 'High_Grade', 56, 'ICN3203040099432398848', 22.000, 0),
(19, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 22.000, 0),
(20, 1, 99, 'HighGrade_Older_WithMetal  ', 1, 'ICN7017588983815208960', 12.000, 0),
(21, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 13.750, 0),
(22, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 6.000, 0),
(23, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.140, 0),
(24, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.120, 0),
(25, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.080, 0),
(26, 1, 105, 'Empty', 1, 'ICN6597401819167588352', 0.000, 0),
(27, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 3.200, 0),
(28, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 6.500, 0),
(29, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 2.000, 0),
(30, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 1.000, 0),
(31, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 0),
(32, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 0),
(33, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 0),
(34, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 0),
(35, 1, 84, 'High_Grade_1979_1995', 1, 'ICN2556984659137265664', 6.100, 0),
(36, 1, 85, 'Mid_Grade_1996_2003', 1, 'ICN2556984659137265664', 2.700, 0),
(37, 1, 86, 'Low_Grade_2004_Latest', 1, 'ICN2556984659137265664', 1.100, 0),
(38, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 0),
(39, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 0),
(40, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 0),
(41, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 0),
(42, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 0),
(43, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 0),
(44, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 0),
(45, 1, 98, 'HighGrade_Older_NoMetal', 6, 'ICN7017588983815208960', 0.000, 0),
(46, 1, 99, 'HighGrade_Older_WithMetal  ', 6, 'ICN7017588983815208960', 0.000, 0),
(47, 1, 100, 'SmartPhone_NoMetal', 6, 'ICN7017588983815208960', 0.000, 0),
(48, 1, 101, 'SmartPhone_WithMetal', 6, 'ICN7017588983815208960', 0.000, 0),
(49, 1, 102, 'MultiLayer_HighGrade', 6, 'ICN6597401819167588352', 0.000, 0),
(50, 1, 103, 'Two_Layer_MidGrade', 6, 'ICN6597401819167588352', 0.000, 0),
(51, 1, 104, 'SingleLayer_LowGrade', 6, 'ICN6597401819167588352', 0.000, 0),
(52, 1, 105, 'Empty', 6, 'ICN6597401819167588352', 0.000, 0),
(53, 1, 93, 'Low_Grade', 6, 'ICN2261506302335254528', 0.000, 0),
(54, 1, 94, 'High_Grade', 6, 'ICN2261506302335254528', 0.000, 0),
(55, 1, 95, 'High_Grade', 6, 'ICN5348152100851286016', 0.000, 0),
(56, 1, 96, 'Low_Grade', 6, 'ICN5348152100851286016', 0.000, 0),
(57, 1, 97, 'Mid_Grade', 6, 'ICN5348152100851286016', 0.000, 0),
(58, 1, 87, 'HighGrade_Pre2002_and_Military', 6, 'ICN239530807134257152', 0.000, 0),
(59, 1, 88, 'MidGrade_Pentium_AMD', 6, 'ICN239530807134257152', 0.000, 0),
(60, 1, 89, 'LowGrade_2014_and_Netbooks', 6, 'ICN239530807134257152', 0.000, 0),
(61, 1, 84, 'High_Grade_1979_1995', 6, 'ICN2556984659137265664', 3.500, 0),
(62, 1, 85, 'Mid_Grade_1996_2003', 6, 'ICN2556984659137265664', 1.600, 0),
(63, 1, 86, 'Low_Grade_2004_Latest', 6, 'ICN2556984659137265664', 2.000, 0),
(64, 1, 106, 'HighEnd_Ceramic', 6, 'ICN8294737710174699520', 50.000, 0),
(65, 1, 107, 'UltraHigh_Ceramic', 6, 'ICN8294737710174699520', 100.000, 0),
(66, 1, 108, 'MidRange_Ceramic', 6, 'ICN8294737710174699520', 15.000, 0),
(67, 1, 109, 'LowYeild_Plastic', 6, 'ICN8294737710174699520', 10.000, 0),
(68, 1, 90, 'Low_Grade', 6, 'ICN3203040099432398848', 0.000, 0),
(69, 1, 91, 'Mid_Grade', 6, 'ICN3203040099432398848', 18.000, 0),
(70, 1, 92, 'High_Grade', 6, 'ICN3203040099432398848', 15.500, 0),
(71, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 0),
(72, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 0),
(73, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 0),
(74, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 0),
(75, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 0),
(76, 1, 98, 'HighGrade_Older_NoMetal', 7, 'ICN7017588983815208960', 12.500, 0),
(77, 1, 99, 'HighGrade_Older_WithMetal  ', 7, 'ICN7017588983815208960', 4.000, 0),
(78, 1, 100, 'SmartPhone_NoMetal', 7, 'ICN7017588983815208960', 6.500, 0),
(79, 1, 101, 'SmartPhone_WithMetal', 7, 'ICN7017588983815208960', 2.300, 0),
(80, 1, 102, 'MultiLayer_HighGrade', 7, 'ICN6597401819167588352', 0.200, 0),
(81, 1, 103, 'Two_Layer_MidGrade', 7, 'ICN6597401819167588352', 0.100, 0),
(82, 1, 104, 'SingleLayer_LowGrade', 7, 'ICN6597401819167588352', 0.050, 0),
(83, 1, 105, 'Empty', 7, 'ICN6597401819167588352', 0.000, 0),
(84, 1, 93, 'Low_Grade', 7, 'ICN2261506302335254528', 3.000, 0),
(85, 1, 94, 'High_Grade', 7, 'ICN2261506302335254528', 4.000, 0),
(86, 1, 95, 'High_Grade', 7, 'ICN5348152100851286016', 1.000, 0),
(87, 1, 96, 'Low_Grade', 7, 'ICN5348152100851286016', 0.250, 0),
(88, 1, 97, 'Mid_Grade', 7, 'ICN5348152100851286016', 0.690, 0),
(89, 1, 87, 'HighGrade_Pre2002_and_Military', 7, 'ICN239530807134257152', 2.000, 0),
(90, 1, 88, 'MidGrade_Pentium_AMD', 7, 'ICN239530807134257152', 1.500, 0),
(91, 1, 89, 'LowGrade_2014_and_Netbooks', 7, 'ICN239530807134257152', 1.000, 0),
(92, 1, 84, 'High_Grade_1979_1995', 7, 'ICN2556984659137265664', 3.000, 0),
(93, 1, 85, 'Mid_Grade_1996_2003', 7, 'ICN2556984659137265664', 2.250, 0),
(94, 1, 86, 'Low_Grade_2004_Latest', 7, 'ICN2556984659137265664', 1.000, 0),
(95, 1, 106, 'HighEnd_Ceramic', 7, 'ICN8294737710174699520', 5.000, 0),
(96, 1, 107, 'UltraHigh_Ceramic', 7, 'ICN8294737710174699520', 20.000, 0),
(97, 1, 108, 'MidRange_Ceramic', 7, 'ICN8294737710174699520', 1.250, 0),
(98, 1, 109, 'LowYeild_Plastic', 7, 'ICN8294737710174699520', 1.000, 0),
(99, 1, 90, 'Low_Grade', 7, 'ICN3203040099432398848', 5.000, 0),
(100, 1, 91, 'Mid_Grade', 7, 'ICN3203040099432398848', 6.000, 0),
(101, 1, 92, 'High_Grade', 7, 'ICN3203040099432398848', 16.000, 0),
(102, 1, 111, 'Grade_AAA_Shielded', 7, 'ICN8270463710298358732', 6.000, 0),
(103, 1, 112, 'Grade_AA_Finger_Conn', 7, 'ICN8270463710298358732', 6.000, 0),
(104, 1, 113, 'Grade_A_Pinned_Conn', 7, 'ICN8270463710298358732', 4.000, 0),
(105, 1, 114, 'Grade_B_Low_PMs', 7, 'ICN8270463710298358732', 2.500, 0),
(106, 1, 115, 'Grade_C_Heavy_Copper', 7, 'ICN8270463710298358732', 2.500, 0),
(107, 1, 116, 'Server_Boards_High_Grade', 7, 'ICN237138269832216576', 3.000, 0),
(108, 1, 117, 'Server_Boards_Low_Grade', 7, 'ICN237138269832216576', 1.250, 0),
(109, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 0),
(110, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 0),
(111, 1, 119, 'Whole Computer', 1, 'NA', 0.000, 0),
(112, 1, 120, 'Copper Pipe', 1, 'NA', 0.000, 0),
(113, 1, 121, 'Anodes (Mixed Metal)', 1, 'NA', 0.000, 0),
(114, 1, 122, 'FiBricks', 1, 'NA', 0.000, 0),
(115, 1, 124, '99.99 Copper Sheet', 1, 'NA', 0.000, 0),
(128, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 0),
(129, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 0),
(130, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 0),
(131, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 0),
(132, 1, 84, 'High_Grade_1979_1995', 1, 'ICN2556984659137265664', 6.100, 0),
(133, 1, 85, 'Mid_Grade_1996_2003', 1, 'ICN2556984659137265664', 2.700, 0),
(134, 1, 86, 'Low_Grade_2004_Latest', 1, 'ICN2556984659137265664', 1.100, 0),
(135, 1, 522, 'High_Grade_High_PMs  ', 1, 'ICN5491985813950431232', 0.000, 0),
(136, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 0.000, 0),
(137, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.000, 0),
(138, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.000, 0),
(139, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 0),
(140, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 0),
(141, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 0),
(142, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 0),
(143, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 0),
(144, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 0),
(145, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 0),
(146, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 0),
(147, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 0),
(148, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 0),
(149, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 0),
(150, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 0),
(151, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 0),
(152, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 0),
(190, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 2.000, 1),
(191, 1, 99, 'HighGrade_Older_WithMetal', 1, 'ICN7017588983815208960', 2.000, 1),
(192, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 2.000, 1),
(193, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 0.000, 1),
(194, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.000, 1),
(195, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.000, 1),
(196, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.000, 1),
(197, 1, 105, 'Empty', 1, 'ICN6597401819167588352', 0.000, 1),
(198, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 0.000, 1),
(199, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 0.000, 1),
(200, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 0.000, 1),
(201, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 0.000, 1),
(202, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 0.000, 1),
(203, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 0.000, 1),
(204, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 0.000, 1),
(205, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 0.000, 1),
(206, 1, 84, 'High_Grade', 1, 'ICN2556984659137265664', 0.000, 1),
(207, 1, 85, 'Mid_Grade', 1, 'ICN2556984659137265664', 0.000, 1),
(208, 1, 86, 'Low_Yield', 1, 'ICN2556984659137265664', 0.000, 1),
(209, 1, 522, 'High_Grade_High_PMs', 1, 'ICN5491985813950431232', 0.000, 1),
(210, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 0.000, 1),
(211, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.000, 1),
(212, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.000, 1),
(213, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 0.000, 1),
(214, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 0.000, 1),
(215, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 0.000, 1),
(216, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 0.000, 1),
(217, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 0.000, 1),
(218, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 0.000, 1),
(219, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 0.000, 1),
(220, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 0.000, 1),
(221, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 0.000, 1),
(222, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 0.000, 1),
(223, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 0.000, 1),
(224, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 0.000, 1),
(225, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 0.000, 1),
(226, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 0.000, 1),
(227, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 22.000, 2),
(228, 1, 99, 'HighGrade_Older_WithMetal', 1, 'ICN7017588983815208960', 12.000, 2),
(229, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 13.750, 2),
(230, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 6.000, 2),
(231, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.770, 2),
(232, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.440, 2),
(233, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.220, 2),
(234, 1, 105, 'Empty', 1, 'ICN6597401819167588352', 0.000, 2),
(235, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 3.200, 2),
(236, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 6.500, 2),
(237, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 2.000, 2),
(238, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 1.000, 2),
(239, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 2),
(240, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 2),
(241, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 2),
(242, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 2),
(243, 1, 84, 'High_Grade', 1, 'ICN2556984659137265664', 3.550, 2),
(244, 1, 85, 'Mid_Grade', 1, 'ICN2556984659137265664', 2.700, 2),
(245, 1, 86, 'Low_Yield', 1, 'ICN2556984659137265664', 1.100, 2),
(246, 1, 522, 'High_Grade_High_PMs', 1, 'ICN5491985813950431232', 2.450, 2),
(247, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 1.700, 2),
(248, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.750, 2),
(249, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.500, 2),
(250, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 2),
(251, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 2),
(252, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 2),
(253, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 2),
(254, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 2),
(255, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 2),
(256, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 2),
(257, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 2),
(258, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 2),
(259, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 2),
(260, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 2),
(261, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 2),
(262, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 2),
(263, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 2),
(264, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 22.000, 3),
(265, 1, 99, 'HighGrade_Older_WithMetal  ', 1, 'ICN7017588983815208960', 12.000, 3),
(266, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 13.750, 3),
(267, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 6.000, 3),
(268, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.160, 3),
(269, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.140, 3),
(270, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.100, 3),
(271, 1, 105, 'Empty', 1, 'ICN6597401819167588352', 0.000, 3),
(272, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 3.200, 3),
(273, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 6.500, 3),
(274, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 2.000, 3),
(275, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 1.000, 3),
(276, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 3),
(277, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 3),
(278, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 3),
(279, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 3),
(280, 1, 84, 'High_Grade_1979_1995', 1, 'ICN2556984659137265664', 6.100, 3),
(281, 1, 85, 'Mid_Grade_1996_2003', 1, 'ICN2556984659137265664', 2.700, 3),
(282, 1, 86, 'Low_Grade_2004_Latest', 1, 'ICN2556984659137265664', 1.100, 3),
(283, 1, 522, 'High_Grade_High_PMs  ', 1, 'ICN5491985813950431232', 1.300, 3),
(284, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 0.950, 3),
(285, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.750, 3),
(286, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.350, 3),
(287, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 3),
(288, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 3),
(289, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 3),
(290, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 3),
(291, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 3),
(292, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 3),
(293, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 3),
(294, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 3),
(295, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 3),
(296, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 3),
(297, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 3),
(298, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 3),
(299, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 3),
(300, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 3),
(301, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 2.000, 4),
(302, 1, 99, 'HighGrade_Older_WithMetal  ', 1, 'ICN7017588983815208960', 1.200, 4),
(303, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 1.300, 4),
(304, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 0.600, 4),
(305, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.220, 4),
(306, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.160, 4),
(307, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.120, 4),
(308, 1, 105, 'Empty', 1, 'ICN6597401819167588352', -0.080, 4),
(309, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 3.200, 4),
(310, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 6.500, 4),
(311, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 2.000, 4),
(312, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 1.000, 4),
(313, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 4),
(314, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 4),
(315, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 4),
(316, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 4),
(317, 1, 84, 'High_Grade_1979_1995', 1, 'ICN2556984659137265664', 6.100, 4),
(318, 1, 85, 'Mid_Grade_1996_2003', 1, 'ICN2556984659137265664', 2.700, 4),
(319, 1, 86, 'Low_Grade_2004_Latest', 1, 'ICN2556984659137265664', 1.100, 4),
(320, 1, 522, 'High_Grade_High_PMs  ', 1, 'ICN5491985813950431232', 0.000, 4),
(321, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 0.000, 4),
(322, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.000, 4),
(323, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.000, 4),
(324, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 4),
(325, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 4),
(326, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 4),
(327, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 4),
(328, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 4),
(329, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 4),
(330, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 4),
(331, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 4),
(332, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 4),
(333, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 4),
(334, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 4),
(335, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 4),
(336, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 4),
(337, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 4),
(338, 1, 98, 'HighGrade_Older_NoMetal', 1, 'ICN7017588983815208960', 22.000, 5),
(339, 1, 99, 'HighGrade_Older_WithMetal  ', 1, 'ICN7017588983815208960', 12.000, 5),
(340, 1, 100, 'SmartPhone_NoMetal', 1, 'ICN7017588983815208960', 13.750, 5),
(341, 1, 101, 'SmartPhone_WithMetal', 1, 'ICN7017588983815208960', 6.000, 5),
(342, 1, 102, 'MultiLayer_HighGrade', 1, 'ICN6597401819167588352', 0.280, 5),
(343, 1, 103, 'Two_Layer_MidGrade', 1, 'ICN6597401819167588352', 0.190, 5),
(344, 1, 104, 'SingleLayer_LowGrade', 1, 'ICN6597401819167588352', 0.140, 5),
(345, 1, 105, 'Empty', 1, 'ICN6597401819167588352', 0.000, 5),
(346, 1, 93, 'Low_Grade', 1, 'ICN2261506302335254528', 3.200, 5),
(347, 1, 94, 'High_Grade', 1, 'ICN2261506302335254528', 6.500, 5),
(348, 1, 95, 'High_Grade', 1, 'ICN5348152100851286016', 2.000, 5),
(349, 1, 96, 'Low_Grade', 1, 'ICN5348152100851286016', 1.000, 5),
(350, 1, 97, 'Mid_Grade', 1, 'ICN5348152100851286016', 1.500, 5),
(351, 1, 87, 'HighGrade_Pre2002_and_Military', 1, 'ICN239530807134257152', 9.200, 5),
(352, 1, 88, 'MidGrade_Pentium_AMD', 1, 'ICN239530807134257152', 5.500, 5),
(353, 1, 89, 'LowGrade_2014_and_Netbooks', 1, 'ICN239530807134257152', 1.700, 5),
(354, 1, 84, 'High_Grade_1979_1995', 1, 'ICN2556984659137265664', 6.100, 5),
(355, 1, 85, 'Mid_Grade_1996_2003', 1, 'ICN2556984659137265664', 2.700, 5),
(356, 1, 86, 'Low_Grade_2004_Latest', 1, 'ICN2556984659137265664', 1.100, 5),
(357, 1, 522, 'High_Grade_High_PMs  ', 1, 'ICN5491985813950431232', 0.000, 5),
(358, 1, 523, 'Mid_Grade', 1, 'ICN5491985813950431232', 0.000, 5),
(359, 1, 524, 'Low_Quality_PMs', 1, 'ICN5491985813950431232', 0.000, 5),
(360, 1, 525, 'Low_Quality_BaseMet', 1, 'ICN5491985813950431232', 0.000, 5),
(361, 1, 106, 'HighEnd_Ceramic', 1, 'ICN8294737710174699520', 100.000, 5),
(362, 1, 107, 'UltraHigh_Ceramic', 1, 'ICN8294737710174699520', 165.000, 5),
(363, 1, 108, 'MidRange_Ceramic', 1, 'ICN8294737710174699520', 55.000, 5),
(364, 1, 109, 'LowYeild_Plastic', 1, 'ICN8294737710174699520', 9.000, 5),
(365, 1, 90, 'Low_Grade', 1, 'ICN3203040099432398848', 14.500, 5),
(366, 1, 91, 'Mid_Grade', 1, 'ICN3203040099432398848', 14.500, 5),
(367, 1, 92, 'High_Grade', 1, 'ICN3203040099432398848', 26.500, 5),
(368, 1, 116, 'Server_Boards_High_Grade', 1, 'ICN237138269832216576', 8.500, 5),
(369, 1, 117, 'Server_Boards_Low_Grade', 1, 'ICN237138269832216576', 6.300, 5),
(370, 1, 111, 'Grade_AAA_Shielded', 1, 'ICN8270463710298358732', 7.250, 5),
(371, 1, 112, 'Grade_AA_Finger_Conn', 1, 'ICN8270463710298358732', 5.400, 5),
(372, 1, 113, 'Grade_A_Pinned_Conn', 1, 'ICN8270463710298358732', 4.200, 5),
(373, 1, 114, 'Grade_B_Low_PMs', 1, 'ICN8270463710298358732', 2.100, 5),
(374, 1, 115, 'Grade_C_Heavy_Copper', 1, 'ICN8270463710298358732', 1.250, 5),
(375, 7, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 20.000, 6),
(376, 7, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 15.000, 6),
(377, 7, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 5.000, 6),
(378, 7, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 3.000, 6),
(379, 7, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.140, 6),
(380, 7, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.120, 6),
(381, 7, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.080, 6),
(382, 7, 105, 'Empty', 0, 'ICN6597401819167588352', 0.000, 6),
(383, 7, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.580, 6),
(384, 7, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.650, 6),
(385, 7, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.690, 6),
(386, 7, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 4.000, 6),
(387, 7, 94, 'High_Grade', 0, 'ICN2261506302335254528', 6.000, 6),
(388, 7, 95, 'High_Grade', 0, 'ICN5348152100851286016', 2.000, 6),
(389, 7, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.350, 6),
(390, 7, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 1.550, 6),
(391, 7, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 7.000, 6),
(392, 7, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 5.000, 6),
(393, 7, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 3.000, 6),
(394, 7, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 5.250, 6),
(395, 7, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 2.200, 6),
(396, 7, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 1.500, 6),
(397, 7, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 1.240, 6),
(398, 7, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 0.880, 6),
(399, 7, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 0.600, 6),
(400, 7, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.500, 6),
(401, 7, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 100.000, 6),
(402, 7, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 165.000, 6),
(403, 7, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 55.000, 6),
(404, 7, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 9.000, 6),
(405, 7, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 7.000, 6),
(406, 7, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 13.000, 6),
(407, 7, 92, 'High_Grade', 0, 'ICN3203040099432398848', 22.000, 6),
(408, 7, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 3.000, 6),
(409, 7, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 1.250, 6),
(410, 7, 111, 'Grade_AAA_Shielded', 0, 'ICN8270463710298358732', 7.250, 6),
(411, 7, 112, 'Grade_AA_Finger_Conn', 0, 'ICN8270463710298358732', 5.400, 6),
(412, 7, 113, 'Grade_A_Pinned_Conn', 0, 'ICN8270463710298358732', 4.200, 6),
(413, 7, 114, 'Grade_B_Low_PMs', 0, 'ICN8270463710298358732', 2.100, 6),
(414, 7, 115, 'Grade_C_Heavy_Copper', 0, 'ICN8270463710298358732', 1.250, 6),
(415, 10, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 2.200, 7),
(416, 10, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 2.200, 7),
(417, 10, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 2.200, 7),
(418, 10, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 2.200, 7),
(419, 10, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 2.200, 7),
(420, 10, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 2.200, 7),
(421, 10, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 2.200, 7),
(422, 10, 105, 'Empty', 0, 'ICN6597401819167588352', 2.200, 7),
(423, 10, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 2.200, 7),
(424, 10, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 24.250, 7),
(425, 10, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 2.200, 7),
(426, 10, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 2.200, 7),
(427, 10, 94, 'High_Grade', 0, 'ICN2261506302335254528', 2.200, 7),
(428, 10, 95, 'High_Grade', 0, 'ICN5348152100851286016', 2.200, 7),
(429, 10, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 2.200, 7),
(430, 10, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 24.250, 7),
(431, 10, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 2.200, 7),
(432, 10, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 2.200, 7),
(433, 10, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 2.200, 7),
(434, 10, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 24.250, 7),
(435, 10, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 2.200, 7),
(436, 10, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 2.200, 7),
(437, 10, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 2.200, 7),
(438, 10, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 2.200, 7),
(439, 10, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 2.200, 7),
(440, 10, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 24.250, 7),
(441, 10, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 2.200, 7),
(442, 10, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 2.200, 7),
(443, 10, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 2.200, 7),
(444, 10, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 2.200, 7),
(445, 10, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 2.200, 7),
(446, 10, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 2.200, 7),
(447, 10, 92, 'High_Grade', 0, 'ICN3203040099432398848', 2.200, 7),
(448, 10, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 2.200, 7),
(449, 10, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 2.200, 7),
(450, 10, 111, 'Grade_AAA_Shielded', 0, 'ICN8270463710298358732', 2.200, 7),
(451, 10, 112, 'Grade_AA_Finger_Conn', 0, 'ICN8270463710298358732', 2.200, 7),
(452, 10, 113, 'Grade_A_Pinned_Conn', 0, 'ICN8270463710298358732', 2.200, 7),
(453, 10, 114, 'Grade_B_Low_PMs', 0, 'ICN8270463710298358732', 2.200, 7),
(454, 10, 115, 'Grade_C_Heavy_Copper', 0, 'ICN8270463710298358732', 2.200, 7),
(455, 7, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 25.000, 8),
(456, 7, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 20.000, 8),
(457, 7, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 15.000, 8),
(458, 7, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 8.000, 8),
(459, 7, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.500, 8),
(460, 7, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.250, 8),
(461, 7, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.150, 8),
(462, 7, 105, 'Empty', 0, 'ICN6597401819167588352', 0.000, 8),
(463, 7, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.550, 8),
(464, 7, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.680, 8),
(465, 7, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.750, 8),
(466, 7, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 7.800, 8),
(467, 7, 94, 'High_Grade', 0, 'ICN2261506302335254528', 10.200, 8),
(468, 7, 95, 'High_Grade', 0, 'ICN5348152100851286016', 8.400, 8),
(469, 7, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.520, 8),
(470, 7, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 4.200, 8),
(471, 7, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 11.200, 8),
(472, 7, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 6.550, 8),
(473, 7, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 2.550, 8),
(474, 7, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 7.440, 8),
(475, 7, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 0.000, 8),
(476, 7, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 4.000, 8),
(477, 7, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 2.210, 8),
(478, 7, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 1.520, 8),
(479, 7, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 0.810, 8),
(480, 7, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.560, 8),
(481, 7, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 83.000, 8),
(482, 7, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 198.000, 8),
(483, 7, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 50.000, 8),
(484, 7, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 16.000, 8),
(485, 7, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 16.300, 8),
(486, 7, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 16.300, 8),
(487, 7, 92, 'High_Grade', 0, 'ICN3203040099432398848', 28.600, 8),
(488, 7, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 7.220, 8),
(489, 7, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 5.120, 8),
(490, 7, 111, 'Grade_AAA_Shielded', 0, 'ICN8270463710298358732', 13.500, 8),
(491, 7, 112, 'Grade_AA_Finger_Conn', 0, 'ICN8270463710298358732', 8.200, 8),
(492, 7, 113, 'Grade_A_Pinned_Conn', 0, 'ICN8270463710298358732', 5.400, 8),
(493, 7, 114, 'Grade_B_Low_PMs', 0, 'ICN8270463710298358732', 3.220, 8),
(494, 7, 115, 'Grade_C_Heavy_Copper', 0, 'ICN8270463710298358732', 1.200, 8),
(495, 11, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 10.000, 9),
(496, 11, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 4.000, 9),
(497, 11, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 5.000, 9),
(498, 11, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 3.000, 9),
(499, 11, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.490, 9),
(500, 11, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.260, 9),
(501, 11, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.160, 9),
(502, 11, 105, 'Empty', 0, 'ICN6597401819167588352', 0.000, 9),
(503, 11, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.440, 9),
(504, 11, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.710, 9),
(505, 11, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.880, 9),
(506, 11, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 3.200, 9),
(507, 11, 94, 'High_Grade', 0, 'ICN2261506302335254528', 6.510, 9),
(508, 11, 95, 'High_Grade', 0, 'ICN5348152100851286016', 6.000, 9),
(509, 11, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.490, 9),
(510, 11, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 3.000, 9),
(511, 11, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 7.690, 9),
(512, 11, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 5.490, 9),
(513, 11, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 1.100, 9),
(514, 11, 84, 'High_Grade', 0, 'ICN2556984659137265664', 6.510, 9),
(515, 11, 85, 'Mid_Grade', 0, 'ICN2556984659137265664', 3.300, 9),
(516, 11, 86, 'Low_Yield', 0, 'ICN2556984659137265664', 1.100, 9),
(517, 11, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 3.200, 9),
(518, 11, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 2.000, 9),
(519, 11, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 1.000, 9),
(520, 11, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.380, 9),
(521, 11, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 70.000, 9),
(522, 11, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 155.000, 9),
(523, 11, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 45.000, 9),
(524, 11, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 5.000, 9),
(525, 11, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 2.000, 9),
(526, 11, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 4.000, 9),
(527, 11, 92, 'High_Grade', 0, 'ICN3203040099432398848', 22.000, 9),
(528, 11, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 6.000, 9),
(529, 11, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 4.600, 9),
(530, 11, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 12.510, 9),
(531, 11, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 8.200, 9),
(532, 11, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 4.200, 9),
(533, 11, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 2.100, 9),
(534, 11, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 0.770, 9),
(535, 12, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 8.250, 10),
(536, 12, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 5.500, 10),
(537, 12, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 7.350, 10),
(538, 12, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 4.200, 10),
(539, 12, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.000, 10),
(540, 12, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.000, 10),
(541, 12, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.000, 10),
(542, 12, 105, 'Empty', 0, 'ICN6597401819167588352', 0.000, 10),
(543, 12, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.000, 10),
(544, 12, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.000, 10),
(545, 12, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.000, 10),
(546, 12, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 0.000, 10),
(547, 12, 94, 'High_Grade', 0, 'ICN2261506302335254528', 0.000, 10),
(548, 12, 95, 'High_Grade', 0, 'ICN5348152100851286016', 0.000, 10),
(549, 12, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.000, 10),
(550, 12, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 0.000, 10),
(551, 12, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 0.000, 10),
(552, 12, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 0.000, 10),
(553, 12, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 0.000, 10),
(554, 12, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 0.000, 10),
(555, 12, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 0.000, 10),
(556, 12, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 0.000, 10),
(557, 12, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 0.000, 10),
(558, 12, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 0.000, 10),
(559, 12, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 0.000, 10),
(560, 12, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.000, 10),
(561, 12, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 0.000, 10),
(562, 12, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 0.000, 10),
(563, 12, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 0.000, 10),
(564, 12, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 0.000, 10),
(565, 12, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 0.000, 10),
(566, 12, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 0.000, 10),
(567, 12, 92, 'High_Grade', 0, 'ICN3203040099432398848', 0.000, 10),
(568, 12, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 0.000, 10),
(569, 12, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 0.000, 10),
(570, 12, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 0.000, 10),
(571, 12, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 0.000, 10),
(572, 12, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 0.000, 10),
(573, 12, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 0.000, 10),
(574, 12, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 0.000, 10),
(575, 10, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 0.910, 11),
(576, 10, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 0.910, 11),
(577, 10, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 0.910, 11),
(578, 10, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 0.910, 11),
(579, 10, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.910, 11),
(580, 10, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.910, 11),
(581, 10, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.910, 11),
(582, 10, 105, 'Empty', 0, 'ICN6597401819167588352', 0.910, 11),
(583, 10, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.910, 11),
(584, 10, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.910, 11),
(585, 10, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.910, 11),
(586, 10, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 0.910, 11),
(587, 10, 94, 'High_Grade', 0, 'ICN2261506302335254528', 0.910, 11),
(588, 10, 95, 'High_Grade', 0, 'ICN5348152100851286016', 0.910, 11),
(589, 10, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.910, 11),
(590, 10, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 0.910, 11),
(591, 10, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 0.910, 11),
(592, 10, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 0.910, 11),
(593, 10, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 0.910, 11),
(594, 10, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 0.450, 11),
(595, 10, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 0.910, 11),
(596, 10, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 0.910, 11),
(597, 10, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 0.910, 11),
(598, 10, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 0.910, 11),
(599, 10, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 0.910, 11),
(600, 10, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.910, 11),
(601, 10, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 0.910, 11),
(602, 10, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 0.910, 11),
(603, 10, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 0.910, 11),
(604, 10, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 0.910, 11),
(605, 10, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 0.910, 11),
(606, 10, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 0.910, 11),
(607, 10, 92, 'High_Grade', 0, 'ICN3203040099432398848', 0.910, 11),
(608, 10, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 0.910, 11),
(609, 10, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 0.910, 11),
(610, 10, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 0.910, 11),
(611, 10, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 0.910, 11),
(612, 10, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 0.910, 11),
(613, 10, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 0.910, 11),
(614, 10, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 0.910, 11),
(615, 10, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 6.610, 13),
(616, 10, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 6.610, 13),
(617, 10, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 6.610, 13),
(618, 10, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 6.610, 13),
(619, 10, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 6.610, 13),
(620, 10, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 6.610, 13),
(621, 10, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 6.610, 13),
(622, 10, 105, 'Empty', 0, 'ICN6597401819167588352', 6.610, 13),
(623, 10, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 6.610, 13),
(624, 10, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 6.610, 13),
(625, 10, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 6.610, 13),
(626, 10, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 6.610, 13),
(627, 10, 94, 'High_Grade', 0, 'ICN2261506302335254528', 6.610, 13),
(628, 10, 95, 'High_Grade', 0, 'ICN5348152100851286016', 6.610, 13),
(629, 10, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 6.610, 13),
(630, 10, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 6.610, 13),
(631, 10, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 6.610, 13),
(632, 10, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 6.610, 13),
(633, 10, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 6.610, 13),
(634, 10, 84, 'High_Grade_1979_1995', 0, 'ICN2556984659137265664', 6.610, 13),
(635, 10, 85, 'Mid_Grade_1996_2003', 0, 'ICN2556984659137265664', 6.610, 13),
(636, 10, 86, 'Low_Grade_2004_Latest', 0, 'ICN2556984659137265664', 6.610, 13),
(637, 10, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 6.610, 13),
(638, 10, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 6.610, 13),
(639, 10, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 6.610, 13),
(640, 10, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 6.610, 13),
(641, 10, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 6.610, 13),
(642, 10, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 6.610, 13),
(643, 10, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 72.750, 13),
(644, 10, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 6.610, 13),
(645, 10, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 6.610, 13),
(646, 10, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 6.610, 13),
(647, 10, 92, 'High_Grade', 0, 'ICN3203040099432398848', 6.610, 13),
(648, 10, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 6.610, 13),
(649, 10, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 6.610, 13),
(650, 10, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 6.610, 13),
(651, 10, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 6.610, 13),
(652, 10, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 6.610, 13),
(653, 10, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 6.610, 13),
(654, 10, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 6.610, 13),
(655, 1, 714, 'UltraHG_HardCoat', 1, 'ICN5348152100851286016', 13.020, 0),
(656, 1, 714, 'UltraHG_HardCoat', 6, 'ICN5348152100851286016', 13.020, 0),
(657, 1, 714, 'UltraHG_HardCoat', 7, 'ICN5348152100851286016', 13.020, 0),
(658, 1, 714, 'UltraHG_HardCoat', 56, 'ICN5348152100851286016', 13.020, 0),
(659, 11, 714, 'UltraHG_HardCoat', 0, 'ICN5348152100851286016', 0.000, 9),
(660, 11, 726, 'LowYeild_Metal', 0, 'ICN2556984659137265664', 0.600, 9),
(661, 11, 738, 'Ultra_High_Grade', 0, 'ICN2556984659137265664', 8.790, 9),
(662, 11, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 21.980, 12),
(663, 11, 99, 'HighGrade_Older_WithMetal  ', 0, 'ICN7017588983815208960', 15.380, 12),
(664, 11, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 13.190, 12),
(665, 11, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 6.590, 12),
(666, 11, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.490, 12),
(667, 11, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.380, 12),
(668, 11, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.270, 12),
(669, 11, 105, 'Empty', 0, 'ICN6597401819167588352', 0.000, 12),
(670, 11, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.330, 12),
(671, 11, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.770, 12),
(672, 11, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.880, 12),
(673, 11, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 1.650, 12),
(674, 11, 94, 'High_Grade', 0, 'ICN2261506302335254528', 3.850, 12),
(675, 11, 95, 'High_Grade', 0, 'ICN5348152100851286016', 10.990, 12),
(676, 11, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.440, 12),
(677, 11, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 2.200, 12),
(678, 11, 714, 'UltraHG_HardCoat', 0, 'ICN5348152100851286016', 16.480, 12),
(679, 11, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 16.480, 12),
(680, 11, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 13.190, 12),
(681, 11, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 10.990, 12),
(682, 11, 84, 'High_Grade', 0, 'ICN2556984659137265664', 13.190, 12),
(683, 11, 85, 'Mid_Grade', 0, 'ICN2556984659137265664', 6.590, 12),
(684, 11, 86, 'Low_Yield', 0, 'ICN2556984659137265664', 4.400, 12),
(685, 11, 726, 'LowYeild_Metal', 0, 'ICN2556984659137265664', 2.200, 12),
(686, 11, 738, 'Ultra_High_Grade', 0, 'ICN2556984659137265664', 16.480, 12),
(687, 11, 522, 'High_Grade_High_PMs  ', 0, 'ICN5491985813950431232', 5.490, 12),
(688, 11, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 4.400, 12),
(689, 11, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 2.200, 12),
(690, 11, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.550, 12),
(691, 11, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 76.920, 12),
(692, 11, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 197.800, 12),
(693, 11, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 43.960, 12),
(694, 11, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 2.200, 12),
(695, 11, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 1.100, 12),
(696, 11, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 13.190, 12),
(697, 11, 92, 'High_Grade', 0, 'ICN3203040099432398848', 16.480, 12),
(698, 11, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 6.590, 12),
(699, 11, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 1.100, 12),
(700, 11, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 5.490, 12),
(701, 11, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 4.400, 12),
(702, 11, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 3.300, 12),
(703, 11, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 1.100, 12),
(704, 11, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 0.550, 12),
(705, 1, 534, 'Low_Grade_HeavyMetal', 1, 'ICN7981429672816672768', 0.000, 2),
(706, 1, 535, 'Mid_Grade_LowPMs', 1, 'ICN7981429672816672768', 0.000, 2),
(707, 1, 536, 'High_End_CRTs', 1, 'ICN7981429672816672768', 0.000, 2),
(708, 1, 714, 'UltraHG_HardCoat', 1, 'ICN5348152100851286016', 13.020, 2),
(709, 1, 726, 'LowYeild_Metal', 1, 'ICN2556984659137265664', 0.600, 2),
(710, 1, 738, 'Ultra_High_Grade', 1, 'ICN2556984659137265664', 5.500, 2),
(711, 0, 534, 'Low_Grade_HeavyMetal', 1, 'ICN7981429672816672768', 0.000, 1),
(712, 0, 535, 'Mid_Grade_LowPMs', 1, 'ICN7981429672816672768', 0.000, 1),
(713, 0, 536, 'High_End_CRTs', 1, 'ICN7981429672816672768', 0.000, 1),
(714, 0, 714, 'UltraHG_HardCoat', 1, 'ICN5348152100851286016', 0.000, 1),
(715, 0, 726, 'LowYeild_Metal', 1, 'ICN2556984659137265664', 0.000, 1),
(716, 0, 738, 'Ultra_High_Grade', 1, 'ICN2556984659137265664', 0.000, 1),
(717, 0, 863, 'Large_Printers_Copiers', 1, 'ICN6909537777130405888', 0.000, 1),
(718, 0, 876, 'Small_And_AllInOne', 1, 'ICN6909537777130405888', 0.000, 1),
(719, 0, 863, 'Large_Printers_Copiers', 1, 'ICN6909537777130405888', 0.000, 2),
(720, 0, 876, 'Small_And_AllInOne', 1, 'ICN6909537777130405888', 0.000, 2),
(721, 15, 98, 'HighGrade_Older_NoMetal', 0, 'ICN7017588983815208960', 9.090, 16),
(722, 15, 99, 'HighGrade_Older_WithMetal', 0, 'ICN7017588983815208960', 12.120, 16),
(723, 15, 100, 'SmartPhone_NoMetal', 0, 'ICN7017588983815208960', 15.910, 16),
(724, 15, 101, 'SmartPhone_WithMetal', 0, 'ICN7017588983815208960', 6.060, 16),
(725, 15, 102, 'MultiLayer_HighGrade', 0, 'ICN6597401819167588352', 0.380, 16),
(726, 15, 103, 'Two_Layer_MidGrade', 0, 'ICN6597401819167588352', 0.150, 16),
(727, 15, 104, 'SingleLayer_LowGrade', 0, 'ICN6597401819167588352', 0.080, 16),
(728, 15, 105, 'Empty', 0, 'ICN6597401819167588352', 0.040, 16),
(729, 15, 534, 'Low_Grade_HeavyMetal', 0, 'ICN7981429672816672768', 0.000, 16),
(730, 15, 535, 'Mid_Grade_LowPMs', 0, 'ICN7981429672816672768', 0.000, 16),
(731, 15, 536, 'High_End_CRTs', 0, 'ICN7981429672816672768', 0.000, 16),
(732, 15, 93, 'Low_Grade', 0, 'ICN2261506302335254528', 0.000, 16),
(733, 15, 94, 'High_Grade', 0, 'ICN2261506302335254528', 0.000, 16),
(734, 15, 95, 'High_Grade', 0, 'ICN5348152100851286016', 0.000, 16);
INSERT INTO `viewpas_products` (`id`, `userid`, `productid`, `name`, `memberid`, `datasetid`, `offerprice`, `listid`) VALUES
(735, 15, 96, 'Low_Grade', 0, 'ICN5348152100851286016', 0.000, 16),
(736, 15, 97, 'Mid_Grade', 0, 'ICN5348152100851286016', 0.000, 16),
(737, 15, 714, 'UltraHG_HardCoat', 0, 'ICN5348152100851286016', 0.000, 16),
(738, 15, 87, 'HighGrade_Pre2002_and_Military', 0, 'ICN239530807134257152', 0.000, 16),
(739, 15, 88, 'MidGrade_Pentium_AMD', 0, 'ICN239530807134257152', 0.000, 16),
(740, 15, 89, 'LowGrade_2014_and_Netbooks', 0, 'ICN239530807134257152', 0.000, 16),
(741, 15, 84, 'High_Grade', 0, 'ICN2556984659137265664', 0.000, 16),
(742, 15, 85, 'Mid_Grade', 0, 'ICN2556984659137265664', 0.000, 16),
(743, 15, 86, 'Low_Yield', 0, 'ICN2556984659137265664', 0.000, 16),
(744, 15, 726, 'LowYeild_Metal', 0, 'ICN2556984659137265664', 0.000, 16),
(745, 15, 738, 'Ultra_High_Grade', 0, 'ICN2556984659137265664', 0.000, 16),
(746, 15, 522, 'High_Grade_High_PMs', 0, 'ICN5491985813950431232', 0.000, 16),
(747, 15, 523, 'Mid_Grade', 0, 'ICN5491985813950431232', 0.000, 16),
(748, 15, 524, 'Low_Quality_PMs', 0, 'ICN5491985813950431232', 0.000, 16),
(749, 15, 525, 'Low_Quality_BaseMet', 0, 'ICN5491985813950431232', 0.000, 16),
(750, 15, 106, 'HighEnd_Ceramic', 0, 'ICN8294737710174699520', 0.000, 16),
(751, 15, 107, 'UltraHigh_Ceramic', 0, 'ICN8294737710174699520', 0.000, 16),
(752, 15, 108, 'MidRange_Ceramic', 0, 'ICN8294737710174699520', 0.000, 16),
(753, 15, 109, 'LowYeild_Plastic', 0, 'ICN8294737710174699520', 0.000, 16),
(754, 15, 90, 'Low_Grade', 0, 'ICN3203040099432398848', 0.000, 16),
(755, 15, 91, 'Mid_Grade', 0, 'ICN3203040099432398848', 0.000, 16),
(756, 15, 92, 'High_Grade', 0, 'ICN3203040099432398848', 0.000, 16),
(757, 15, 116, 'Server_Boards_High_Grade', 0, 'ICN237138269832216576', 0.000, 16),
(758, 15, 117, 'Server_Boards_Low_Grade', 0, 'ICN237138269832216576', 0.000, 16),
(759, 15, 111, 'Grade_AAA_Shielded', 0, 'ICN3800330000012410880', 0.000, 16),
(760, 15, 112, 'Grade_AA_Finger_Conn', 0, 'ICN3800330000012410880', 0.000, 16),
(761, 15, 113, 'Grade_A_Pinned_Conn', 0, 'ICN3800330000012410880', 0.000, 16),
(762, 15, 114, 'Grade_B_Low_PMs', 0, 'ICN3800330000012410880', 0.000, 16),
(763, 15, 115, 'Grade_C_Heavy_Copper', 0, 'ICN3800330000012410880', 0.000, 16),
(764, 15, 863, 'Large_Printers_Copiers', 0, 'ICN6909537777130405888', 0.000, 16),
(765, 15, 876, 'Small_And_AllInOne', 0, 'ICN6909537777130405888', 0.000, 16);

-- --------------------------------------------------------

--
-- Table structure for table `warehouse`
--

CREATE TABLE `warehouse` (
  `id` int(11) NOT NULL,
  `consigneeid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `address` varchar(255) NOT NULL,
  `countryid` int(11) NOT NULL,
  `cityid` int(11) NOT NULL,
  `contactperson` varchar(255) NOT NULL,
  `phone` varchar(100) NOT NULL,
  `email` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `weight`
--

CREATE TABLE `weight` (
  `id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `status` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `weight`
--

INSERT INTO `weight` (`id`, `name`, `status`) VALUES
(1, 'kgs', 1),
(2, 'lbs', 1);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `acknowledgeshipment`
--
ALTER TABLE `acknowledgeshipment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `addresses`
--
ALTER TABLE `addresses`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `agent`
--
ALTER TABLE `agent`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `agentusers`
--
ALTER TABLE `agentusers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `audit`
--
ALTER TABLE `audit`
  ADD PRIMARY KEY (`modified_when`),
  ADD UNIQUE KEY `modified_when` (`modified_when`);

--
-- Indexes for table `baskets`
--
ALTER TABLE `baskets`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `blockip`
--
ALTER TABLE `blockip`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `booktruck`
--
ALTER TABLE `booktruck`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `brand`
--
ALTER TABLE `brand`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `businessformdetail`
--
ALTER TABLE `businessformdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `businessforms`
--
ALTER TABLE `businessforms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `businessforms021019`
--
ALTER TABLE `businessforms021019`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `buycontacts`
--
ALTER TABLE `buycontacts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `buyerorder`
--
ALTER TABLE `buyerorder`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `buyerorderdetail`
--
ALTER TABLE `buyerorderdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `buyers`
--
ALTER TABLE `buyers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `category`
--
ALTER TABLE `category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `certificate`
--
ALTER TABLE `certificate`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `city`
--
ALTER TABLE `city`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `colors`
--
ALTER TABLE `colors`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consignee`
--
ALTER TABLE `consignee`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consproductdetails`
--
ALTER TABLE `consproductdetails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consumables`
--
ALTER TABLE `consumables`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consumables2022`
--
ALTER TABLE `consumables2022`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consumables_catgeory`
--
ALTER TABLE `consumables_catgeory`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `consumables_units`
--
ALTER TABLE `consumables_units`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `contactperson`
--
ALTER TABLE `contactperson`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `containers`
--
ALTER TABLE `containers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `containersize`
--
ALTER TABLE `containersize`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `contracts`
--
ALTER TABLE `contracts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `country`
--
ALTER TABLE `country`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `courier`
--
ALTER TABLE `courier`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `cronsent`
--
ALTER TABLE `cronsent`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `currency`
--
ALTER TABLE `currency`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `datasets`
--
ALTER TABLE `datasets`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `datasets-21-12-19`
--
ALTER TABLE `datasets-21-12-19`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `dbversion`
--
ALTER TABLE `dbversion`
  ADD PRIMARY KEY (`dbversion`);

--
-- Indexes for table `deductions`
--
ALTER TABLE `deductions`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `deliverydate`
--
ALTER TABLE `deliverydate`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `documentchecklist`
--
ALTER TABLE `documentchecklist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `documentsdeliverymode`
--
ALTER TABLE `documentsdeliverymode`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `emaillog`
--
ALTER TABLE `emaillog`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `emailserver`
--
ALTER TABLE `emailserver`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `employees`
--
ALTER TABLE `employees`
  ADD PRIMARY KEY (`empfullname`);

--
-- Indexes for table `gapshippmentlot`
--
ALTER TABLE `gapshippmentlot`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gapshippmentot`
--
ALTER TABLE `gapshippmentot`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `googleusers`
--
ALTER TABLE `googleusers`
  ADD PRIMARY KEY (`uid`);

--
-- Indexes for table `groups`
--
ALTER TABLE `groups`
  ADD PRIMARY KEY (`groupid`);

--
-- Indexes for table `guarantee`
--
ALTER TABLE `guarantee`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `hedging`
--
ALTER TABLE `hedging`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `imagegroup`
--
ALTER TABLE `imagegroup`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `imagegroupdetail`
--
ALTER TABLE `imagegroupdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `image_averages`
--
ALTER TABLE `image_averages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `imgaverage`
--
ALTER TABLE `imgaverage`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `industrialmetals`
--
ALTER TABLE `industrialmetals`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `industrialmetals-27-12`
--
ALTER TABLE `industrialmetals-27-12`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `industrialmetals23nov2021`
--
ALTER TABLE `industrialmetals23nov2021`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `info`
--
ALTER TABLE `info`
  ADD KEY `fullname` (`fullname`);

--
-- Indexes for table `inventoryproduct`
--
ALTER TABLE `inventoryproduct`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproduct08102019`
--
ALTER TABLE `inventoryproduct08102019`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproduct27-3-2020`
--
ALTER TABLE `inventoryproduct27-3-2020`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproductdetails`
--
ALTER TABLE `inventoryproductdetails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproductid`
--
ALTER TABLE `inventoryproductid`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproduct_6march19`
--
ALTER TABLE `inventoryproduct_6march19`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryproduct_old`
--
ALTER TABLE `inventoryproduct_old`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventoryusers`
--
ALTER TABLE `inventoryusers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `item`
--
ALTER TABLE `item`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `item10june`
--
ALTER TABLE `item10june`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `item200519`
--
ALTER TABLE `item200519`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `loadingport`
--
ALTER TABLE `loadingport`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `location`
--
ALTER TABLE `location`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mainquotetxt`
--
ALTER TABLE `mainquotetxt`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `manufacturer`
--
ALTER TABLE `manufacturer`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mediator`
--
ALTER TABLE `mediator`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `member_payments`
--
ALTER TABLE `member_payments`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `metars`
--
ALTER TABLE `metars`
  ADD PRIMARY KEY (`station`),
  ADD UNIQUE KEY `station` (`station`);

--
-- Indexes for table `modeofdelivery`
--
ALTER TABLE `modeofdelivery`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `moisture`
--
ALTER TABLE `moisture`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `months`
--
ALTER TABLE `months`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mylist`
--
ALTER TABLE `mylist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `mytoken`
--
ALTER TABLE `mytoken`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notify2`
--
ALTER TABLE `notify2`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `offices`
--
ALTER TABLE `offices`
  ADD PRIMARY KEY (`officeid`);

--
-- Indexes for table `orderconfirmation`
--
ALTER TABLE `orderconfirmation`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `orderpayments`
--
ALTER TABLE `orderpayments`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ordertermsconditions`
--
ALTER TABLE `ordertermsconditions`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `origin`
--
ALTER TABLE `origin`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `originofgoods`
--
ALTER TABLE `originofgoods`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `packing`
--
ALTER TABLE `packing`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `partialshipment`
--
ALTER TABLE `partialshipment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `paymentmodes`
--
ALTER TABLE `paymentmodes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `paymentterm`
--
ALTER TABLE `paymentterm`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pichecklist`
--
ALTER TABLE `pichecklist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pickupdeliverreturn`
--
ALTER TABLE `pickupdeliverreturn`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pickups`
--
ALTER TABLE `pickups`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `preciousmetals`
--
ALTER TABLE `preciousmetals`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `preparescheme`
--
ALTER TABLE `preparescheme`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pricepercent`
--
ALTER TABLE `pricepercent`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `priceterm`
--
ALTER TABLE `priceterm`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `process`
--
ALTER TABLE `process`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processchart`
--
ALTER TABLE `processchart`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processchartdetail`
--
ALTER TABLE `processchartdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processcompletedetail`
--
ALTER TABLE `processcompletedetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processcompletedetails`
--
ALTER TABLE `processcompletedetails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processdetail`
--
ALTER TABLE `processdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `processing`
--
ALTER TABLE `processing`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productded_detail`
--
ALTER TABLE `productded_detail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productdetail`
--
ALTER TABLE `productdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productiondetail`
--
ALTER TABLE `productiondetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productions`
--
ALTER TABLE `productions`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productofferprice`
--
ALTER TABLE `productofferprice`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productprices`
--
ALTER TABLE `productprices`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productprocedures`
--
ALTER TABLE `productprocedures`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `productprocess`
--
ALTER TABLE `productprocess`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `products`
--
ALTER TABLE `products`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `products-21-12-19`
--
ALTER TABLE `products-21-12-19`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `products6may`
--
ALTER TABLE `products6may`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `products281218`
--
ALTER TABLE `products281218`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `products_dataset281218`
--
ALTER TABLE `products_dataset281218`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `product_hide`
--
ALTER TABLE `product_hide`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `product_hide290822`
--
ALTER TABLE `product_hide290822`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `profit_split`
--
ALTER TABLE `profit_split`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `punchlist`
--
ALTER TABLE `punchlist`
  ADD PRIMARY KEY (`punchitems`);

--
-- Indexes for table `quality`
--
ALTER TABLE `quality`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `quotedetail`
--
ALTER TABLE `quotedetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `quotes`
--
ALTER TABLE `quotes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `quoteterms`
--
ALTER TABLE `quoteterms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `quotetext`
--
ALTER TABLE `quotetext`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `rateselection`
--
ALTER TABLE `rateselection`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `saleleadsimage`
--
ALTER TABLE `saleleadsimage`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `saleleadsimgdetail`
--
ALTER TABLE `saleleadsimgdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `saleleadsmember`
--
ALTER TABLE `saleleadsmember`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `saleleads_products`
--
ALTER TABLE `saleleads_products`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sendemails`
--
ALTER TABLE `sendemails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipchecklist`
--
ALTER TABLE `shipchecklist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipmentdetail`
--
ALTER TABLE `shipmentdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipmentdetails`
--
ALTER TABLE `shipmentdetails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipmentevaluation`
--
ALTER TABLE `shipmentevaluation`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipmentstatus`
--
ALTER TABLE `shipmentstatus`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippers`
--
ALTER TABLE `shippers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippingagent`
--
ALTER TABLE `shippingagent`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippingline`
--
ALTER TABLE `shippingline`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippingmethod`
--
ALTER TABLE `shippingmethod`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippingto`
--
ALTER TABLE `shippingto`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippmentlot`
--
ALTER TABLE `shippmentlot`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shippmentot`
--
ALTER TABLE `shippmentot`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `shipqmt`
--
ALTER TABLE `shipqmt`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stockaddedissue`
--
ALTER TABLE `stockaddedissue`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stockmovementproductdetails`
--
ALTER TABLE `stockmovementproductdetails`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stockmovementproductpalettes`
--
ALTER TABLE `stockmovementproductpalettes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stockmovementschedule`
--
ALTER TABLE `stockmovementschedule`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stockmovementtracking`
--
ALTER TABLE `stockmovementtracking`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supcontacts`
--
ALTER TABLE `supcontacts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `superusers`
--
ALTER TABLE `superusers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplierdetail`
--
ALTER TABLE `supplierdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplierorderdetail`
--
ALTER TABLE `supplierorderdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplierorderdetailnew`
--
ALTER TABLE `supplierorderdetailnew`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliers`
--
ALTER TABLE `suppliers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliers-10-2-2020`
--
ALTER TABLE `suppliers-10-2-2020`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliers15dec2021`
--
ALTER TABLE `suppliers15dec2021`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliers18nov2021`
--
ALTER TABLE `suppliers18nov2021`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliertax`
--
ALTER TABLE `suppliertax`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplyorder`
--
ALTER TABLE `supplyorder`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplyorder_files`
--
ALTER TABLE `supplyorder_files`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `supplyproductprocedures`
--
ALTER TABLE `supplyproductprocedures`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `termsconditiondetail`
--
ALTER TABLE `termsconditiondetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `termsconditions`
--
ALTER TABLE `termsconditions`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `threshold`
--
ALTER TABLE `threshold`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `transporter`
--
ALTER TABLE `transporter`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `transshipment`
--
ALTER TABLE `transshipment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tripcost`
--
ALTER TABLE `tripcost`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `truckschedule`
--
ALTER TABLE `truckschedule`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `userlog`
--
ALTER TABLE `userlog`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `userlog27sep`
--
ALTER TABLE `userlog27sep`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users9may19`
--
ALTER TABLE `users9may19`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `usersnew`
--
ALTER TABLE `usersnew`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `vehicletype`
--
ALTER TABLE `vehicletype`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpasimage`
--
ALTER TABLE `viewpasimage`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpasimgdetail`
--
ALTER TABLE `viewpasimgdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpasmemberdetail`
--
ALTER TABLE `viewpasmemberdetail`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpasmemberdetail2`
--
ALTER TABLE `viewpasmemberdetail2`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpasmemberdetail3`
--
ALTER TABLE `viewpasmemberdetail3`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpassmember`
--
ALTER TABLE `viewpassmember`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpas_messages`
--
ALTER TABLE `viewpas_messages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpas_packages`
--
ALTER TABLE `viewpas_packages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `viewpas_products`
--
ALTER TABLE `viewpas_products`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `warehouse`
--
ALTER TABLE `warehouse`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `weight`
--
ALTER TABLE `weight`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `acknowledgeshipment`
--
ALTER TABLE `acknowledgeshipment`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `addresses`
--
ALTER TABLE `addresses`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `agent`
--
ALTER TABLE `agent`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `agentusers`
--
ALTER TABLE `agentusers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `baskets`
--
ALTER TABLE `baskets`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `blockip`
--
ALTER TABLE `blockip`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `booktruck`
--
ALTER TABLE `booktruck`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `brand`
--
ALTER TABLE `brand`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `businessformdetail`
--
ALTER TABLE `businessformdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=612;

--
-- AUTO_INCREMENT for table `businessforms`
--
ALTER TABLE `businessforms`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;

--
-- AUTO_INCREMENT for table `businessforms021019`
--
ALTER TABLE `businessforms021019`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `buycontacts`
--
ALTER TABLE `buycontacts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `buyerorder`
--
ALTER TABLE `buyerorder`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;

--
-- AUTO_INCREMENT for table `buyerorderdetail`
--
ALTER TABLE `buyerorderdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;

--
-- AUTO_INCREMENT for table `buyers`
--
ALTER TABLE `buyers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `category`
--
ALTER TABLE `category`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171;

--
-- AUTO_INCREMENT for table `certificate`
--
ALTER TABLE `certificate`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `city`
--
ALTER TABLE `city`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `colors`
--
ALTER TABLE `colors`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `consignee`
--
ALTER TABLE `consignee`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `consproductdetails`
--
ALTER TABLE `consproductdetails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=492;

--
-- AUTO_INCREMENT for table `consumables`
--
ALTER TABLE `consumables`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=257;

--
-- AUTO_INCREMENT for table `consumables2022`
--
ALTER TABLE `consumables2022`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93;

--
-- AUTO_INCREMENT for table `consumables_catgeory`
--
ALTER TABLE `consumables_catgeory`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=106;

--
-- AUTO_INCREMENT for table `consumables_units`
--
ALTER TABLE `consumables_units`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `contactperson`
--
ALTER TABLE `contactperson`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `containers`
--
ALTER TABLE `containers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `containersize`
--
ALTER TABLE `containersize`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `contracts`
--
ALTER TABLE `contracts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `country`
--
ALTER TABLE `country`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `courier`
--
ALTER TABLE `courier`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `cronsent`
--
ALTER TABLE `cronsent`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `currency`
--
ALTER TABLE `currency`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `datasets`
--
ALTER TABLE `datasets`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `datasets-21-12-19`
--
ALTER TABLE `datasets-21-12-19`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `deductions`
--
ALTER TABLE `deductions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;

--
-- AUTO_INCREMENT for table `deliverydate`
--
ALTER TABLE `deliverydate`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `documentchecklist`
--
ALTER TABLE `documentchecklist`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `documentsdeliverymode`
--
ALTER TABLE `documentsdeliverymode`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `emaillog`
--
ALTER TABLE `emaillog`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `emailserver`
--
ALTER TABLE `emailserver`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gapshippmentlot`
--
ALTER TABLE `gapshippmentlot`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `gapshippmentot`
--
ALTER TABLE `gapshippmentot`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `googleusers`
--
ALTER TABLE `googleusers`
  MODIFY `uid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `groups`
--
ALTER TABLE `groups`
  MODIFY `groupid` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `guarantee`
--
ALTER TABLE `guarantee`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `hedging`
--
ALTER TABLE `hedging`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `imagegroup`
--
ALTER TABLE `imagegroup`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=244;

--
-- AUTO_INCREMENT for table `imagegroupdetail`
--
ALTER TABLE `imagegroupdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=598;

--
-- AUTO_INCREMENT for table `image_averages`
--
ALTER TABLE `image_averages`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;

--
-- AUTO_INCREMENT for table `imgaverage`
--
ALTER TABLE `imgaverage`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `industrialmetals`
--
ALTER TABLE `industrialmetals`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `industrialmetals-27-12`
--
ALTER TABLE `industrialmetals-27-12`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `industrialmetals23nov2021`
--
ALTER TABLE `industrialmetals23nov2021`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `inventoryproduct`
--
ALTER TABLE `inventoryproduct`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2350;

--
-- AUTO_INCREMENT for table `inventoryproduct08102019`
--
ALTER TABLE `inventoryproduct08102019`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1049;

--
-- AUTO_INCREMENT for table `inventoryproduct27-3-2020`
--
ALTER TABLE `inventoryproduct27-3-2020`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1957;

--
-- AUTO_INCREMENT for table `inventoryproductdetails`
--
ALTER TABLE `inventoryproductdetails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2265;

--
-- AUTO_INCREMENT for table `inventoryproductid`
--
ALTER TABLE `inventoryproductid`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `inventoryproduct_6march19`
--
ALTER TABLE `inventoryproduct_6march19`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=120;

--
-- AUTO_INCREMENT for table `inventoryproduct_old`
--
ALTER TABLE `inventoryproduct_old`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;

--
-- AUTO_INCREMENT for table `inventoryusers`
--
ALTER TABLE `inventoryusers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `item`
--
ALTER TABLE `item`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=151;

--
-- AUTO_INCREMENT for table `item10june`
--
ALTER TABLE `item10june`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=77;

--
-- AUTO_INCREMENT for table `item200519`
--
ALTER TABLE `item200519`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=66;

--
-- AUTO_INCREMENT for table `loadingport`
--
ALTER TABLE `loadingport`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `location`
--
ALTER TABLE `location`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `mainquotetxt`
--
ALTER TABLE `mainquotetxt`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `manufacturer`
--
ALTER TABLE `manufacturer`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `mediator`
--
ALTER TABLE `mediator`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `member_payments`
--
ALTER TABLE `member_payments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `modeofdelivery`
--
ALTER TABLE `modeofdelivery`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `moisture`
--
ALTER TABLE `moisture`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `months`
--
ALTER TABLE `months`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `mylist`
--
ALTER TABLE `mylist`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `mytoken`
--
ALTER TABLE `mytoken`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `notify2`
--
ALTER TABLE `notify2`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `offices`
--
ALTER TABLE `offices`
  MODIFY `officeid` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `orderconfirmation`
--
ALTER TABLE `orderconfirmation`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `orderpayments`
--
ALTER TABLE `orderpayments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ordertermsconditions`
--
ALTER TABLE `ordertermsconditions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `origin`
--
ALTER TABLE `origin`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `originofgoods`
--
ALTER TABLE `originofgoods`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `packing`
--
ALTER TABLE `packing`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `partialshipment`
--
ALTER TABLE `partialshipment`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `paymentmodes`
--
ALTER TABLE `paymentmodes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `paymentterm`
--
ALTER TABLE `paymentterm`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `pichecklist`
--
ALTER TABLE `pichecklist`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `pickupdeliverreturn`
--
ALTER TABLE `pickupdeliverreturn`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `pickups`
--
ALTER TABLE `pickups`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `preciousmetals`
--
ALTER TABLE `preciousmetals`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `preparescheme`
--
ALTER TABLE `preparescheme`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `pricepercent`
--
ALTER TABLE `pricepercent`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `priceterm`
--
ALTER TABLE `priceterm`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `process`
--
ALTER TABLE `process`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94;

--
-- AUTO_INCREMENT for table `processchart`
--
ALTER TABLE `processchart`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;

--
-- AUTO_INCREMENT for table `processchartdetail`
--
ALTER TABLE `processchartdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;

--
-- AUTO_INCREMENT for table `processcompletedetail`
--
ALTER TABLE `processcompletedetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1649;

--
-- AUTO_INCREMENT for table `processcompletedetails`
--
ALTER TABLE `processcompletedetails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=434;

--
-- AUTO_INCREMENT for table `processdetail`
--
ALTER TABLE `processdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=544;

--
-- AUTO_INCREMENT for table `processing`
--
ALTER TABLE `processing`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=255;

--
-- AUTO_INCREMENT for table `productded_detail`
--
ALTER TABLE `productded_detail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1841;

--
-- AUTO_INCREMENT for table `productdetail`
--
ALTER TABLE `productdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14605;

--
-- AUTO_INCREMENT for table `productiondetail`
--
ALTER TABLE `productiondetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `productions`
--
ALTER TABLE `productions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `productofferprice`
--
ALTER TABLE `productofferprice`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=401;

--
-- AUTO_INCREMENT for table `productprices`
--
ALTER TABLE `productprices`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `productprocedures`
--
ALTER TABLE `productprocedures`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47;

--
-- AUTO_INCREMENT for table `productprocess`
--
ALTER TABLE `productprocess`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=524;

--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1112;

--
-- AUTO_INCREMENT for table `products-21-12-19`
--
ALTER TABLE `products-21-12-19`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=750;

--
-- AUTO_INCREMENT for table `products6may`
--
ALTER TABLE `products6may`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=272;

--
-- AUTO_INCREMENT for table `products281218`
--
ALTER TABLE `products281218`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83;

--
-- AUTO_INCREMENT for table `products_dataset281218`
--
ALTER TABLE `products_dataset281218`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=102;

--
-- AUTO_INCREMENT for table `product_hide`
--
ALTER TABLE `product_hide`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=256;

--
-- AUTO_INCREMENT for table `product_hide290822`
--
ALTER TABLE `product_hide290822`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=256;

--
-- AUTO_INCREMENT for table `profit_split`
--
ALTER TABLE `profit_split`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `quality`
--
ALTER TABLE `quality`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `quotedetail`
--
ALTER TABLE `quotedetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `quotes`
--
ALTER TABLE `quotes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `quoteterms`
--
ALTER TABLE `quoteterms`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `quotetext`
--
ALTER TABLE `quotetext`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `rateselection`
--
ALTER TABLE `rateselection`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `saleleadsimage`
--
ALTER TABLE `saleleadsimage`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `saleleadsimgdetail`
--
ALTER TABLE `saleleadsimgdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `saleleadsmember`
--
ALTER TABLE `saleleadsmember`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `saleleads_products`
--
ALTER TABLE `saleleads_products`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `sendemails`
--
ALTER TABLE `sendemails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `shipchecklist`
--
ALTER TABLE `shipchecklist`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shipmentdetail`
--
ALTER TABLE `shipmentdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shipmentdetails`
--
ALTER TABLE `shipmentdetails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45;

--
-- AUTO_INCREMENT for table `shipmentevaluation`
--
ALTER TABLE `shipmentevaluation`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shipmentstatus`
--
ALTER TABLE `shipmentstatus`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippers`
--
ALTER TABLE `shippers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippingagent`
--
ALTER TABLE `shippingagent`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippingline`
--
ALTER TABLE `shippingline`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippingmethod`
--
ALTER TABLE `shippingmethod`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippingto`
--
ALTER TABLE `shippingto`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippmentlot`
--
ALTER TABLE `shippmentlot`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shippmentot`
--
ALTER TABLE `shippmentot`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `shipqmt`
--
ALTER TABLE `shipqmt`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `stockaddedissue`
--
ALTER TABLE `stockaddedissue`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `stockmovementproductdetails`
--
ALTER TABLE `stockmovementproductdetails`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `stockmovementproductpalettes`
--
ALTER TABLE `stockmovementproductpalettes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `stockmovementschedule`
--
ALTER TABLE `stockmovementschedule`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `stockmovementtracking`
--
ALTER TABLE `stockmovementtracking`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `supcontacts`
--
ALTER TABLE `supcontacts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `superusers`
--
ALTER TABLE `superusers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `supplierdetail`
--
ALTER TABLE `supplierdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=107;

--
-- AUTO_INCREMENT for table `supplierorderdetail`
--
ALTER TABLE `supplierorderdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=758;

--
-- AUTO_INCREMENT for table `supplierorderdetailnew`
--
ALTER TABLE `supplierorderdetailnew`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1160;

--
-- AUTO_INCREMENT for table `suppliers`
--
ALTER TABLE `suppliers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=156;

--
-- AUTO_INCREMENT for table `suppliers-10-2-2020`
--
ALTER TABLE `suppliers-10-2-2020`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94;

--
-- AUTO_INCREMENT for table `suppliers15dec2021`
--
ALTER TABLE `suppliers15dec2021`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=129;

--
-- AUTO_INCREMENT for table `suppliers18nov2021`
--
ALTER TABLE `suppliers18nov2021`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=128;

--
-- AUTO_INCREMENT for table `suppliertax`
--
ALTER TABLE `suppliertax`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `supplyorder`
--
ALTER TABLE `supplyorder`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=476;

--
-- AUTO_INCREMENT for table `supplyorder_files`
--
ALTER TABLE `supplyorder_files`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;

--
-- AUTO_INCREMENT for table `supplyproductprocedures`
--
ALTER TABLE `supplyproductprocedures`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `termsconditiondetail`
--
ALTER TABLE `termsconditiondetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `termsconditions`
--
ALTER TABLE `termsconditions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `threshold`
--
ALTER TABLE `threshold`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `transporter`
--
ALTER TABLE `transporter`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `transshipment`
--
ALTER TABLE `transshipment`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `tripcost`
--
ALTER TABLE `tripcost`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `truckschedule`
--
ALTER TABLE `truckschedule`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `userlog`
--
ALTER TABLE `userlog`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=917;

--
-- AUTO_INCREMENT for table `userlog27sep`
--
ALTER TABLE `userlog27sep`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `users9may19`
--
ALTER TABLE `users9may19`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `usersnew`
--
ALTER TABLE `usersnew`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `vehicletype`
--
ALTER TABLE `vehicletype`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `viewpasimage`
--
ALTER TABLE `viewpasimage`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2622;

--
-- AUTO_INCREMENT for table `viewpasimgdetail`
--
ALTER TABLE `viewpasimgdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7139;

--
-- AUTO_INCREMENT for table `viewpasmemberdetail`
--
ALTER TABLE `viewpasmemberdetail`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73;

--
-- AUTO_INCREMENT for table `viewpasmemberdetail2`
--
ALTER TABLE `viewpasmemberdetail2`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `viewpasmemberdetail3`
--
ALTER TABLE `viewpasmemberdetail3`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `viewpassmember`
--
ALTER TABLE `viewpassmember`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `viewpas_messages`
--
ALTER TABLE `viewpas_messages`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `viewpas_packages`
--
ALTER TABLE `viewpas_packages`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `viewpas_products`
--
ALTER TABLE `viewpas_products`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=766;

--
-- AUTO_INCREMENT for table `warehouse`
--
ALTER TABLE `warehouse`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `weight`
--
ALTER TABLE `weight`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;

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