uawdijnntqw1x1x1
IP : 216.73.216.46
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
storage
/
backups
/
craft4--2023-07-05-121350--v4.4.15.sql
/
/
-- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64) -- -- Host: 127.0.0.1 Database: craft4_db -- ------------------------------------------------------ -- Server version 5.7.42-0ubuntu0.18.04.1-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `addresses` -- DROP TABLE IF EXISTS `addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `addresses` ( `id` int(11) NOT NULL, `ownerId` int(11) DEFAULT NULL, `countryCode` varchar(255) NOT NULL, `administrativeArea` varchar(255) DEFAULT NULL, `locality` varchar(255) DEFAULT NULL, `dependentLocality` varchar(255) DEFAULT NULL, `postalCode` varchar(255) DEFAULT NULL, `sortingCode` varchar(255) DEFAULT NULL, `addressLine1` varchar(255) DEFAULT NULL, `addressLine2` varchar(255) DEFAULT NULL, `organization` varchar(255) DEFAULT NULL, `organizationTaxId` varchar(255) DEFAULT NULL, `fullName` varchar(255) DEFAULT NULL, `firstName` varchar(255) DEFAULT NULL, `lastName` varchar(255) DEFAULT NULL, `latitude` varchar(255) DEFAULT NULL, `longitude` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `fk_cjfteudzapzrnwylioexdemrnhaorkyymxtb` (`ownerId`), CONSTRAINT `fk_cjfteudzapzrnwylioexdemrnhaorkyymxtb` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_ixnmqmcocxutdruwayjaxwfrvhkbcivlektq` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `pluginId` int(11) DEFAULT NULL, `heading` varchar(255) NOT NULL, `body` text NOT NULL, `unread` tinyint(1) NOT NULL DEFAULT '1', `dateRead` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_yfnmkfzwcomwvasncnzibpvrayimrhictxxx` (`userId`,`unread`,`dateRead`,`dateCreated`), KEY `idx_wvbqsqlxacvgbafxemktovipychcxjuhiwpf` (`dateRead`), KEY `fk_waygoetxjsjxveneymalkmkvlejkywonmwea` (`pluginId`), CONSTRAINT `fk_exgfgltzxfxwqdjgcikfwyerupevctdnmrqv` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_waygoetxjsjxveneymalkmkvlejkywonmwea` FOREIGN KEY (`pluginId`) REFERENCES `plugins` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `assetindexdata` -- DROP TABLE IF EXISTS `assetindexdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assetindexdata` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sessionId` int(11) NOT NULL, `volumeId` int(11) NOT NULL, `uri` text, `size` bigint(20) unsigned DEFAULT NULL, `timestamp` datetime DEFAULT NULL, `isDir` tinyint(1) DEFAULT '0', `recordId` int(11) DEFAULT NULL, `isSkipped` tinyint(1) DEFAULT '0', `inProgress` tinyint(1) DEFAULT '0', `completed` tinyint(1) DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_pxcebygefojgqystbgrjyftiqhcwqlgpqaja` (`sessionId`,`volumeId`), KEY `idx_jelbvdyoufdylqhkyqvmxwmnfiqnypugernk` (`volumeId`), CONSTRAINT `fk_ocpoytcfpirssxfqizrfsrljsjmrdkgirsuw` FOREIGN KEY (`sessionId`) REFERENCES `assetindexingsessions` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_ybtfeuwnxmftchgckmahyzqiqkygddbizcvb` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `assetindexingsessions` -- DROP TABLE IF EXISTS `assetindexingsessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assetindexingsessions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `indexedVolumes` text, `totalEntries` int(11) DEFAULT NULL, `processedEntries` int(11) NOT NULL DEFAULT '0', `cacheRemoteImages` tinyint(1) DEFAULT NULL, `listEmptyFolders` tinyint(1) DEFAULT '0', `isCli` tinyint(1) DEFAULT '0', `actionRequired` tinyint(1) DEFAULT '0', `processIfRootEmpty` tinyint(1) DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `assets` ( `id` int(11) NOT NULL, `volumeId` int(11) DEFAULT NULL, `folderId` int(11) NOT NULL, `uploaderId` int(11) DEFAULT NULL, `filename` varchar(255) NOT NULL, `kind` varchar(50) NOT NULL DEFAULT 'unknown', `alt` text, `width` int(11) unsigned DEFAULT NULL, `height` int(11) unsigned DEFAULT NULL, `size` bigint(20) unsigned DEFAULT NULL, `focalPoint` varchar(13) DEFAULT NULL, `deletedWithVolume` tinyint(1) DEFAULT NULL, `keptFile` tinyint(1) DEFAULT NULL, `dateModified` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_mxougkxacdznljbqplqbwfkhuhecfwserxzm` (`filename`,`folderId`), KEY `idx_hzvyubobxvrwbjeytogbzncexqzxpyeqadpj` (`folderId`), KEY `idx_tavwoytzytmpoxwhyqxxsfofdyzsbagnnbgg` (`volumeId`), KEY `fk_vqyqnongcdrnxzbiaqsbepjxrvbpppazanxl` (`uploaderId`), CONSTRAINT `fk_fpgahzowygvduzcxffyywiiqscivmjbjyqiv` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_kowszbirmbvhmnejsqfzebspcxeswtpnnsjk` FOREIGN KEY (`folderId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_pibysodwhmfhrmuzwelokbcsverfeoanfpmm` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_vqyqnongcdrnxzbiaqsbepjxrvbpppazanxl` FOREIGN KEY (`uploaderId`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categories` ( `id` int(11) NOT NULL, `groupId` int(11) NOT NULL, `parentId` int(11) DEFAULT NULL, `deletedWithGroup` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_zqbuhpxoxrgcvodylvbqenubdjvtgmonzuhd` (`groupId`), KEY `fk_nepeguuzhzzbddrsmnbhgdkmgfwgcnfjmwsk` (`parentId`), CONSTRAINT `fk_adcjwkswvjodmdziovgkbsnucgjsuuxsxwji` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_gnwljszuqcodjimlzgrlfttxyyauykfxkzah` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_nepeguuzhzzbddrsmnbhgdkmgfwgcnfjmwsk` FOREIGN KEY (`parentId`) REFERENCES `categories` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `categorygroups` -- DROP TABLE IF EXISTS `categorygroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorygroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `defaultPlacement` enum('beginning','end') NOT NULL DEFAULT 'end', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_klboiapvmpmyifwyfzmrvleylgaioqfrglzj` (`name`), KEY `idx_ensdulxdzfuuvrfactarwasccbfknzgijykg` (`handle`), KEY `idx_hcxunmserbuxxxefxkgadmvhycytxobqryxy` (`structureId`), KEY `idx_hevsqgmzpdvcjnwywzwsdgkzbckifulkfram` (`fieldLayoutId`), KEY `idx_uuxglbhosijhwmnwcitscqybiofzdidnezik` (`dateDeleted`), CONSTRAINT `fk_cstmvicdpfpcdihdsxeskolkkzfnuxdbqcvk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_jpttpfamwjsqewlxhdyjeibhtljlaxkpjxxr` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `categorygroups_sites` -- DROP TABLE IF EXISTS `categorygroups_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorygroups_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '1', `uriFormat` text, `template` varchar(500) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_cuibkcvdxoyjdcmutotddwoedbwjxbnyxmhk` (`groupId`,`siteId`), KEY `idx_ypvwayqvkqxijxhtprwlnofypcmhabaxnjid` (`siteId`), CONSTRAINT `fk_baoeoyzymzswrtyjitkvunemfqilpydrtbez` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_cbegqkpbgjctaimdqrfhxxaxnleikaqfcpqv` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `changedattributes` -- DROP TABLE IF EXISTS `changedattributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `changedattributes` ( `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `attribute` varchar(255) NOT NULL, `dateUpdated` datetime NOT NULL, `propagated` tinyint(1) NOT NULL, `userId` int(11) DEFAULT NULL, PRIMARY KEY (`elementId`,`siteId`,`attribute`), KEY `idx_tlzbqhfcozpmyfnffjpwqwjirufmuecgoitt` (`elementId`,`siteId`,`dateUpdated`), KEY `fk_frjhyilohaajcynrgcmroqjasnfnkkivlqyk` (`siteId`), KEY `fk_bczfxmdpvefisfhrvyqkumwrelkhipbffbvj` (`userId`), CONSTRAINT `fk_bczfxmdpvefisfhrvyqkumwrelkhipbffbvj` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `fk_dintpkdibkbukxxwwbxmfqxkpgirclzwmand` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_frjhyilohaajcynrgcmroqjasnfnkkivlqyk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `changedfields` -- DROP TABLE IF EXISTS `changedfields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `changedfields` ( `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `dateUpdated` datetime NOT NULL, `propagated` tinyint(1) NOT NULL, `userId` int(11) DEFAULT NULL, PRIMARY KEY (`elementId`,`siteId`,`fieldId`), KEY `idx_vyvrqrrdtbfiofceyvprulavorkklmbqyjit` (`elementId`,`siteId`,`dateUpdated`), KEY `fk_igaepxnjocjavjnbbqlnzrlzsdamsrllkhgz` (`siteId`), KEY `fk_smrounbyyjwukkssvtwzrcjxaywgzfskxqgy` (`fieldId`), KEY `fk_lmikbxzyfjlebqsqfbrlawxkxfvudsnmjxcr` (`userId`), CONSTRAINT `fk_hzdzbpygqjyuprozmxsgxoiakqdhmigcpvmg` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_igaepxnjocjavjnbbqlnzrlzsdamsrllkhgz` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_lmikbxzyfjlebqsqfbrlawxkxfvudsnmjxcr` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `fk_smrounbyyjwukkssvtwzrcjxaywgzfskxqgy` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_coupons` -- DROP TABLE IF EXISTS `commerce_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_coupons` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(255) DEFAULT NULL, `discountId` int(11) NOT NULL, `uses` int(11) NOT NULL DEFAULT '0', `maxUses` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_sdmaqquhxebhbbdisztsjadocbgrfypazahw` (`discountId`), KEY `idx_olxiwmtjebphjqdfcopetbhrhxgfjfgvbaiw` (`code`), CONSTRAINT `fk_jkiejcurxjuuqmpxsqllmlhghvnliwcgpjqn` FOREIGN KEY (`discountId`) REFERENCES `commerce_discounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_customer_discountuses` -- DROP TABLE IF EXISTS `commerce_customer_discountuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_customer_discountuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discountId` int(11) NOT NULL, `customerId` int(11) NOT NULL, `uses` int(11) unsigned NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_cwiaugiuvguhwyjatfiabwcastwwngtvixia` (`customerId`,`discountId`), KEY `idx_wxopmnxvgxlhqawwdvigazwhdbldroilxhye` (`discountId`), CONSTRAINT `fk_ghyqtafkwcfrrgudzxwjgvzojjnrrhyvbdqc` FOREIGN KEY (`customerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_qosgpvsboowgmsrzulujqnvecacikbpikvin` FOREIGN KEY (`discountId`) REFERENCES `commerce_discounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_customers` -- DROP TABLE IF EXISTS `commerce_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_customers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerId` int(11) NOT NULL, `primaryBillingAddressId` int(11) DEFAULT NULL, `primaryShippingAddressId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_ydxoqjvtdtrpdioruusmlxajbkujvintapph` (`customerId`), KEY `idx_iqcoeiczqwamesbxdqblzyprjruhrdqgnpcn` (`primaryBillingAddressId`), KEY `idx_bnfvxfvtmfnrkvtlpgkxjttimpjfqlqbufdy` (`primaryShippingAddressId`), CONSTRAINT `fk_brgafltionqmdfrohohjwdqhrkaheijvtpov` FOREIGN KEY (`customerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_cihnravkotoucgwbzxqycsfgafvgnmchzdri` FOREIGN KEY (`primaryBillingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_vyfjsxqndmhoduulebyqcnnqpbgkoygdpwpj` FOREIGN KEY (`primaryShippingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_discount_categories` -- DROP TABLE IF EXISTS `commerce_discount_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_discount_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discountId` int(11) NOT NULL, `categoryId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_gqqyiygraslrjbxzvuypvolxzuembcdogcsr` (`discountId`,`categoryId`), KEY `idx_qcukqgpglfbnybjumapnvxgvzsonvyclrthc` (`categoryId`), CONSTRAINT `fk_gigdfhmgfhkordkrulgcfzoybyebobngrkau` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_olmevoydibzvwwpgilgihouwawzdnmyfsnwo` FOREIGN KEY (`discountId`) REFERENCES `commerce_discounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_discount_purchasables` -- DROP TABLE IF EXISTS `commerce_discount_purchasables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_discount_purchasables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discountId` int(11) NOT NULL, `purchasableId` int(11) NOT NULL, `purchasableType` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_ntyztbujrjznwhugubnhjwsyfsmjolnlruse` (`discountId`,`purchasableId`), KEY `idx_kwibkmeqvgiqorqmzkbrngyrxkubwbtwmtve` (`purchasableId`), CONSTRAINT `fk_aheuldiufrddldkmwuqojvadsauntjryjugp` FOREIGN KEY (`purchasableId`) REFERENCES `commerce_purchasables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_dmegbepnaitqqllgmfvhynqzgwksmlqguolx` FOREIGN KEY (`discountId`) REFERENCES `commerce_discounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_discounts` -- DROP TABLE IF EXISTS `commerce_discounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_discounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `couponFormat` varchar(20) NOT NULL DEFAULT '######', `orderCondition` text, `customerCondition` text, `shippingAddressCondition` text, `billingAddressCondition` text, `perUserLimit` int(11) unsigned NOT NULL DEFAULT '0', `perEmailLimit` int(11) unsigned NOT NULL DEFAULT '0', `totalDiscountUses` int(11) unsigned NOT NULL DEFAULT '0', `totalDiscountUseLimit` int(11) unsigned NOT NULL DEFAULT '0', `dateFrom` datetime DEFAULT NULL, `dateTo` datetime DEFAULT NULL, `purchaseQty` int(11) NOT NULL DEFAULT '0', `purchaseTotal` decimal(14,4) NOT NULL DEFAULT '0.0000', `maxPurchaseQty` int(11) NOT NULL DEFAULT '0', `baseDiscount` decimal(14,4) NOT NULL DEFAULT '0.0000', `baseDiscountType` enum('value','percentTotal','percentTotalDiscounted','percentItems','percentItemsDiscounted') NOT NULL DEFAULT 'value', `perItemDiscount` decimal(14,4) NOT NULL DEFAULT '0.0000', `percentDiscount` decimal(14,4) NOT NULL DEFAULT '0.0000', `percentageOffSubject` enum('original','discounted') NOT NULL, `excludeOnSale` tinyint(1) NOT NULL DEFAULT '0', `hasFreeShippingForMatchingItems` tinyint(1) NOT NULL DEFAULT '0', `hasFreeShippingForOrder` tinyint(1) NOT NULL DEFAULT '0', `allPurchasables` tinyint(1) NOT NULL DEFAULT '0', `allCategories` tinyint(1) NOT NULL DEFAULT '0', `appliedTo` enum('matchingLineItems','allLineItems') NOT NULL DEFAULT 'matchingLineItems', `categoryRelationshipType` enum('element','sourceElement','targetElement') NOT NULL DEFAULT 'element', `orderConditionFormula` text, `enabled` tinyint(1) NOT NULL DEFAULT '1', `stopProcessing` tinyint(1) NOT NULL DEFAULT '0', `ignoreSales` tinyint(1) NOT NULL DEFAULT '0', `sortOrder` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_jdqwclywxbpvmopgocfygyaamuxqoezxfmyd` (`dateFrom`), KEY `idx_uuwufqdwpyekbolcnueonvezkmhpbymufsjg` (`dateTo`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_donations` -- DROP TABLE IF EXISTS `commerce_donations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_donations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sku` varchar(255) NOT NULL, `availableForPurchase` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), CONSTRAINT `fk_nynarosnzegoepvzzaqgmsesbadhfswnzegc` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_email_discountuses` -- DROP TABLE IF EXISTS `commerce_email_discountuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_email_discountuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discountId` int(11) NOT NULL, `email` varchar(255) NOT NULL, `uses` int(11) unsigned NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_qhqsutbumgoxmualscpjkwaygswpwrdxznma` (`email`,`discountId`), KEY `idx_vkieosfbxbmsiugvtreiygmhwcfcothpljfr` (`discountId`), CONSTRAINT `fk_kjjbjktzlvyqdbbtqshkiczczhpukfqcfien` FOREIGN KEY (`discountId`) REFERENCES `commerce_discounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_emails` -- DROP TABLE IF EXISTS `commerce_emails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_emails` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `recipientType` enum('customer','custom') DEFAULT 'custom', `to` varchar(255) DEFAULT NULL, `bcc` varchar(255) DEFAULT NULL, `cc` varchar(255) DEFAULT NULL, `replyTo` varchar(255) DEFAULT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `templatePath` varchar(255) NOT NULL, `plainTextTemplatePath` varchar(255) DEFAULT NULL, `pdfId` int(11) DEFAULT NULL, `language` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fk_egcivveudwihawajsaybbiqfvxxevfjldigc` (`pdfId`), CONSTRAINT `fk_egcivveudwihawajsaybbiqfvxxevfjldigc` FOREIGN KEY (`pdfId`) REFERENCES `commerce_pdfs` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_gateways` -- DROP TABLE IF EXISTS `commerce_gateways`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_gateways` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `settings` text, `paymentType` enum('authorize','purchase') NOT NULL DEFAULT 'purchase', `isFrontendEnabled` varchar(500) NOT NULL DEFAULT '1', `isArchived` tinyint(1) NOT NULL DEFAULT '0', `dateArchived` datetime DEFAULT NULL, `sortOrder` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_goxgcevsvsysowrbzmzgrxraoyvqpozoplat` (`handle`), KEY `idx_skmfawkcwnxwxmsqlcjkagwsgpnatxngqugc` (`isArchived`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_lineitems` -- DROP TABLE IF EXISTS `commerce_lineitems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_lineitems` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NOT NULL, `purchasableId` int(11) DEFAULT NULL, `taxCategoryId` int(11) NOT NULL, `shippingCategoryId` int(11) NOT NULL, `description` text, `options` text, `optionsSignature` varchar(255) NOT NULL, `price` decimal(14,4) unsigned NOT NULL, `saleAmount` decimal(14,4) NOT NULL DEFAULT '0.0000', `salePrice` decimal(14,4) NOT NULL DEFAULT '0.0000', `sku` varchar(255) DEFAULT NULL, `weight` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000', `height` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000', `length` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000', `width` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000', `subtotal` decimal(14,4) unsigned NOT NULL DEFAULT '0.0000', `total` decimal(14,4) NOT NULL DEFAULT '0.0000', `qty` int(11) unsigned NOT NULL, `note` text, `privateNote` text, `snapshot` longtext, `lineItemStatusId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_oxnnbgwgzwxashbfcxfrxexkgbdhckeffpit` (`orderId`,`purchasableId`,`optionsSignature`), KEY `idx_dtsruxnzgzqmasdszskbcktghyftczeeukdi` (`purchasableId`), KEY `idx_zzshcleyruwykdibyszsykeeulgkxshoysyk` (`taxCategoryId`), KEY `idx_ylydcjxxbvfpowhwlucswwzeulvouwigfqvp` (`shippingCategoryId`), CONSTRAINT `fk_eqigrizkzbqpyicdmxksvlbhnbzrlsxslxxz` FOREIGN KEY (`taxCategoryId`) REFERENCES `commerce_taxcategories` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_gogxlbyccekbrwspdpgiwowstbtgzosfijxq` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_kgqdoiyeycmjjumieajbphckyfhvxbgvfgsj` FOREIGN KEY (`shippingCategoryId`) REFERENCES `commerce_shippingcategories` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_xqbcmsqnckfjhvpkuqiyjholordrxpjzyoym` FOREIGN KEY (`purchasableId`) REFERENCES `elements` (`id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_lineitemstatuses` -- DROP TABLE IF EXISTS `commerce_lineitemstatuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_lineitemstatuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `color` enum('green','orange','red','blue','yellow','pink','purple','turquoise','light','grey','black') NOT NULL DEFAULT 'green', `isArchived` tinyint(1) NOT NULL DEFAULT '0', `dateArchived` datetime DEFAULT NULL, `sortOrder` int(11) DEFAULT NULL, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_orderadjustments` -- DROP TABLE IF EXISTS `commerce_orderadjustments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_orderadjustments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NOT NULL, `lineItemId` int(11) DEFAULT NULL, `type` varchar(255) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `amount` decimal(14,4) NOT NULL, `included` tinyint(1) NOT NULL DEFAULT '0', `isEstimated` tinyint(1) NOT NULL DEFAULT '0', `sourceSnapshot` longtext, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fgchvqzsyguwbcvgwnkxxutktscdxxdcoasj` (`orderId`), CONSTRAINT `fk_zjaarupumgqxakhnivnnakhmddmiwxtgrmhp` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2090 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_orderhistories` -- DROP TABLE IF EXISTS `commerce_orderhistories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_orderhistories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NOT NULL, `userId` int(11) DEFAULT NULL, `userName` varchar(255) DEFAULT NULL, `prevStatusId` int(11) DEFAULT NULL, `newStatusId` int(11) DEFAULT NULL, `message` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_jqvhluypjmcfydfpaauztqurdgjnmemrwfsw` (`orderId`), KEY `idx_zwipzwjiyeuczpuudhvoygiphwjwaybbemqn` (`prevStatusId`), KEY `idx_xpiodolvigpmaijisvyiwsxgknkqngscypon` (`newStatusId`), KEY `idx_kcdiwiahvletrpoexphzdndxnkhuzakcrvte` (`userId`), CONSTRAINT `fk_acvnjdkjfdpszwkvtjcffcsvebfbzizhztqh` FOREIGN KEY (`prevStatusId`) REFERENCES `commerce_orderstatuses` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_ldhyjquzzpnqmvnmbnvqqbdkwcnvdhanvweb` FOREIGN KEY (`userId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_oysithpfupymqrfmbhyckvjgakbosexhgloy` FOREIGN KEY (`newStatusId`) REFERENCES `commerce_orderstatuses` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_wlpodrsyaxwckdlchbsitabhmmhysnsjpugz` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_ordernotices` -- DROP TABLE IF EXISTS `commerce_ordernotices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_ordernotices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NOT NULL, `type` varchar(255) DEFAULT NULL, `attribute` varchar(255) DEFAULT NULL, `message` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_zirdvomqfeifzgczyezieuptvqiylunfkapc` (`orderId`), CONSTRAINT `fk_diimolbrgeapwakbkpkpqxdjakyzzmjmqnpx` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_orders` -- DROP TABLE IF EXISTS `commerce_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_orders` ( `id` int(11) NOT NULL, `billingAddressId` int(11) DEFAULT NULL, `shippingAddressId` int(11) DEFAULT NULL, `estimatedBillingAddressId` int(11) DEFAULT NULL, `estimatedShippingAddressId` int(11) DEFAULT NULL, `sourceShippingAddressId` int(11) DEFAULT NULL, `sourceBillingAddressId` int(11) DEFAULT NULL, `gatewayId` int(11) DEFAULT NULL, `paymentSourceId` int(11) DEFAULT NULL, `customerId` int(11) DEFAULT NULL, `orderStatusId` int(11) DEFAULT NULL, `number` varchar(32) DEFAULT NULL, `reference` varchar(255) DEFAULT NULL, `couponCode` varchar(255) DEFAULT NULL, `itemTotal` decimal(14,4) DEFAULT '0.0000', `itemSubtotal` decimal(14,4) DEFAULT '0.0000', `total` decimal(14,4) DEFAULT '0.0000', `totalPrice` decimal(14,4) DEFAULT '0.0000', `totalPaid` decimal(14,4) DEFAULT '0.0000', `totalDiscount` decimal(14,4) DEFAULT '0.0000', `totalTax` decimal(14,4) DEFAULT '0.0000', `totalTaxIncluded` decimal(14,4) DEFAULT '0.0000', `totalShippingCost` decimal(14,4) DEFAULT '0.0000', `paidStatus` enum('paid','partial','unpaid','overPaid') DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `isCompleted` tinyint(1) NOT NULL DEFAULT '0', `dateOrdered` datetime DEFAULT NULL, `datePaid` datetime DEFAULT NULL, `dateAuthorized` datetime DEFAULT NULL, `currency` varchar(255) DEFAULT NULL, `paymentCurrency` varchar(255) DEFAULT NULL, `lastIp` varchar(255) DEFAULT NULL, `orderLanguage` varchar(12) NOT NULL, `origin` enum('web','cp','remote') NOT NULL DEFAULT 'web', `message` text, `registerUserOnOrderComplete` tinyint(1) NOT NULL DEFAULT '0', `recalculationMode` enum('all','none','adjustmentsOnly') NOT NULL DEFAULT 'all', `returnUrl` text, `cancelUrl` text, `shippingMethodHandle` varchar(255) DEFAULT NULL, `shippingMethodName` varchar(255) DEFAULT NULL, `orderSiteId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_nagduiwnmcxgwerfxsghrijguxfrklkhzwiq` (`number`), KEY `idx_yffmhiycouwwbxhosornxufhgkjvbusejtof` (`reference`), KEY `idx_qdyfjznruzmkbxoktdmuzjtixhuwyfogmsvj` (`billingAddressId`), KEY `idx_bgjyynzkseqcmjvqpiewqnghimetmwntlrtl` (`shippingAddressId`), KEY `idx_vorotlivvpmrfskmrpdupawamyoyludupchf` (`gatewayId`), KEY `idx_likfenwpaaeotjollpclnlecrfallefreowc` (`customerId`), KEY `idx_tuesoolcdnrsjtatxjecdxetdfurvhetjdvo` (`orderStatusId`), KEY `idx_sltgwjansmewafemkmrqylfprgkskfgawbra` (`email`), KEY `fk_rlhwnzhmtefpvrectxmrbyzojhypdfsgcaif` (`estimatedBillingAddressId`), KEY `fk_crfzywjwhsxgcswxohnoyaysvgoxvhlbhtue` (`estimatedShippingAddressId`), KEY `fk_iksclvurrmudgyrxldzjkvgyevpqhxzpxxzy` (`paymentSourceId`), CONSTRAINT `fk_crfzywjwhsxgcswxohnoyaysvgoxvhlbhtue` FOREIGN KEY (`estimatedShippingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_eomqpcmlxnanfjgzuwowdosdglpmfmdofsxx` FOREIGN KEY (`shippingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_iksclvurrmudgyrxldzjkvgyevpqhxzpxxzy` FOREIGN KEY (`paymentSourceId`) REFERENCES `commerce_paymentsources` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_lhagjifvdpdwxtdlyltbulsryumtofwgtdqz` FOREIGN KEY (`orderStatusId`) REFERENCES `commerce_orderstatuses` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_pnyjnwlzziyyglivlcpceuracpeehacamrcf` FOREIGN KEY (`billingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_pqpzmkvkkbxyhigqlvjstnasotejwhdtolvs` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_rlhwnzhmtefpvrectxmrbyzojhypdfsgcaif` FOREIGN KEY (`estimatedBillingAddressId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_ybnhxzapcllnjrehsekoijnyjbfagnvgnupn` FOREIGN KEY (`customerId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_zpnplhwgrtboshlpwxicljrwtqzgfsqshepc` FOREIGN KEY (`gatewayId`) REFERENCES `commerce_gateways` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_orderstatus_emails` -- DROP TABLE IF EXISTS `commerce_orderstatus_emails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_orderstatus_emails` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderStatusId` int(11) NOT NULL, `emailId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ftbrnijdvqydldtqsqmfquzvfukegyjhtizl` (`orderStatusId`), KEY `idx_jikowyfdjocfdcaorthukphlleykjvrtensv` (`emailId`), CONSTRAINT `fk_oiewzrcehlxmbkosergvaqrnnphsgurqknqc` FOREIGN KEY (`emailId`) REFERENCES `commerce_emails` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_rgohfqikajxomifoahxgtiiuwnivdrvwykdg` FOREIGN KEY (`orderStatusId`) REFERENCES `commerce_orderstatuses` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_orderstatuses` -- DROP TABLE IF EXISTS `commerce_orderstatuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_orderstatuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `color` enum('green','orange','red','blue','yellow','pink','purple','turquoise','light','grey','black') NOT NULL DEFAULT 'green', `description` varchar(255) DEFAULT NULL, `dateDeleted` datetime DEFAULT NULL, `sortOrder` int(11) DEFAULT NULL, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_paymentcurrencies` -- DROP TABLE IF EXISTS `commerce_paymentcurrencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_paymentcurrencies` ( `id` int(11) NOT NULL AUTO_INCREMENT, `iso` varchar(3) NOT NULL, `primary` tinyint(1) NOT NULL DEFAULT '0', `rate` decimal(14,4) NOT NULL DEFAULT '0.0000', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_orirzparkoifjmcqzhhcwtazuigruwwsejip` (`iso`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_paymentsources` -- DROP TABLE IF EXISTS `commerce_paymentsources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_paymentsources` ( `id` int(11) NOT NULL AUTO_INCREMENT, `customerId` int(11) NOT NULL, `gatewayId` int(11) NOT NULL, `token` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `response` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fk_bllfsuhakcbrwsnobcgcjxfahcnmkczckwsr` (`customerId`), KEY `fk_wqfndwpxamesyftfcoydulwzugxwzseplkwy` (`gatewayId`), CONSTRAINT `fk_bllfsuhakcbrwsnobcgcjxfahcnmkczckwsr` FOREIGN KEY (`customerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_wqfndwpxamesyftfcoydulwzugxwzseplkwy` FOREIGN KEY (`gatewayId`) REFERENCES `commerce_gateways` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_pdfs` -- DROP TABLE IF EXISTS `commerce_pdfs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_pdfs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `templatePath` varchar(255) NOT NULL, `fileNameFormat` varchar(255) DEFAULT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `isDefault` tinyint(1) NOT NULL DEFAULT '0', `sortOrder` int(11) DEFAULT NULL, `language` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fuzcsrwoawlkqlvkvrdapaoztniwqcmyvkip` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_plans` -- DROP TABLE IF EXISTS `commerce_plans`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_plans` ( `id` int(11) NOT NULL AUTO_INCREMENT, `gatewayId` int(11) DEFAULT NULL, `planInformationId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `reference` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '0', `planData` text, `isArchived` tinyint(1) NOT NULL DEFAULT '0', `dateArchived` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `sortOrder` int(11) DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_csecplwaiicnxnbbepltngnkcnpgskbdnhke` (`handle`), KEY `idx_jdfkvbrsusuiksinxaussotvqhzgjkplqthq` (`gatewayId`), KEY `idx_fnzwuolgsjzulpzawzkvxwhlgdryqbdyxpoo` (`reference`), KEY `fk_gekucbtpvtqrhvmotpfexqrrrhzkrtfivszy` (`planInformationId`), CONSTRAINT `fk_gekucbtpvtqrhvmotpfexqrrrhzkrtfivszy` FOREIGN KEY (`planInformationId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_yzctaehjqueqjmjdokdeiscynaukhuzihnyt` FOREIGN KEY (`gatewayId`) REFERENCES `commerce_gateways` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_products` -- DROP TABLE IF EXISTS `commerce_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_products` ( `id` int(11) NOT NULL, `typeId` int(11) DEFAULT NULL, `taxCategoryId` int(11) NOT NULL, `shippingCategoryId` int(11) NOT NULL, `defaultVariantId` int(11) DEFAULT NULL, `postDate` datetime DEFAULT NULL, `expiryDate` datetime DEFAULT NULL, `promotable` tinyint(1) NOT NULL DEFAULT '0', `availableForPurchase` tinyint(1) NOT NULL DEFAULT '1', `freeShipping` tinyint(1) NOT NULL DEFAULT '1', `defaultSku` varchar(255) DEFAULT NULL, `defaultPrice` decimal(14,4) DEFAULT NULL, `defaultHeight` decimal(14,4) DEFAULT NULL, `defaultLength` decimal(14,4) DEFAULT NULL, `defaultWidth` decimal(14,4) DEFAULT NULL, `defaultWeight` decimal(14,4) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_toaiuzykackcqkcofwafeqetxdhkffgwazfb` (`typeId`), KEY `idx_jetrlbhrywxroubklxidwprprxcdkfoyucck` (`postDate`), KEY `idx_fumzvcngdnqicxgfgpbhetmsbkvpsnsuwmfs` (`expiryDate`), KEY `idx_acjsubezovdyorsefyuvffexzksscdgbiauh` (`taxCategoryId`), KEY `idx_opugvinkfimhieyhulzzoeiebiuiwlriiwly` (`shippingCategoryId`), CONSTRAINT `fk_pnkzmntaomlzbsmozdoczbyzclqylhssxigb` FOREIGN KEY (`shippingCategoryId`) REFERENCES `commerce_shippingcategories` (`id`), CONSTRAINT `fk_qwwhesntngyfpvxlwzhzbfcnvnztxhofqnhx` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_qxuivtqcaazuyhptgcznfqftuhvzlfpxjtov` FOREIGN KEY (`taxCategoryId`) REFERENCES `commerce_taxcategories` (`id`), CONSTRAINT `fk_zlnzmpexgsspjozlfarzwmgzlybzvxvilkmk` FOREIGN KEY (`typeId`) REFERENCES `commerce_producttypes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_producttypes` -- DROP TABLE IF EXISTS `commerce_producttypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_producttypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldLayoutId` int(11) DEFAULT NULL, `variantFieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `hasDimensions` tinyint(1) NOT NULL DEFAULT '0', `hasVariants` tinyint(1) NOT NULL DEFAULT '0', `hasVariantTitleField` tinyint(1) NOT NULL DEFAULT '1', `variantTitleFormat` varchar(255) NOT NULL, `hasProductTitleField` tinyint(1) NOT NULL DEFAULT '1', `productTitleFormat` varchar(255) DEFAULT NULL, `skuFormat` varchar(255) DEFAULT NULL, `descriptionFormat` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_zowncbuntqimgaqlbnqomswdidplnuhgxxdi` (`handle`), KEY `idx_jizofhjoebhvpvegbbjheodfjqmudbqwkcof` (`fieldLayoutId`), KEY `idx_wtgcoweoqunhytvbanpxazvoozviklhuktpt` (`variantFieldLayoutId`), CONSTRAINT `fk_vijctqfttrxzffuhwcdkhgabmnceriuphgeb` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_yoyyfkaftzgavfmwmqrbdjrdzidxvzmglndx` FOREIGN KEY (`variantFieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_producttypes_shippingcategories` -- DROP TABLE IF EXISTS `commerce_producttypes_shippingcategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_producttypes_shippingcategories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `productTypeId` int(11) NOT NULL, `shippingCategoryId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_tioynftagmwejnveyhuuyroqcugibtikzfag` (`productTypeId`,`shippingCategoryId`), KEY `idx_lxhhlfrktevogrdxjiirwgfzqbdqwecearax` (`shippingCategoryId`), CONSTRAINT `fk_jywkcmixyscqpngebenqjvgzmyhoyyujcpox` FOREIGN KEY (`shippingCategoryId`) REFERENCES `commerce_shippingcategories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_sqfyygsxdyigiagchxrgfjtufynrsydbokzt` FOREIGN KEY (`productTypeId`) REFERENCES `commerce_producttypes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_producttypes_sites` -- DROP TABLE IF EXISTS `commerce_producttypes_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_producttypes_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `productTypeId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `uriFormat` text, `template` varchar(500) DEFAULT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_cnauerbtbqskbwkpbxkeyqrxhbosqxdnaeoq` (`productTypeId`,`siteId`), KEY `idx_qcuznzclileaumuhxswcxctzrrwnpdrsaegx` (`siteId`), CONSTRAINT `fk_jlsevdmhlqjlqcxkhhhdvhbskflmkxafnteb` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_qgqcgvnwfmcmpnpjyhqskvlgfkovxmitkxsd` FOREIGN KEY (`productTypeId`) REFERENCES `commerce_producttypes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_producttypes_taxcategories` -- DROP TABLE IF EXISTS `commerce_producttypes_taxcategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_producttypes_taxcategories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `productTypeId` int(11) NOT NULL, `taxCategoryId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_xsogtgqffakrauhkdihlcykoqxfafceztlbn` (`productTypeId`,`taxCategoryId`), KEY `idx_ehcqxbkairhpicuodrropqnfyaqykwnhuytv` (`taxCategoryId`), CONSTRAINT `fk_ggzkikzbttnkrtumfwvliryfllshxxnaxvcn` FOREIGN KEY (`productTypeId`) REFERENCES `commerce_producttypes` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_kzpfimxtmtopemdnthctqgcizhbqekahyopa` FOREIGN KEY (`taxCategoryId`) REFERENCES `commerce_taxcategories` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_purchasables` -- DROP TABLE IF EXISTS `commerce_purchasables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_purchasables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sku` varchar(255) NOT NULL, `price` decimal(14,4) NOT NULL, `description` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_wzukiowzyrukzefxbjgmfcdihctsojtkeusk` (`sku`), CONSTRAINT `fk_picitahpbamqlwyercylywlsjpybpitlocmb` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_sale_categories` -- DROP TABLE IF EXISTS `commerce_sale_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_sale_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `saleId` int(11) NOT NULL, `categoryId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_txyhdnswpahfchrpyeeaoruwwiotzvdrapjz` (`saleId`,`categoryId`), KEY `idx_rtdnqfoqhgfrhjezztdxnlhceowveesoaxzd` (`categoryId`), CONSTRAINT `fk_baiuodckvdedegczaytkpdhmqwmacjdcnsee` FOREIGN KEY (`saleId`) REFERENCES `commerce_sales` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_muitqvykxhsufadjghjepidstfjdaaxukzae` FOREIGN KEY (`categoryId`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_sale_purchasables` -- DROP TABLE IF EXISTS `commerce_sale_purchasables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_sale_purchasables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `saleId` int(11) NOT NULL, `purchasableId` int(11) NOT NULL, `purchasableType` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_gamdmgymgawnrhhldcccxslwnrgzpzzzawqx` (`saleId`,`purchasableId`), KEY `idx_mzgrhtvttmaifoiudmiicjydskcxtterlqhy` (`purchasableId`), CONSTRAINT `fk_pthrnmzdszsuarbmvfpxxnwcsmvfkhfeltoa` FOREIGN KEY (`saleId`) REFERENCES `commerce_sales` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_uqrayyzsvkrbujxlhvkouoktjkorcvsqvjsj` FOREIGN KEY (`purchasableId`) REFERENCES `commerce_purchasables` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_sale_usergroups` -- DROP TABLE IF EXISTS `commerce_sale_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_sale_usergroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `saleId` int(11) NOT NULL, `userGroupId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_qengvlrwiyaprgmegmtksnhiiwovqivhtsdk` (`saleId`,`userGroupId`), KEY `idx_jhzuzcwxqgzkgqiksaqkhwpvvkndcfgmmdrt` (`userGroupId`), CONSTRAINT `fk_xprfdkpgwubgsehotgjvfpozftidmnzybfmi` FOREIGN KEY (`saleId`) REFERENCES `commerce_sales` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_yponbvnukgjpjyalthmexljsanfpyhvrmagp` FOREIGN KEY (`userGroupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_sales` -- DROP TABLE IF EXISTS `commerce_sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_sales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text, `dateFrom` datetime DEFAULT NULL, `dateTo` datetime DEFAULT NULL, `apply` enum('toPercent','toFlat','byPercent','byFlat') NOT NULL, `applyAmount` decimal(14,4) NOT NULL, `allGroups` tinyint(1) NOT NULL DEFAULT '0', `allPurchasables` tinyint(1) NOT NULL DEFAULT '0', `allCategories` tinyint(1) NOT NULL DEFAULT '0', `categoryRelationshipType` enum('element','sourceElement','targetElement') NOT NULL DEFAULT 'element', `enabled` tinyint(1) NOT NULL DEFAULT '1', `ignorePrevious` tinyint(1) NOT NULL DEFAULT '0', `stopProcessing` tinyint(1) NOT NULL DEFAULT '0', `sortOrder` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_shippingcategories` -- DROP TABLE IF EXISTS `commerce_shippingcategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_shippingcategories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_vofaefxrqqevkqwauqfoehujaincwqgrgsuv` (`handle`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_shippingmethods` -- DROP TABLE IF EXISTS `commerce_shippingmethods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_shippingmethods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `isLite` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_rxnhrwtpqqzckwshdzgeqkxapybocgekiqdi` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_shippingrule_categories` -- DROP TABLE IF EXISTS `commerce_shippingrule_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_shippingrule_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `shippingRuleId` int(11) DEFAULT NULL, `shippingCategoryId` int(11) DEFAULT NULL, `condition` enum('allow','disallow','require') NOT NULL, `perItemRate` decimal(14,4) DEFAULT NULL, `weightRate` decimal(14,4) DEFAULT NULL, `percentageRate` decimal(14,4) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_puoowhypseowhqtyxutwppnfixbmvssydxrh` (`shippingRuleId`), KEY `idx_uoasrdfyhmvilalrwbbzgjgpzyocdvfegvpk` (`shippingCategoryId`), CONSTRAINT `fk_likwpmzeutzeggnblctnyswjqwaetllyvtai` FOREIGN KEY (`shippingCategoryId`) REFERENCES `commerce_shippingcategories` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_pqrowvnukqwjjtfkeejndgetviuuctlnbgtk` FOREIGN KEY (`shippingRuleId`) REFERENCES `commerce_shippingrules` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_shippingrules` -- DROP TABLE IF EXISTS `commerce_shippingrules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_shippingrules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `shippingZoneId` int(11) DEFAULT NULL, `methodId` int(11) NOT NULL, `name` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `priority` int(11) NOT NULL DEFAULT '0', `enabled` tinyint(1) NOT NULL DEFAULT '1', `orderConditionFormula` text, `minQty` int(11) NOT NULL DEFAULT '0', `maxQty` int(11) NOT NULL DEFAULT '0', `minTotal` decimal(14,4) NOT NULL DEFAULT '0.0000', `maxTotal` decimal(14,4) NOT NULL DEFAULT '0.0000', `minMaxTotalType` enum('salePrice','salePriceWithDiscounts') NOT NULL DEFAULT 'salePrice', `minWeight` decimal(14,4) NOT NULL DEFAULT '0.0000', `maxWeight` decimal(14,4) NOT NULL DEFAULT '0.0000', `baseRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `perItemRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `weightRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `percentageRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `minRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `maxRate` decimal(14,4) NOT NULL DEFAULT '0.0000', `isLite` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_edpcndbhgyjbiitpzzbeyrycziqmfsbawvui` (`name`), KEY `idx_ezsuyymsnlxmkeoppzmlvsppjnstqcmrfnvs` (`methodId`), KEY `idx_afziumpmobnavugjrgzzhnxkoiplnchswyzh` (`shippingZoneId`), CONSTRAINT `fk_mbfthkwiemfszlaldkwneitamiwzemexjcsi` FOREIGN KEY (`shippingZoneId`) REFERENCES `commerce_shippingzones` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_quxqkmrzqmbynqamjtwlobkxflbdjjhtmwdq` FOREIGN KEY (`methodId`) REFERENCES `commerce_shippingmethods` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_shippingzones` -- DROP TABLE IF EXISTS `commerce_shippingzones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_shippingzones` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `condition` text, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_pmzmepjlkwpvmyoibzzqbessoqsmpraitfig` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_stores` -- DROP TABLE IF EXISTS `commerce_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_stores` ( `id` int(11) NOT NULL AUTO_INCREMENT, `locationAddressId` int(11) DEFAULT NULL, `countries` text, `marketAddressCondition` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_subscriptions` -- DROP TABLE IF EXISTS `commerce_subscriptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_subscriptions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `planId` int(11) DEFAULT NULL, `gatewayId` int(11) DEFAULT NULL, `orderId` int(11) DEFAULT NULL, `reference` varchar(255) NOT NULL, `subscriptionData` text, `trialDays` int(11) NOT NULL, `nextPaymentDate` datetime DEFAULT NULL, `hasStarted` tinyint(1) NOT NULL DEFAULT '1', `isSuspended` tinyint(1) NOT NULL DEFAULT '0', `dateSuspended` datetime DEFAULT NULL, `isCanceled` tinyint(1) NOT NULL DEFAULT '0', `dateCanceled` datetime DEFAULT NULL, `isExpired` tinyint(1) NOT NULL DEFAULT '0', `dateExpired` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_fbgbmlojblthgkmzsbrfijdstekwwbklokvj` (`reference`), KEY `idx_dsnvfqnundjvcglhkxfemwillxoehfaooixh` (`userId`), KEY `idx_dcuybgptwfcvyhseskhissfepjhncxwglroz` (`planId`), KEY `idx_lsuxocgrtpnfkhfbpomzohdmdvmtoshesugc` (`gatewayId`), KEY `idx_kzdwgatlmnekhaxamaipdtkbidekaccukifp` (`nextPaymentDate`), KEY `idx_kmozbmulzjmhavbqdejfitifmzbwiotlfmgd` (`dateCreated`), KEY `idx_qoaryqzlcioywrjamwrdwmrvmeutyghrclan` (`dateExpired`), KEY `fk_fgbbnfeouldfwntmyrhnzkieelggbraaxkvy` (`orderId`), CONSTRAINT `fk_fgbbnfeouldfwntmyrhnzkieelggbraaxkvy` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_hnrdnzoheftpwvzjejujqjlvireuyywdubir` FOREIGN KEY (`userId`) REFERENCES `users` (`id`), CONSTRAINT `fk_ntsshvkoitqbnqqeoeggbygoirxjkqvnogtb` FOREIGN KEY (`gatewayId`) REFERENCES `commerce_gateways` (`id`), CONSTRAINT `fk_rwoenlepkasjvmqvkazwdaogmzwfhxukjqpo` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_vosrspxjjttjyusuzgdmbasrqmnekepqqggq` FOREIGN KEY (`planId`) REFERENCES `commerce_plans` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_taxcategories` -- DROP TABLE IF EXISTS `commerce_taxcategories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_taxcategories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_zrduxrkdgqruwjkyleklvhiwssbdbyblksyn` (`handle`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_taxrates` -- DROP TABLE IF EXISTS `commerce_taxrates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_taxrates` ( `id` int(11) NOT NULL AUTO_INCREMENT, `taxZoneId` int(11) DEFAULT NULL, `isEverywhere` tinyint(1) NOT NULL DEFAULT '1', `taxCategoryId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `code` varchar(255) DEFAULT NULL, `rate` decimal(14,10) NOT NULL, `include` tinyint(1) NOT NULL DEFAULT '0', `isVat` tinyint(1) NOT NULL DEFAULT '0', `removeIncluded` tinyint(1) NOT NULL DEFAULT '0', `removeVatIncluded` tinyint(1) NOT NULL DEFAULT '0', `taxable` enum('purchasable','price','shipping','price_shipping','order_total_shipping','order_total_price') NOT NULL, `isLite` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_whozdnawyofrbzmqkcddsunwllfywjlbifnr` (`taxZoneId`), KEY `idx_pvgpruvowyljtiozbacomfwlyksqzbxyoqah` (`taxCategoryId`), CONSTRAINT `fk_bnikqayygyqssetmodrduhmypjmhspisbraz` FOREIGN KEY (`taxCategoryId`) REFERENCES `commerce_taxcategories` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_zahyopnvqlrbngxjfnjznzucbmcpvdmjiuss` FOREIGN KEY (`taxZoneId`) REFERENCES `commerce_taxzones` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_taxzones` -- DROP TABLE IF EXISTS `commerce_taxzones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_taxzones` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `condition` text, `default` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_ejioptcazbrtvnekmvezbrfyqwerbjbgsevl` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_transactions` -- DROP TABLE IF EXISTS `commerce_transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_transactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `orderId` int(11) NOT NULL, `parentId` int(11) DEFAULT NULL, `gatewayId` int(11) DEFAULT NULL, `userId` int(11) DEFAULT NULL, `hash` varchar(32) DEFAULT NULL, `type` enum('authorize','capture','purchase','refund') NOT NULL, `amount` decimal(14,4) DEFAULT NULL, `paymentAmount` decimal(14,4) DEFAULT NULL, `currency` varchar(255) DEFAULT NULL, `paymentCurrency` varchar(255) DEFAULT NULL, `paymentRate` decimal(14,4) DEFAULT NULL, `status` enum('pending','redirect','success','failed','processing') NOT NULL, `reference` varchar(255) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `message` text, `note` mediumtext, `response` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_sjpwgthmoshrmyyltyhgootxgriqqafkiazb` (`parentId`), KEY `idx_vjpflixlkcsidykhratxexxfvqemehzwxlnj` (`gatewayId`), KEY `idx_ynvlqcjseohpytitkrvxuskkahmspqjzjszg` (`orderId`), KEY `idx_acgajywchrlewaxmpijgxwsqbmstoeclxqgc` (`userId`), CONSTRAINT `fk_drtptdvkyzpmxggqrzldbqtnucqmejgjqydn` FOREIGN KEY (`orderId`) REFERENCES `commerce_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_hejcanypzomscktbkgohrlzdvtdmeoowlahx` FOREIGN KEY (`userId`) REFERENCES `elements` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_qfbxnmpjesijqgidpyfebqllmsjdlcekxbqc` FOREIGN KEY (`gatewayId`) REFERENCES `commerce_gateways` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_ycmvzcpxqvdoqingabvghjyzqsqvlcrrqoyr` FOREIGN KEY (`parentId`) REFERENCES `commerce_transactions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `commerce_variants` -- DROP TABLE IF EXISTS `commerce_variants`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_variants` ( `id` int(11) NOT NULL, `productId` int(11) DEFAULT NULL, `sku` varchar(255) NOT NULL, `isDefault` tinyint(1) NOT NULL DEFAULT '0', `price` decimal(14,4) NOT NULL, `sortOrder` int(11) DEFAULT NULL, `width` decimal(14,4) DEFAULT NULL, `height` decimal(14,4) DEFAULT NULL, `length` decimal(14,4) DEFAULT NULL, `weight` decimal(14,4) DEFAULT NULL, `stock` int(11) NOT NULL DEFAULT '0', `hasUnlimitedStock` tinyint(1) NOT NULL DEFAULT '0', `minQty` int(11) DEFAULT NULL, `maxQty` int(11) DEFAULT NULL, `deletedWithProduct` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_dogkclrrugjonpvwfuxobkupprwicibazugz` (`sku`), KEY `idx_rbgtamejadwblyhihvonbyglyddkibbdswjp` (`productId`), CONSTRAINT `fk_fltdgjtvixmsvmzejluxziygnlrnldxhoibh` FOREIGN KEY (`productId`) REFERENCES `commerce_products` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_jfwxhpwsrjvhbmrvujirnfuhzlkpiwqaygsw` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `content` -- DROP TABLE IF EXISTS `content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content` ( `id` int(11) NOT NULL AUTO_INCREMENT, `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `title` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', `field_orderReference_nvjwogpa` text, `field_requirePrescription_islbuzpo` tinyint(1) DEFAULT NULL, `field_excerpt_ceuswxql` text, `field_description_xhrbnvew` text, `field_productTags_xoknbofz` text, PRIMARY KEY (`id`), UNIQUE KEY `idx_hcqkbytvpycnmfpulggphvkwbfawneuwcbor` (`elementId`,`siteId`), KEY `idx_zlgruwpdpsaezdhczkvjwwmjvsskdfihixrl` (`siteId`), KEY `idx_otjsksxlgifqqdytzggedgzldsvrxbkpiqbr` (`title`), CONSTRAINT `fk_dnqqfyzqgtrylzmffricwkloxsljqhpshnbf` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_isxucasctrowovdxizolukpkznvavsmhueyj` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=364 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `content_buddy_prompt` -- DROP TABLE IF EXISTS `content_buddy_prompt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content_buddy_prompt` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) NOT NULL, `template` varchar(255) NOT NULL, `active` tinyint(1) NOT NULL DEFAULT '1', `replaceText` int(11) NOT NULL DEFAULT '1', `wordsType` int(11) NOT NULL DEFAULT '1', `wordsNumber` int(11) NOT NULL, `wordsMultiplier` float NOT NULL, `temperature` float NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `craftidtokens` -- DROP TABLE IF EXISTS `craftidtokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `craftidtokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `accessToken` text NOT NULL, `expiryDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `fk_ztieozttxquapkrygiaenfqfhoriaqjtncst` (`userId`), CONSTRAINT `fk_ztieozttxquapkrygiaenfqfhoriaqjtncst` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `deprecationerrors` -- DROP TABLE IF EXISTS `deprecationerrors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `deprecationerrors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `key` varchar(255) NOT NULL, `fingerprint` varchar(255) NOT NULL, `lastOccurrence` datetime NOT NULL, `file` varchar(255) NOT NULL, `line` smallint(6) unsigned DEFAULT NULL, `message` text, `traces` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_xknvcigsnbqffvctldnbkjikfnjpctwmzxsn` (`key`,`fingerprint`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `drafts` -- DROP TABLE IF EXISTS `drafts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `drafts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `canonicalId` int(11) DEFAULT NULL, `creatorId` int(11) DEFAULT NULL, `provisional` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL, `notes` text, `trackChanges` tinyint(1) NOT NULL DEFAULT '0', `dateLastMerged` datetime DEFAULT NULL, `saved` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `idx_sfesiupglpuzshswsayakjsyqdidvvnarqil` (`creatorId`,`provisional`), KEY `idx_gzjpkhafgltmjkubyxgogsqwqxrzkedlcerk` (`saved`), KEY `fk_fofotxqzcqysombkmqsprlqhatckbbckogss` (`canonicalId`), CONSTRAINT `fk_bbfhennkrjynikfkrfjesjvwoztcjzfmgrdg` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_fofotxqzcqysombkmqsprlqhatckbbckogss` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `elements` -- DROP TABLE IF EXISTS `elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `canonicalId` int(11) DEFAULT NULL, `draftId` int(11) DEFAULT NULL, `revisionId` int(11) DEFAULT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `type` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `archived` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateLastMerged` datetime DEFAULT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ugqdwuaelfsrjbqynkaujyawwmqzmgqnmvrx` (`dateDeleted`), KEY `idx_pbjehftkhmfzhkhhfihlyeyirovxaogcgoyy` (`fieldLayoutId`), KEY `idx_qytqfksqlbsikhkrezvsouktavowmnivphlr` (`type`), KEY `idx_kxltugimqaaelffflmevfihniibidsapqmjx` (`enabled`), KEY `idx_qwiviktutcrarpzqwuikaydqrpuyssapizrk` (`archived`,`dateCreated`), KEY `idx_wvptgfzpuaflrrnokiwqudqdcuzidxhslmdr` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`), KEY `idx_rojrkvsgieylgljvzxufcyrcivbtqqvlwful` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`,`enabled`), KEY `fk_xrtffqihrdtbanqgzcceierahhestdmjomhx` (`canonicalId`), KEY `fk_fphfnzqgfuymeiiayhiskzmljonubauqdgnt` (`draftId`), KEY `fk_mpvjloapbrjurhxydpfhqqgyklxmjekrclrr` (`revisionId`), CONSTRAINT `fk_cqdsdrmlvmrkkjcsgcebdscxepfkelyfrhzc` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_fphfnzqgfuymeiiayhiskzmljonubauqdgnt` FOREIGN KEY (`draftId`) REFERENCES `drafts` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_mpvjloapbrjurhxydpfhqqgyklxmjekrclrr` FOREIGN KEY (`revisionId`) REFERENCES `revisions` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_xrtffqihrdtbanqgzcceierahhestdmjomhx` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `elements_sites` -- DROP TABLE IF EXISTS `elements_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `elements_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `elementId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `slug` varchar(255) DEFAULT NULL, `uri` varchar(255) DEFAULT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_nvyhydqsgmcypxjxbuaktgcmjtvtdvbyoksf` (`elementId`,`siteId`), KEY `idx_pkxdajsudpmvhatbwqxdewylbqkbpfovcpeh` (`siteId`), KEY `idx_okwezzxhltheobdyvebcqttmnqkhbacvesxy` (`slug`,`siteId`), KEY `idx_ybydpzisxejqdotgzzupgmbpjpkqsuppmvnr` (`enabled`), KEY `idx_ktkckxhxvsydpzwyriacgmgvqljifotprela` (`uri`,`siteId`), CONSTRAINT `fk_ksbyxdrpfhgrtmfmnkwtkrsprtzqruyevbjq` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_tfixnpbaioddozflpblhnohywdermqpyxusr` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `entries` -- DROP TABLE IF EXISTS `entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `entries` ( `id` int(11) NOT NULL, `sectionId` int(11) NOT NULL, `parentId` int(11) DEFAULT NULL, `typeId` int(11) NOT NULL, `authorId` int(11) DEFAULT NULL, `postDate` datetime DEFAULT NULL, `expiryDate` datetime DEFAULT NULL, `deletedWithEntryType` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_tiobwynbddjllfnkzuhwyahsvdqkrwttmufa` (`postDate`), KEY `idx_hmdgspszgpmqavhswlgdpifiincqsvisbllm` (`expiryDate`), KEY `idx_ewuurzvaawsyfnysrwpnifgvlhzbxktbegtd` (`authorId`), KEY `idx_ewdlqgipwnlcabikmmtvmicwfanwjaqopopt` (`sectionId`), KEY `idx_ftkqsnoppjgfrsaulmcikdxozghwuilttflx` (`typeId`), KEY `fk_scaagasconkctsighymkqurkhvdinslmwxgi` (`parentId`), CONSTRAINT `fk_cexslxmiebuhktsxzydrrzffmkemotodcomk` FOREIGN KEY (`authorId`) REFERENCES `users` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_ghmmyxbstgiajqlinyofjmpnmrdfvqxultvd` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_ldhqpapwmkhfbndiesizydjfqbgqskekaxbr` FOREIGN KEY (`typeId`) REFERENCES `entrytypes` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_mvqjvsyzbhtipdojqlgurjgjtwsebbsfbbih` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_scaagasconkctsighymkqurkhvdinslmwxgi` FOREIGN KEY (`parentId`) REFERENCES `entries` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `entrytypes` -- DROP TABLE IF EXISTS `entrytypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `entrytypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sectionId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `hasTitleField` tinyint(1) NOT NULL DEFAULT '1', `titleTranslationMethod` varchar(255) NOT NULL DEFAULT 'site', `titleTranslationKeyFormat` text, `titleFormat` varchar(255) DEFAULT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_utzokqxkxajjeacptvddprnhgevabavmdmqu` (`name`,`sectionId`), KEY `idx_hmvdezbvaxhcvtodrjhweirxcpmbytijxkca` (`handle`,`sectionId`), KEY `idx_hjpczsnvjekjrziqlwilhbchlfsiqjbgzryw` (`sectionId`), KEY `idx_xtxykgtorsjsszdnigxupqibrtiyynuomenf` (`fieldLayoutId`), KEY `idx_wgcuscyanryvpkfufenqislgyapbhmgfggmh` (`dateDeleted`), CONSTRAINT `fk_lwwkxmvfawjyidypcmqipiifhgobyzbbhbgi` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_urgxkswrsikhnopaopbrmbswkkqvtyweiegy` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fieldgroups` -- DROP TABLE IF EXISTS `fieldgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldgroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_yaoidhyhfqnwfskuwfubzzovechvncpmnqhh` (`name`), KEY `idx_dnyxjdzzwymrgsxgvtlzzlvomxmyldfgdsbk` (`dateDeleted`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fieldlayoutfields` -- DROP TABLE IF EXISTS `fieldlayoutfields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayoutfields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `layoutId` int(11) NOT NULL, `tabId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_mrzfeojdzmvaxbbbvwwkskavurqtbycgcsta` (`layoutId`,`fieldId`), KEY `idx_bbyjdytqjrogfriyhexetkzmxidydofudzxa` (`sortOrder`), KEY `idx_bbvexcvklknsllcmhnphwdewvqtdxgyhicap` (`tabId`), KEY `idx_oqapyejuxjrgubmzlbhdymqfnvgsvyoocbbr` (`fieldId`), CONSTRAINT `fk_dptkopzghkyphdmzqbbmodofjtuorirhuyyx` FOREIGN KEY (`tabId`) REFERENCES `fieldlayouttabs` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_igamhnqjbdjsptmjzegaayofuamivdupcaod` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_khnrcunyiylnnfcjhdwuyzsjkyxtkdbqqsoh` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fieldlayouts` -- DROP TABLE IF EXISTS `fieldlayouts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayouts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_voblbjzulnacbfkvdaecnbonqylzzhapzxzx` (`dateDeleted`), KEY `idx_kralsbsfzodnwftjhxlrepqkuhnnlyhjanyt` (`type`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fieldlayouttabs` -- DROP TABLE IF EXISTS `fieldlayouttabs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fieldlayouttabs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `layoutId` int(11) NOT NULL, `name` varchar(255) NOT NULL, `settings` text, `elements` text, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ofumfbjxngjadjtwykgicurrwsldkgihgasp` (`sortOrder`), KEY `idx_rahlbixryjhjhcoxvndjrhzeowiyylaoeneb` (`layoutId`), CONSTRAINT `fk_feovmugsfcsjjzsjwruusssedjyfcamtpwso` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fields` -- DROP TABLE IF EXISTS `fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(64) NOT NULL, `context` varchar(255) NOT NULL DEFAULT 'global', `columnSuffix` char(8) DEFAULT NULL, `instructions` text, `searchable` tinyint(1) NOT NULL DEFAULT '1', `translationMethod` varchar(255) NOT NULL DEFAULT 'none', `translationKeyFormat` text, `type` varchar(255) NOT NULL, `settings` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_uexkzzcvimqnwcfrwjrmikgnxylmkelmpsfw` (`handle`,`context`), KEY `idx_nifnvsahcmhhuykgjrkluxphxeqmsrxhcnfc` (`groupId`), KEY `idx_qruojolvnsglqgitogylqgbvsqfwwkszient` (`context`), CONSTRAINT `fk_rmnoglftizlylrwboqmyrwkpspevhwhesueq` FOREIGN KEY (`groupId`) REFERENCES `fieldgroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `globalsets` -- DROP TABLE IF EXISTS `globalsets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `globalsets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fksrzxbxoneapskwixngpepnprjrrltngqpw` (`name`), KEY `idx_pvojacokgxxcrpqfbzibxfpwlkwamqabqrhr` (`handle`), KEY `idx_zdwttdspywotptqgxxbdglawzfpyeuorqjym` (`fieldLayoutId`), KEY `idx_fqlwgpowbwfrfgubbpklcmpmycjtozksaalz` (`sortOrder`), CONSTRAINT `fk_wkgpsjhtuvzozbtisdkmfsrxaqpqdcizbxur` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_wogjwiwhezbctjtsroptydowqsaxcpzbohub` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `gqlschemas` -- DROP TABLE IF EXISTS `gqlschemas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gqlschemas` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `scope` text, `isPublic` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `gqltokens` -- DROP TABLE IF EXISTS `gqltokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gqltokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `accessToken` varchar(255) NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '1', `expiryDate` datetime DEFAULT NULL, `lastUsed` datetime DEFAULT NULL, `schemaId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_qqfbiwdpatydzyiqqyrmurtnquyoavdjsdru` (`accessToken`), UNIQUE KEY `idx_hphhysfhpvqmhtvcrfqhvvenyvvyeyhyzzbc` (`name`), KEY `fk_xldahimrtxbtsozqwublfcasxlvpioclovbo` (`schemaId`), CONSTRAINT `fk_xldahimrtxbtsozqwublfcasxlvpioclovbo` FOREIGN KEY (`schemaId`) REFERENCES `gqlschemas` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `imagetransformindex` -- DROP TABLE IF EXISTS `imagetransformindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imagetransformindex` ( `id` int(11) NOT NULL AUTO_INCREMENT, `assetId` int(11) NOT NULL, `transformer` varchar(255) DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `format` varchar(255) DEFAULT NULL, `transformString` varchar(255) NOT NULL, `fileExists` tinyint(1) NOT NULL DEFAULT '0', `inProgress` tinyint(1) NOT NULL DEFAULT '0', `error` tinyint(1) NOT NULL DEFAULT '0', `dateIndexed` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_zjxjszytvzvzxxlurrpmpveupoqjcaqzhuig` (`assetId`,`transformString`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `imagetransforms` -- DROP TABLE IF EXISTS `imagetransforms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imagetransforms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `mode` enum('stretch','fit','crop','letterbox') NOT NULL DEFAULT 'crop', `position` enum('top-left','top-center','top-right','center-left','center-center','center-right','bottom-left','bottom-center','bottom-right') NOT NULL DEFAULT 'center-center', `width` int(11) unsigned DEFAULT NULL, `height` int(11) unsigned DEFAULT NULL, `format` varchar(255) DEFAULT NULL, `quality` int(11) DEFAULT NULL, `interlace` enum('none','line','plane','partition') NOT NULL DEFAULT 'none', `fill` varchar(11) DEFAULT NULL, `upscale` tinyint(1) NOT NULL DEFAULT '1', `parameterChangeTime` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_elqootegobtjnzrnhspqthwxafyrsodtakol` (`name`), KEY `idx_xvaimrvkqbeovjlarbvwmommlsosvytxgnup` (`handle`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `info` -- DROP TABLE IF EXISTS `info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `version` varchar(50) NOT NULL, `schemaVersion` varchar(15) NOT NULL, `maintenance` tinyint(1) NOT NULL DEFAULT '0', `configVersion` char(12) NOT NULL DEFAULT '000000000000', `fieldVersion` char(12) NOT NULL DEFAULT '000000000000', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `matrixblocks` -- DROP TABLE IF EXISTS `matrixblocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `matrixblocks` ( `id` int(11) NOT NULL, `primaryOwnerId` int(11) NOT NULL, `fieldId` int(11) NOT NULL, `typeId` int(11) NOT NULL, `deletedWithOwner` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_gevpuwapwaolzxegvktelknefgerunejdpds` (`primaryOwnerId`), KEY `idx_yxutwpeicvcetakgpzmgbdvsxvahxsigisfz` (`fieldId`), KEY `idx_wnunisiilqwabvpymscsomywnjakestqtxqj` (`typeId`), CONSTRAINT `fk_bfvbrgkplppwjgjybddkwdzgdzglwkbqxkue` FOREIGN KEY (`typeId`) REFERENCES `matrixblocktypes` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_bmmohcayyngzmoneazabguhxtqwldofjlglz` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_guhjvxyztustjursxwbykxfyfgvscpmakyim` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_vtoofleitxbqqrkxqoelmluhuvugxrboaztg` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `matrixblocks_owners` -- DROP TABLE IF EXISTS `matrixblocks_owners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `matrixblocks_owners` ( `blockId` int(11) NOT NULL, `ownerId` int(11) NOT NULL, `sortOrder` smallint(6) unsigned NOT NULL, PRIMARY KEY (`blockId`,`ownerId`), KEY `fk_idxxzctqgsxupryljirlvozymgxvliiratci` (`ownerId`), CONSTRAINT `fk_idxxzctqgsxupryljirlvozymgxvliiratci` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_swlsygsfezdycxandswwxdxfsvauncfmlstn` FOREIGN KEY (`blockId`) REFERENCES `matrixblocks` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `matrixblocktypes` -- DROP TABLE IF EXISTS `matrixblocktypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `matrixblocktypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldId` int(11) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_afebawioofrtewwcbakcxuwfmdjycahhxjyy` (`name`,`fieldId`), KEY `idx_wcviebtqilpibqkvxpczfrgpdixlyatejbwv` (`handle`,`fieldId`), KEY `idx_jviphxlkjndqeadkpnftrjbqzuolhinuuxjs` (`fieldId`), KEY `idx_rcvlkmbssworsbqxrnbufusfwdygcvgqhzwm` (`fieldLayoutId`), CONSTRAINT `fk_phgsyzrfcgiyzimcgduqbltvllhzwkizpodu` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL, CONSTRAINT `fk_wqjoavoogsajojbnafefqqjdrrjrzfbihubk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `migrations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `track` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `applyTime` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_wzpddrqdkminlrxgflvxsqmlwkelkaxzmppy` (`track`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `plugins` -- DROP TABLE IF EXISTS `plugins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugins` ( `id` int(11) NOT NULL AUTO_INCREMENT, `handle` varchar(255) NOT NULL, `version` varchar(255) NOT NULL, `schemaVersion` varchar(255) NOT NULL, `installDate` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_xqewtsmbqefiwkvhjieqprntqmyzxomnksjc` (`handle`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `projectconfig` -- DROP TABLE IF EXISTS `projectconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `projectconfig` ( `path` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`path`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `queue` -- DROP TABLE IF EXISTS `queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `queue` ( `id` int(11) NOT NULL AUTO_INCREMENT, `channel` varchar(255) NOT NULL DEFAULT 'queue', `job` longblob NOT NULL, `description` text, `timePushed` int(11) NOT NULL, `ttr` int(11) NOT NULL, `delay` int(11) NOT NULL DEFAULT '0', `priority` int(11) unsigned NOT NULL DEFAULT '1024', `dateReserved` datetime DEFAULT NULL, `timeUpdated` int(11) DEFAULT NULL, `progress` smallint(6) NOT NULL DEFAULT '0', `progressLabel` varchar(255) DEFAULT NULL, `attempt` int(11) DEFAULT NULL, `fail` tinyint(1) DEFAULT '0', `dateFailed` datetime DEFAULT NULL, `error` text, PRIMARY KEY (`id`), KEY `idx_gkambqhixeiqfuzcjmblrmsjbwbxkpwygdyv` (`channel`,`fail`,`timeUpdated`,`timePushed`), KEY `idx_lfkgyicylfmnftybawnhhpjdmnzucspqrzyv` (`channel`,`fail`,`timeUpdated`,`delay`) ) ENGINE=InnoDB AUTO_INCREMENT=2619 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `relations` -- DROP TABLE IF EXISTS `relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `relations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldId` int(11) NOT NULL, `sourceId` int(11) NOT NULL, `sourceSiteId` int(11) DEFAULT NULL, `targetId` int(11) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_fblpzokrbqhdykwlyncslmasqsjnyqzphakd` (`fieldId`,`sourceId`,`sourceSiteId`,`targetId`), KEY `idx_yljsqjkrpjjmzgoowxwhzefwtvryzidlkqtx` (`sourceId`), KEY `idx_yjyplomwujuoiildrlljtneddklpcumvuqax` (`targetId`), KEY `idx_lzcqeswyxfsjwerfipfelhlxuyxckbqbryaf` (`sourceSiteId`), CONSTRAINT `fk_wlxzzpeuqvidlhohmrubhllphxbjsnfumnjp` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_wwofdiapnklvxfremerrqrqvqakqxlnkdztw` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_yoboazdxmztzogrjeikbdurmwwcmqpjadkak` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `resourcepaths` -- DROP TABLE IF EXISTS `resourcepaths`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resourcepaths` ( `hash` varchar(255) NOT NULL, `path` varchar(255) NOT NULL, PRIMARY KEY (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `revisions` -- DROP TABLE IF EXISTS `revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revisions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `canonicalId` int(11) NOT NULL, `creatorId` int(11) DEFAULT NULL, `num` int(11) NOT NULL, `notes` text, PRIMARY KEY (`id`), UNIQUE KEY `idx_eozhvsnodbxixwaqtmqyioqpdojikjztvvlq` (`canonicalId`,`num`), KEY `fk_qzmanqkvauxambylqytxqitshrlihcljxriq` (`creatorId`), CONSTRAINT `fk_llcdkwpajdcurwmnbvqdpzhtiketvvimhdni` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_qzmanqkvauxambylqytxqitshrlihcljxriq` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `searchindex` -- DROP TABLE IF EXISTS `searchindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `searchindex` ( `elementId` int(11) NOT NULL, `attribute` varchar(25) NOT NULL, `fieldId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `keywords` text NOT NULL, PRIMARY KEY (`elementId`,`attribute`,`fieldId`,`siteId`), FULLTEXT KEY `idx_atebvfvgsgrvewybqjlrmmfktawhfywwbxno` (`keywords`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sections` -- DROP TABLE IF EXISTS `sections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sections` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `type` enum('single','channel','structure') NOT NULL DEFAULT 'channel', `enableVersioning` tinyint(1) NOT NULL DEFAULT '0', `propagationMethod` varchar(255) NOT NULL DEFAULT 'all', `defaultPlacement` enum('beginning','end') NOT NULL DEFAULT 'end', `previewTargets` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_xrfmdcflgbsvvqzesyiqkhlizhifbgukrdul` (`handle`), KEY `idx_kaxumjonajpozadhlmvnwxnokqsddvzvvctb` (`name`), KEY `idx_hplhkufcrkvxpviicszpulehgchwexpanpwi` (`structureId`), KEY `idx_ybrnxifxmohvttxqqkryapqxtyhekgqkuhpt` (`dateDeleted`), CONSTRAINT `fk_owodblefikkkmuvjcpsaywemlvzcmfzkaijt` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sections_sites` -- DROP TABLE IF EXISTS `sections_sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sections_sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sectionId` int(11) NOT NULL, `siteId` int(11) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '1', `uriFormat` text, `template` varchar(500) DEFAULT NULL, `enabledByDefault` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_glqdefrbqstgmkamuedvsiezohjyohdymzuy` (`sectionId`,`siteId`), KEY `idx_rqjnkjtdicaeqfbmyexioinpziyhsntckkdx` (`siteId`), CONSTRAINT `fk_ntesfbmbmahhzccheyirgngfrptgpujdlkev` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_owkofkbsfrdrhifuxxqxlsupfyqzrjtqxbmv` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `seo_redirects` -- DROP TABLE IF EXISTS `seo_redirects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seo_redirects` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uri` varchar(255) NOT NULL, `to` varchar(255) NOT NULL, `type` enum('301','302') NOT NULL, `siteId` int(11) DEFAULT NULL, `order` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `seo_sitemap` -- DROP TABLE IF EXISTS `seo_sitemap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seo_sitemap` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group` enum('sections','categories','productTypes','customUrls') NOT NULL, `url` varchar(255) NOT NULL, `frequency` enum('always','hourly','daily','weekly','monthly','yearly','never') NOT NULL, `priority` float NOT NULL, `enabled` tinyint(1) NOT NULL DEFAULT '0', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sequences` -- DROP TABLE IF EXISTS `sequences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sequences` ( `name` varchar(255) NOT NULL, `next` int(11) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sessions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `token` char(100) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_bdksvtisckibqrwpwdirdxvuucsfogelotil` (`uid`), KEY `idx_tuiidjtpcvpyapwxlfvqjzutrsjgfmzysqlo` (`token`), KEY `idx_kxzdzslnywsuuzfxylyenswftsctitiwjhik` (`dateUpdated`), KEY `idx_joihnqxionjokzdixozvecyaygbwxyakgbmn` (`userId`), CONSTRAINT `fk_iuvrrwudcfnjqfzlsurhgchzolaqhmfoeyhr` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shunnedmessages` -- DROP TABLE IF EXISTS `shunnedmessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shunnedmessages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `message` varchar(255) NOT NULL, `expiryDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_mnodzclxxburmkjuabfsluijddjyghjgntdg` (`userId`,`message`), CONSTRAINT `fk_goqcogbpkvqyckwuxgkrbvqezhadqjudgygl` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sitegroups` -- DROP TABLE IF EXISTS `sitegroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sitegroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_poamxxxdazloecvbwpemlvkvywfvrnzkrydh` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sites` -- DROP TABLE IF EXISTS `sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sites` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `primary` tinyint(1) NOT NULL, `enabled` varchar(255) NOT NULL DEFAULT 'true', `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `language` varchar(12) NOT NULL, `hasUrls` tinyint(1) NOT NULL DEFAULT '0', `baseUrl` varchar(255) DEFAULT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_aeieknrcwhavvxqolbbfdbkdrxormozidlpk` (`dateDeleted`), KEY `idx_nethfspjbqmupwxdpwfnbzpabjtwupklptzw` (`handle`), KEY `idx_jbgciwtbcvvpczkajrwdifukykqeutmkcagf` (`sortOrder`), KEY `fk_fvcmdrphghqvetbldshtsdaigfgpjxbndlii` (`groupId`), CONSTRAINT `fk_fvcmdrphghqvetbldshtsdaigfgpjxbndlii` FOREIGN KEY (`groupId`) REFERENCES `sitegroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `structureelements` -- DROP TABLE IF EXISTS `structureelements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `structureelements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `structureId` int(11) NOT NULL, `elementId` int(11) DEFAULT NULL, `root` int(11) unsigned DEFAULT NULL, `lft` int(11) unsigned NOT NULL, `rgt` int(11) unsigned NOT NULL, `level` smallint(6) unsigned NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_bjhvmjindqckxnugwwozmlfwkgssnqmgtenk` (`structureId`,`elementId`), KEY `idx_wchhvqbrunfdhwihifwpykraqyojbxwcadpg` (`root`), KEY `idx_xvgmrreucjneyqnvnewvdubphgvvcycaxcaf` (`lft`), KEY `idx_jclozzrjxzquqihwaxeewvjfpqivmmcuksuy` (`rgt`), KEY `idx_cmkmqcuvvunfzuvzzvfetjnbseonlrdhblxp` (`level`), KEY `idx_dfmrcghfnsrkyeqzwkqxbmogsovgntqwnafe` (`elementId`), CONSTRAINT `fk_dldqbsorwmtiykfyvcpvsgfbxlrjqovzqujt` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `structures` -- DROP TABLE IF EXISTS `structures`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `structures` ( `id` int(11) NOT NULL AUTO_INCREMENT, `maxLevels` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_akgjsoxddoookdviehfrskvxgawoqeswnxab` (`dateDeleted`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `systemmessages` -- DROP TABLE IF EXISTS `systemmessages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `systemmessages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `language` varchar(255) NOT NULL, `key` varchar(255) NOT NULL, `subject` text NOT NULL, `body` text NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_fmvnchdtiasncjttojvaslgtbmzfbbgfcplo` (`key`,`language`), KEY `idx_jwfwomegenoxxdgirrpvcsgsmeffhpaoaohn` (`language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taggroups` -- DROP TABLE IF EXISTS `taggroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taggroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `fieldLayoutId` int(11) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_xrcsqcltotsqaoeavgmwelxrjovlotsghllv` (`name`), KEY `idx_mpklnauyaxcutoxgzeuwrgetuvoihajzuupd` (`handle`), KEY `idx_txlkivvzqcrntaguzftfcwdlqvdayuhwxjbf` (`dateDeleted`), KEY `fk_gljtifjkrnxvmdctfbndsdcqxzuwwydodaoq` (`fieldLayoutId`), CONSTRAINT `fk_gljtifjkrnxvmdctfbndsdcqxzuwwydodaoq` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tags` ( `id` int(11) NOT NULL, `groupId` int(11) NOT NULL, `deletedWithGroup` tinyint(1) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_hxexpuvwmectodfayibfxlrbaicrljovmxhg` (`groupId`), CONSTRAINT `fk_cdghledtruduwgocjcniugauglsoybxtmoje` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_uxixzjeepdyladesxkkwykgkleqqpyuqmtil` FOREIGN KEY (`groupId`) REFERENCES `taggroups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tokens` -- DROP TABLE IF EXISTS `tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tokens` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token` char(32) NOT NULL, `route` text, `usageLimit` tinyint(3) unsigned DEFAULT NULL, `usageCount` tinyint(3) unsigned DEFAULT NULL, `expiryDate` datetime NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_zrlirrblmdcpctkmiftrnkowrjbbcpnhndqn` (`token`), KEY `idx_ctfdawbqyxdcgeylqwtycwauplevztdfjyvg` (`expiryDate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `usergroups` -- DROP TABLE IF EXISTS `usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usergroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `description` text, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_pqrouppbanmlgumbbvpkwxctyuikuahxuaxb` (`handle`), KEY `idx_ynjvhilryghhcsxhuarcdehwvjbplntlpgfw` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `usergroups_users` -- DROP TABLE IF EXISTS `usergroups_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `usergroups_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupId` int(11) NOT NULL, `userId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_nfyutikwtgswcmfgcdbusoqiykgfijgpmocc` (`groupId`,`userId`), KEY `idx_odeetgorcviuppkknheemlnwjkjwkyvpripa` (`userId`), CONSTRAINT `fk_dnyblmtzxszrpefxqoaytefzyduxzcvzybzo` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_ipzfyivyxwpoiswdmunhtrymivtccpdriobl` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `userpermissions` -- DROP TABLE IF EXISTS `userpermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_bhsrfikhkijqsxlrbisbvuwqfitqwjnxxzto` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `userpermissions_usergroups` -- DROP TABLE IF EXISTS `userpermissions_usergroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions_usergroups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permissionId` int(11) NOT NULL, `groupId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_qkjwdqavynkaimveihviclozzesdipkhybls` (`permissionId`,`groupId`), KEY `idx_txiqoylwgpieexfnnfurymoqjtbjxvoiqdbf` (`groupId`), CONSTRAINT `fk_qoenpjdnfokhpssodncurbprncksmtfsouhp` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_tdkbqoizerurhxynuczbfpiszjwrgxjnysst` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `userpermissions_users` -- DROP TABLE IF EXISTS `userpermissions_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpermissions_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `permissionId` int(11) NOT NULL, `userId` int(11) NOT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_jlxvmewuucrrhyblwmrqtbwhxmjfnbxtjpym` (`permissionId`,`userId`), KEY `idx_agkheidactgsgryjfslwdwoeccadheuakhia` (`userId`), CONSTRAINT `fk_csnkyzgcytvqnghdnmhltbenshjcpcungqof` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_wabchxglsetvcjlvyjyfrtfgvwggeewuzjfx` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `userpreferences` -- DROP TABLE IF EXISTS `userpreferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userpreferences` ( `userId` int(11) NOT NULL AUTO_INCREMENT, `preferences` text, PRIMARY KEY (`userId`), CONSTRAINT `fk_rdixdfuagwsdnblfdgbhsrmsfyvnpjlizjlh` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=246 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` int(11) NOT NULL, `photoId` int(11) DEFAULT NULL, `active` tinyint(1) NOT NULL DEFAULT '0', `pending` tinyint(1) NOT NULL DEFAULT '0', `locked` tinyint(1) NOT NULL DEFAULT '0', `suspended` tinyint(1) NOT NULL DEFAULT '0', `admin` tinyint(1) NOT NULL DEFAULT '0', `username` varchar(255) DEFAULT NULL, `fullName` varchar(255) DEFAULT NULL, `firstName` varchar(255) DEFAULT NULL, `lastName` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `lastLoginDate` datetime DEFAULT NULL, `lastLoginAttemptIp` varchar(45) DEFAULT NULL, `invalidLoginWindowStart` datetime DEFAULT NULL, `invalidLoginCount` tinyint(3) unsigned DEFAULT NULL, `lastInvalidLoginDate` datetime DEFAULT NULL, `lockoutDate` datetime DEFAULT NULL, `hasDashboard` tinyint(1) NOT NULL DEFAULT '0', `verificationCode` varchar(255) DEFAULT NULL, `verificationCodeIssuedDate` datetime DEFAULT NULL, `unverifiedEmail` varchar(255) DEFAULT NULL, `passwordResetRequired` tinyint(1) NOT NULL DEFAULT '0', `lastPasswordChangeDate` datetime DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_rsgpnezvaaekwzkcbkhavokeaihpskivkdej` (`active`), KEY `idx_wrhierkmwejhwkviziybhtgggsabylyjevws` (`locked`), KEY `idx_ilwzzrzfppwhmayxtwaqoffcnqxuyupzvefp` (`pending`), KEY `idx_hcatfhdsmjktwpabmgnyflbpmblvqairlqbo` (`suspended`), KEY `idx_fikxwoheculujotylpnhmzosicdcunapfoab` (`verificationCode`), KEY `idx_ivqsovysnkpqrchbptaeeakmeyabkourpyew` (`email`), KEY `idx_sxefzrzzactcoogjkpzlyldlegfykiskqpyn` (`username`), KEY `fk_ruxfsptgvfudwwsuymcznpijisvcpqlnajdk` (`photoId`), CONSTRAINT `fk_jdtrtnpxtshjspougawdceepdsccmmvtegfe` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_ruxfsptgvfudwwsuymcznpijisvcpqlnajdk` FOREIGN KEY (`photoId`) REFERENCES `assets` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `volumefolders` -- DROP TABLE IF EXISTS `volumefolders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `volumefolders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parentId` int(11) DEFAULT NULL, `volumeId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `path` varchar(255) DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_gehskebqlkxhwpmzbruznsfijowphclzcaou` (`name`,`parentId`,`volumeId`), KEY `idx_trysfxswyodduunkbjqawqeoeqrdplatlowy` (`parentId`), KEY `idx_raughjfbzfsvvjnqhotflwudpkultthhmpnx` (`volumeId`), CONSTRAINT `fk_amzditjyamyrvnzjvgpquialvmvcsfdfsbpj` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_wegntlwwrmeeyvrfqjzoxmywhnesvdkcdrhk` FOREIGN KEY (`parentId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `volumes` -- DROP TABLE IF EXISTS `volumes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `volumes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `fieldLayoutId` int(11) DEFAULT NULL, `name` varchar(255) NOT NULL, `handle` varchar(255) NOT NULL, `fs` varchar(255) NOT NULL, `transformFs` varchar(255) DEFAULT NULL, `transformSubpath` varchar(255) DEFAULT NULL, `titleTranslationMethod` varchar(255) NOT NULL DEFAULT 'site', `titleTranslationKeyFormat` text, `sortOrder` smallint(6) unsigned DEFAULT NULL, `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `dateDeleted` datetime DEFAULT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_ocwkeidafitnhghgmyibvhmhzdsildtyvlpy` (`name`), KEY `idx_uotxjjrggvwbicemipvlkyeskhtwrxmsrhvd` (`handle`), KEY `idx_lnowxcynsvrvbvpzlbhxjedioudsgyrbixgp` (`fieldLayoutId`), KEY `idx_glclsvvsthkiradxsyebjlpwcbvqglqpgnzl` (`dateDeleted`), CONSTRAINT `fk_jspcarrimoolrljposhoetzjucfhzcyqfoxl` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `widgets` -- DROP TABLE IF EXISTS `widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `widgets` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `type` varchar(255) NOT NULL, `sortOrder` smallint(6) unsigned DEFAULT NULL, `colspan` tinyint(3) DEFAULT NULL, `settings` text, `enabled` tinyint(1) NOT NULL DEFAULT '1', `dateCreated` datetime NOT NULL, `dateUpdated` datetime NOT NULL, `uid` char(36) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_fwmsclimhaojsjgotywgzgqhiimiapzhnqur` (`userId`), CONSTRAINT `fk_ppszneiyqvlriaeklneyugrdgrchzvpusaaf` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping routines for database 'craft4_db' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2023-07-05 8:13:51 -- MySQL dump 10.13 Distrib 5.7.42, for Linux (x86_64) -- -- Host: 127.0.0.1 Database: craft4_db -- ------------------------------------------------------ -- Server version 5.7.42-0ubuntu0.18.04.1-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `addresses` -- LOCK TABLES `addresses` WRITE; /*!40000 ALTER TABLE `addresses` DISABLE KEYS */; set autocommit=0; INSERT INTO `addresses` VALUES (3,NULL,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-12 14:54:49','2022-10-12 14:54:49'),(6,NULL,'CA','MB','dsdfsdf',NULL,'M4M 4M4',NULL,'63 halton garden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-12 18:29:12','2022-10-28 11:19:08'),(33,31,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:19:54','2022-10-28 11:19:54'),(34,31,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:19:54','2022-10-28 11:19:54'),(36,35,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Bodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:54:55','2022-10-28 11:54:55'),(37,35,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Bodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:54:55','2022-10-28 11:54:55'),(39,38,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:56:29','2022-10-28 11:56:29'),(40,38,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 11:56:29','2022-10-28 11:56:29'),(42,41,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis','Denis',NULL,NULL,NULL,'2022-10-28 12:06:47','2022-10-28 12:06:47'),(43,41,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis','Denis',NULL,NULL,NULL,'2022-10-28 12:06:47','2022-10-28 12:06:47'),(44,26,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 12:07:50','2022-10-28 12:07:50'),(46,45,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-28 12:08:30','2022-10-28 12:08:30'),(48,45,'CA','ON','Richmond Hill',NULL,'m2m2m2',NULL,'Sammer str 155','lend 156','Convergine','1565','Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-31 12:45:39','2022-11-10 08:11:24'),(50,49,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-31 12:46:32','2022-10-31 12:46:32'),(51,49,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-31 12:46:32','2022-10-31 12:46:32'),(53,52,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-31 13:12:57','2022-10-31 13:12:57'),(54,52,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-10-31 13:12:57','2022-10-31 13:12:57'),(58,55,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-09 13:56:12','2022-11-09 13:56:12'),(59,55,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-09 13:56:12','2022-11-09 13:56:12'),(61,60,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-09 14:14:00','2022-11-09 14:14:00'),(63,62,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-10 08:33:05','2022-11-10 08:33:05'),(65,64,'CA',NULL,NULL,NULL,'m4m4m4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-10 08:34:38','2022-11-10 08:34:38'),(67,64,'CA','ON','City Ship',NULL,'s7s7s7',NULL,'Addres Ship Line 1','Addres Dhip Line 2',NULL,NULL,'Tom Hanks Ship','Tom','Ship',NULL,NULL,'2022-11-10 08:36:32','2022-11-10 08:36:32'),(68,64,'CA','PE','City Bill',NULL,'b4b4b4',NULL,'Addres Bill Line 1','Addres Bill Line 2','Convergine',NULL,'Tom Hanks Bill','Tom','Bill',NULL,NULL,'2022-11-10 08:36:32','2022-11-10 08:36:32'),(69,60,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-10 12:19:01','2022-11-10 12:19:01'),(70,60,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-10 12:19:01','2022-11-10 12:19:01'),(72,71,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-10 13:35:40','2022-11-10 13:35:40'),(73,71,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-10 13:35:46','2022-11-10 13:35:46'),(74,71,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-10 13:35:46','2022-11-10 13:35:46'),(76,75,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:03:08','2022-11-11 12:03:08'),(77,75,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:03:08','2022-11-11 12:03:08'),(79,78,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:26:29','2022-11-11 12:26:29'),(80,78,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:26:29','2022-11-11 12:26:29'),(82,81,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:47:16','2022-11-11 12:47:16'),(83,81,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:47:16','2022-11-11 12:47:16'),(85,84,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:52:07','2022-11-11 12:52:07'),(86,84,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 12:52:07','2022-11-11 12:52:07'),(88,87,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 13:01:45','2022-11-11 13:01:45'),(89,87,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-11 13:01:45','2022-11-11 13:01:45'),(91,90,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 13:19:29','2022-11-14 13:19:29'),(92,90,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 13:19:29','2022-11-14 13:19:29'),(94,93,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:05:02','2022-11-14 14:05:02'),(95,93,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:05:02','2022-11-14 14:05:02'),(97,96,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:09:50','2022-11-14 14:09:50'),(98,96,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:09:50','2022-11-14 14:09:50'),(100,99,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:14:22','2022-11-14 14:14:22'),(101,99,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:14:22','2022-11-14 14:14:22'),(103,102,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:20:11','2022-11-14 14:20:11'),(104,102,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:20:11','2022-11-14 14:20:11'),(106,105,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:21:23','2022-11-14 14:21:23'),(107,105,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:21:23','2022-11-14 14:21:23'),(109,108,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:25:22','2022-11-14 14:25:22'),(110,108,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-14 14:25:22','2022-11-14 14:25:22'),(112,111,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-15 11:27:46','2022-11-15 11:27:46'),(113,111,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 11:28:18','2022-11-15 11:28:18'),(114,111,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 11:28:18','2022-11-15 11:28:18'),(116,115,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 11:59:27','2022-11-15 11:59:27'),(117,115,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 11:59:27','2022-11-15 11:59:27'),(119,118,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 12:01:08','2022-11-15 12:01:08'),(120,118,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 12:01:08','2022-11-15 12:01:08'),(122,121,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 13:52:48','2022-11-15 13:52:48'),(123,121,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 13:52:48','2022-11-15 13:52:48'),(125,124,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 14:03:04','2022-11-15 14:03:04'),(126,124,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2022-11-15 14:03:04','2022-11-15 14:03:04'),(132,131,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-23 13:34:19','2023-01-23 13:34:19'),(136,135,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-23 14:09:52','2023-01-23 14:09:52'),(157,137,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-01-24 10:58:30','2023-01-24 10:58:30'),(166,165,'CA',NULL,NULL,NULL,'m4m4m4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-12 07:43:19','2023-04-12 07:43:19'),(167,165,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-04-12 07:43:48','2023-04-12 07:43:48'),(168,165,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-04-12 07:43:48','2023-04-12 07:43:48'),(170,169,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-15 07:55:29','2023-06-15 07:55:29'),(171,169,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-15 07:55:29','2023-06-15 07:55:29'),(172,127,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-15 08:58:42','2023-06-15 08:58:42'),(173,127,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-15 08:58:42','2023-06-15 08:58:42'),(175,174,'CA',NULL,NULL,NULL,'m4m4m4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-15 09:00:02','2023-06-15 09:28:38'),(180,174,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 10:21:57','2023-06-16 10:21:57'),(181,174,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 10:21:58','2023-06-16 10:21:58'),(183,182,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-16 10:31:28','2023-06-16 10:31:28'),(188,182,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 10:44:48','2023-06-16 10:44:48'),(189,182,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 10:44:48','2023-06-16 10:44:48'),(193,135,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 11:12:31','2023-06-16 11:12:31'),(194,135,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 11:12:31','2023-06-16 11:12:31'),(196,195,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 11:13:41','2023-06-16 11:13:41'),(197,195,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 11:13:41','2023-06-16 11:13:41'),(202,137,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 13:21:58','2023-06-16 13:21:58'),(203,137,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-16 13:21:58','2023-06-16 13:21:58'),(204,160,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 10:50:31','2023-06-19 10:50:31'),(205,160,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 10:50:31','2023-06-19 10:50:31'),(207,206,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:13:05','2023-06-19 11:13:05'),(208,206,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:13:05','2023-06-19 11:13:05'),(210,209,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:20:03','2023-06-19 11:20:03'),(211,209,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:20:03','2023-06-19 11:20:03'),(213,212,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-19 11:22:00','2023-06-19 11:22:00'),(214,212,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:22:07','2023-06-19 11:22:07'),(215,212,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:22:07','2023-06-19 11:22:07'),(217,216,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:27:59','2023-06-19 11:27:59'),(218,216,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:27:59','2023-06-19 11:27:59'),(220,219,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:39:38','2023-06-19 11:39:38'),(221,219,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 11:39:38','2023-06-19 11:39:38'),(223,222,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:01:27','2023-06-19 12:01:27'),(224,222,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:01:27','2023-06-19 12:01:27'),(226,225,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:04:12','2023-06-19 12:04:12'),(227,225,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:04:12','2023-06-19 12:04:12'),(229,228,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:12:30','2023-06-19 12:12:30'),(230,228,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:12:30','2023-06-19 12:12:30'),(232,231,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:14:22','2023-06-19 12:14:22'),(233,231,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:14:22','2023-06-19 12:14:22'),(235,234,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:17:11','2023-06-19 12:17:11'),(236,234,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:17:11','2023-06-19 12:17:11'),(238,237,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:19:54','2023-06-19 12:19:54'),(239,237,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:19:54','2023-06-19 12:19:54'),(241,240,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:22:23','2023-06-19 12:22:23'),(242,240,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-19 12:22:23','2023-06-19 12:22:23'),(244,243,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-19 21:11:09','2023-06-19 21:11:09'),(246,243,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:12:18','2023-06-19 21:12:18'),(247,243,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:12:19','2023-06-19 21:12:19'),(249,248,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-19 21:24:57','2023-06-19 21:25:51'),(253,252,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-19 21:29:24','2023-06-19 21:29:24'),(255,254,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST CONVERGINE INC.',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:34:00','2023-06-19 21:34:00'),(256,254,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST CONVERGINE INC.',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:34:00','2023-06-19 21:34:00'),(258,257,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-19 21:35:29','2023-06-19 21:35:29'),(259,257,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:37:49','2023-06-19 21:37:49'),(261,257,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:46:17','2023-06-19 21:46:17'),(263,262,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:48:24','2023-06-19 21:48:24'),(264,262,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-19 21:48:24','2023-06-19 21:48:24'),(266,265,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 02:47:25','2023-06-20 02:47:25'),(267,265,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 02:47:25','2023-06-20 02:47:25'),(269,268,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 02:50:51','2023-06-20 02:50:51'),(270,268,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'CONVERGINE',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 02:51:39','2023-06-20 02:51:39'),(271,268,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'CONVERGINE',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 02:51:39','2023-06-20 02:51:39'),(274,273,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'denis','Denis',NULL,NULL,NULL,'2023-06-20 07:46:08','2023-06-20 07:46:08'),(275,273,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'denis','Denis',NULL,NULL,NULL,'2023-06-20 07:46:08','2023-06-20 07:46:08'),(277,276,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 07:50:51','2023-06-20 07:50:51'),(278,276,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 07:52:42','2023-06-20 07:52:42'),(280,279,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 07:57:04','2023-06-20 07:57:04'),(281,279,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 07:57:07','2023-06-20 07:57:07'),(283,282,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 08:04:06','2023-06-20 08:04:06'),(286,282,'CA','MB','Toronto',NULL,'l3b 3g3',NULL,'Brodie str 15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 08:05:15','2023-06-20 08:05:47'),(287,282,'CA','ON','Toronto',NULL,'l3b 3g3',NULL,'Brodie str 15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 08:06:07','2023-06-20 08:06:38'),(288,190,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 08:16:09','2023-06-20 08:16:09'),(289,190,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-20 08:16:09','2023-06-20 08:16:09'),(294,293,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 15:56:06','2023-06-20 15:56:06'),(296,295,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'CONVERGINE TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 15:59:31','2023-06-20 15:59:31'),(297,295,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'CONVERGINE TEST',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 15:59:31','2023-06-20 15:59:31'),(299,298,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 16:08:07','2023-06-20 16:08:07'),(300,298,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 16:10:26','2023-06-20 16:10:26'),(301,298,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-20 16:10:26','2023-06-20 16:10:26'),(303,302,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'COnvergine',NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 16:19:12','2023-06-20 16:19:12'),(304,302,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,'COnvergine',NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-20 16:19:12','2023-06-20 16:19:12'),(306,290,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-21 07:37:24','2023-06-21 07:37:24'),(307,290,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-21 07:37:24','2023-06-21 07:37:24'),(308,198,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-21 08:24:22','2023-06-21 08:24:22'),(309,198,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-21 08:24:22','2023-06-21 08:24:22'),(311,310,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'11111',NULL,'Test',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-21 22:10:13','2023-06-21 22:10:13'),(312,310,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'11111',NULL,'Test',NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-21 22:10:13','2023-06-21 22:10:13'),(314,313,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-22 00:19:13','2023-06-22 00:19:48'),(316,315,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-22 00:42:58','2023-06-22 00:43:44'),(317,272,'US',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-22 08:30:46','2023-06-22 08:30:46'),(318,272,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-22 08:30:58','2023-06-22 08:30:58'),(319,272,'CA','ON','Toronto',NULL,'m4m4m4',NULL,'Brodie 155',NULL,NULL,NULL,'Denis Piskun','Denis','Piskun',NULL,NULL,'2023-06-22 08:30:58','2023-06-22 08:30:58'),(321,320,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-22 14:40:38','2023-06-22 14:41:17'),(322,62,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-22 14:46:15','2023-06-22 14:46:15'),(323,62,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,'Andrei Medvedevs','Andrei','Medvedevs',NULL,NULL,'2023-06-22 14:46:15','2023-06-22 14:46:15'),(325,324,'CA','ON','Markham',NULL,'L3R 6G2',NULL,'7030 Woodbine Ave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-22 17:13:21','2023-06-22 17:14:00'); /*!40000 ALTER TABLE `addresses` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `assetindexingsessions` -- LOCK TABLES `assetindexingsessions` WRITE; /*!40000 ALTER TABLE `assetindexingsessions` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `assetindexingsessions` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; set autocommit=0; INSERT INTO `assets` VALUES (133,1,4,1,'images.jpeg','image',NULL,258,195,8621,NULL,NULL,NULL,'2023-01-23 13:44:37','2023-01-23 13:44:37','2023-01-23 13:44:37'),(134,1,4,1,'ReadyPlayerMe-Avatar.jpeg','image',NULL,625,625,47205,NULL,NULL,NULL,'2023-01-23 14:09:02','2023-01-23 14:09:02','2023-01-23 14:09:02'),(138,1,4,NULL,'ReadyPlayerMe-Avatar_2023-01-24-094657_ctgd.jpeg','image',NULL,625,625,47205,NULL,NULL,NULL,'2023-01-24 09:46:57','2023-01-24 09:46:57','2023-01-24 09:46:57'),(139,1,4,NULL,'Screenshot_102.png','image',NULL,1293,936,595378,NULL,NULL,NULL,'2023-01-24 09:48:13','2023-01-24 09:48:13','2023-01-24 09:48:13'),(140,1,4,NULL,'RentalAgreement2021.1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 09:48:58','2023-01-24 09:48:58','2023-01-24 09:48:58'),(141,1,5,NULL,'RentalAgreement2021.1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 09:57:57','2023-01-24 09:57:57','2023-01-24 09:57:57'),(142,1,5,NULL,'RentalAgreement2021.1_2023-01-24-100457_mhxe.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:04:57','2023-01-24 10:04:57','2023-01-24 10:04:57'),(143,1,6,NULL,'RentalAgreement2021.1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:10:52','2023-01-24 10:10:52','2023-01-24 10:10:52'),(144,1,6,NULL,'RentalAgreement2021.1_2023-01-24-101117_yybe.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:11:16','2023-01-24 10:11:17','2023-01-24 10:11:17'),(145,1,6,NULL,'images.jpeg','image',NULL,258,195,8621,NULL,NULL,NULL,'2023-01-24 10:13:37','2023-01-24 10:13:37','2023-01-24 10:13:37'),(146,1,6,NULL,'RentalAgreement2021.1_2023-01-24-101621_bqlv.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:16:21','2023-01-24 10:16:21','2023-01-24 10:16:21'),(147,1,1,1,'RentalAgreement2021.1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:28:00','2023-01-24 10:28:00','2023-01-24 10:28:00'),(148,1,6,1,'RentalAgreement2021.1-1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:31:09','2023-01-24 10:31:09','2023-01-24 10:31:09'),(149,1,6,NULL,'RentalAgreement2021.1-1_2023-01-24-103310_epak.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:33:10','2023-01-24 10:33:10','2023-01-24 10:33:10'),(150,1,6,NULL,'Tickets-2ad495957943b0e6a3871721062844f7-2.pdf','pdf',NULL,NULL,NULL,1074,NULL,NULL,NULL,'2023-01-24 10:35:19','2023-01-24 10:35:19','2023-01-24 10:35:19'),(151,1,6,NULL,'RentalAgreement2021.1_2023-01-24-103629_ftmt.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:36:29','2023-01-24 10:36:29','2023-01-24 10:36:29'),(152,1,7,NULL,'Screenshot_131.png','image',NULL,463,448,831565,NULL,NULL,NULL,'2023-01-24 10:43:14','2023-01-24 10:43:14','2023-01-24 10:43:14'),(153,1,8,NULL,'RentalAgreement2021.1-1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:45:15','2023-01-24 10:45:16','2023-01-24 10:45:16'),(154,1,10,NULL,'RentalAgreement2021.1-1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:46:01','2023-01-24 10:46:02','2023-01-24 10:46:02'),(155,1,10,NULL,'RentalAgreement2021.1.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:46:39','2023-01-24 10:46:39','2023-01-24 10:46:39'),(156,1,10,NULL,'RentalAgreement2021.1_2023-01-24-104704_kghh.pdf','pdf',NULL,NULL,NULL,264642,NULL,NULL,NULL,'2023-01-24 10:47:04','2023-01-24 10:47:04','2023-01-24 10:47:04'),(250,1,1,1,'Screenshot-2023-06-08-at-1.17.40-PM.png','image',NULL,744,268,19762,NULL,NULL,NULL,'2023-06-19 21:26:25','2023-06-19 21:26:25','2023-06-19 21:26:25'),(329,1,1,NULL,'an-image-of-a-sleek-bmw-x5-gliding-throu-512x512-22697904.png','image',NULL,512,512,787387,NULL,NULL,NULL,'2023-07-03 07:33:33','2023-07-03 07:33:33','2023-07-03 07:33:33'),(331,1,1,1,'Screenshot_27.png','image',NULL,1097,261,1147451,NULL,NULL,NULL,'2023-07-05 09:31:53','2023-07-05 09:31:53','2023-07-05 09:31:53'),(332,1,1,1,'ringtone.mp3','audio',NULL,NULL,NULL,14209,NULL,NULL,NULL,'2023-07-05 10:29:18','2023-07-05 10:29:18','2023-07-05 10:29:18'); /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `categorygroups` -- LOCK TABLES `categorygroups` WRITE; /*!40000 ALTER TABLE `categorygroups` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `categorygroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `categorygroups_sites` -- LOCK TABLES `categorygroups_sites` WRITE; /*!40000 ALTER TABLE `categorygroups_sites` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `categorygroups_sites` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `changedattributes` -- LOCK TABLES `changedattributes` WRITE; /*!40000 ALTER TABLE `changedattributes` DISABLE KEYS */; set autocommit=0; INSERT INTO `changedattributes` VALUES (26,1,'lastPasswordChangeDate','2022-10-17 14:32:46',0,NULL),(26,1,'password','2022-10-17 14:32:46',0,NULL),(26,1,'pending','2022-10-17 14:32:46',0,NULL),(26,1,'unverifiedEmail','2022-10-17 14:32:46',0,NULL),(26,1,'username','2022-10-17 14:32:46',0,NULL),(180,1,'title','2023-06-16 10:21:58',0,26),(188,1,'title','2023-06-16 10:44:48',0,26),(193,1,'title','2023-06-16 11:12:31',0,26),(196,1,'title','2023-06-16 11:13:41',0,26),(202,1,'title','2023-06-16 13:21:58',0,26),(204,1,'title','2023-06-19 10:50:31',0,26),(207,1,'title','2023-06-19 11:13:05',0,26),(210,1,'title','2023-06-19 11:20:03',0,26),(214,1,'title','2023-06-19 11:22:07',0,26),(217,1,'title','2023-06-19 11:27:59',0,26),(220,1,'title','2023-06-19 11:39:38',0,26),(223,1,'title','2023-06-19 12:01:27',0,26),(226,1,'title','2023-06-19 12:04:12',0,26),(229,1,'title','2023-06-19 12:12:30',0,26),(232,1,'title','2023-06-19 12:14:22',0,26),(235,1,'title','2023-06-19 12:17:11',0,26),(238,1,'title','2023-06-19 12:19:54',0,26),(241,1,'title','2023-06-19 12:22:23',0,26),(245,1,'firstName','2023-06-19 21:28:32',0,1),(245,1,'fullName','2023-06-19 21:28:32',0,1),(245,1,'lastName','2023-06-19 21:28:32',0,1),(245,1,'lastPasswordChangeDate','2023-06-19 21:36:54',0,NULL),(245,1,'password','2023-06-19 21:36:54',0,NULL),(245,1,'username','2023-06-19 21:28:32',0,1),(245,1,'verificationCode','2023-06-19 21:36:54',0,NULL),(245,1,'verificationCodeIssuedDate','2023-06-19 21:36:54',0,NULL),(249,1,'addressLine1','2023-06-19 21:25:38',0,1),(249,1,'administrativeArea','2023-06-19 21:25:42',0,1),(249,1,'countryCode','2023-06-19 21:25:16',0,1),(249,1,'locality','2023-06-19 21:25:45',0,1),(249,1,'postalCode','2023-06-19 21:25:51',0,1),(286,1,'addressLine1','2023-06-20 08:05:47',0,1),(286,1,'administrativeArea','2023-06-20 08:05:41',0,1),(286,1,'countryCode','2023-06-20 08:05:38',0,1),(286,1,'locality','2023-06-20 08:05:47',0,1),(286,1,'postalCode','2023-06-20 08:05:47',0,1),(287,1,'addressLine1','2023-06-20 08:06:24',0,1),(287,1,'administrativeArea','2023-06-20 08:06:29',0,1),(287,1,'countryCode','2023-06-20 08:06:19',0,1),(287,1,'locality','2023-06-20 08:06:38',0,1),(287,1,'postalCode','2023-06-20 08:06:24',0,1),(288,1,'title','2023-06-20 08:16:09',0,26),(306,1,'title','2023-06-21 07:37:24',0,26),(308,1,'title','2023-06-21 08:24:22',0,26),(314,1,'addressLine1','2023-06-22 00:19:31',0,1),(314,1,'administrativeArea','2023-06-22 00:19:34',0,1),(314,1,'countryCode','2023-06-22 00:19:25',0,1),(314,1,'locality','2023-06-22 00:19:40',0,1),(314,1,'postalCode','2023-06-22 00:19:48',0,1),(316,1,'addressLine1','2023-06-22 00:43:21',0,1),(316,1,'administrativeArea','2023-06-22 00:43:34',0,1),(316,1,'countryCode','2023-06-22 00:43:08',0,1),(316,1,'locality','2023-06-22 00:43:44',0,1),(316,1,'postalCode','2023-06-22 00:43:29',0,1),(318,1,'title','2023-06-22 08:30:58',0,26),(321,1,'addressLine1','2023-06-22 14:41:05',0,1),(321,1,'administrativeArea','2023-06-22 14:41:08',0,1),(321,1,'countryCode','2023-06-22 14:40:48',0,1),(321,1,'locality','2023-06-22 14:41:11',0,1),(321,1,'postalCode','2023-06-22 14:41:17',0,1),(325,1,'addressLine1','2023-06-22 17:13:43',0,1),(325,1,'administrativeArea','2023-06-22 17:13:49',0,1),(325,1,'countryCode','2023-06-22 17:13:34',0,1),(325,1,'locality','2023-06-22 17:13:52',0,1),(325,1,'postalCode','2023-06-22 17:14:00',0,1); /*!40000 ALTER TABLE `changedattributes` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `changedfields` -- LOCK TABLES `changedfields` WRITE; /*!40000 ALTER TABLE `changedfields` DISABLE KEYS */; set autocommit=0; INSERT INTO `changedfields` VALUES (327,1,4,'2023-07-03 08:03:09',0,1),(330,2,1,'2023-07-03 07:33:33',0,1); /*!40000 ALTER TABLE `changedfields` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_coupons` -- LOCK TABLES `commerce_coupons` WRITE; /*!40000 ALTER TABLE `commerce_coupons` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_coupons` VALUES (1,'TEST_50',1,2,NULL,'2023-06-19 10:49:17','2023-06-19 11:22:43','2384d697-6aba-41ed-89a3-fedb3ac2be6b'),(2,'Jane',3,3,100,'2023-06-19 21:31:35','2023-06-21 07:51:07','e23d2792-2b39-4c5f-8067-076fc66f118d'); /*!40000 ALTER TABLE `commerce_coupons` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_customer_discountuses` -- LOCK TABLES `commerce_customer_discountuses` WRITE; /*!40000 ALTER TABLE `commerce_customer_discountuses` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_customer_discountuses` VALUES (1,1,1,1,'2022-11-10 08:27:31','2022-11-10 08:27:31','0160cbc0-bca8-457e-97e5-70d46398d214'),(2,1,26,20,'2022-11-10 13:36:12','2023-06-19 11:22:43','1f7464f2-be90-41ae-a552-d1a97f20f534'),(3,2,26,1,'2023-06-16 10:26:17','2023-06-16 10:26:17','05738e40-99ce-44f4-b97b-bb6b32eb6106'),(4,3,245,2,'2023-06-19 21:46:41','2023-06-20 02:52:02','dc3cf7d2-5fb8-4ce1-8d26-a53e9329315e'),(5,2,245,3,'2023-06-20 15:59:55','2023-06-22 17:15:05','1cb2764a-e042-45d4-997c-697770889c13'),(6,3,26,1,'2023-06-21 07:51:07','2023-06-21 07:51:07','dcecff70-576b-47c8-a866-e395e620226b'),(7,2,1,1,'2023-06-22 14:46:43','2023-06-22 14:46:43','eb40d938-f2e9-475c-af81-e5004ef53522'); /*!40000 ALTER TABLE `commerce_customer_discountuses` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_customers` -- LOCK TABLES `commerce_customers` WRITE; /*!40000 ALTER TABLE `commerce_customers` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_customers` VALUES (1,26,NULL,NULL,'2022-10-28 12:07:50','2022-10-28 12:07:50','9a297a03-cdf5-4790-bb2b-968f3af35e1a'); /*!40000 ALTER TABLE `commerce_customers` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_discount_categories` -- LOCK TABLES `commerce_discount_categories` WRITE; /*!40000 ALTER TABLE `commerce_discount_categories` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_discount_categories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_discount_purchasables` -- LOCK TABLES `commerce_discount_purchasables` WRITE; /*!40000 ALTER TABLE `commerce_discount_purchasables` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_discount_purchasables` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_discounts` -- LOCK TABLES `commerce_discounts` WRITE; /*!40000 ALTER TABLE `commerce_discounts` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_discounts` VALUES (1,'TEST','','######','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\orders\\\\DiscountOrderCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\customers\\\\DiscountCustomerCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}',0,0,22,0,NULL,NULL,0,0.0000,0,0.0000,'value',0.0000,-0.5000,'discounted',0,0,0,1,1,'allLineItems','element','',1,0,1,999,'2022-11-09 14:13:43','2023-06-19 11:22:43','c2d23095-aa47-4976-a738-39cd5f99c83f'),(2,'3-rd item for free','','######','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\orders\\\\DiscountOrderCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\customers\\\\DiscountCustomerCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}',0,0,5,0,NULL,NULL,3,0.0000,0,0.0000,'value',0.0000,-0.5000,'discounted',0,0,0,1,1,'matchingLineItems','element','',1,0,0,999,'2023-06-15 09:16:34','2023-06-22 17:15:05','34191d94-8546-4305-8b81-52e1a2a6ffe5'),(3,'Jane\'s Sale','','######','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\orders\\\\DiscountOrderCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\customers\\\\DiscountCustomerCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\DiscountAddressCondition\",\"conditionRules\":[]}',0,0,3,0,NULL,NULL,0,0.0000,0,0.0000,'value',0.0000,-0.5000,'original',0,0,0,1,1,'matchingLineItems','element','',1,0,0,999,'2023-06-19 21:31:35','2023-06-21 07:51:07','9105e0d4-6c30-4554-9cd4-eeaefa63b4ef'); /*!40000 ALTER TABLE `commerce_discounts` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_donations` -- LOCK TABLES `commerce_donations` WRITE; /*!40000 ALTER TABLE `commerce_donations` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_donations` VALUES (5,'DONATION-CC4',0,'2022-10-12 18:29:03','2022-10-12 18:29:03','20ac0f86-c43c-442e-8d30-b7b30eed9c59'); /*!40000 ALTER TABLE `commerce_donations` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_email_discountuses` -- LOCK TABLES `commerce_email_discountuses` WRITE; /*!40000 ALTER TABLE `commerce_email_discountuses` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_email_discountuses` VALUES (1,1,'konstantin@convergine.com',1,'2022-11-10 08:27:31','2022-11-10 08:27:31','79925d3d-74a1-488c-b235-6da7d1d72c71'),(2,1,'denis1@convergine.com',1,'2022-11-10 08:38:56','2022-11-10 08:38:56','28aef8ce-1db1-4662-8ae0-a76fcebbf619'),(3,1,'denis@convergine.com',20,'2022-11-10 13:36:12','2023-06-19 11:22:43','e372b60a-20be-4a0e-996d-23cbf0d1bbea'),(4,2,'denis@convergine.com',1,'2023-06-16 10:26:17','2023-06-16 10:26:17','ad901f4e-e8e8-4e4c-85b3-6b489295ad5f'),(5,3,'jane@convergine.com',2,'2023-06-19 21:46:41','2023-06-20 02:52:02','74347c1b-7a6f-425a-8a39-e45fc73ab53e'),(6,2,'jane@convergine.com',3,'2023-06-20 15:59:55','2023-06-22 17:15:05','ff9dbad1-b80c-457e-a41f-12245fe91404'),(7,3,'denis@convergine.com',1,'2023-06-21 07:51:07','2023-06-21 07:51:07','3a082d96-6ba4-4909-a60c-f5512807b7a4'),(8,2,'konstantin@convergine.com',1,'2023-06-22 14:46:43','2023-06-22 14:46:43','4a189fe3-dea6-4853-8ba2-3b6dfa51b19e'); /*!40000 ALTER TABLE `commerce_email_discountuses` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_emails` -- LOCK TABLES `commerce_emails` WRITE; /*!40000 ALTER TABLE `commerce_emails` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_emails` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_gateways` -- LOCK TABLES `commerce_gateways` WRITE; /*!40000 ALTER TABLE `commerce_gateways` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_gateways` VALUES (1,'craft\\commerce\\gateways\\Dummy','Dummy','dummy',NULL,'purchase','0',0,NULL,99,'2022-10-12 18:29:04','2022-10-31 12:47:04','c7add8bb-e55e-4a8e-8565-832c2f03dc0f'),(2,'craft\\commerce\\helcim\\gateways\\Gateway','Helcim','helcim','{\"accountId\":null,\"apiAccountId\":\"2500436249\",\"apiSecret\":\"3fec22f070678d15d09b515d6b1eaefb8ab0b01e\",\"apiToken\":\"d9s65b28phtZxHH2GW4K76Ww3\",\"enableServersideProtection\":\"1\",\"hashAmount\":\"1\",\"jsToken\":\"bfe58f5ce0fae7fc48303c\",\"reCaptchaSite\":\"6LcgxK0UAAAAAH9gzsILRr82KZSLrBcry9RynMn4\",\"terminalId\":null,\"testMode\":\"\"}','authorize','1',0,NULL,99,'2022-10-17 14:29:02','2023-06-22 14:39:26','4dd4bd2f-b9e5-4264-be74-99e86b86c3a4'); /*!40000 ALTER TABLE `commerce_gateways` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_lineitems` -- LOCK TABLES `commerce_lineitems` WRITE; /*!40000 ALTER TABLE `commerce_lineitems` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_lineitems` VALUES (8,31,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-28 11:18:11','2022-10-28 11:37:29','e7724fa1-67ce-4b06-a6ef-73771ba3d4bd'),(9,35,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-28 11:54:11','2022-10-28 11:55:25','eb415314-45ca-41af-87da-211cbab498d3'),(10,38,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-28 11:55:40','2022-10-28 12:06:01','00e0d12b-673c-4a89-ad8a-5a4f95db944f'),(11,41,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-28 12:06:11','2022-10-28 12:06:56','2282eab4-4d75-4dfc-a652-9512eaeda619'),(12,45,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,408.0000,450.6000,4,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-28 12:07:55','2022-11-10 08:27:31','738cb7f7-4fd3-479c-b02d-05fae7b08e5b'),(13,49,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-31 12:46:21','2022-10-31 12:59:58','fc7fd025-bb9d-430d-a3d0-d680a82efcf4'),(14,52,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,102.0000,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-10-31 13:12:29','2022-10-31 14:06:37','22643741-5da6-4cfa-9b8e-8a0d1b245ce9'),(16,55,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,115.2600,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-09 13:55:21','2022-11-10 07:16:24','abe59029-0d01-454f-80e8-75a30f83988a'),(17,60,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,306.0000,337.9500,3,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-09 14:12:01','2022-11-10 13:30:20','b5df8d95-eab9-4a6f-afa2-ddfc0e39d4ff'),(18,45,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,48.2400,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2022-10-12T12:47:01-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2022-10-12T12:47:01-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2022-11-10 08:23:34','2022-11-10 08:27:31','03835ac0-22b9-41a8-94a1-3c8ce2ecf25f'),(20,62,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,0.5700,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-10 08:32:55','2023-06-22 17:09:56','7f416bd7-319b-4409-a476-78cf8ca9e161'),(21,64,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,50.0000,53.8900,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-10-12T12:47:17-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-10-12T12:47:17-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2022-11-10 08:34:06','2022-11-10 08:38:56','8eb9cfe0-6e03-45fc-bd59-06325ce0306a'),(22,64,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-10 08:34:08','2022-11-10 08:38:56','13babf5b-f52c-4f6d-89ed-cf0bbcd62fdc'),(23,71,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-10 13:35:35','2022-11-10 13:36:12','a0e227d6-2d85-4dd6-b7bf-3e5056e6bf72'),(24,75,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 12:02:51','2022-11-11 12:04:07','030d07e1-22b6-4dab-a6cd-2701b5e9a9b5'),(25,78,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,204.0000,225.3000,2,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 12:25:22','2022-11-11 12:45:34','5db59bef-acc7-4410-8ddb-c2f98f336a03'),(26,81,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 12:47:01','2022-11-11 12:50:04','51049d25-a0ef-4ea5-a8a5-75c893e0f44a'),(27,84,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 12:51:55','2022-11-11 12:59:55','ea5c18d2-3904-4a2e-a591-dc3306d7140d'),(28,87,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 12:59:45','2022-11-11 13:01:59','1a4e119d-6f34-488b-864c-9479ee2e39b0'),(29,87,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,48.2400,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2022-10-12T12:47:01-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2022-10-12T12:47:01-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2022-11-11 13:01:33','2022-11-11 13:01:59','530097eb-0ac0-4ba4-8ae0-edbeb0227300'),(30,90,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 13:19:12','2022-11-14 13:55:58','5cab0c38-33b8-4005-ac51-fa4207e68102'),(31,93,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:04:29','2022-11-14 14:06:43','4a76ff35-a957-4e17-973a-30b4a46e45d1'),(32,96,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:09:31','2022-11-14 14:11:42','c348925a-9450-4496-b2e9-2b41554531d0'),(33,99,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:14:06','2022-11-14 14:18:16','e7e45c3b-4515-4b58-a5f1-366a7e9ed2cd'),(34,102,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:19:50','2022-11-14 14:20:49','55cd1ad4-1368-4abe-94a2-c48990bd405e'),(35,105,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:20:56','2022-11-14 14:24:58','9690a5bf-255c-472a-a534-183ed08d6a37'),(36,105,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,50.0000,53.8900,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-10-12T12:47:17-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-10-12T12:47:17-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:21:07','2022-11-14 14:24:58','64e3d2fc-50a9-47c4-be73-74fef2cecef6'),(37,108,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-14 14:25:09','2022-11-15 11:24:28','9df6d151-9823-4136-935c-e147dea473f8'),(39,111,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2022-11-15 11:27:51','2022-11-15 11:33:03','6659fcb6-310b-4ee2-8635-c126dd3ba527'),(40,115,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2022-11-15 11:59:20','2022-11-15 11:59:57','6fd7cb2d-9840-4a00-8cc8-a9495991b2ec'),(41,118,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2022-11-15 12:00:59','2022-11-15 12:03:50','7f5e8962-ca36-4733-b460-afacde738992'),(42,121,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-15 13:52:30','2022-11-15 14:01:20','ce872cf9-6d84-4b34-9947-00b83dc25f28'),(43,124,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2022-11-15 14:02:53','2023-03-06 12:15:17','d68ad1ad-da53-42e0-b115-6ad30fdc1291'),(45,131,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-01-23 13:31:24','2023-01-23 14:09:05','e5707943-a877-43cc-accb-c4c5075511bd'),(46,135,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-01-23 14:09:42','2023-06-16 11:12:50','1d59cebd-402e-4e67-b0e1-e68ae81d7ef3'),(50,137,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-01-24 11:05:58','2023-06-16 13:25:06','291eda0c-9770-49f8-87d6-f8e790be7299'),(53,165,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,112.6500,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-02\"},\"onSale\":true,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-04-12 07:40:33','2023-04-12 07:49:20','0683c218-4f62-406a-9e0e-e86a71304694'),(54,169,8,1,1,'Product 01 - Product 01','{\"giftWrapped\":\"yes\"}','6fc05d1db9b067d8149867a9528ba6b9',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,48.2400,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01\"},\"onSale\":true,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":{\"giftWrapped\":\"yes\"},\"sales\":[]}',NULL,'2023-06-15 07:52:16','2023-06-15 07:55:53','82b5405f-1b5c-4ec0-9289-7a173779525c'),(57,127,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,48.2400,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https://test.newsite.space/shop/product-01\"},\"onSale\":true,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-15 08:57:24','2023-06-15 08:58:57','9f8e0486-7e7e-45ac-9ab2-4d11e0a61633'),(60,174,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,135.0000,93.8400,3,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-15 09:19:00','2023-06-16 10:26:17','5d955930-1e23-4876-9f04-362f8b9b81a3'),(62,182,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,50.8500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-16 10:31:34','2023-06-16 10:45:02','822b600b-58b7-4df0-a6d8-977e8bc912de'),(64,190,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,2.0000,2.2600,2,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-16 11:11:37','2023-06-20 08:16:29','c84dc1b4-f268-4fa0-adda-f45ab6185bb6'),(65,195,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-16 11:13:31','2023-06-16 11:13:59','c05ed6d1-9279-4107-918b-c35f09fd4cc2'),(66,198,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,2,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-16 11:19:30','2023-06-21 08:32:54','0242494f-ba39-4493-ad0f-1f00c57bde90'),(67,160,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,0.7000,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 10:47:53','2023-06-19 11:10:17','e7afc87a-6b43-401e-8c06-02783f709884'),(68,206,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 11:12:46','2023-06-19 11:16:26','472ccc58-878d-4fb0-953c-d56bd94052f1'),(69,209,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 11:19:52','2023-06-19 11:26:33','e2fe3a2e-f1c2-41e4-a02b-786658e481b6'),(70,212,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,0.7000,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 11:21:48','2023-06-19 11:26:55','5794e9f1-8b02-43c2-b78f-502ee5d085a8'),(71,216,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 11:27:45','2023-06-19 11:28:34','4ca201d8-8919-40a7-9adb-39baf0daf0ba'),(72,219,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,115.2600,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 11:39:12','2023-06-19 11:40:34','b73808fa-1b27-43ed-8406-85abb1875cef'),(73,222,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',45.0000,0.0000,45.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,45.0000,50.8500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":45,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":45,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-01-24T02:51:47-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:01:17','2023-06-19 12:02:31','2951cf26-7b6f-4994-a1fa-967b60e28831'),(74,225,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',102.0000,0.0000,102.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,102.0000,115.2600,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":102,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":102,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2022-10-12T12:47:09-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:04:01','2023-06-19 12:04:23','7335f157-8368-449b-94cc-07538a85c9ce'),(75,228,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:12:19','2023-06-19 12:15:21','c89040bf-4d3e-42f1-bb37-74bf3cfb7ffe'),(76,231,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2022-11-15T03:24:52-08:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:14:08','2023-06-19 12:16:18','dda7caa2-e76a-4603-b4be-051d0ab4696e'),(77,234,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.5700,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:17:03','2023-06-19 12:19:01','508c3543-d719-48e6-b7c0-87e553957f2c'),(78,237,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.5700,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:19:44','2023-06-19 12:21:40','f3956d83-deb2-48e3-b5b0-4822471c84ba'),(79,240,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.5700,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 12:22:15','2023-06-19 12:23:25','024ccb6e-c42d-4d53-9358-419e08c6793e'),(80,243,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 16:24:56','2023-06-20 07:45:13','053217ad-8f72-432f-9df6-14b3d25bc907'),(81,254,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 21:32:41','2023-06-19 21:35:07','bd6fec83-d588-46f0-944c-283f902a8845'),(84,257,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,34.7500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 21:40:49','2023-06-19 21:47:15','719f82c2-4fd0-47ed-8f0a-ed1e26bf0a3d'),(85,262,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-19 21:47:25','2023-06-19 21:49:07','9cd49630-ad95-4035-b598-2e7fdf393ffe'),(86,265,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 02:46:26','2023-06-20 02:50:02','054c59b3-6dad-447a-903a-235e16625e9f'),(87,268,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,34.7500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 02:50:35','2023-06-20 15:45:21','6d147f4c-8f32-48d9-9b22-380c776ec5aa'),(89,273,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 07:45:38','2023-06-20 08:10:19','d678dab3-0db2-4c38-8e2c-d8b82acbb330'),(90,276,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 07:51:57','2023-06-20 07:52:47','2d56c32c-aaaf-44b5-99e8-ee0e8769bb95'),(91,279,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 07:57:19','2023-06-20 08:02:48','045f9afa-cd36-4f30-a82b-2cc886cf4888'),(92,282,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 08:06:47','2023-06-20 08:15:14','208ae6b1-7aa7-4dbd-b813-ad4cf9cc8a9b'),(97,293,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,0.5700,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:13','2023-06-20 15:56:15','93e6eb57-7829-442b-82bd-a5e1a04246bb'),(98,293,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.2800,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:14','2023-06-20 15:56:15','4b8c8c73-3f79-4bea-8e2a-9975c65d8db9'),(99,293,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,28.2500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:15','2023-06-20 15:56:15','81ccbbfd-e3c1-4d33-9d5d-1b3555ebd3a5'),(100,295,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,0.5700,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:57','2023-06-20 16:01:16','07bdc84a-ae71-46fa-8dd6-c671f12f4cfb'),(101,295,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.2800,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:58','2023-06-20 16:01:16','84de82e2-f498-4f40-b945-c59727a54c03'),(102,295,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,28.2500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 15:56:59','2023-06-20 16:01:16','8287b9bf-a382-4996-b785-8fdaf5076c3a'),(103,298,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,3.0000,1.7000,3,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 16:07:59','2023-06-20 16:17:43','c1305b03-68ce-4076-9ff9-8925ed31c251'),(104,302,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 16:18:30','2023-06-20 16:25:29','dbd3b1eb-8639-4c3e-9b66-705882d6ca6e'),(106,305,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,0.5700,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 16:28:08','2023-06-20 16:30:20','a16efb62-9f74-4cfd-b92d-8bb2c9e5c2a4'),(107,305,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.2800,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 16:28:08','2023-06-20 16:30:20','8e6fe25e-499d-4b6f-8fbd-715ca87d2616'),(108,305,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,28.2500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-20 16:30:20','2023-06-20 16:30:20','e03fc6f3-59b2-47e9-a900-f6251f26938b'),(109,290,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.2800,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-21 07:48:26','2023-06-21 08:31:06','984a4540-80a7-4f96-8458-3a2104720d32'),(110,310,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-21 22:08:27','2023-06-22 00:12:20','7a44be40-6986-41f1-bcf2-de1a12b827d8'),(111,313,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,1.1300,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 00:16:25','2023-06-22 00:19:57','0e65712e-1907-4eb9-becf-90df4cbe605a'),(112,313,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.5700,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 00:16:25','2023-06-22 00:19:57','1c90954f-a142-43a9-94b9-d41e6104adbc'),(113,315,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 00:44:16','2023-06-22 00:45:18','3e2b5db3-c049-47f2-88a2-2cf1a0bcff3a'),(114,272,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.5700,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-07-02T23:55:11-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 08:30:37','2023-07-05 09:50:28','d0457fdf-6e10-44ab-b37d-eb7aed69582f'),(115,62,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,100.0000,56.5000,2,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 14:03:00','2023-06-22 17:09:56','bf1c5979-c549-41be-afcc-10ab1a7d4b39'),(116,320,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,56.5000,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 14:41:37','2023-06-22 14:47:05','bedf0dd8-98e6-48c7-bf12-f103c1860c69'),(117,324,20,1,1,'Product 02 - Product 02','[]','d751713988987e9331980363e24189ce',1.0000,0.0000,1.0000,'W4789-X2',0.0000,0.0000,0.0000,0.0000,1.0000,0.5700,1,'','','{\"productId\":19,\"isDefault\":true,\"price\":1,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":20,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"9099f5dd-ad0b-4230-9ac5-ad03a8adabdd\",\"siteSettingsId\":20,\"fieldLayoutId\":null,\"contentId\":18,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":20,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02?variant=20\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X2\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":20,\"defaultSku\":\"W4789-X2\",\"defaultPrice\":1,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":19,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"27e836a8-e0ea-411a-8f3a-76ab64cb4036\",\"siteSettingsId\":19,\"fieldLayoutId\":3,\"contentId\":17,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 02\",\"slug\":\"product-02\",\"uri\":\"shop\\/product-02\",\"dateCreated\":\"2022-10-12T12:41:00-07:00\",\"dateUpdated\":\"2023-06-19T14:10:46-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":19,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-02\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 02 - Product 02\",\"purchasableId\":20,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 17:14:13','2023-06-22 17:16:19','f19b0466-d268-4c79-bd6c-fb2635793c46'),(118,324,22,1,1,'Product 03 - Product 03','[]','d751713988987e9331980363e24189ce',0.5000,0.0000,0.5000,'W4789-X3',0.0000,0.0000,0.0000,0.0000,0.5000,0.2800,1,'','','{\"productId\":21,\"isDefault\":true,\"price\":0.5,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":22,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"8154b46e-82b0-4fa3-aad8-078b5a522178\",\"siteSettingsId\":22,\"fieldLayoutId\":null,\"contentId\":20,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":22,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03?variant=22\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X3\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:41:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":22,\"defaultSku\":\"W4789-X3\",\"defaultPrice\":0.5,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":21,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"6bdd0e78-5a91-419f-811f-73e2305b6536\",\"siteSettingsId\":21,\"fieldLayoutId\":3,\"contentId\":19,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 03\",\"slug\":\"product-03\",\"uri\":\"shop\\/product-03\",\"dateCreated\":\"2022-10-12T12:41:15-07:00\",\"dateUpdated\":\"2023-06-19T05:16:56-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":21,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-03\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 03 - Product 03\",\"purchasableId\":22,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 17:14:13','2023-06-22 17:16:19','0b8669d6-c933-4ca0-9774-4eb0400a4d4d'),(119,324,8,1,1,'Product 01 - Product 01','[]','d751713988987e9331980363e24189ce',50.0000,0.0000,50.0000,'W4789-X1',0.0000,0.0000,0.0000,0.0000,50.0000,28.2500,1,'','','{\"productId\":7,\"isDefault\":true,\"price\":50,\"sortOrder\":1,\"width\":0,\"height\":0,\"length\":0,\"weight\":0,\"stock\":0,\"hasUnlimitedStock\":true,\"minQty\":null,\"maxQty\":null,\"deletedWithProduct\":false,\"id\":8,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"4a2ce0d3-c782-4953-a941-408461c02d97\",\"siteSettingsId\":8,\"fieldLayoutId\":null,\"contentId\":6,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":null,\"uri\":null,\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":8,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"enabled\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01?variant=8\",\"isAvailable\":true,\"isPromotable\":true,\"shippingCategoryId\":1,\"sku\":\"W4789-X1\",\"taxCategoryId\":1,\"product\":{\"postDate\":\"2022-10-12T12:03:00-07:00\",\"expiryDate\":null,\"typeId\":1,\"taxCategoryId\":1,\"shippingCategoryId\":1,\"promotable\":true,\"freeShipping\":false,\"availableForPurchase\":true,\"defaultVariantId\":8,\"defaultSku\":\"W4789-X1\",\"defaultPrice\":50,\"defaultHeight\":0,\"defaultLength\":0,\"defaultWidth\":0,\"defaultWeight\":0,\"taxCategory\":null,\"name\":null,\"id\":7,\"tempId\":null,\"draftId\":null,\"revisionId\":null,\"isProvisionalDraft\":false,\"uid\":\"cdbd0c65-866b-411f-b6b4-c8c63a8a78af\",\"siteSettingsId\":7,\"fieldLayoutId\":3,\"contentId\":5,\"enabled\":true,\"archived\":false,\"siteId\":1,\"title\":\"Product 01\",\"slug\":\"product-01\",\"uri\":\"shop\\/product-01\",\"dateCreated\":\"2022-10-12T12:03:29-07:00\",\"dateUpdated\":\"2023-06-19T14:40:43-07:00\",\"dateLastMerged\":null,\"dateDeleted\":null,\"trashed\":false,\"isNewForSite\":false,\"canonicalId\":7,\"isDraft\":false,\"isRevision\":false,\"isUnpublishedDraft\":false,\"ref\":null,\"status\":\"live\",\"structureId\":null,\"url\":\"https:\\/\\/test.newsite.space\\/shop\\/product-01\"},\"onSale\":false,\"cpEditUrl\":\"#\",\"description\":\"Product 01 - Product 01\",\"purchasableId\":8,\"options\":[],\"sales\":[]}',NULL,'2023-06-22 17:14:13','2023-06-22 17:16:19','cf3ebb6f-a80f-4020-81f1-ed9af928a245'); /*!40000 ALTER TABLE `commerce_lineitems` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_lineitemstatuses` -- LOCK TABLES `commerce_lineitemstatuses` WRITE; /*!40000 ALTER TABLE `commerce_lineitemstatuses` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_lineitemstatuses` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_orderadjustments` -- LOCK TABLES `commerce_orderadjustments` WRITE; /*!40000 ALTER TABLE `commerce_orderadjustments` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_orderadjustments` VALUES (13,55,16,'tax','HST','13%',13.2600,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-09 14:07:14','2022-11-10 07:16:24','70f0a4d0-8d09-4b88-8859-c44abc866332'),(107,45,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-10 08:27:30','2022-11-10 08:27:31','40317c34-6939-49b2-9827-c5da7dec1df4'),(108,45,18,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition346216298\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1470730215\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition226669012\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":0,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-09T06:13:43-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 08:27:30','2022-11-10 08:27:31','b75f77a9-f9ed-49ca-9826-60a75a06d6a2'),(109,45,12,'discount','TEST',NULL,-12.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition346216298\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1470730215\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition226669012\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":0,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-09T06:13:43-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 08:27:30','2022-11-10 08:27:31','2e8d64c6-8d05-4aa0-9da7-aeb755f89e77'),(110,45,18,'tax','HST','13%',6.2400,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 08:27:30','2022-11-10 08:27:31','a11f2f77-6c5d-47d0-a1c0-9ca2af1b5016'),(111,45,12,'tax','HST','13%',54.6000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 08:27:30','2022-11-10 08:27:31','deeb38cb-3b1c-4a46-b509-59038844b03e'),(193,64,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-10 08:38:55','2022-11-10 08:38:56','8f0550cf-f490-441f-9897-c96e70db3b38'),(194,64,22,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition316008562\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition849436486\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1315593833\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-10T00:27:31-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 08:38:55','2022-11-10 08:38:56','f282e051-899a-4f3f-9f07-ea691ba6c4e1'),(195,64,21,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition316008562\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition849436486\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1315593833\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-10T00:27:31-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 08:38:55','2022-11-10 08:38:56','fe86306b-ac0d-4296-a19f-42fd8943c7c8'),(196,64,22,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 08:38:55','2022-11-10 08:38:56','a36691ff-b94c-4497-8cd0-96d2178d6cfd'),(197,64,21,'tax','HST','13%',6.8900,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 08:38:55','2022-11-10 08:38:56','bf070c31-3ebd-4a65-b37d-a68fd4590a8f'),(232,60,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-10 13:30:20','2022-11-10 13:30:20','9e19d0a8-9c57-4229-a240-4f70246cf08f'),(233,60,17,'discount','TEST',NULL,-9.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition773823514\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1915803753\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition2009287930\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":2,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-10T00:38:56-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 13:30:20','2022-11-10 13:30:20','8070e22b-1e2a-472f-850e-ca2afb1bee16'),(234,60,17,'tax','HST','13%',40.9500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 13:30:20','2022-11-10 13:30:20','481851b4-d596-4ae0-93e9-724fd2026483'),(256,71,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-10 13:36:10','2022-11-10 13:36:12','010964b3-fb1f-459e-b32e-0627f8365ffd'),(257,71,23,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition410929881\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition962701598\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition82831423\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":2,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-10T00:38:56-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-10 13:36:10','2022-11-10 13:36:12','0e337da3-c12e-411b-855a-2fdc272798fb'),(258,71,23,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-10 13:36:10','2022-11-10 13:36:12','ea6b1152-2807-433a-bd48-ab4496562778'),(281,75,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-11 12:04:07','2022-11-11 12:04:07','d426cdca-c187-4a19-96c0-eceefd13cde4'),(282,75,24,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition15518520\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition963286890\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1119490079\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-10T05:36:12-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 12:04:07','2022-11-11 12:04:07','1df86911-6c3b-43d4-911b-2ce209498686'),(283,75,24,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 12:04:07','2022-11-11 12:04:07','ede8b622-7ada-4fca-b483-18508fa9c174'),(305,78,NULL,'shipping','Door Delivery',NULL,20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-11 12:26:48','2022-11-11 12:45:34','240127dd-891e-481e-ad15-1670ca19e454'),(306,78,25,'discount','TEST',NULL,-6.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition828515742\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition932308384\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1969899252\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":4,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T04:04:07-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 12:26:48','2022-11-11 12:45:34','3c4e542c-fe50-4f6b-877e-000357cbff25'),(307,78,25,'tax','HST','13%',27.3000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 12:26:48','2022-11-11 12:45:34','4fe15016-7823-44aa-94f4-60128a76ef9e'),(325,81,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-11 12:50:04','2022-11-11 12:50:04','45878c04-d1a5-46a3-81f3-3e6cbea28da6'),(326,81,26,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition720701653\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition349322621\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1413941924\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":5,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T04:26:48-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 12:50:04','2022-11-11 12:50:04','18c30c7c-996e-4a59-a7da-e113506ee3f0'),(327,81,26,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 12:50:04','2022-11-11 12:50:04','c58de7f8-553a-4e88-8465-ddc509d903d3'),(351,84,NULL,'shipping','Door Delivery',NULL,20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-11 12:58:55','2022-11-11 12:59:55','2bd96455-53eb-40f2-9370-b83334e46ae2'),(352,84,27,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition288354691\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition660665331\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition47830649\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":6,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T04:50:04-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 12:58:55','2022-11-11 12:59:55','1795a32e-372f-44cc-a8f0-75d280259fac'),(353,84,27,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 12:58:55','2022-11-11 12:59:55','52ecc3b6-df37-4d7e-8411-dc57edf03439'),(389,87,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-11 13:01:57','2022-11-11 13:01:59','12501be0-a17a-48c0-8f43-1f7ef9d2b21e'),(390,87,29,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition963676975\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1983044637\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1119274106\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":7,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T04:58:56-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 13:01:57','2022-11-11 13:01:59','ce154d92-a470-48f6-a693-49c1e587f39c'),(391,87,28,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition963676975\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1983044637\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1119274106\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":7,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T04:58:56-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-11 13:01:57','2022-11-11 13:01:59','7b4d1a9a-90d2-4c28-8914-565878cb3a5b'),(392,87,29,'tax','HST','13%',6.2400,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 13:01:57','2022-11-11 13:01:59','1968c1f9-bdb0-4824-a753-1af7c5458dd2'),(393,87,28,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-11 13:01:57','2022-11-11 13:01:59','b0a60c97-e26e-4e22-b686-aef80cf90cbd'),(417,90,NULL,'shipping','Door Delivery',NULL,20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 13:54:37','2022-11-14 13:55:58','9ecdf9fd-7cbd-4053-aa6c-e9331aa48dad'),(418,90,30,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition929490504\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1875949408\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1858117422\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":8,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-11T05:01:59-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 13:54:37','2022-11-14 13:55:58','98e2cd5d-1510-492a-b780-8d1a8098d117'),(419,90,30,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 13:54:37','2022-11-14 13:55:58','b98e594c-d867-4940-a4ea-4d23b9195510'),(443,93,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:06:41','2022-11-14 14:06:43','214ea40a-625f-41eb-8e59-a2503ba2f412'),(444,93,31,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1695089367\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1824035294\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition711089184\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":9,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T05:54:38-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:06:41','2022-11-14 14:06:43','84c47982-6fe7-436c-8f9e-86e9dbfabb07'),(445,93,31,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:06:41','2022-11-14 14:06:43','49615b54-c5ad-4595-bfa6-76bf4073a44b'),(473,96,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:11:40','2022-11-14 14:11:41','0176ec54-bac0-4586-babf-596484e94e24'),(474,96,32,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition698708977\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1597131355\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition421214156\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":10,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:06:43-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:11:40','2022-11-14 14:11:41','72f16049-d88e-4704-bbdc-41a4ad245660'),(475,96,32,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:11:40','2022-11-14 14:11:41','d743c228-6798-4097-85ad-b04f4dc3f660'),(493,99,NULL,'shipping','Door Delivery',NULL,20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:15:03','2022-11-14 14:18:16','ac8e9ae2-3326-4361-8242-adfe9f51cc31'),(494,99,33,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1826192842\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1620446072\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition321145969\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":11,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:11:41-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:15:03','2022-11-14 14:18:16','b1ae19a9-806f-44a6-a10d-afaadba68dd2'),(495,99,33,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:15:03','2022-11-14 14:18:16','2facc4c0-4ba8-4065-918f-7ca45596a08f'),(516,102,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:20:48','2022-11-14 14:20:49','a4b25556-9450-4591-9722-3227800f11dd'),(517,102,34,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition52593617\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1213373285\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition42703198\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":12,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:15:05-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:20:48','2022-11-14 14:20:49','22aaba8a-00eb-40a1-acf0-c573d8a12261'),(518,102,34,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:20:48','2022-11-14 14:20:49','b583c804-1a3e-45e2-b356-02cef99394e5'),(564,105,NULL,'shipping','Door Delivery','',20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:24:57','2022-11-14 14:24:58','98ab6c67-3d7f-4353-991a-4b375e095cd2'),(565,105,36,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1244774\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition963306288\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition944245165\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":13,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:20:49-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:24:57','2022-11-14 14:24:58','031478d0-be79-46c2-b790-374e5887d782'),(566,105,35,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1244774\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition963306288\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition944245165\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":13,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:20:49-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:24:57','2022-11-14 14:24:58','8fe57285-7aee-408e-8236-74b8c98e5ca4'),(567,105,36,'tax','HST','13%',6.8900,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:24:57','2022-11-14 14:24:58','f97496a3-e533-4cbf-9707-17341d2d8577'),(568,105,35,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:24:57','2022-11-14 14:24:58','43f03554-fb35-4f7f-a854-906087a93115'),(586,108,NULL,'shipping','Door Delivery',NULL,20.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":20,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-14 14:25:34','2022-11-15 11:24:28','0809f743-2757-428f-99b6-70be367c92d9'),(587,108,37,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1828431331\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1895846480\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition428483499\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":14,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-14T06:24:58-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-14 14:25:34','2022-11-15 11:24:28','f8d68371-eef9-41fc-b5aa-7b3a2eff68ca'),(588,108,37,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-14 14:25:34','2022-11-15 11:24:28','951d4168-60de-4a93-a025-74bd0518e113'),(606,111,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-15 11:29:29','2022-11-15 11:33:03','4cff77d5-192b-422f-ba90-046e2c17b5be'),(607,111,39,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-15 11:29:29','2022-11-15 11:33:03','62ce505d-5def-44ec-89c5-b45d89866034'),(618,115,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-15 11:59:37','2022-11-15 11:59:57','6c0d95af-4fa3-4ca2-b89b-ae6885a9c26f'),(619,115,40,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-15 11:59:37','2022-11-15 11:59:57','e6232daf-8dc8-4aef-9a80-a0e65008b90e'),(630,118,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-15 12:01:19','2022-11-15 12:03:50','19afc65e-aec5-4547-b873-8acc0061572c'),(631,118,41,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-15 12:01:19','2022-11-15 12:03:50','409c2fd2-8c1e-4427-a4d8-0d7c7ae99f22'),(652,121,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-15 13:58:40','2022-11-15 14:01:20','6221845c-0aa2-47a4-b423-a9a285df549e'),(653,121,42,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition423288673\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition475506518\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition2030075941\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":15,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-15T03:27:36-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-15 13:58:40','2022-11-15 14:01:20','e4abbce0-965c-4204-a0a6-a959743cff53'),(654,121,42,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-15 13:58:40','2022-11-15 14:01:20','f0dc57c2-6199-486b-b7c0-5e2f245e8f2d'),(678,124,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2022-11-15 14:03:22','2023-03-06 12:15:17','a65c15f7-cccb-4107-8717-c514db3b4808'),(679,124,43,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1407316864\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1148348551\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1594736273\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":16,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-15T05:58:41-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2022-11-15 14:03:22','2023-03-06 12:15:17','8a362cd6-1e4f-4675-ae40-04c3678fed62'),(680,124,43,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2022-11-15 14:03:22','2023-03-06 12:15:17','f9547029-a54c-4514-bc9f-a7ac721485bf'),(723,131,45,'tax','HST','13%',0.1300,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-01-23 14:09:05','2023-01-23 14:09:05','c7923113-baee-4c2d-b55b-51b4205d6de1'),(1093,165,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-04-12 07:46:55','2023-04-12 07:49:20','f4ae8b9a-e076-413e-b88d-4b568cea53fd'),(1094,165,53,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1039071884\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition1585647804\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1612437318\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":17,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2022-11-15T06:03:23-08:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2023-04-12 07:46:55','2023-04-12 07:49:20','88f82f8b-cb3b-4f81-8bb1-7e96443b4e44'),(1095,165,53,'tax','HST','13%',13.6500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-04-12 07:46:55','2023-04-12 07:49:20','09a08d60-8eb2-4d04-b8c1-c15a2671df6b'),(1123,169,NULL,'shipping','Door Delivery','',1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-15 07:55:52','2023-06-15 07:55:53','b3fd17e5-60ca-4ac7-a945-46fd71902017'),(1124,169,54,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition637564837\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition924193826\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition457567311\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":18,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2023-04-12T00:46:56-07:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2023-06-15 07:55:52','2023-06-15 07:55:53','716c09ee-9f09-4243-90da-0f5b6a20fe42'),(1125,169,54,'tax','HST','13%',6.2400,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-15 07:55:52','2023-06-15 07:55:53','3dc065fd-0e5c-4edd-9c8e-eeae26e47990'),(1166,127,NULL,'shipping','Door Delivery','',1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-15 08:58:55','2023-06-15 08:58:57','4a1bd34a-61dd-40ea-80e0-7530c6ae085d'),(1167,127,57,'discount','TEST',NULL,-3.0000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition241779611\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"condition2082142607\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"mainTag\":\"form\",\"id\":\"condition1185990653\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":19,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":-3,\"percentDiscount\":0,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2023-06-15T00:55:53-07:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2023-06-15 08:58:55','2023-06-15 08:58:57','7593d412-9530-4f09-9589-26b1e69b1d84'),(1168,127,57,'tax','HST','13%',6.2400,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-15 08:58:55','2023-06-15 08:58:57','a0b75e1f-1072-4cab-a070-346fb27ec862'),(1238,174,60,'discount','3-rd item for free',NULL,-67.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1013936869\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition944711447\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition1823377589\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":0,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-15T02:20:53-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-16 10:26:16','2023-06-16 10:26:17','396b840e-c99d-46a5-8402-b8aff9b76707'),(1239,174,60,'tax','HST','13%',26.3400,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-16 10:26:16','2023-06-16 10:26:17','6a62ade3-c4d8-4f14-8f0f-dea6527a55d7'),(1240,174,NULL,'shipping','Adj name','Adj descr',15.0000,0,0,'{\"rate\":\"15\"}','2023-06-16 10:26:16','2023-06-16 10:26:17','90535359-c364-4adf-bf71-ddecdf894793'),(1275,182,62,'tax','HST','13%',5.8500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-16 10:45:01','2023-06-16 10:45:02','ed019d67-3921-43d9-ada1-39cf44e71ead'),(1276,182,NULL,'shipping','Adj name','Adj descr',15.0000,0,0,'{\"rate\":\"15\"}','2023-06-16 10:45:01','2023-06-16 10:45:02','b0164d01-c20e-495d-a0c0-45890c47593e'),(1297,135,46,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-16 11:12:49','2023-06-16 11:12:50','226c120e-6e66-48c7-a4fb-deaf8ceb6989'),(1298,135,NULL,'shipping','Custom Shipping','',15.0000,0,0,'{\"rate\":\"15\"}','2023-06-16 11:12:49','2023-06-16 11:12:50','6e880609-fd5d-47ea-b432-ed721515de3f'),(1311,195,65,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-16 11:13:58','2023-06-16 11:13:59','1e4ed5fd-4c3c-4957-9d33-d978d96f86b7'),(1312,195,NULL,'shipping','Custom Shipping','',15.0000,0,0,'{\"rate\":\"15\"}','2023-06-16 11:13:58','2023-06-16 11:13:59','c9115aad-4078-4b96-be2a-a56b6486c32c'),(1363,137,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-16 13:23:30','2023-06-16 13:25:06','3adfeb10-3aa9-4c40-88d7-14e67225504a'),(1364,137,50,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-16 13:23:30','2023-06-16 13:25:06','e25c38d5-203d-4ac5-a276-7b78f09f346d'),(1365,137,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-16 13:23:30','2023-06-16 13:25:06','53b824b7-2436-4c7b-8b36-89d8a3359e61'),(1422,160,67,'discount','TEST',NULL,-0.5000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1549964420\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition865209409\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition1114702478\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":20,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2023-06-19T03:50:17-07:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2023-06-19 11:07:17','2023-06-19 11:10:17','8c8d3ee2-9823-4066-8d16-bfabab075a4f'),(1423,160,67,'tax','HST','13%',0.2000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:07:17','2023-06-19 11:10:17','d091a3a2-34e5-4841-96ce-0aeaeef13704'),(1424,160,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:07:17','2023-06-19 11:10:17','e129e999-7aa5-44d3-bf0a-e2ac28bff65b'),(1437,206,68,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:13:49','2023-06-19 11:16:26','6d951f84-df37-4a46-988a-5bbfcfa049f8'),(1438,206,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:13:49','2023-06-19 11:16:26','4069cc2d-20ae-48a2-a9c6-cbdfa9347355'),(1451,209,69,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:20:17','2023-06-19 11:26:33','027bcf27-0779-466a-937a-082c0b144e11'),(1452,209,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:20:17','2023-06-19 11:26:33','723f06d0-9f7f-477e-8c5f-23beb2c811f9'),(1474,212,70,'discount','TEST',NULL,-0.5000,0,0,'{\"id\":1,\"name\":\"TEST\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1139506101\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition440721522\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition995445994\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":21,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2022-11-09T06:13:43-08:00\",\"dateUpdated\":\"2023-06-19T04:07:19-07:00\",\"ignoreSales\":true,\"appliedTo\":\"allLineItems\",\"discountUseId\":1}','2023-06-19 11:22:41','2023-06-19 11:26:55','997274f3-e5a6-409c-a5a3-753225e137db'),(1475,212,70,'tax','HST','13%',0.2000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:22:41','2023-06-19 11:26:55','d79b586b-93fe-4042-905c-aae2ea54f4f0'),(1476,212,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:22:41','2023-06-19 11:26:55','a456801f-1b70-4c82-b1d0-f952a5a6517c'),(1489,216,71,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:28:32','2023-06-19 11:28:34','f24f7a73-e711-4444-aa14-56199e08dde5'),(1490,216,NULL,'shipping','Custom Shipping','',0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:28:32','2023-06-19 11:28:34','ba3f3ccb-cf60-46ab-a4ff-4c2fc62dfddb'),(1503,219,72,'tax','HST','13%',13.2600,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 11:40:33','2023-06-19 11:40:34','79fa8994-80e6-4b91-a534-dafdf1d31e31'),(1504,219,NULL,'shipping','Custom Shipping','',0.5000,0,0,'{\"rate\":0.5}','2023-06-19 11:40:33','2023-06-19 11:40:34','39f7f979-c48d-4ad1-9628-5b00c01028b8'),(1519,222,73,'tax','HST','13%',5.8500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:02:30','2023-06-19 12:02:31','1c563551-1eb3-421b-9d87-e95594ee3a34'),(1520,222,NULL,'shipping','Custom Shipping','',0.5000,0,0,'{\"rate\":0.5}','2023-06-19 12:02:30','2023-06-19 12:02:31','0c6bcaa1-7865-4b7c-a0dc-b0caedf5a86b'),(1533,225,74,'tax','HST','13%',13.2600,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:04:22','2023-06-19 12:04:23','4cf4535a-2d4d-4d07-8e4b-b34b30dcd099'),(1534,225,NULL,'shipping','Custom Shipping','',0.5000,0,0,'{\"rate\":0.5}','2023-06-19 12:04:22','2023-06-19 12:04:23','ce74c2c8-07ed-4b01-8637-b064898494a0'),(1547,228,75,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:13:15','2023-06-19 12:15:21','c6acce25-72e4-444d-8e27-3830f88be703'),(1548,228,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 12:13:15','2023-06-19 12:15:21','40292f73-064e-4ade-b0d7-0317a5875e41'),(1561,231,76,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:14:34','2023-06-19 12:16:18','9921c945-b4c1-496a-af95-8ecb8792b9fc'),(1562,231,NULL,'shipping','Custom Shipping',NULL,0.5000,0,0,'{\"rate\":0.5}','2023-06-19 12:14:34','2023-06-19 12:16:18','ac8f9b33-3f5d-4dad-b176-21e5d19d046a'),(1576,234,77,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:19:01','2023-06-19 12:19:01','d0e6cfd1-5549-49db-bdfc-f900ad5446fa'),(1584,237,78,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:20:20','2023-06-19 12:21:40','7f818274-7610-437f-9c66-649aba388528'),(1592,240,79,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 12:22:32','2023-06-19 12:23:25','d2eba411-735a-4b5d-a473-3886c3e6ce89'),(1611,243,80,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 21:13:35','2023-06-20 07:45:13','f04ef01a-7e5b-4c65-a2f5-bb510db0e2ef'),(1623,254,81,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 21:34:25','2023-06-19 21:35:07','e6a7e898-e97f-4923-b168-a26723398664'),(1671,257,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-19 21:46:40','2023-06-19 21:47:15','63ae983f-ba50-4a5d-aabd-b14819e85516'),(1672,257,84,'discount','Jane\'s Sale',NULL,-25.0000,0,0,'{\"id\":3,\"name\":\"Jane\'s Sale\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition771291807\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1575721690\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition180265589\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":0,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"original\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-19T14:31:35-07:00\",\"dateUpdated\":\"2023-06-19T14:32:35-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":3}','2023-06-19 21:46:40','2023-06-19 21:47:15','f9c14396-ed8c-4380-81f8-8585580f47d7'),(1673,257,84,'tax','HST','13%',9.7500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 21:46:40','2023-06-19 21:47:15','1cb25dfe-26dd-4fa0-9131-0095209479c9'),(1682,262,85,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-19 21:48:44','2023-06-19 21:49:07','e9bf7dc5-f8f6-4650-9458-3f133ac286a0'),(1696,265,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-20 02:48:03','2023-06-20 02:50:02','3c93f844-ed5b-4d08-9508-6f559214ae99'),(1697,265,86,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 02:48:03','2023-06-20 02:50:02','ec0a0ca5-69fc-4173-99ed-57e93db556ca'),(1721,268,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-20 02:52:00','2023-06-20 15:45:21','f63f9934-b454-46f8-a2c8-b8f15fb36dd8'),(1722,268,87,'discount','Jane\'s Sale',NULL,-25.0000,0,0,'{\"id\":3,\"name\":\"Jane\'s Sale\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition840572492\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1215121200\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition1832986466\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"original\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-19T14:31:35-07:00\",\"dateUpdated\":\"2023-06-19T14:46:41-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":3}','2023-06-20 02:52:00','2023-06-20 15:45:21','c802da70-e30f-4e39-9e55-eac50db2ea9b'),(1723,268,87,'tax','HST','13%',9.7500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 02:52:00','2023-06-20 15:45:21','eafecaca-e570-4032-bb0d-f8119aaf365a'),(1741,273,89,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 07:47:53','2023-06-20 08:10:19','e2481ee1-cb01-4f6c-8ced-245d1b637c48'),(1743,276,90,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 07:52:47','2023-06-20 07:52:47','53980c74-a8ce-41d8-8c8b-bba94e878d71'),(1745,279,91,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 08:01:56','2023-06-20 08:02:48','3f0618a1-8443-43ca-ab6a-560f5a5c869f'),(1747,282,92,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 08:15:14','2023-06-20 08:15:14','5fdff49f-f6f8-4f2b-829d-40bca9e8aa06'),(1756,190,64,'tax','HST','13%',0.2600,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"purchasable\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2022-11-09T05:53:39-08:00\"}','2023-06-20 08:16:29','2023-06-20 08:16:29','daad911f-d4c4-4079-86f3-09d3eb10a20c'),(1805,293,99,'discount','3-rd item for free',NULL,-25.0000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1344606581\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1704422901\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition790235695\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:56:15','2023-06-20 15:56:15','7ed569e9-5a58-4b8e-b726-220c9fe78a7f'),(1806,293,98,'discount','3-rd item for free',NULL,-0.2500,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1344606581\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1704422901\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition790235695\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:56:15','2023-06-20 15:56:15','0eb77d21-a7dd-4c20-a79d-6f5fa688143c'),(1807,293,97,'discount','3-rd item for free',NULL,-0.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1344606581\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1704422901\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition790235695\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:56:15','2023-06-20 15:56:15','aa33c65f-482b-42a3-baeb-83617041679d'),(1808,293,99,'tax','HST','13%',3.2500,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:56:15','2023-06-20 15:56:15','78b39ce1-190a-4981-a632-e707fd397678'),(1809,293,98,'tax','HST','13%',0.0300,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:56:15','2023-06-20 15:56:15','5761657d-2868-4d1c-8697-bd6efa16edba'),(1810,293,97,'tax','HST','13%',0.0700,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:56:15','2023-06-20 15:56:15','b9f0d6b2-0cb7-49d5-b1ed-0bfa88905f53'),(1868,295,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-20 15:59:53','2023-06-20 16:01:16','9a7cd127-ba55-4ee3-bbe2-5e0459f69793'),(1869,295,102,'discount','3-rd item for free',NULL,-25.0000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1644440999\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1064411582\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition741565436\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:59:53','2023-06-20 16:01:16','5a386bbd-84d2-495e-bcec-432078b627bc'),(1870,295,101,'discount','3-rd item for free',NULL,-0.2500,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1644440999\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1064411582\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition741565436\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:59:53','2023-06-20 16:01:16','68f06a59-398d-4011-b794-d10e0f9da77d'),(1871,295,100,'discount','3-rd item for free',NULL,-0.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1644440999\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1064411582\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition741565436\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":1,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-16T03:26:17-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 15:59:53','2023-06-20 16:01:16','7cfb1cca-65ea-4c48-8588-e096ecbcf054'),(1872,295,102,'tax','HST','13%',3.2500,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:59:53','2023-06-20 16:01:16','7351cbb9-9d36-49a7-868e-f9cfb81cf17e'),(1873,295,101,'tax','HST','13%',0.0300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:59:53','2023-06-20 16:01:16','2915897c-b7c0-47a6-9c86-9fc5c98e9bea'),(1874,295,100,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 15:59:53','2023-06-20 16:01:16','0147a1c8-15f0-47eb-a367-81cf9761e22f'),(1900,298,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-20 16:11:37','2023-06-20 16:17:43','b0a4bad7-2c6b-4013-a8b8-e7ea4c0e7cf3'),(1901,298,103,'discount','3-rd item for free',NULL,-1.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1320207941\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition995101447\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition1619638840\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":2,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T08:59:55-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 16:11:37','2023-06-20 16:17:43','49c1add1-3211-4f18-b53d-d3ef184672b5'),(1902,298,103,'tax','HST','13%',0.2000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 16:11:37','2023-06-20 16:17:43','e3067dff-03a9-4836-be74-148a26b794e7'),(1922,302,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-20 16:19:25','2023-06-20 16:25:29','03a0ec91-555e-41f4-96bb-b77db1f2f49c'),(1924,302,104,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 16:19:25','2023-06-20 16:25:29','6fd57476-ae00-4fdb-9134-2caa206dfd34'),(1929,305,106,'discount','3-rd item for free',NULL,-0.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1510943388\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition755149904\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition521873069\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T09:11:38-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 16:30:20','2023-06-20 16:30:20','a0265b83-0925-46eb-a0f8-7315111a9cac'),(1930,305,107,'discount','3-rd item for free',NULL,-0.2500,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1510943388\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition755149904\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition521873069\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T09:11:38-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 16:30:20','2023-06-20 16:30:20','17fa0187-b5f3-488f-bcb2-a8e628455a18'),(1931,305,108,'discount','3-rd item for free',NULL,-25.0000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1510943388\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition755149904\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition521873069\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T09:11:38-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-20 16:30:20','2023-06-20 16:30:20','a8e865b5-ff90-4447-915c-793379edaeb4'),(1932,305,106,'tax','HST','13%',0.0700,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 16:30:20','2023-06-20 16:30:20','7ea8f3b6-635c-4255-97bc-45f034a2e23d'),(1933,305,107,'tax','HST','13%',0.0300,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 16:30:20','2023-06-20 16:30:20','4a40db65-8e4e-4dc8-a263-8b26d6189b84'),(1934,305,108,'tax','HST','13%',3.2500,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-20 16:30:20','2023-06-20 16:30:20','b71305d2-99db-4ab8-87a8-eaa77871295c'),(1961,290,109,'discount','Jane\'s Sale',NULL,-0.2500,0,0,'{\"id\":3,\"name\":\"Jane\'s Sale\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition530497236\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition725341964\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition168033481\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":2,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":0,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"original\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-19T14:31:35-07:00\",\"dateUpdated\":\"2023-06-19T19:52:02-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":3}','2023-06-21 07:51:07','2023-06-21 08:31:06','27f965db-4fdb-4bd1-b0b7-1247865778a0'),(1962,290,109,'tax','HST','13%',0.0300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-21 07:51:07','2023-06-21 08:31:06','21102d74-3eb3-41a2-a188-c4d8160ee5ed'),(1973,198,66,'tax','HST','13%',0.1300,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-21 08:31:40','2023-06-21 08:32:54','700e14a3-bc5b-4fa9-b59e-3f8c784e3453'),(1984,310,110,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-21 23:04:49','2023-06-22 00:12:20','51259aa5-109d-4883-8f25-7e156f47e018'),(1989,313,111,'tax','HST','13%',0.1300,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 00:19:57','2023-06-22 00:19:57','7a3079de-bbfe-4c98-8cd3-c06d9eed1d5d'),(1990,313,112,'tax','HST','13%',0.0700,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 00:19:57','2023-06-22 00:19:57','269731a1-3860-458e-a284-295f3f7e9a7b'),(1992,315,113,'tax','HST','13%',6.5000,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 00:45:18','2023-06-22 00:45:18','9f800903-2edd-497b-8c5a-dc15c342939d'),(2034,320,NULL,'shipping','Door Delivery',NULL,1.0000,0,0,'{\"id\":2,\"name\":\"Door Shipping\",\"description\":null,\"shippingZoneId\":null,\"methodId\":2,\"priority\":1,\"enabled\":true,\"orderConditionFormula\":null,\"minQty\":0,\"maxQty\":0,\"minTotal\":0,\"maxTotal\":0,\"minMaxTotalType\":\"salePrice\",\"minWeight\":0,\"maxWeight\":0,\"baseRate\":1,\"perItemRate\":0,\"percentageRate\":0,\"weightRate\":0,\"minRate\":0,\"maxRate\":0,\"isLite\":false,\"dateCreated\":null,\"dateUpdated\":null}','2023-06-22 14:43:09','2023-06-22 14:47:05','f1c25898-aa33-4bd9-b88f-61baf1dbc9d9'),(2035,320,116,'tax','HST','13%',6.5000,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 14:43:09','2023-06-22 14:47:05','68d14d13-bf45-41a9-a315-7064010f10e2'),(2066,62,115,'discount','3-rd item for free',NULL,-50.0000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1397278933\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition827287251\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition987374037\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T09:11:38-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-22 14:46:43','2023-06-22 17:09:56','66fbb471-14d2-4bb0-a51b-ccb413522d32'),(2067,62,20,'discount','3-rd item for free',NULL,-0.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition1397278933\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition827287251\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition987374037\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":3,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-20T09:11:38-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-22 14:46:43','2023-06-22 17:09:56','97cb6245-3e17-4558-a758-27cfdd4da21d'),(2068,62,115,'tax','HST','13%',6.5000,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 14:46:43','2023-06-22 17:09:56','d84b301e-ff29-429e-9c8b-40a611a0428f'),(2069,62,20,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 14:46:43','2023-06-22 17:09:56','0a011aa4-4aac-40fb-b3e0-ea5aecc0d398'),(2082,324,117,'discount','3-rd item for free',NULL,-0.5000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2049925813\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2050581136\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition480196062\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":4,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-22T07:46:43-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-22 17:15:04','2023-06-22 17:16:19','8709b83e-13c4-442c-8fc3-c7e49623f61e'),(2083,324,118,'discount','3-rd item for free',NULL,-0.2500,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2049925813\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2050581136\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition480196062\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":4,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-22T07:46:43-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-22 17:15:04','2023-06-22 17:16:19','37bee491-3838-45f6-b0b7-0e50d7516fc4'),(2084,324,119,'discount','3-rd item for free',NULL,-25.0000,0,0,'{\"id\":2,\"name\":\"3-rd item for free\",\"description\":null,\"couponFormat\":\"######\",\"_orderCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2049925813\",\"name\":\"orderCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_customerCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"condition2050581136\",\"name\":\"customerCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_shippingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"div\",\"id\":\"shippingAddressCondition\",\"name\":\"shippingAddressCondition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"_billingAddressCondition\":{\"sortable\":false,\"elementType\":null,\"sourceKey\":null,\"fieldContext\":\"global\",\"queryParams\":[],\"referenceElement\":null,\"mainTag\":\"form\",\"id\":\"condition480196062\",\"name\":\"condition\",\"forProjectConfig\":false,\"addRuleLabel\":\"Add a rule\"},\"perUserLimit\":0,\"perEmailLimit\":0,\"totalDiscountUseLimit\":0,\"totalDiscountUses\":4,\"dateFrom\":null,\"dateTo\":null,\"purchaseTotal\":0,\"orderConditionFormula\":null,\"purchaseQty\":3,\"maxPurchaseQty\":0,\"baseDiscount\":0,\"baseDiscountType\":\"value\",\"perItemDiscount\":0,\"percentDiscount\":-0.5,\"percentageOffSubject\":\"discounted\",\"excludeOnSale\":false,\"hasFreeShippingForMatchingItems\":false,\"hasFreeShippingForOrder\":false,\"allPurchasables\":true,\"allCategories\":true,\"categoryRelationshipType\":\"element\",\"enabled\":true,\"stopProcessing\":false,\"sortOrder\":999,\"dateCreated\":\"2023-06-15T02:16:34-07:00\",\"dateUpdated\":\"2023-06-22T07:46:43-07:00\",\"ignoreSales\":false,\"appliedTo\":\"matchingLineItems\",\"discountUseId\":2}','2023-06-22 17:15:04','2023-06-22 17:16:19','40e8a484-2abf-4349-a740-a38882485eae'),(2085,324,117,'tax','HST','13%',0.0700,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 17:15:04','2023-06-22 17:16:19','93b49ee4-459a-4097-9198-e263a60865d4'),(2086,324,118,'tax','HST','13%',0.0300,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 17:15:04','2023-06-22 17:16:19','6adb25af-4fc3-45c1-8f14-d8998016bde8'),(2087,324,119,'tax','HST','13%',3.2500,0,1,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-06-22 17:15:04','2023-06-22 17:16:19','eb66b949-5827-45ad-bbba-5bcce0504fd2'),(2089,272,114,'tax','HST','13%',0.0700,0,0,'{\"id\":1,\"name\":\"HST\",\"code\":\"HST\",\"rate\":0.13,\"include\":false,\"removeIncluded\":false,\"removeVatIncluded\":false,\"isVat\":false,\"taxable\":\"price\",\"taxCategoryId\":1,\"isLite\":false,\"taxZoneId\":null,\"dateCreated\":\"2022-11-09T05:53:39-08:00\",\"dateUpdated\":\"2023-06-20T01:27:14-07:00\"}','2023-07-05 09:50:28','2023-07-05 09:50:28','24d4cbff-b396-4c42-b509-c96a1f9d6246'); /*!40000 ALTER TABLE `commerce_orderadjustments` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_orderhistories` -- LOCK TABLES `commerce_orderhistories` WRITE; /*!40000 ALTER TABLE `commerce_orderhistories` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_orderhistories` VALUES (1,31,26,'denis@convergine.com',NULL,1,NULL,'2022-10-28 11:37:02','2022-10-28 11:37:02','81e75598-0178-4d04-b5e7-d13bc21f77b6'),(2,35,26,'denis@convergine.com',NULL,1,NULL,'2022-10-28 11:55:25','2022-10-28 11:55:25','139ba56c-8e9d-403f-b0be-8fd7f59f8e4d'),(3,38,26,'denis@convergine.com',NULL,1,NULL,'2022-10-28 12:06:01','2022-10-28 12:06:01','ad9ed4a7-2d86-446e-b69e-f182f38925a6'),(4,41,26,'denis@convergine.com',NULL,1,NULL,'2022-10-28 12:06:56','2022-10-28 12:06:56','17e32aa2-3134-4044-9dea-5b2f3a4e26cc'),(5,49,26,'denis@convergine.com',NULL,1,NULL,'2022-10-31 12:59:58','2022-10-31 12:59:58','ee57fcb9-b3f1-4c16-bbee-04e2c67cb38e'),(6,52,26,'denis@convergine.com',NULL,1,NULL,'2022-10-31 14:06:37','2022-10-31 14:06:37','51cab06c-7029-463d-9cae-2cda8407102d'),(7,55,26,'denis@convergine.com',NULL,1,NULL,'2022-11-09 14:07:16','2022-11-09 14:07:16','63026573-f7ea-4cdf-a1c0-fd64e6f30863'),(8,45,1,'konstantin@convergine.com',NULL,1,NULL,'2022-11-10 08:27:31','2022-11-10 08:27:31','8397314c-5b43-4b95-b8be-07de6ca78985'),(9,64,66,'denis1@convergine.com',NULL,1,NULL,'2022-11-10 08:38:56','2022-11-10 08:38:56','cd640be3-ad73-41b2-ac3b-0c833d473b14'),(10,71,26,'denis@convergine.com',NULL,1,NULL,'2022-11-10 13:36:12','2022-11-10 13:36:12','5ffbc5d9-439c-447f-a85e-77cc673c065d'),(11,75,26,'denis@convergine.com',NULL,1,NULL,'2022-11-11 12:04:07','2022-11-11 12:04:07','c527dce0-c440-4888-9f20-ef685e7edb85'),(12,78,26,'denis@convergine.com',NULL,1,NULL,'2022-11-11 12:26:48','2022-11-11 12:26:48','601c0ada-8fe9-4857-b33b-50420abae734'),(13,81,26,'denis@convergine.com',NULL,1,NULL,'2022-11-11 12:50:04','2022-11-11 12:50:04','8d7e7281-233b-4112-90f5-97cde0f2777d'),(14,84,26,'denis@convergine.com',NULL,1,NULL,'2022-11-11 12:58:56','2022-11-11 12:58:56','7068e349-6194-4e65-9dd6-b9eaa1e7c632'),(15,87,26,'denis@convergine.com',NULL,1,NULL,'2022-11-11 13:01:59','2022-11-11 13:01:59','4aad4e33-13ec-467c-bfa9-0a0946576da6'),(16,90,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 13:54:38','2022-11-14 13:54:38','90a72318-a931-4865-ac34-3f8d7d7587ef'),(17,93,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:06:43','2022-11-14 14:06:43','2943fb7e-a53c-497a-a736-6a18c0a4c3b8'),(18,96,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:11:41','2022-11-14 14:11:41','9fc2100b-e2f0-4315-a903-dbdfb7c51d9a'),(19,99,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:15:05','2022-11-14 14:15:05','3c5fe1b2-3980-42a2-a4f0-b55d41e769aa'),(20,102,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:20:49','2022-11-14 14:20:49','cd5e92e3-22ee-4b5b-a4bd-947880f1213c'),(21,105,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:24:58','2022-11-14 14:24:58','36d40088-f0da-4270-b9eb-10b074ceb9fb'),(22,108,26,'denis@convergine.com',NULL,1,NULL,'2022-11-14 14:25:36','2022-11-14 14:25:36','5919c78f-ce0e-4858-992b-9ff93b79d8fb'),(23,111,26,'denis@convergine.com',NULL,1,NULL,'2022-11-15 11:29:31','2022-11-15 11:29:31','a16a8962-aaf5-41d2-8486-f9eb6823769a'),(24,115,26,'denis@convergine.com',NULL,1,NULL,'2022-11-15 11:59:39','2022-11-15 11:59:39','ffdf9172-7c70-4c87-ace9-f6df0d760ebc'),(25,118,26,'denis@convergine.com',NULL,1,NULL,'2022-11-15 12:01:20','2022-11-15 12:01:20','74906051-ee04-406d-9c23-26bef892fa77'),(26,121,26,'denis@convergine.com',NULL,1,NULL,'2022-11-15 13:58:41','2022-11-15 13:58:41','a45506e5-65f4-4502-a5ba-e9c074bf0342'),(27,124,26,'denis@convergine.com',NULL,1,NULL,'2022-11-15 14:03:23','2022-11-15 14:03:23','c23384cc-af74-425b-8942-987755edac2d'),(28,165,26,'denis@convergine.com',NULL,1,NULL,'2023-04-12 07:46:56','2023-04-12 07:46:56','91abb9ad-e8c1-46d3-a514-35715016bab1'),(29,169,26,'denis@convergine.com',NULL,1,NULL,'2023-06-15 07:55:53','2023-06-15 07:55:53','74711c10-45d6-4f99-9881-847629f3691c'),(30,127,26,'denis@convergine.com',NULL,1,NULL,'2023-06-15 08:58:57','2023-06-15 08:58:57','506e0ebc-ad53-4851-baf8-dc30a911b7e1'),(31,174,26,'denis@convergine.com',NULL,1,NULL,'2023-06-16 10:26:17','2023-06-16 10:26:17','01248051-4096-4c7d-9c4b-ef625972603d'),(32,182,26,'denis@convergine.com',NULL,1,NULL,'2023-06-16 10:45:02','2023-06-16 10:45:02','fcdad75d-39f8-4235-b5bd-841f69e78513'),(33,135,26,'denis@convergine.com',NULL,1,NULL,'2023-06-16 11:12:50','2023-06-16 11:12:50','22a47354-3b76-4056-88a1-38aa38225bc7'),(34,195,26,'denis@convergine.com',NULL,1,NULL,'2023-06-16 11:13:59','2023-06-16 11:13:59','a7675dd3-d4c0-47e2-9010-15b328514768'),(35,137,26,'denis@convergine.com',NULL,1,NULL,'2023-06-16 13:23:32','2023-06-16 13:23:32','5697290f-6a63-4ea2-a47e-ea5e9b9c12ed'),(36,160,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:07:19','2023-06-19 11:07:19','5ada6fc9-b05a-4a8d-a15e-08ad08e33a82'),(37,206,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:13:52','2023-06-19 11:13:52','da7aad20-6f59-42e5-8766-e2ef72ca4428'),(38,209,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:20:19','2023-06-19 11:20:19','b469bf4b-08c9-4483-bf83-d0adb01d5937'),(39,212,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:22:43','2023-06-19 11:22:43','685a3b53-8bf0-44e2-8b4c-2e77f0a99256'),(40,216,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:28:34','2023-06-19 11:28:34','454539c9-8989-4145-bbd5-12ae86c2c93e'),(41,219,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 11:40:34','2023-06-19 11:40:34','9a3dcc2c-d8cf-4174-8118-e7dd136609bb'),(42,222,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:02:31','2023-06-19 12:02:31','a9ab4321-e37b-4ad5-8443-52948dfdf93c'),(43,225,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:04:23','2023-06-19 12:04:23','28472785-54eb-432e-b352-0cad7df1216d'),(44,228,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:13:15','2023-06-19 12:13:15','22c6328a-be7f-44ec-9e5c-662910e53a6e'),(45,231,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:14:36','2023-06-19 12:14:36','9f2bcf89-b8bc-43f9-979d-138ae962c0c8'),(46,234,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:19:01','2023-06-19 12:19:01','fe0a3494-ee68-460d-b952-85775043398b'),(47,237,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:20:21','2023-06-19 12:20:21','67ae4d42-30de-4436-be9b-be72d233b090'),(48,240,26,'denis@convergine.com',NULL,1,NULL,'2023-06-19 12:22:35','2023-06-19 12:22:35','803cbe7f-bca7-4ab8-a172-f1d42b747f0d'),(49,243,245,'jane@convergine.com',NULL,1,NULL,'2023-06-19 21:13:35','2023-06-19 21:13:35','20e82907-18b9-44d4-82b3-f96d443c7fe3'),(50,254,245,'Jane TEST',NULL,1,NULL,'2023-06-19 21:34:26','2023-06-19 21:34:26','0b69057f-e948-4d81-ab7d-7fa7269ffeda'),(51,257,245,'Jane TEST',NULL,1,NULL,'2023-06-19 21:46:41','2023-06-19 21:46:41','cfe911d9-8082-4ce9-bbf4-ef0aca0e929d'),(52,262,245,'Jane TEST',NULL,1,NULL,'2023-06-19 21:48:46','2023-06-19 21:48:46','3ffbd992-ef3a-4a65-941d-b4982d8fbd1b'),(53,265,245,'Jane TEST',NULL,1,NULL,'2023-06-20 02:48:03','2023-06-20 02:48:03','8c931bcf-280b-4e15-8bc9-be9f04fd22bf'),(54,268,245,'Jane TEST',NULL,1,NULL,'2023-06-20 02:52:02','2023-06-20 02:52:02','a7573beb-340a-4d66-a89a-752014c4d1b4'),(55,273,66,'denis1@convergine.com',NULL,1,NULL,'2023-06-20 07:47:53','2023-06-20 07:47:53','b70998ad-ec12-4de4-a321-5bde1026a818'),(56,279,1,'konstantin@convergine.com',NULL,1,NULL,'2023-06-20 08:01:56','2023-06-20 08:01:56','96254384-14e7-48e0-a554-dd8377a2b116'),(57,282,1,'konstantin@convergine.com',NULL,1,NULL,'2023-06-20 08:15:14','2023-06-20 08:15:14','9eea9f0f-a608-4bdf-94fd-62f0b5abfc94'),(58,190,26,'denis@convergine.com',NULL,1,NULL,'2023-06-20 08:16:29','2023-06-20 08:16:29','9d45e14e-85c1-4eb4-b38f-5bd12284c095'),(59,295,245,'Jane TEST',NULL,1,NULL,'2023-06-20 15:59:55','2023-06-20 15:59:55','b1297d10-c4be-4e3a-9a9f-9c11c512b429'),(60,298,245,'Jane TEST',NULL,1,NULL,'2023-06-20 16:11:38','2023-06-20 16:11:38','5d1ea8af-f2d0-4a73-8bdb-7d4874e13227'),(61,302,245,'Jane TEST',NULL,1,NULL,'2023-06-20 16:19:27','2023-06-20 16:19:27','c389901e-1935-483d-b227-adbb52cab8c7'),(62,290,26,'denis@convergine.com',NULL,1,NULL,'2023-06-21 07:51:07','2023-06-21 07:51:07','4c977f27-3f7c-486c-ad45-7df962ea2e1e'),(63,198,26,'denis@convergine.com',NULL,1,NULL,'2023-06-21 08:31:40','2023-06-21 08:31:40','6795d549-3618-406c-b8eb-6a88e9491cb9'),(64,310,245,'Jane TEST',NULL,1,NULL,'2023-06-21 23:04:50','2023-06-21 23:04:50','0cb26bb2-970e-475e-91e2-a765a8479601'),(65,320,1,'konstantin@convergine.com',NULL,1,NULL,'2023-06-22 14:43:10','2023-06-22 14:43:10','10312f74-4fe8-47e3-b519-d016303b39be'),(66,62,1,'konstantin@convergine.com',NULL,1,NULL,'2023-06-22 14:46:43','2023-06-22 14:46:43','3f2ab2b0-6424-459a-9817-c3dd391d7496'),(67,324,1,'konstantin@convergine.com',NULL,1,NULL,'2023-06-22 17:15:05','2023-06-22 17:15:05','c1e01fbb-76ff-4739-a319-31351ad233c9'); /*!40000 ALTER TABLE `commerce_orderhistories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_ordernotices` -- LOCK TABLES `commerce_ordernotices` WRITE; /*!40000 ALTER TABLE `commerce_ordernotices` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_ordernotices` VALUES (1,60,'invalidCouponRemoved','couponCode','Coupon removed: Coupon not valid.','2022-11-09 14:14:00','2022-11-09 14:14:00','ecbeaf39-6a09-47b0-9885-4ba99f19a473'); /*!40000 ALTER TABLE `commerce_ordernotices` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_orders` -- LOCK TABLES `commerce_orders` WRITE; /*!40000 ALTER TABLE `commerce_orders` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_orders` VALUES (31,34,33,NULL,NULL,NULL,NULL,2,NULL,26,1,'c2312ed147126346824e21117dd3ae39','c2312ed',NULL,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2022-10-28 11:37:02',NULL,NULL,'CAD','CAD','99.229.180.222','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=c2312ed147126346824e21117dd3ae39&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-28 11:16:09','2022-10-28 11:37:29','bd0ebf4d-03cb-45b5-b4f8-48b0329ed52a'),(35,37,36,NULL,NULL,NULL,NULL,2,NULL,26,1,'94d3dc41c8a530e8a3e0c6989b56ae3b','94d3dc4',NULL,102.0000,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,'paid','denis@convergine.com',1,'2022-10-28 11:55:25','2022-10-28 11:55:25',NULL,'CAD','CAD','99.229.180.222','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=94d3dc41c8a530e8a3e0c6989b56ae3b&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-28 11:54:11','2022-10-28 11:55:25','ca735612-ec71-4b96-b379-5d5fe2140f0c'),(38,40,39,NULL,NULL,NULL,NULL,NULL,NULL,26,1,'4a10d15b13037577644d150e9f559232','4a10d15',NULL,102.0000,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,'paid','denis@convergine.com',1,'2022-10-28 12:06:01','2022-10-28 12:06:01',NULL,'CAD','CAD','99.229.180.222','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=4a10d15b13037577644d150e9f559232&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-28 11:55:40','2022-10-28 12:06:01','4519701e-183d-45cc-8a1f-8fae31b849a6'),(41,43,42,NULL,NULL,NULL,NULL,NULL,NULL,26,1,'38c1d53322e16eb5f4dbfd3189767de7','38c1d53',NULL,102.0000,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,'paid','denis@convergine.com',1,'2022-10-28 12:06:56','2022-10-28 12:06:56',NULL,'CAD','CAD','99.229.180.222','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=38c1d53322e16eb5f4dbfd3189767de7&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-28 12:06:10','2022-10-28 12:06:56','293ca306-fd05-4f2a-8c3b-eff087450a09'),(45,48,46,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'7946cfa871e1e7a63ba56da4dc35d8fd','7946cfa',NULL,498.8400,453.0000,518.8400,518.8400,518.8400,-15.0000,60.8400,0.0000,20.0000,'paid','konstantin@convergine.com',1,'2022-11-10 08:27:31','2022-11-10 08:27:31',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=7946cfa871e1e7a63ba56da4dc35d8fd&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-10-28 12:07:55','2022-11-10 08:27:31','e93bef54-5e8e-4687-9f62-61204fb6773f'),(49,51,50,NULL,NULL,44,44,2,NULL,26,1,'5c8d7441356702c0eadb7dbc1783f2bf','5c8d744',NULL,102.0000,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,'paid','denis@convergine.com',1,'2022-10-31 12:59:58','2022-10-31 12:59:58',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=5c8d7441356702c0eadb7dbc1783f2bf&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-31 12:46:21','2022-10-31 12:59:58','dd69e2da-2841-4dd1-905f-82904f2f9ebf'),(52,54,53,NULL,NULL,44,44,NULL,NULL,26,1,'211fbfbce377e151db038ccda36c2b75','211fbfb',NULL,102.0000,102.0000,102.0000,102.0000,102.0000,0.0000,0.0000,0.0000,0.0000,'paid','denis@convergine.com',1,'2022-10-31 14:06:37','2022-10-31 14:06:37',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=211fbfbce377e151db038ccda36c2b75&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-10-31 13:12:29','2022-10-31 14:06:37','5d22b949-2c33-49a7-a62b-5f01978bca47'),(55,59,58,NULL,NULL,44,44,NULL,NULL,26,1,'d36c9987aba702de9aa14e655a31eefb','d36c998',NULL,115.2600,102.0000,115.2600,115.2600,0.0000,0.0000,13.2600,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2022-11-09 14:07:16',NULL,NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=d36c9987aba702de9aa14e655a31eefb&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2022-11-09 13:39:29','2022-11-10 07:16:24','ed6cf5aa-c67f-4d53-9628-31db93ecedfa'),(60,70,69,61,61,44,44,2,NULL,26,NULL,'ae96668e157afa29b2eb565f1543acb5',NULL,NULL,337.9500,306.0000,357.9500,357.9500,0.0000,-9.0000,40.9500,0.0000,20.0000,'unpaid','denis@convergine.com',0,NULL,NULL,NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'all','https://test.newsite.space/shop/customer/order?number=ae96668e157afa29b2eb565f1543acb5&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-09 14:12:01','2022-11-10 13:30:20','30e9c5a9-651f-408f-aed9-7a0e1b9eee98'),(62,323,322,63,63,NULL,NULL,NULL,NULL,1,1,'1f194b4c98866f4c965904eb2913597e','1f194b4',NULL,57.0700,101.0000,57.0700,57.0700,0.0000,-50.5000,6.5700,0.0000,0.0000,'unpaid','konstantin@convergine.com',1,'2023-06-22 14:46:43',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=1f194b4c98866f4c965904eb2913597e&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2022-11-10 08:32:53','2023-06-22 17:09:56','0f6e817c-0b80-4ad2-bdb0-4808f83c70eb'),(64,68,67,65,65,NULL,NULL,2,NULL,66,1,'4e4adba2f5351dec39d8951d640a03c3','4e4adba',NULL,166.5400,152.0000,186.5400,186.5400,186.5400,-6.0000,20.5400,0.0000,20.0000,'paid','denis1@convergine.com',1,'2022-11-10 08:38:56','2022-11-10 08:38:56',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=4e4adba2f5351dec39d8951d640a03c3&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-10 08:34:06','2022-11-10 08:38:56','9bbd98f0-271b-4dd2-b8d4-c7ec13a11097'),(71,74,73,72,72,44,44,2,NULL,26,1,'906d1f06a0e5c34c197886bfaafbeb42','906d1f0',NULL,112.6500,102.0000,132.6500,132.6500,132.6500,-3.0000,13.6500,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-10 13:36:12','2022-11-10 13:36:11',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=906d1f06a0e5c34c197886bfaafbeb42&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-10 13:35:35','2022-11-10 13:36:12','8d24562f-a308-481e-8c4f-93efcae209f9'),(75,77,76,NULL,NULL,44,44,2,NULL,26,1,'3575d58f5ce149bbceb1f16ffb03beb2','3575d58',NULL,112.6500,102.0000,132.6500,132.6500,0.0000,-3.0000,13.6500,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-11 12:04:07',NULL,'2022-11-11 12:04:07','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=3575d58f5ce149bbceb1f16ffb03beb2&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-11 12:02:51','2022-11-11 12:04:07','06bacf49-5d5a-4126-bf98-edb04c2f164e'),(78,80,79,NULL,NULL,44,44,2,NULL,26,1,'2898d7454880a3350381a3f0cef43084','2898d74',NULL,225.3000,204.0000,245.3000,245.3000,245.3000,-6.0000,27.3000,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-11 12:26:48','2022-11-11 12:45:34',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=2898d7454880a3350381a3f0cef43084&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-11 12:25:22','2022-11-11 12:45:34','de11c72d-0fd5-46be-82dc-79d42823c931'),(81,83,82,NULL,NULL,44,44,2,NULL,26,1,'51e22b42844e36f8a79c1ddb708d82e8','51e22b4',NULL,112.6500,102.0000,132.6500,132.6500,0.0000,-3.0000,13.6500,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-11 12:50:04',NULL,'2022-11-11 12:50:04','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=51e22b42844e36f8a79c1ddb708d82e8&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-11 12:47:01','2022-11-11 12:50:04','3bd09043-00be-4123-aca9-915a05414df7'),(84,86,85,NULL,NULL,44,44,2,NULL,26,1,'74b77e52dc331a4dfb2aabc67f289139','74b77e5',NULL,112.6500,102.0000,132.6500,132.6500,132.6500,-3.0000,13.6500,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-11 12:58:56','2022-11-11 12:59:55',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=74b77e52dc331a4dfb2aabc67f289139&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-11 12:51:54','2022-11-11 12:59:55','12b8f68c-fead-4950-af5c-b3e875642389'),(87,89,88,NULL,NULL,44,44,NULL,NULL,26,1,'dbe31a91f8a553eed9a45a02ae9368e7','dbe31a9',NULL,160.8900,147.0000,180.8900,180.8900,0.0000,-6.0000,19.8900,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-11 13:01:59',NULL,'2022-11-11 13:01:59','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=dbe31a91f8a553eed9a45a02ae9368e7&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-11 12:59:45','2022-11-11 13:01:59','b959fd21-262d-45df-9cff-92ded1dc587f'),(90,92,91,NULL,NULL,44,44,2,NULL,26,1,'59dde4eb0ffaa9c2b23cbc4b31c29306','59dde4e',NULL,112.6500,102.0000,132.6500,132.6500,132.6500,-3.0000,13.6500,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-14 13:54:38','2022-11-14 13:55:58',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=59dde4eb0ffaa9c2b23cbc4b31c29306&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 13:19:12','2022-11-14 13:55:58','6c13085d-daa5-4a14-8875-c0e4c9fe878a'),(93,95,94,NULL,NULL,44,44,2,NULL,26,1,'9781af48f519f6c0c6010ba13e3b6fed','9781af4',NULL,112.6500,102.0000,132.6500,132.6500,0.0000,-3.0000,13.6500,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-14 14:06:43',NULL,'2022-11-14 14:06:43','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=9781af48f519f6c0c6010ba13e3b6fed&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:04:29','2022-11-14 14:06:43','f656545a-870c-4e53-b8eb-411321df45a0'),(96,98,97,NULL,NULL,44,44,2,NULL,26,1,'7c3042d9c0c175f392453225e8660343','7c3042d',NULL,112.6500,102.0000,132.6500,132.6500,0.0000,-3.0000,13.6500,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-14 14:11:41',NULL,'2022-11-14 14:11:41','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=7c3042d9c0c175f392453225e8660343&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:09:31','2022-11-14 14:11:41','207a937b-2c56-46c2-a546-d7ff1c36c144'),(99,101,100,NULL,NULL,44,44,2,NULL,26,1,'e481071a5fe8b1789527c7afcee975eb','e481071',NULL,112.6500,102.0000,132.6500,132.6500,132.6500,-3.0000,13.6500,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-14 14:15:05','2022-11-14 14:18:16',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=e481071a5fe8b1789527c7afcee975eb&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:14:06','2022-11-14 14:18:16','e7445945-f0f4-4ee7-8d23-0751cd2e881d'),(102,104,103,NULL,NULL,44,44,NULL,NULL,26,1,'11d9391f3441156e9d82f5c43a8e18d9','11d9391',NULL,112.6500,102.0000,132.6500,132.6500,0.0000,-3.0000,13.6500,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-14 14:20:49',NULL,'2022-11-14 14:20:49','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=11d9391f3441156e9d82f5c43a8e18d9&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:19:50','2022-11-14 14:20:49','aeeedf86-a502-4036-a58b-2490858ef5ed'),(105,107,106,NULL,NULL,44,44,NULL,NULL,26,1,'7e9d0edb0316bff02a1770b068db4c80','7e9d0ed',NULL,166.5400,152.0000,186.5400,186.5400,0.0000,-6.0000,20.5400,0.0000,20.0000,'unpaid','denis@convergine.com',1,'2022-11-14 14:24:58',NULL,'2022-11-14 14:24:58','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=7e9d0edb0316bff02a1770b068db4c80&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:20:56','2022-11-14 14:24:58','d5247dd5-77a1-4f08-96fc-d2f54501fbc5'),(108,110,109,NULL,NULL,44,44,NULL,NULL,26,1,'d14c9d9dc6e2a370ab3fbde748e8f251','d14c9d9',NULL,112.6500,102.0000,132.6500,132.6500,132.6500,-3.0000,13.6500,0.0000,20.0000,'paid','denis@convergine.com',1,'2022-11-14 14:25:35','2022-11-15 11:24:28',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=d14c9d9dc6e2a370ab3fbde748e8f251&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-14 14:25:08','2022-11-15 11:24:28','e725a07e-edac-47c7-bde1-39a43e50f95c'),(111,114,113,112,112,44,44,2,NULL,26,1,'6bec4a8cd7e232bce9c77e836581727a','6bec4a8',NULL,1.1300,1.0000,2.1300,2.1300,2.1300,0.0000,0.1300,0.0000,1.0000,'paid','denis@convergine.com',1,'2022-11-15 11:29:31','2022-11-15 11:33:03',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=6bec4a8cd7e232bce9c77e836581727a&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 11:25:34','2022-11-15 11:33:03','723bfa1e-c6ef-4f78-b815-d12d7a4ae1f5'),(115,117,116,NULL,NULL,44,44,NULL,NULL,26,1,'4c78c299ea8b5c24b7a3ea1afee82afa','4c78c29',NULL,1.1300,1.0000,2.1300,2.1300,2.1300,0.0000,0.1300,0.0000,1.0000,'paid','denis@convergine.com',1,'2022-11-15 11:59:39','2022-11-15 11:59:56',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=4c78c299ea8b5c24b7a3ea1afee82afa&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 11:59:20','2022-11-15 11:59:57','d6e8ba26-bccf-4c9e-a424-a53b61181c8f'),(118,120,119,NULL,NULL,44,44,NULL,NULL,26,1,'4d643bb823129ac210a862e4221d1050','4d643bb',NULL,1.1300,1.0000,2.1300,2.1300,0.0000,0.0000,0.1300,0.0000,1.0000,'unpaid','denis@convergine.com',1,'2022-11-15 12:01:20',NULL,NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=4d643bb823129ac210a862e4221d1050&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 12:00:59','2022-11-15 12:03:50','fa0f5df6-0a00-4fd3-815a-26176f4b5969'),(121,123,122,NULL,NULL,44,44,2,NULL,26,1,'0b342a650dda56616348c49a6f415a17','0b342a6',NULL,112.6500,102.0000,113.6500,113.6500,113.6500,-3.0000,13.6500,0.0000,1.0000,'paid','denis@convergine.com',1,'2022-11-15 13:58:41','2022-11-15 14:01:20',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=0b342a650dda56616348c49a6f415a17&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 13:52:30','2022-11-15 14:01:20','a0377d4f-6bc2-40fe-9f44-cd796208b477'),(124,126,125,NULL,NULL,44,44,NULL,NULL,26,1,'38dadc6c06e2c5d1afbfac90be9f3848','38dadc6',NULL,112.6500,102.0000,113.6500,113.6500,113.6500,-3.0000,13.6500,0.0000,1.0000,'paid','denis@convergine.com',1,'2022-11-15 14:03:23','2023-03-06 12:15:17',NULL,'CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=38dadc6c06e2c5d1afbfac90be9f3848&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 14:02:53','2023-03-06 12:15:17','5a5937d1-119c-494b-832b-b862bf7e2d2d'),(127,173,172,NULL,NULL,44,44,NULL,NULL,26,1,'112e42989e124788c12b9a566c7ab57e','112e429',NULL,48.2400,45.0000,49.2400,49.2400,0.0000,-3.0000,6.2400,0.0000,1.0000,'unpaid','denis@convergine.com',1,'2023-06-15 08:58:57',NULL,'2023-06-15 08:58:57','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=112e42989e124788c12b9a566c7ab57e&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2022-11-15 14:03:46','2023-06-15 08:58:57','5a859aeb-f2b4-4dd8-9da5-0cccdd4ba717'),(130,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,'4906643ba7a1b7d5f5e0e646d1ded74d',NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'',NULL,1,'2023-01-23 13:29:11','2023-01-23 13:29:11','c145de9d-23d9-4b71-be7b-f2860f41a6e5'),(131,NULL,NULL,132,132,NULL,NULL,2,NULL,26,NULL,'5bcc54a5857b0ec9746df6961a9b0521',NULL,NULL,1.1300,1.0000,1.1300,1.1300,0.0000,0.0000,0.1300,0.0000,0.0000,'unpaid','denis@convergine.com',0,NULL,NULL,NULL,'CAD','CAD','99.254.120.50','en-US','web',NULL,0,'all',NULL,NULL,NULL,NULL,1,'2023-01-23 13:31:24','2023-01-23 14:09:05','99f1405f-4523-4e9f-b59d-6120e88a7031'),(135,194,193,136,136,44,44,NULL,NULL,26,1,'33108955028884428ffd89acc2c66507','3310895',NULL,1.1300,1.0000,16.1300,16.1300,0.0000,0.0000,0.1300,0.0000,15.0000,'unpaid','denis@convergine.com',1,'2023-06-16 11:12:50',NULL,'2023-06-16 11:12:50','CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=33108955028884428ffd89acc2c66507&success=true','https://test.newsite.space/shop/checkout/payment',NULL,NULL,1,'2023-01-23 14:09:42','2023-06-16 11:12:50','654dcfc2-1f2f-4a78-93fb-73bacee8aa38'),(137,203,202,157,157,44,44,2,NULL,26,1,'bfc8398193df22d4e5e26b0773a1b3b6','bfc8398',NULL,1.1300,1.0000,2.6300,2.6300,0.0000,0.0000,0.1300,0.0000,1.5000,'unpaid','denis@convergine.com',1,'2023-06-16 13:23:32',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=bfc8398193df22d4e5e26b0773a1b3b6&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-01-24 09:29:11','2023-06-16 13:25:06','cff8434d-0be3-4c06-8371-72cf9e6a38c6'),(160,205,204,NULL,NULL,44,44,2,NULL,26,1,'ef98a294d72534668e9ba73591a96bac','ef98a29','TEST_50',0.7000,1.0000,1.2000,1.2000,0.0000,-0.5000,0.2000,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 11:07:19',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=ef98a294d72534668e9ba73591a96bac&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-01-25 10:33:28','2023-06-19 11:10:17','1f0a90cd-7d4f-40e6-ae72-ded67d5d1351'),(165,168,167,166,166,44,44,NULL,NULL,26,1,'e9ed4bd8ff6c51332cca27029b97d70f','e9ed4bd',NULL,112.6500,102.0000,113.6500,113.6500,113.6500,-3.0000,13.6500,0.0000,1.0000,'paid','denis@convergine.com',1,'2023-04-12 07:46:56','2023-04-12 07:49:20',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=e9ed4bd8ff6c51332cca27029b97d70f&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-04-12 07:40:33','2023-04-12 07:49:20','e42bd38a-6ac4-41d4-bb87-ae8302f7f15c'),(169,171,170,NULL,NULL,44,44,NULL,NULL,26,1,'40e679bd4a2209b3a74f8d25afa0b916','40e679b',NULL,48.2400,45.0000,49.2400,49.2400,0.0000,-3.0000,6.2400,0.0000,1.0000,'unpaid','denis@convergine.com',1,'2023-06-15 07:55:53',NULL,'2023-06-15 07:55:53','CAD','CAD','193.254.235.100','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=40e679bd4a2209b3a74f8d25afa0b916&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-06-15 07:52:15','2023-06-15 07:55:53','dad9f6de-7095-4fb3-8c4b-cfb2e49a7ec0'),(174,181,180,175,175,44,44,NULL,NULL,26,1,'0d9b20308af01b19377bb29da4f7a6ae','0d9b203',NULL,93.8400,135.0000,108.8400,108.8400,0.0000,-67.5000,26.3400,0.0000,15.0000,'unpaid','denis@convergine.com',1,'2023-06-16 10:26:17',NULL,'2023-06-16 10:26:17','CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=0d9b20308af01b19377bb29da4f7a6ae&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Free Shipping',1,'2023-06-15 08:59:08','2023-06-16 10:26:17','1c2dd09b-da81-40e5-94e1-46b7202dec3e'),(182,189,188,183,183,44,44,NULL,NULL,26,1,'1f144ad257d6d9a5707602975f504bb8','1f144ad',NULL,50.8500,45.0000,65.8500,65.8500,0.0000,0.0000,5.8500,0.0000,15.0000,'unpaid','denis@convergine.com',1,'2023-06-16 10:45:02',NULL,'2023-06-16 10:45:02','CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=1f144ad257d6d9a5707602975f504bb8&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-16 10:29:12','2023-06-16 10:45:02','337c95e6-5057-4b8a-a926-1e7d0caf3cb7'),(190,289,288,NULL,NULL,44,44,2,NULL,26,1,'4cf1a3ab62dd7181aa1cf306bc3d893f','4cf1a3a',NULL,2.2600,2.0000,2.2600,2.2600,2.2600,0.0000,0.2600,0.0000,0.0000,'paid','denis@convergine.com',1,'2023-06-20 08:16:29','2023-06-20 08:16:29',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=4cf1a3ab62dd7181aa1cf306bc3d893f&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-16 11:10:08','2023-06-20 08:16:29','63b287c9-0efb-4ec7-b0e4-6f8ca35d35d8'),(195,197,196,NULL,NULL,44,44,NULL,NULL,26,1,'fbf5492295058314071c0c37ed186cfe','fbf5492',NULL,1.1300,1.0000,16.1300,16.1300,0.0000,0.0000,0.1300,0.0000,15.0000,'unpaid','denis@convergine.com',1,'2023-06-16 11:13:59',NULL,'2023-06-16 11:13:59','CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=fbf5492295058314071c0c37ed186cfe&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-16 11:13:31','2023-06-16 11:13:59','ea6eee4a-45bd-4c37-9b60-05e8beaacaf3'),(198,309,308,NULL,NULL,44,44,2,NULL,26,1,'3d401e42734131aeb2757efb99bd8854','3d401e4',NULL,1.1300,1.0000,1.1300,1.1300,0.0000,0.0000,0.1300,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-21 08:31:40',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=3d401e42734131aeb2757efb99bd8854&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-16 11:19:30','2023-06-21 08:32:54','78a6d88c-b613-4d19-a87f-c10d68b39216'),(201,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,26,NULL,'02c74b140ac2454930c9aa855c31f57d',NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','denis@convergine.com',0,NULL,NULL,NULL,'CAD','CAD','178.155.4.232','en-US','web',NULL,0,'all',NULL,NULL,NULL,NULL,1,'2023-06-16 13:21:07','2023-06-16 13:21:29','f21af8d6-465b-454a-adcb-2930081e5bab'),(206,208,207,NULL,NULL,44,44,NULL,NULL,26,1,'f49e2a82ed739bc8c6efd5a2b945c7c7','f49e2a8',NULL,1.1300,1.0000,1.6300,1.6300,0.0000,0.0000,0.1300,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 11:13:52',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=f49e2a82ed739bc8c6efd5a2b945c7c7&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 11:12:46','2023-06-19 11:16:26','aab3c633-d3c0-4743-a56f-5c518bc4f1a3'),(209,211,210,NULL,NULL,44,44,NULL,NULL,26,1,'9beb77d6649814684ae19c8472c8614d','9beb77d',NULL,1.1300,1.0000,1.6300,1.6300,0.0000,0.0000,0.1300,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 11:20:19',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=9beb77d6649814684ae19c8472c8614d&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 11:19:52','2023-06-19 11:26:33','4002ea25-dc4a-4e6b-a7b2-ce1db5c5dca2'),(212,215,214,213,213,44,44,NULL,NULL,26,1,'d67cd56ce8da60e518eb7ef009c3dd9d','d67cd56','TEST_50',0.7000,1.0000,1.2000,1.2000,0.0000,-0.5000,0.2000,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 11:22:43',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=d67cd56ce8da60e518eb7ef009c3dd9d&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 11:21:48','2023-06-19 11:26:55','bd3ddf2c-059f-45a5-bc68-452c9ec5bcd0'),(216,218,217,NULL,NULL,44,44,2,NULL,26,1,'581511147d0e804fc3bab3d0ad83ff6f','5815111',NULL,1.1300,1.0000,1.6300,1.6300,1.6300,0.0000,0.1300,0.0000,0.5000,'paid','denis@convergine.com',1,'2023-06-19 11:28:34','2023-06-19 11:28:34',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=581511147d0e804fc3bab3d0ad83ff6f&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 11:27:45','2023-06-19 11:28:34','12cf25fc-a24d-43a5-a891-9443dfb9a983'),(219,221,220,NULL,NULL,44,44,2,NULL,26,1,'6c5f1e5457ec28d866afaaf442cb0e00','6c5f1e5',NULL,115.2600,102.0000,115.7600,115.7600,115.7600,0.0000,13.2600,0.0000,0.5000,'paid','denis@convergine.com',1,'2023-06-19 11:40:34','2023-06-19 11:40:34',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=6c5f1e5457ec28d866afaaf442cb0e00&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 11:39:12','2023-06-19 11:40:34','1288abfe-4ad6-4b15-9d3b-e15ff28f7266'),(222,224,223,NULL,NULL,44,44,2,NULL,26,1,'a0d82f669e32ff8f17d426ba3dfd1f77','a0d82f6',NULL,50.8500,45.0000,51.3500,51.3500,51.3500,0.0000,5.8500,0.0000,0.5000,'paid','denis@convergine.com',1,'2023-06-19 12:02:31','2023-06-19 12:02:31',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=a0d82f669e32ff8f17d426ba3dfd1f77&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:01:17','2023-06-19 12:02:31','30afb231-ee06-4d66-ae5c-f85478654aaf'),(225,227,226,NULL,NULL,44,44,NULL,NULL,26,1,'56ed20b0a4d1d1b0618c7daf288de464','56ed20b',NULL,115.2600,102.0000,115.7600,115.7600,115.7600,0.0000,13.2600,0.0000,0.5000,'paid','denis@convergine.com',1,'2023-06-19 12:04:23','2023-06-19 12:04:23',NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=56ed20b0a4d1d1b0618c7daf288de464&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:04:01','2023-06-19 12:04:23','cec940a6-85f6-48b4-a9c9-8df4ed9b7d4e'),(228,230,229,NULL,NULL,44,44,NULL,NULL,26,1,'82ee65ae8feb73046eb08f961a0bfd92','82ee65a',NULL,1.1300,1.0000,1.6300,1.6300,0.0000,0.0000,0.1300,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 12:13:15',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=82ee65ae8feb73046eb08f961a0bfd92&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:12:19','2023-06-19 12:15:21','9017af30-0738-408f-899a-a915f3d42984'),(231,233,232,NULL,NULL,44,44,NULL,NULL,26,1,'0beb522fd4f704f40eef86efa549c61d','0beb522',NULL,1.1300,1.0000,1.6300,1.6300,0.0000,0.0000,0.1300,0.0000,0.5000,'unpaid','denis@convergine.com',1,'2023-06-19 12:14:36',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=0beb522fd4f704f40eef86efa549c61d&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:14:08','2023-06-19 12:16:18','767e296f-20c3-4532-b8a9-c5ee4831d9f7'),(234,236,235,NULL,NULL,44,44,2,NULL,26,1,'8657bfa55a8c562be5fe5d7ea022dee7','8657bfa',NULL,0.5700,0.5000,0.5700,0.5700,0.0000,0.0000,0.0700,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-19 12:19:01',NULL,'2023-06-19 12:19:01','CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=8657bfa55a8c562be5fe5d7ea022dee7&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:17:02','2023-06-19 12:19:01','f3f60531-c54a-4b40-81ff-0344b412bcb7'),(237,239,238,NULL,NULL,44,44,2,NULL,26,1,'363f479cdbf82dfde22b435fab29dfd2','363f479',NULL,0.5700,0.5000,0.5700,0.5700,0.0000,0.0000,0.0700,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-19 12:20:20',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=363f479cdbf82dfde22b435fab29dfd2&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:19:44','2023-06-19 12:21:40','85b8f9c7-085e-4b38-aa91-898d81e01986'),(240,242,241,NULL,NULL,44,44,NULL,NULL,26,1,'dd423f836bcbe43ceff81d1a6b2a5211','dd423f8',NULL,0.5700,0.5000,0.5700,0.5700,0.0000,0.0000,0.0700,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-19 12:22:35',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=dd423f836bcbe43ceff81d1a6b2a5211&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 12:22:15','2023-06-19 12:23:25','8591d8d7-1cb6-4248-bda2-a498c24bc8e2'),(243,247,246,244,244,NULL,NULL,2,NULL,245,1,'8870c76b380b1ad0eb238d189c8eb1db','8870c76',NULL,1.1300,1.0000,1.1300,1.1300,1.1300,0.0000,0.1300,0.0000,0.0000,'paid','jane@convergine.com',1,'2023-06-19 21:13:35','2023-06-20 07:45:13',NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/243','https://craft4.newsite.space/admin/commerce/orders/243','freeShipping','Shipping',1,'2023-06-19 16:24:56','2023-06-20 07:45:13','7f6f805b-a18e-4a1c-9bb9-1e16defeffa5'),(248,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,'2ccfa7765609b58ebadf453c502b100a',NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'',NULL,1,'2023-06-19 21:24:42','2023-06-19 21:24:42','4a5a059c-ed0e-489e-b064-cae4cc8b1d8a'),(251,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,'d262c928cd5fc801b4a217c921504dcc',NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'',NULL,1,'2023-06-19 21:27:41','2023-06-19 21:27:41','0200e791-c626-47b5-a5e0-3ae6b7ea71bb'),(252,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,'f275cda9565164b4b5bf09269f7aa625',NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,'unpaid','',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'',NULL,1,'2023-06-19 21:29:15','2023-06-19 21:29:15','e7671468-3217-4e26-9ad7-04e8c2b7736b'),(254,256,255,NULL,NULL,NULL,NULL,2,NULL,245,1,'9b13a931ad940580ee46e59723fa6792','9b13a93',NULL,1.1300,1.0000,1.1300,1.1300,0.0000,0.0000,0.1300,0.0000,0.0000,'unpaid','jane@convergine.com',1,'2023-06-19 21:34:26',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=9b13a931ad940580ee46e59723fa6792&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 21:32:41','2023-06-19 21:35:07','0935b879-c343-4e83-a31c-3eb70673cf3f'),(257,261,259,258,258,NULL,NULL,NULL,NULL,245,1,'71e7d9c7ff23a870362bf4439ea1e2ab','71e7d9c','Jane',34.7500,50.0000,35.7500,35.7500,0.0000,-25.0000,9.7500,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-19 21:46:41',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=71e7d9c7ff23a870362bf4439ea1e2ab&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-06-19 21:35:22','2023-06-19 21:47:15','182bbab4-ddc1-4f8c-88e0-b868d90165fa'),(262,264,263,NULL,NULL,NULL,NULL,NULL,NULL,245,1,'d5b4c7840d141e4a2d837bea6ba8d2d0','d5b4c78',NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','jane@convergine.com',1,'2023-06-19 21:48:46',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=d5b4c7840d141e4a2d837bea6ba8d2d0&success=true','https://test.newsite.space/shop/checkout/payment','freeShipping','Shipping',1,'2023-06-19 21:47:25','2023-06-19 21:49:07','49b1bfc3-e1de-415d-8178-f4ed0dd5c302'),(265,267,266,NULL,NULL,NULL,NULL,2,NULL,245,1,'c64b1943fcb739c884bce1ad43232e8e','c64b194',NULL,1.1300,1.0000,2.1300,2.1300,0.0000,0.0000,0.1300,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-20 02:48:03',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=c64b1943fcb739c884bce1ad43232e8e&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-06-20 02:46:26','2023-06-20 02:50:02','6105f47e-4267-4c47-ba41-70e6fc89aff1'),(268,271,270,269,269,NULL,NULL,2,NULL,245,1,'40527e2d2de3236692c418cde7461b91','40527e2','Jane',34.7500,50.0000,35.7500,35.7500,35.7500,-25.0000,9.7500,0.0000,1.0000,'paid','jane@convergine.com',1,'2023-06-20 02:52:02','2023-06-20 15:45:21',NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/268','https://craft4.newsite.space/admin/commerce/orders/268','doorDelivery','Door Delivery',1,'2023-06-20 02:50:35','2023-06-20 15:45:21','e93a20b2-d47a-4c60-bfb5-d06e5cb6d957'),(272,319,318,317,317,44,44,2,NULL,26,NULL,'a80c99bed48105745f06c484a07eec15',NULL,NULL,0.5700,0.5000,0.5700,0.5700,0.0000,0.0000,0.0700,0.0000,0.0000,'unpaid','denis@convergine.com',0,NULL,NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'all',NULL,NULL,'freeShipping','Shipping',1,'2023-06-20 07:45:23','2023-07-05 09:50:28','6601266e-1ca4-42f7-955a-676cd7353299'),(273,275,274,NULL,NULL,NULL,NULL,2,NULL,66,1,'fdd677894d59ff645c394ffb3009499c','fdd6778',NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','denis1@convergine.com',1,'2023-06-20 07:47:53',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/273','https://craft4.newsite.space/admin/commerce/orders/273','freeShipping','Shipping',1,'2023-06-20 07:45:37','2023-06-20 08:10:19','f112d767-b68b-42ee-970a-5a38d450cd45'),(276,277,278,NULL,NULL,44,44,2,NULL,26,NULL,'4296aab985daaf0d4eabf26469be076a',NULL,NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','denis@convergine.com',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'freeShipping','Shipping',1,'2023-06-20 07:49:40','2023-06-20 07:52:47','e3149517-c063-4412-8b9a-bc77da0d8247'),(279,280,281,NULL,NULL,44,44,2,NULL,26,1,'dec24dfe3c90a0f4801e3cfb133ee5a6','dec24df',NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-20 08:01:56',NULL,'2023-06-20 08:02:48','CAD','CAD',NULL,'en-US','cp',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/279','https://craft4.newsite.space/admin/commerce/orders/279','freeShipping','Shipping',1,'2023-06-20 07:56:49','2023-06-20 08:02:48','61ae2f5e-f4e5-4431-8ccf-5e3329d00a61'),(282,286,287,NULL,NULL,NULL,NULL,2,NULL,245,1,'e5ab9da43085d017fbf78ce5d88c5b34','e5ab9da',NULL,56.5000,50.0000,56.5000,56.5000,56.5000,0.0000,6.5000,0.0000,0.0000,'paid','jane@convergine.com',1,'2023-06-20 08:15:14','2023-06-20 08:15:14',NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/282','https://craft4.newsite.space/admin/commerce/orders/282',NULL,NULL,1,'2023-06-20 08:03:49','2023-06-20 08:15:14','26394fca-87bb-4c3a-90f4-af31ecc4a61e'),(290,307,306,NULL,NULL,44,44,2,NULL,26,1,'595ee21d842ef66e3bab30a22ac85c3e','595ee21','Jane',0.2800,0.5000,0.2800,0.2800,0.0000,-0.2500,0.0300,0.0000,0.0000,'unpaid','denis@convergine.com',1,'2023-06-21 07:51:07',NULL,NULL,'CAD','CAD','165.227.45.75','en-US','web',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/290','https://craft4.newsite.space/admin/commerce/orders/290','freeShipping','Shipping',1,'2023-06-20 08:17:23','2023-06-21 08:31:06','dcb0f0d0-258d-416b-97c4-aa93f4df9690'),(293,NULL,NULL,294,294,NULL,NULL,2,NULL,245,NULL,'d194361e63d65a693a0548d626f187a8',NULL,NULL,29.1000,51.5000,29.1000,29.1000,0.0000,-25.7500,3.3500,0.0000,0.0000,'unpaid','jane@convergine.com',0,NULL,NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'all',NULL,NULL,NULL,NULL,1,'2023-06-20 15:55:01','2023-06-20 15:56:15','ed81018d-1ff1-44cd-a19a-29ce7fa6cfb0'),(295,297,296,NULL,NULL,NULL,NULL,NULL,NULL,245,1,'a3464c33e0abdc6328e37874f145cf0a','a3464c3',NULL,29.1000,51.5000,30.1000,30.1000,0.0000,-25.7500,3.3500,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-20 15:59:55',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=a3464c33e0abdc6328e37874f145cf0a&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-06-20 15:56:57','2023-06-20 16:01:16','39d75105-d864-4769-90c0-51a09a3f9990'),(298,301,300,299,299,NULL,NULL,2,NULL,245,1,'3e71b74ded1732e1ed7bb7d1ce0e5bd9','3e71b74',NULL,1.7000,3.0000,2.7000,2.7000,0.0000,-1.5000,0.2000,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-20 16:11:38',NULL,'2023-06-20 16:11:38','CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/admin/commerce/orders/298','https://test.newsite.space/admin/commerce/orders/298','doorDelivery','Door Delivery',1,'2023-06-20 16:07:59','2023-06-20 16:17:43','f850b654-d936-495a-912a-4161bd1b8486'),(302,304,303,NULL,NULL,NULL,NULL,2,NULL,245,1,'f94c5194653189c5326b766837fd1064','f94c519',NULL,56.5000,50.0000,57.5000,57.5000,0.0000,0.0000,6.5000,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-20 16:19:00',NULL,NULL,'CAD','CAD','72.137.28.21','en-US','web',NULL,0,'none','https://test.newsite.space/shop/customer/order?number=f94c5194653189c5326b766837fd1064&success=true','https://test.newsite.space/shop/checkout/payment','doorDelivery','Door Delivery',1,'2023-06-20 16:18:30','2023-06-20 16:25:29','b08e0822-e5bc-4d84-8343-acc53a10e859'),(305,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,245,NULL,'af0a3cb0e207a510b83e8809de9c21d1',NULL,NULL,29.1000,51.5000,29.1000,29.1000,0.0000,-25.7500,3.3500,0.0000,0.0000,'unpaid','jane@convergine.com',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'freeShipping','Shipping',1,'2023-06-20 16:27:55','2023-06-20 16:30:20','76cb62ae-f34b-4920-aee7-93ff89007cb1'),(310,312,311,NULL,NULL,NULL,NULL,2,NULL,245,1,'99a5d7abfad16bb7b691a4be346a017b','99a5d7a',NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','jane@convergine.com',1,'2023-06-21 23:04:50',NULL,NULL,'CAD','CAD','2605:8d80:6c1:b0ca:2c11:64ef:6650:f66e','en-US','web',NULL,0,'none','https://craft4.newsite.space/admin/commerce/orders/310','https://craft4.newsite.space/admin/commerce/orders/310','freeShipping','Shipping',1,'2023-06-21 22:08:27','2023-06-22 00:12:20','40e2815f-c8c3-4aaa-9a3f-aa248c568fe6'),(313,314,NULL,NULL,NULL,NULL,NULL,2,NULL,245,NULL,'4368a40415c7ca643d78a82147ccceb7',NULL,NULL,1.7000,1.5000,1.7000,1.7000,0.0000,0.0000,0.2000,0.0000,0.0000,'unpaid','jane@convergine.com',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'freeShipping','Shipping',1,'2023-06-22 00:13:28','2023-06-22 00:19:57','c652ca4f-a49d-4f46-92c4-0455f48e4a1d'),(315,316,NULL,NULL,NULL,NULL,NULL,2,NULL,245,NULL,'292442b10a27a0617dbbdbde272dd5c3',NULL,NULL,56.5000,50.0000,56.5000,56.5000,0.0000,0.0000,6.5000,0.0000,0.0000,'unpaid','jane@convergine.com',0,NULL,NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'all',NULL,NULL,'freeShipping','Shipping',1,'2023-06-22 00:42:50','2023-06-22 00:45:18','c199d14c-3a7f-44da-8abb-3d3f1b4df858'),(320,321,NULL,NULL,NULL,NULL,NULL,2,NULL,245,1,'40e8b705a3b556ac9d484bb2ac6d8687','40e8b70',NULL,56.5000,50.0000,57.5000,57.5000,0.0000,0.0000,6.5000,0.0000,1.0000,'unpaid','jane@convergine.com',1,'2023-06-22 14:43:10',NULL,NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'none','https://test.newsite.space/admin/commerce/orders/320','https://test.newsite.space/admin/commerce/orders/320','doorDelivery','Door Delivery',1,'2023-06-22 14:40:30','2023-06-22 14:47:05','74f80699-1b73-4d3d-a944-a389d769009c'),(324,325,NULL,NULL,NULL,NULL,NULL,2,NULL,245,1,'f85c89ab04568ed9eb566d1826dffb1b','f85c89a',NULL,29.1000,51.5000,29.1000,29.1000,29.1000,-25.7500,3.3500,0.0000,0.0000,'paid','jane@convergine.com',1,'2023-06-22 17:15:05','2023-06-22 17:16:19',NULL,'CAD','CAD',NULL,'en-US','cp',NULL,0,'none','https://test.newsite.space/admin/commerce/orders/324','https://test.newsite.space/admin/commerce/orders/324','freeShipping','Shipping',1,'2023-06-22 17:13:14','2023-06-22 17:16:19','fb2ebcee-2527-4709-bb88-7da8c100a437'); /*!40000 ALTER TABLE `commerce_orders` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_orderstatus_emails` -- LOCK TABLES `commerce_orderstatus_emails` WRITE; /*!40000 ALTER TABLE `commerce_orderstatus_emails` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_orderstatus_emails` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_orderstatuses` -- LOCK TABLES `commerce_orderstatuses` WRITE; /*!40000 ALTER TABLE `commerce_orderstatuses` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_orderstatuses` VALUES (1,'New','new','green',NULL,NULL,99,1,'2022-10-12 18:29:04','2022-10-12 18:29:04','3f4428c3-a2ad-4ff6-9e20-2d201edccd1c'); /*!40000 ALTER TABLE `commerce_orderstatuses` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_paymentcurrencies` -- LOCK TABLES `commerce_paymentcurrencies` WRITE; /*!40000 ALTER TABLE `commerce_paymentcurrencies` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_paymentcurrencies` VALUES (1,'CAD',1,1.0000,'2022-10-12 18:29:03','2022-10-28 11:16:02','2acfe6d5-de9a-4a2f-834b-42980e142e5b'); /*!40000 ALTER TABLE `commerce_paymentcurrencies` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_paymentsources` -- LOCK TABLES `commerce_paymentsources` WRITE; /*!40000 ALTER TABLE `commerce_paymentsources` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_paymentsources` VALUES (1,26,2,'2649b316de3c81ace9011c_42424242','Visa card 4242 **** **** 4242','{\"firstName\":\"dgfg\",\"lastName\":\"dfgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T9E9ST\",\"transactionId\":\"34354086\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-10-28 12:04:49','2022-10-28 12:04:49','52e98d27-8ce5-491e-898e-86b6b870feb6'),(2,1,2,'_',' card ','{\"firstName\":\"Tom\",\"lastName\":\"Hanks\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":null,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":null,\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 08:24:27','2022-11-10 08:24:27','b279ffee-771b-4a0a-96bb-1ad833ab90f2'),(3,1,2,'1d84236289602b30a67a2e_3056 **** *** 5904',' card 3056 **** *** 5904','{\"firstName\":\"Tom \",\"lastName\":\"Hanks\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"1d84236289602b30a67a2e\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E9ST\",\"transactionId\":\"34508966\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"1d84236289602b30a67a2e\",\"cardNumber\":\"3056 **** *** 5904\",\"cardType\":\"\",\"customerCode\":\"CUST1\",\"customer\":null}','2022-11-10 08:27:30','2022-11-10 08:27:30','c105e83a-4045-43c6-965a-c29e2910466b'),(4,26,2,'ab77ae7a1ed463a84cbd42_41249990','Visa card 4124 **** **** 9990','{\"firstName\":\"dfdf\",\"lastName\":\"dfd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E8ST\",\"transactionId\":\"34547843\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\",\"cardNumber\":\"4124 **** **** 9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-14 14:21:49','2022-11-14 14:21:49','912a496d-082a-4013-961f-1dfdf807fe7a'),(5,26,2,'bc7cbecbaa3703d54a1b31_54130011','Mastercard card 5413 **** **** 0011','{\"firstName\":\"Denis\",\"lastName\":\"Piskun\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"bc7cbecbaa3703d54a1b31\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T9E9ST\",\"transactionId\":\"36309548\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"bc7cbecbaa3703d54a1b31\",\"cardNumber\":\"5413 **** **** 0011\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-04-12 07:46:55','2023-04-12 07:46:55','a66fd339-b0b9-43a7-a038-fede199b882f'),(9,245,2,'8886892f03ccb61cb1d33e_45201326','Visa card 4520 **** **** 1326','{\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"8886892f03ccb61cb1d33e\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"09180G\",\"transactionId\":\"37296171\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"8886892f03ccb61cb1d33e\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST245\",\"customer\":null}','2023-06-19 21:46:40','2023-06-19 21:46:40','47d0fe1e-291f-432c-ad5d-eb82f63b2a87'),(10,245,2,'ad270cb2dba96350714905_45201326','Visa card 4520 **** **** 1326','{\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ad270cb2dba96350714905\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"04082G\",\"transactionId\":\"37303560\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"ad270cb2dba96350714905\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST245\",\"customer\":null}','2023-06-20 16:11:37','2023-06-20 16:11:37','a1c969fe-72fd-4792-bfa1-9d4cb6de15b7'),(11,26,2,'add1a48cec43a948d84a15_55268252','Mastercard card 5526 **** **** 8252','{\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"add1a48cec43a948d84a15\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"031908\",\"transactionId\":\"37315501\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"add1a48cec43a948d84a15\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-21 07:51:07','2023-06-21 07:51:07','7e7f1fa4-ee27-44e7-a672-3a00754cf1f3'),(12,1,2,'e96b8cb2e3aa4d4978dc1d_45201326','Visa card 4520 **** **** 1326','{\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"e96b8cb2e3aa4d4978dc1d\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"09260G\",\"transactionId\":\"37332881\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"e96b8cb2e3aa4d4978dc1d\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-22 14:46:42','2023-06-22 14:46:42','f90fd0d8-145f-4a3c-8146-0f55f200cb34'); /*!40000 ALTER TABLE `commerce_paymentsources` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_pdfs` -- LOCK TABLES `commerce_pdfs` WRITE; /*!40000 ALTER TABLE `commerce_pdfs` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_pdfs` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_plans` -- LOCK TABLES `commerce_plans` WRITE; /*!40000 ALTER TABLE `commerce_plans` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_plans` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_products` -- LOCK TABLES `commerce_products` WRITE; /*!40000 ALTER TABLE `commerce_products` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_products` VALUES (7,1,1,1,8,'2022-10-12 19:03:00',NULL,1,1,0,'W4789-X1',50.0000,0.0000,0.0000,0.0000,0.0000,'2022-10-12 19:03:29','2023-07-03 06:55:11','4e5c994e-a96a-4f67-a11c-5fe7c35be38d'),(19,1,1,1,20,'2022-10-12 19:41:00',NULL,1,1,0,'W4789-X2',1.0000,0.0000,0.0000,0.0000,0.0000,'2022-10-12 19:41:00','2023-07-03 06:55:11','799b0de4-b3fa-4490-8b27-d03560b9d176'),(21,1,1,1,22,'2022-10-12 19:41:00',NULL,1,1,0,'W4789-X3',0.5000,0.0000,0.0000,0.0000,0.0000,'2022-10-12 19:41:15','2023-07-03 06:55:11','8f7984c8-4026-4346-bac1-e3b88cbde015'); /*!40000 ALTER TABLE `commerce_products` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_producttypes` -- LOCK TABLES `commerce_producttypes` WRITE; /*!40000 ALTER TABLE `commerce_producttypes` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_producttypes` VALUES (1,3,NULL,'Tech','tech',0,0,0,'{product.title}',1,'','','{product.title} - {title}','2022-10-12 19:03:04','2022-10-12 19:03:04','b7c11322-b1a5-4913-84d9-2762b866c126'); /*!40000 ALTER TABLE `commerce_producttypes` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_producttypes_shippingcategories` -- LOCK TABLES `commerce_producttypes_shippingcategories` WRITE; /*!40000 ALTER TABLE `commerce_producttypes_shippingcategories` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_producttypes_shippingcategories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_producttypes_sites` -- LOCK TABLES `commerce_producttypes_sites` WRITE; /*!40000 ALTER TABLE `commerce_producttypes_sites` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_producttypes_sites` VALUES (1,1,1,'shop/{slug}','shop/products/_product',1,'2022-10-12 19:03:04','2022-10-12 19:19:57','90cec3d5-9251-4c7e-a87c-2f23415ed745'),(2,1,2,'shop/{slug}','shop/products/_product',1,'2023-07-03 06:55:08','2023-07-03 06:55:08','9d7eac57-b159-4334-b05a-7831923dbb2f'); /*!40000 ALTER TABLE `commerce_producttypes_sites` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_producttypes_taxcategories` -- LOCK TABLES `commerce_producttypes_taxcategories` WRITE; /*!40000 ALTER TABLE `commerce_producttypes_taxcategories` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_producttypes_taxcategories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_purchasables` -- LOCK TABLES `commerce_purchasables` WRITE; /*!40000 ALTER TABLE `commerce_purchasables` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_purchasables` VALUES (5,'DONATION-CC4',0.0000,'Donation','2022-10-12 18:29:04','2022-10-12 18:29:04','62c68db0-bdda-45bc-8ef1-5f00fc76cb85'),(8,'W4789-X1',50.0000,'Product 01 - Product 01','2022-10-12 19:03:29','2023-07-03 06:55:11','46ad0f8b-0e7f-44c8-8757-73a4b7d5fc60'),(20,'W4789-X2',1.0000,'Product 02 - Product 02','2022-10-12 19:41:00','2023-07-03 06:55:11','deb36d99-091d-410a-a358-e0c46ab31e5f'),(22,'W4789-X3',0.5000,'Product 03 - Product 03','2022-10-12 19:41:15','2023-07-03 06:55:11','d76439ec-7cc3-4dc7-82e2-8d45a37cf1c5'); /*!40000 ALTER TABLE `commerce_purchasables` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_sale_categories` -- LOCK TABLES `commerce_sale_categories` WRITE; /*!40000 ALTER TABLE `commerce_sale_categories` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_sale_categories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_sale_purchasables` -- LOCK TABLES `commerce_sale_purchasables` WRITE; /*!40000 ALTER TABLE `commerce_sale_purchasables` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_sale_purchasables` VALUES (2,1,8,'craft\\commerce\\elements\\Variant','2023-06-15 08:57:06','2023-06-15 08:57:06','d78bb6b1-b079-49fd-b9b3-0416afc5331d'); /*!40000 ALTER TABLE `commerce_sale_purchasables` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_sale_usergroups` -- LOCK TABLES `commerce_sale_usergroups` WRITE; /*!40000 ALTER TABLE `commerce_sale_usergroups` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_sale_usergroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_sales` -- LOCK TABLES `commerce_sales` WRITE; /*!40000 ALTER TABLE `commerce_sales` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_sales` VALUES (1,'Promo1','',NULL,NULL,'byPercent',-0.1000,1,0,1,'element',0,0,0,NULL,'2023-04-12 07:43:02','2023-06-15 08:57:06','e759963f-a925-4888-8200-c74b6133f51c'),(2,'15 June sales','','2023-06-15 08:30:00','2023-06-16 02:30:00','byPercent',-0.1000,1,1,1,'element',1,0,0,NULL,'2023-06-15 08:55:33','2023-06-15 08:55:33','f7c71fe6-129f-440c-9308-b9491eb649a7'); /*!40000 ALTER TABLE `commerce_sales` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_shippingcategories` -- LOCK TABLES `commerce_shippingcategories` WRITE; /*!40000 ALTER TABLE `commerce_shippingcategories` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_shippingcategories` VALUES (1,'General','general',NULL,1,'2022-10-12 18:29:03','2022-10-12 18:29:03','06606aac-0caa-4187-8ca5-a4ac3d72d923'); /*!40000 ALTER TABLE `commerce_shippingcategories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_shippingmethods` -- LOCK TABLES `commerce_shippingmethods` WRITE; /*!40000 ALTER TABLE `commerce_shippingmethods` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_shippingmethods` VALUES (1,'Shipping','freeShipping',1,0,'2022-10-12 18:29:03','2023-06-16 10:28:28','4ffd2b67-6901-472c-b4c5-d2cafdddf8c4'),(2,'Door Delivery','doorDelivery',1,0,'2022-11-09 14:10:50','2022-11-09 14:10:50','d7c25575-2931-4c70-b77f-d020f4bafad3'); /*!40000 ALTER TABLE `commerce_shippingmethods` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_shippingrule_categories` -- LOCK TABLES `commerce_shippingrule_categories` WRITE; /*!40000 ALTER TABLE `commerce_shippingrule_categories` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_shippingrule_categories` VALUES (2,2,1,'allow',NULL,NULL,NULL,'2022-11-15 11:25:16','2022-11-15 11:25:16','efa610c2-e4a4-4904-a490-f79ed1957443'); /*!40000 ALTER TABLE `commerce_shippingrule_categories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_shippingrules` -- LOCK TABLES `commerce_shippingrules` WRITE; /*!40000 ALTER TABLE `commerce_shippingrules` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_shippingrules` VALUES (1,NULL,1,'Free Everywhere','All countries, free shipping',0,1,NULL,0,0,0.0000,0.0000,'salePrice',0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,'2022-10-12 18:29:03','2022-10-12 18:29:03','f4238c77-f193-46dd-94ca-c959e1c214d5'),(2,NULL,2,'Door Shipping','',1,1,'',0,0,0.0000,0.0000,'salePrice',0.0000,0.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,'2022-11-09 14:11:47','2022-11-15 11:25:16','057526bb-de46-4046-ad8f-755373f4b0ea'); /*!40000 ALTER TABLE `commerce_shippingrules` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_shippingzones` -- LOCK TABLES `commerce_shippingzones` WRITE; /*!40000 ALTER TABLE `commerce_shippingzones` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_shippingzones` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_stores` -- LOCK TABLES `commerce_stores` WRITE; /*!40000 ALTER TABLE `commerce_stores` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_stores` VALUES (1,6,'[\"CA\"]','{\"elementType\":null,\"fieldContext\":\"global\",\"class\":\"craft\\\\commerce\\\\elements\\\\conditions\\\\addresses\\\\ZoneAddressCondition\",\"conditionRules\":[]}','2022-10-12 18:29:03','2022-10-28 11:19:17','e3631473-f76d-46ca-b954-2a785a1a2297'); /*!40000 ALTER TABLE `commerce_stores` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_subscriptions` -- LOCK TABLES `commerce_subscriptions` WRITE; /*!40000 ALTER TABLE `commerce_subscriptions` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_subscriptions` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_taxcategories` -- LOCK TABLES `commerce_taxcategories` WRITE; /*!40000 ALTER TABLE `commerce_taxcategories` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_taxcategories` VALUES (1,'General','general',NULL,1,'2022-10-12 18:29:03','2022-10-12 18:29:03','dccb6f69-02e4-4b98-b870-96aa80ef5c79'); /*!40000 ALTER TABLE `commerce_taxcategories` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_taxrates` -- LOCK TABLES `commerce_taxrates` WRITE; /*!40000 ALTER TABLE `commerce_taxrates` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_taxrates` VALUES (1,NULL,1,1,'HST','HST',0.1300000000,0,0,0,0,'price',0,'2022-11-09 13:53:39','2023-06-20 08:27:14','54e6e1b6-f2ad-4f3c-bf32-2213df3f75c0'); /*!40000 ALTER TABLE `commerce_taxrates` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_taxzones` -- LOCK TABLES `commerce_taxzones` WRITE; /*!40000 ALTER TABLE `commerce_taxzones` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `commerce_taxzones` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_transactions` -- LOCK TABLES `commerce_transactions` WRITE; /*!40000 ALTER TABLE `commerce_transactions` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_transactions` VALUES (1,31,NULL,2,26,'d9a41dfa8d8774275d014446bd175e1d','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34354046','T1E5ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"ddfg\",\"lastName\":\"dfgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E5ST\",\"transactionId\":\"34354046\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-10-28 11:37:02','2022-10-28 11:37:02','4bf83434-1f65-4adb-a6d6-28b7441cd038'),(2,31,1,2,1,'9727da0dd6f45174646f999bd0c0911b','refund',102.0000,102.0000,'CAD','CAD',1.0000,'success','34354046','','','dd','{\"transactionId\":\"34354046\",\"response\":\"1\",\"responseMessage\":\"\"}','2022-10-28 11:37:28','2022-10-28 11:37:28','b34b3456-2c9a-40a1-ab89-8a932bc04b97'),(3,35,NULL,2,26,'701897de06ef83ef352644c8eb3b58e8','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34354077','T3E5ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Denis\",\"lastName\":\"Piskun\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E5ST\",\"transactionId\":\"34354077\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-10-28 11:55:25','2022-10-28 11:55:25','08707e24-a481-41fa-9753-cfc1ea456d17'),(4,38,NULL,2,26,'3e554304b62652e466cd9bef7c864132','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34354086','T9E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dgfg\",\"lastName\":\"dfgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T9E9ST\",\"transactionId\":\"34354086\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2022-10-28 12:06:01','2022-10-28 12:06:01','59306b2c-3ba0-4e51-a00d-737e3616af36'),(5,41,NULL,2,26,'5ee149d747c8047f89ad6ff60841d545','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34354111','T8E6ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T8E6ST\",\"transactionId\":\"34354111\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-10-28 12:06:56','2022-10-28 12:06:56','2813d90b-d6cb-404f-ad3e-5786814e4857'),(6,49,NULL,2,26,'be6cb7f78cf66503f3a9217071ca02bf','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34381296','T4E1ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dsdg\",\"lastName\":\"dfgdfg\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T4E1ST\",\"transactionId\":\"34381296\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-10-31 12:59:58','2022-10-31 12:59:58','7e421fb7-25a0-43c6-8c84-becd6997126d'),(7,52,NULL,2,26,'ff7c5589e15c69c04a1cd13850eff175','purchase',102.0000,102.0000,'CAD','CAD',1.0000,'success','34381920','T6E8ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E8ST\",\"transactionId\":\"34381920\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-10-31 14:06:37','2022-10-31 14:06:37','f4a6cdaf-974f-4938-afc0-712731d326f5'),(8,55,NULL,2,26,'bdbe365e614d0fb3b76422d825494a01','purchase',115.2600,115.2600,'CAD','CAD',1.0000,'failed','','','Missing or Invalid Fields - Account ID or API Token','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Missing or Invalid Fields - Account ID or API Token\",\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-09 14:00:36','2022-11-09 14:00:36','ec23cc62-ecce-47c2-bb44-c70bec0045ac'),(9,55,NULL,2,26,'69c2491a2073b17263bae7152a77f95f','purchase',115.2600,115.2600,'CAD','CAD',1.0000,'success','34497909','T7E4ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E4ST\",\"transactionId\":\"34497909\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-09 14:07:15','2022-11-09 14:07:15','0d8aaaf0-ca4d-4908-8731-64252f64a20e'),(10,55,9,2,1,'d1aaa41bbaa12ea1044ea2c5f32876df','refund',10.0000,10.0000,'CAD','CAD',1.0000,'failed','34497909','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"34497909\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2022-11-10 07:16:05','2022-11-10 07:16:05','708d76db-0205-49fc-a918-21900acff7a2'),(11,55,9,2,1,'71f18772192099178b27ff546fd9ee1e','refund',115.2600,115.2600,'CAD','CAD',1.0000,'success','34497909','','','115,26','{\"transactionId\":\"34497909\",\"response\":\"1\",\"responseMessage\":\"\"}','2022-11-10 07:16:24','2022-11-10 07:16:24','1f1b04e1-3705-4ee7-b796-d95f90f02a0a'),(12,45,NULL,2,1,'502536cbd3b70f486ec30f64cc308e71','purchase',518.8400,518.8400,'CAD','CAD',1.0000,'success','34508966','T2E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Tom \",\"lastName\":\"Hanks\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"1d84236289602b30a67a2e\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E9ST\",\"transactionId\":\"34508966\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"1d84236289602b30a67a2e_3056 **** *** 5904\",\"cardNumber\":\"3056 **** *** 5904\",\"cardType\":\"\",\"customerCode\":\"CUST1\",\"customer\":\"CUST1\"}','2022-11-10 08:27:31','2022-11-10 08:27:31','f2bdeeb4-9951-4c2d-88a0-efce0ac606f9'),(13,64,NULL,2,NULL,'88009ea20ec544aab1b3913fce7092ab','purchase',186.5400,186.5400,'CAD','CAD',1.0000,'success','34508976','T8E4ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Card\",\"lastName\":\"Holder\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"491e5c753fe5144e33685c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T8E4ST\",\"transactionId\":\"34508976\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"491e5c753fe5144e33685c\",\"cardNumber\":\"4000 **** **** 0028\",\"cardType\":\"Visa\",\"customerCode\":\"CST1160\",\"customer\":null}','2022-11-10 08:38:56','2022-11-10 08:38:56','f0b634a1-d3c6-4512-b536-dbd93ccd16cf'),(14,60,NULL,2,26,'acc282b04cb56ef3949cac30c19f72f4','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"sfsdf\",\"lastName\":\"sdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:16:11','2022-11-10 13:16:11','f1699402-fb68-4341-83be-d0fda44070ae'),(15,60,NULL,2,26,'3e20aba28837124f473d80b16be12cb9','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfvdf\",\"lastName\":\"fdgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:16:40','2022-11-10 13:16:40','913a32fe-f43a-469d-a5ae-8f4797825ded'),(16,60,NULL,2,26,'d5154fe970400604a89ca5c7de2e09e3','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfvdf\",\"lastName\":\"fdgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:17:50','2022-11-10 13:17:50','c10156bd-1011-4759-b7ca-4e79da9651d2'),(17,60,NULL,2,26,'c71d57b2d649bf00d58fc6d588fe23c7','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfvdf\",\"lastName\":\"fdgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:19:37','2022-11-10 13:19:37','5d928303-2129-48e0-9395-5932113ed20a'),(18,60,NULL,2,26,'089de28e36fd69aebf172243e22d37d0','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfvdf\",\"lastName\":\"fdgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:28:14','2022-11-10 13:28:14','e7658d51-491e-47ed-86c1-e20f2e5c884d'),(19,60,NULL,2,26,'a253830ac73ecbff50641195ed1671a3','purchase',357.9500,357.9500,'CAD','CAD',1.0000,'failed','','','Invalid Transaction ID','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfvdf\",\"lastName\":\"fdgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"Invalid Transaction ID\",\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2022-11-10 13:30:20','2022-11-10 13:30:20','a8459d85-458c-4ef8-8acb-43053e773613'),(20,71,NULL,2,26,'76d65cdbaa6e76a3906ea6afb398a8ac','purchase',132.6500,132.6500,'CAD','CAD',1.0000,'success','34510132','T5E3ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"xxd\",\"lastName\":\"sdfs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T5E3ST\",\"transactionId\":\"34510132\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-10 13:36:11','2022-11-10 13:36:11','827fbff7-8ee4-4792-914f-fecdd8d39304'),(21,75,NULL,2,26,'30214660b21003be94a2ca1407e3c2e2','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34522336','T1E8ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"ddgd\",\"lastName\":\"gdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E8ST\",\"transactionId\":\"34522336\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-11 12:04:07','2022-11-11 12:04:07','16d753e6-c97f-4607-828b-e4ca18c0e9dd'),(22,75,21,2,1,'5b0e3b5692661bb4c0e882945092905b','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid Transaction ID\"}','2022-11-11 12:17:59','2022-11-11 12:17:59','b1999691-1855-4b67-ae0f-5f3b3de442f1'),(23,75,21,2,1,'5db400415bcf505da012121c5894684f','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"\"}','2022-11-11 12:18:27','2022-11-11 12:18:27','25033c19-fb75-4484-83d5-f84ec5f0a538'),(24,75,21,2,1,'d1265d514ca7d4f42f3598c19f91a1b1','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"\"}','2022-11-11 12:19:41','2022-11-11 12:19:41','d2a5833d-037f-44db-af7b-887a8289b7f0'),(25,75,21,2,1,'cac8f74cc7825a0b576c55d13deba8d1','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"\"}','2022-11-11 12:20:37','2022-11-11 12:20:37','d1877e3f-1ee5-4d5d-a717-70c008ab2500'),(26,75,21,2,1,'908d9761f46d6c1c031b592fc61eb418','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336',NULL,'Undefined variable $apiResponse','',NULL,'2022-11-11 12:23:10','2022-11-11 12:23:10','7ac43ad9-a7f0-42cf-bf5b-0b9ef326a42e'),(27,75,21,2,1,'930c7f4fd3837db7a3f5b3afc6af3848','capture',132.6500,132.6500,'CAD','CAD',1.0000,'failed','34522336','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"\"}','2022-11-11 12:23:30','2022-11-11 12:23:30','78462ccb-0de4-4887-a00a-5430bbf836d3'),(28,78,NULL,2,26,'93037aeeea2104cbf4405150ecefd61e','authorize',245.3000,245.3000,'CAD','CAD',1.0000,'success','34522409','T7E2ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfgdfgd\",\"lastName\":\"fgd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E2ST\",\"transactionId\":\"34522409\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-11 12:26:48','2022-11-11 12:26:48','5f3cedc5-6ffd-4fb4-bb6a-14068f5233b2'),(29,78,28,2,1,'0db6f8ef5876da5b523dfbaa1087f0ac','capture',245.3000,245.3000,'CAD','CAD',1.0000,'failed','34522409','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"\"}','2022-11-11 12:27:12','2022-11-11 12:27:12','94f70222-da42-47d9-997b-c6d9fd00fc5a'),(30,78,28,2,1,'a722a49792c4df55a1228b2833298201','capture',245.3000,245.3000,'CAD','CAD',1.0000,'failed','34522409','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid Transaction ID\"}','2022-11-11 12:38:06','2022-11-11 12:38:06','7272ec55-0749-44a1-b4c1-d9c98d1f426e'),(31,78,28,2,1,'f8bb6cb1ad7895c08aa61e10e8eba4a6','capture',245.3000,245.3000,'CAD','CAD',1.0000,'failed','34522409','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid Transaction ID\"}','2022-11-11 12:44:46','2022-11-11 12:44:46','282f9496-b2ee-4e58-a06b-058177f32967'),(32,78,28,2,1,'e2372250460ed4af2b1010902a0972c3','capture',245.3000,245.3000,'CAD','CAD',1.0000,'success','34522440','','','','{\"response\":\"1\",\"transactionId\":\"34522440\",\"approvalCode\":\"\"}','2022-11-11 12:45:34','2022-11-11 12:45:34','9b6200aa-7d11-4570-80b0-e791495eb98d'),(33,81,NULL,2,26,'31d04ab085e736db710892876d6e3631','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34522448','T4E8ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"fgdg\",\"lastName\":\"dfgd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T4E8ST\",\"transactionId\":\"34522448\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-11 12:50:04','2022-11-11 12:50:04','53561381-5d9e-4efd-9eec-9b3a7ff5d25e'),(34,84,NULL,2,26,'56a3f040873424e63ba741f3fbe94d09','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34522456','T4E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"gdgd\",\"lastName\":\"fgdfgd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2649b316de3c81ace9011c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T4E9ST\",\"transactionId\":\"34522456\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2649b316de3c81ace9011c\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-11 12:58:56','2022-11-11 12:58:56','7dd78ee7-cdad-4255-8a63-1075350991bb'),(35,84,34,2,1,'c97b324242337aa350e547e0001c8398','capture',132.6500,132.6500,'CAD','CAD',1.0000,'success','34522466','','','','{\"response\":\"1\",\"transactionId\":\"34522466\"}','2022-11-11 12:59:55','2022-11-11 12:59:55','8e42d4f6-f693-474c-902c-45ea8d722f98'),(36,87,NULL,2,26,'92e4c157c6431b2bb53f3d1616b8900d','authorize',180.8900,180.8900,'CAD','CAD',1.0000,'success','34522473','T7E4ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E4ST\",\"transactionId\":\"34522473\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-11 13:01:59','2022-11-11 13:01:59','372e5377-13c4-4e81-a583-1e79567e574f'),(37,90,NULL,2,26,'799165b732332d7b28d7d72f9f82b4d7','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547641','T8E3ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"fgdgfd\",\"lastName\":\"fgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T8E3ST\",\"transactionId\":\"34547641\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\",\"cardNumber\":\"4124********9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-14 13:54:38','2022-11-14 13:54:38','2f06a320-d8a8-4e7f-95c7-87e8ae996baa'),(38,90,37,2,1,'a1224b7017ae7cb5bfe8332ca02a7ce5','capture',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547648','','','','{\"response\":\"1\",\"transactionId\":\"34547648\"}','2022-11-14 13:55:58','2022-11-14 13:55:58','e73abdd9-4bf8-41be-99bd-76874ee7e28b'),(39,93,NULL,2,26,'35df080e5cad18016d4a7977213be64d','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547714','T1E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"gfgfg\",\"lastName\":\"fg\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E9ST\",\"transactionId\":\"34547714\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\",\"cardNumber\":\"4124********9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-14 14:06:43','2022-11-14 14:06:43','f47aa964-e972-4763-b996-e5ab5ba947a1'),(40,96,NULL,2,26,'15e63497aa8431e98f6b2c0c397fceb2','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547759','T6E3ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"fdf\",\"lastName\":\"dfd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E3ST\",\"transactionId\":\"34547759\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\",\"cardNumber\":\"4124********9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-14 14:11:41','2022-11-14 14:11:41','dcdedb78-de2a-49c1-abbd-df9260ce61c0'),(41,99,NULL,2,26,'542d8db747f830f6ad6d5490e3cddcc3','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547792','T5E7ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfdf\",\"lastName\":\"dfd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T5E7ST\",\"transactionId\":\"34547792\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\",\"cardNumber\":\"4124********9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-14 14:15:05','2022-11-14 14:15:05','97338ecd-842a-4f71-a920-76e059db1f5c'),(42,99,41,2,1,'04874ab20a675d1394850b51784199e7','capture',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547812','','','','{\"response\":\"1\",\"transactionId\":\"34547812\"}','2022-11-14 14:18:16','2022-11-14 14:18:16','587876a2-bb59-4ac6-aa7b-48c06d6b575c'),(43,102,NULL,2,26,'58091d17bb2067be299d5518e3b90f48','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547832','T7E5ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E5ST\",\"transactionId\":\"34547832\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-14 14:20:49','2022-11-14 14:20:49','4427dd2a-3510-4537-85c0-7e06e195f162'),(44,105,NULL,2,26,'3b18a9820b67ed4d7e1a3a372af299a4','authorize',186.5400,186.5400,'CAD','CAD',1.0000,'failed','34547843','T7E8ST','Invalid Card Token','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfdf\",\"lastName\":\"dfd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":\"T7E8ST\",\"transactionId\":\"34547843\",\"responseMessage\":\"Invalid Card Token\",\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124 **** **** 9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2022-11-14 14:21:51','2022-11-14 14:21:51','bd257a23-3ad6-4de1-95ab-8ecc0e4581ab'),(45,105,NULL,2,26,'2a9350c6ab80fcda24aabe6769a83662','authorize',186.5400,186.5400,'CAD','CAD',1.0000,'success','34547870','T3E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfdf\",\"lastName\":\"dfd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ab77ae7a1ed463a84cbd42\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E9ST\",\"transactionId\":\"34547870\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2022-11-14 14:24:58','2022-11-14 14:24:58','30bdcc59-330b-4fd8-a409-4bd5549bc33f'),(46,108,NULL,2,26,'ab1fd9b778cafd778edcc16ed5c6aadf','authorize',132.6500,132.6500,'CAD','CAD',1.0000,'success','34547875','T7E9ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E9ST\",\"transactionId\":\"34547875\",\"responseMessage\":null,\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-14 14:25:35','2022-11-14 14:25:35','d813201d-beed-4089-b072-2c228c93dd1d'),(47,108,46,2,1,'ec8863666b60c208e534bd45c02b14c7','capture',132.6500,132.6500,'CAD','CAD',1.0000,'success','34559934','','','','{\"response\":\"1\",\"transactionId\":\"34559934\"}','2022-11-15 11:24:28','2022-11-15 11:24:28','1b4d4aed-3ad3-4c0d-a4f6-ee8ad348091f'),(48,111,NULL,2,26,'b221ff13cebf436da9144df78fbe9cfa','authorize',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560036','T2E1ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Tom\",\"lastName\":\"Hanks\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"6a75b276a2e7940226c682\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E1ST\",\"transactionId\":\"34560036\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"6a75b276a2e7940226c682\",\"cardNumber\":\"5413********0011\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-15 11:29:31','2022-11-15 11:29:31','e96fe95e-3b00-4b97-96ed-2303910a5570'),(49,111,48,2,1,'8bbe9568fe7ab2f6c333d90bbec3db16','capture',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560119','','','','{\"response\":\"1\",\"transactionId\":\"34560119\"}','2022-11-15 11:33:03','2022-11-15 11:33:03','daa11b5b-124b-494e-ae33-0b800f9bda19'),(50,111,49,2,1,'cc1b3afb7ab9c4c1b5105a407e296144','refund',2.1300,2.1300,'CAD','CAD',1.0000,'failed','34560119','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid parent transaction response\"}','2022-11-15 11:45:38','2022-11-15 11:45:38','d2019e9e-11e3-44b0-a8a7-d8111ee0b474'),(51,111,49,2,1,'8f83c8bdd7277a8f099534262e18e603','refund',2.1300,2.1300,'CAD','CAD',1.0000,'failed','34560119','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid parent transaction response\"}','2022-11-15 11:46:17','2022-11-15 11:46:17','b74ded25-450d-4ac0-a556-f7a9b4ae8a04'),(52,111,49,2,1,'b7ed57bad7a1837a6bdde0c8bf41b309','refund',1.0000,1.0000,'CAD','CAD',1.0000,'failed','34560119','','Undefined array key \"transactionId\"','','{\"response\":0,\"responseMessage\":\"Invalid parent transaction response\"}','2022-11-15 11:54:20','2022-11-15 11:54:20','eb662841-9bec-4a87-ae34-f89338df402c'),(53,115,NULL,2,26,'9b1f85295765ac8b9a23d5944a7dae54','authorize',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560762','T6E6ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E6ST\",\"transactionId\":\"34560762\",\"responseMessage\":null,\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-15 11:59:39','2022-11-15 11:59:39','025bd02c-9067-4b2b-b41a-54d9ffbfe1e1'),(54,115,53,2,1,'037e759fdf7e669ac9fa694b6bc94092','capture',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560773','','','','{\"response\":\"1\",\"transactionId\":\"34560773\"}','2022-11-15 11:59:56','2022-11-15 11:59:56','bf86b7e9-39e7-4007-935e-a8a61f525cfb'),(55,118,NULL,2,26,'862cb5fb04fe45d63d99f0abebc4b4e1','authorize',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560811','T7E6ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E6ST\",\"transactionId\":\"34560811\",\"responseMessage\":null,\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-15 12:01:20','2022-11-15 12:01:20','47855951-758b-4dd9-bb32-78f259344537'),(56,118,55,2,1,'25d24fbb4bb6f93e2f96c4884b6fd34d','capture',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560836','','','','{\"response\":\"1\",\"transactionId\":\"34560836\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\"}','2022-11-15 12:02:19','2022-11-15 12:02:19','ed19c26c-8b7b-4d9e-a418-194e34aac648'),(57,118,56,2,1,'c08b50f011f718734faa677679bcb036','refund',2.0000,2.0000,'CAD','CAD',1.0000,'failed','34560836','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"34560836\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2022-11-15 12:03:02','2022-11-15 12:03:02','135a1863-c6de-41d2-a54f-4183f1a8ea66'),(58,118,56,2,1,'bd5d8e543b5bcf62f3aac03a507c8eeb','refund',2.1300,2.1300,'CAD','CAD',1.0000,'success','34560836','','','','{\"transactionId\":\"34560836\",\"response\":\"1\",\"responseMessage\":\"\"}','2022-11-15 12:03:50','2022-11-15 12:03:50','a4de0734-c414-41e1-a199-96c0dffec0a5'),(59,121,NULL,2,26,'aeef48af264ec1f789dfde81889632be','authorize',113.6500,113.6500,'CAD','CAD',1.0000,'failed','34563472','T1E5ST','Card F4L4 Does Not Match Card Token','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"rrrr\",\"lastName\":\"ttt\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"eb7a60d1318f2acee5b273\",\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":\"T1E5ST\",\"transactionId\":\"34563472\",\"responseMessage\":\"Card F4L4 Does Not Match Card Token\",\"cardToken\":\"eb7a60d1318f2acee5b273\",\"cardNumber\":\"3742 **** *** 1006\",\"cardType\":\"American Express\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-15 13:53:23','2022-11-15 13:53:23','d185aca1-7ff7-4a55-bb90-af523247813d'),(60,121,NULL,2,26,'1c004959253ff3aade0ed6a93aa86761','authorize',113.6500,113.6500,'CAD','CAD',1.0000,'success','34563533','T1E6ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"rrrr\",\"lastName\":\"ttt\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"eb7a60d1318f2acee5b273\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E6ST\",\"transactionId\":\"34563533\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"eb7a60d1318f2acee5b273\",\"cardNumber\":\"3742*******1006\",\"cardType\":\"American Express\",\"customerCode\":\"CUST26\",\"customer\":null}','2022-11-15 13:58:41','2022-11-15 13:58:41','9b82bc2a-2e7d-438a-80b0-d3fc1b4e0226'),(61,121,60,2,1,'de785500dafccaa833c4efce2a66b4b9','capture',113.6500,113.6500,'CAD','CAD',1.0000,'success','34563560','','','','{\"response\":\"1\",\"transactionId\":\"34563560\",\"cardToken\":\"eb7a60d1318f2acee5b273\"}','2022-11-15 14:01:20','2022-11-15 14:01:20','0c559a72-02de-4fa0-9f3c-e29eedfd632e'),(62,124,NULL,2,26,'2d9848687a9b50ad812b0dbaed462284','authorize',113.6500,113.6500,'CAD','CAD',1.0000,'success','34563576','T3E2ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E2ST\",\"transactionId\":\"34563576\",\"responseMessage\":null,\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-15 14:03:23','2022-11-15 14:03:23','54f5c8e3-f30e-4228-b37b-d3b6fbac02a3'),(63,127,NULL,2,26,'7e201ea74d578369ddda0f81e7eaf744','authorize',113.6500,113.6500,'CAD','CAD',1.0000,'failed','','','INVALID CARD','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"INVALID CARD\",\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2022-11-15 14:04:05','2022-11-15 14:04:05','3df3c67f-b8da-4d1e-a34b-b282c7b0a0fa'),(64,124,62,2,1,'8b70a6223576aa98e4744b979131a922','capture',113.6500,113.6500,'CAD','CAD',1.0000,'success','35852324','','','','{\"response\":\"1\",\"transactionId\":\"35852324\",\"cardToken\":\"ab77ae7a1ed463a84cbd42\"}','2023-03-06 12:15:17','2023-03-06 12:15:17','485e9ad2-c0d4-474b-98ec-37cdddb58c12'),(65,124,64,2,1,'77ef8592fa91dc2a6ca83f8995297967','refund',113.6500,113.6500,'CAD','CAD',1.0000,'failed','35852324','','','hgh','{\"transactionId\":\"35852324\",\"response\":0,\"responseMessage\":\"\"}','2023-03-06 12:15:54','2023-03-06 12:15:54','923581d5-9a69-4d7c-b0b8-7264256bea31'),(66,124,64,2,1,'8c3ec695072b81a9e89325b045328741','refund',113.6500,113.6500,'CAD','CAD',1.0000,'failed','35852324','','','','{\"transactionId\":\"35852324\",\"response\":0,\"responseMessage\":\"\"}','2023-03-06 12:16:13','2023-03-06 12:16:13','4c3843f5-3851-4e55-9dff-455e5fdc96b1'),(67,124,64,2,1,'878c1f811e7d5a35dcc93a15d2509e91','refund',15.0000,15.0000,'CAD','CAD',1.0000,'failed','35852324','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"35852324\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-03-06 12:16:41','2023-03-06 12:16:41','e2d41f29-3253-4baf-ba4e-b4ae2ab4876a'),(68,124,64,2,1,'009321d378e0a122c0381a60f7f0727d','refund',113.6500,113.6500,'CAD','CAD',1.0000,'failed','35852324','','','','{\"transactionId\":\"35852324\",\"response\":0,\"responseMessage\":\"\"}','2023-03-06 12:17:00','2023-03-06 12:17:00','49f4675d-cea4-430a-b44e-bad8ba6eaa7f'),(69,165,NULL,2,26,'7a887b6e6be66db2faa6468b6a755aab','authorize',113.6500,113.6500,'CAD','CAD',1.0000,'success','36309549','T2E5ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Denis\",\"lastName\":\"Piskun\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"bc7cbecbaa3703d54a1b31\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E5ST\",\"transactionId\":\"36309549\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"bc7cbecbaa3703d54a1b31_54130011\",\"cardNumber\":\"5413********0011\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2023-04-12 07:46:56','2023-04-12 07:46:56','d79fb97d-6993-4c6e-9cc1-275d5f528aa3'),(70,165,69,2,1,'96b7ac4033b448b6b227f361e8586d83','capture',113.6500,113.6500,'CAD','CAD',1.0000,'success','36309551','','','','{\"response\":\"1\",\"transactionId\":\"36309551\",\"cardToken\":\"bc7cbecbaa3703d54a1b31\"}','2023-04-12 07:49:20','2023-04-12 07:49:20','18271ea1-7c25-4573-9365-0be2cbb63db7'),(71,169,NULL,2,26,'4999f8b7d3bc158bef02af895ae9ab9c','authorize',49.2400,49.2400,'CAD','CAD',1.0000,'success','37230043','T3E1ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E1ST\",\"transactionId\":\"37230043\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-15 07:55:53','2023-06-15 07:55:53','e92af1ec-0eb7-4176-bf6b-7bce99ce6e6f'),(72,127,NULL,2,26,'69cda43c51bedb01cc68e8c4217f4998','authorize',49.2400,49.2400,'CAD','CAD',1.0000,'success','37230115','T6E3ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E3ST\",\"transactionId\":\"37230115\",\"responseMessage\":null,\"cardToken\":\"ab77ae7a1ed463a84cbd42_41249990\",\"cardNumber\":\"4124********9990\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-15 08:58:57','2023-06-15 08:58:57','3c9baa24-91bb-4e84-9cd7-4ebad39722ca'),(73,174,NULL,2,26,'3f2f8802e356600adad950f3a1085505','authorize',108.8400,108.8400,'CAD','CAD',1.0000,'success','37249032','T3E4ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E4ST\",\"transactionId\":\"37249032\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-16 10:26:17','2023-06-16 10:26:17','9db4b2f4-47ff-47ce-b022-72dc6764413f'),(74,182,NULL,2,26,'fec48ff5334162599d37c592b71f071d','authorize',65.8500,65.8500,'CAD','CAD',1.0000,'success','37249069','T7E9ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E9ST\",\"transactionId\":\"37249069\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-16 10:45:02','2023-06-16 10:45:02','f605c494-6c5c-4390-9c1e-781e5df790fc'),(75,135,NULL,2,26,'7d4b60a4c4ebe4abe4d0a10cc5a36019','authorize',16.1300,16.1300,'CAD','CAD',1.0000,'success','37249093','T6E4ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E4ST\",\"transactionId\":\"37249093\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-16 11:12:50','2023-06-16 11:12:50','1f5c275b-3fb2-467b-8ce5-7bdf0f30ac05'),(76,195,NULL,2,26,'4cc0ddd7fe8b1059bbab7bbc27f453f8','authorize',16.1300,16.1300,'CAD','CAD',1.0000,'success','37249095','T9E6ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T9E6ST\",\"transactionId\":\"37249095\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-16 11:13:59','2023-06-16 11:13:59','1d3fea9f-a29f-4df6-8010-6445e4501eef'),(77,198,NULL,2,26,'a3482d674214649add174cf6bc3ab014','authorize',1.6300,1.6300,'CAD','CAD',1.0000,'failed','','','INVALID CARD','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":0,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":\"INVALID CARD\",\"cardToken\":\"bc7cbecbaa3703d54a1b31_54130011\",\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-16 11:23:38','2023-06-16 11:23:38','61103ec4-8cf2-44b7-9f75-5f90bbd3fac2'),(78,137,NULL,2,26,'0bcee2b6d5ed77d81cd23df89061e8f1','authorize',2.6300,2.6300,'CAD','CAD',1.0000,'success','37249657','099607','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"cf09f8b15db4e05bccd97a\",\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"099607\",\"transactionId\":\"37249657\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"cf09f8b15db4e05bccd97a\",\"cardNumber\":\"5526********8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-16 13:23:32','2023-06-16 13:23:32','13abd096-28c4-4ca9-8f21-8dd44cce06b7'),(79,137,78,2,1,'2a3d78a1d937c866d827c59923c89053','capture',2.6300,2.6300,'CAD','CAD',1.0000,'success','37249662','','','','{\"response\":\"1\",\"transactionId\":\"37249662\",\"cardToken\":\"cf09f8b15db4e05bccd97a\"}','2023-06-16 13:24:11','2023-06-16 13:24:11','b4802668-00cf-435d-909b-6bab67560d60'),(80,137,79,2,1,'739aea8939abb050dd81c529a7765481','refund',2.6300,2.6300,'CAD','CAD',1.0000,'success','37249662','','','test','{\"transactionId\":\"37249662\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-16 13:25:06','2023-06-16 13:25:06','319e1d98-c256-4da0-bc84-27212cb70fe4'),(81,160,NULL,2,26,'5b9055fe1e91fd9532924a182fa8b07f','purchase',1.2000,1.2000,'CAD','CAD',1.0000,'success','37285408','015638','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"f789d3421af3599b76f52c\",\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"015638\",\"transactionId\":\"37285408\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"f789d3421af3599b76f52c\",\"cardNumber\":\"5526********8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 11:07:19','2023-06-19 11:07:19','51d73e00-8eda-4452-a407-780f6db6067c'),(82,160,81,2,1,'035c1a3a153e42311984e0fcec2e561a','refund',1.2000,1.2000,'CAD','CAD',1.0000,'success','37285408','','','test','{\"transactionId\":\"37285408\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 11:10:17','2023-06-19 11:10:17','87d40db3-9b6a-4f49-a2f0-8626e949b403'),(83,206,NULL,2,26,'b3a5e2aaee0eced95b21277453676497','purchase',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285425','005481','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"1b82a548e94c3a162af803\",\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"005481\",\"transactionId\":\"37285425\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"1b82a548e94c3a162af803_55268252\",\"cardNumber\":\"5526********8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2023-06-19 11:13:52','2023-06-19 11:13:52','1297e23e-6f88-4c38-b7d9-f861a4cb9ecf'),(84,206,83,2,1,'e6cd8920be987da016370d1a33361212','refund',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285425','','','hh','{\"transactionId\":\"37285425\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 11:16:26','2023-06-19 11:16:26','cf809ba8-88f5-49cd-ae73-a6c525e893ec'),(85,209,NULL,2,26,'bb3f29a77fccc45de0961f9be75b15fb','purchase',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285432','005734','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"005734\",\"transactionId\":\"37285432\",\"responseMessage\":null,\"cardToken\":\"1b82a548e94c3a162af803_55268252\",\"cardNumber\":\"5526********8252\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-19 11:20:19','2023-06-19 11:20:19','b3250dd8-57a3-4a63-9169-40c139fc7550'),(86,212,NULL,2,26,'179e33d775d0d56fd222c66eb329f079','purchase',1.2000,1.2000,'CAD','CAD',1.0000,'success','37285437','072856','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"036827d3f449a6792c9138\",\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"072856\",\"transactionId\":\"37285437\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"036827d3f449a6792c9138_55268252\",\"cardNumber\":\"5526********8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2023-06-19 11:22:43','2023-06-19 11:22:43','67879987-c49e-4954-b820-3568fac07d7e'),(87,209,85,2,1,'5145f5e37db1054fe1928c64e13d9d43','refund',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285432','','','gg','{\"transactionId\":\"37285432\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 11:26:33','2023-06-19 11:26:33','523ae0b9-6b21-439c-9e50-e377cc56c7d1'),(88,212,86,2,1,'2a1205a0a35e251e97b4a5de43bda38f','refund',1.2000,1.2000,'CAD','CAD',1.0000,'success','37285437','','','ff','{\"transactionId\":\"37285437\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 11:26:55','2023-06-19 11:26:55','16940228-9813-41b5-a8b7-58ab48d31cdc'),(89,216,NULL,2,26,'aba70a67b605c4169ac4ee7a7fbbdc0a','purchase',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285453','050237','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"0a0c79d157ba3a305926dc\",\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"050237\",\"transactionId\":\"37285453\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"0a0c79d157ba3a305926dc\",\"cardNumber\":\"5526********8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 11:28:34','2023-06-19 11:28:34','24b37972-bf8b-4be6-8396-298d36c6d925'),(90,219,NULL,2,26,'f1e24d3e9c4f43d21e61af13d59d5819','purchase',115.7600,115.7600,'CAD','CAD',1.0000,'success','37285476','T1E6ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"ddd\",\"lastName\":\"fff\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"904bd18d1cbc1ec622cb92\",\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E6ST\",\"transactionId\":\"37285476\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"904bd18d1cbc1ec622cb92\",\"cardNumber\":\"6011********0005\",\"cardType\":\"Discover\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 11:40:34','2023-06-19 11:40:34','daac1132-7792-4696-be54-2fcead653f2b'),(91,222,NULL,2,26,'49eb80fcff144f3cdcfd03693ed57a6e','purchase',51.3500,51.3500,'CAD','CAD',1.0000,'success','37285521','T2E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"ddd\",\"lastName\":\"fff\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"758913f4c96468d9eb6896\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E9ST\",\"transactionId\":\"37285521\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"758913f4c96468d9eb6896\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 12:02:31','2023-06-19 12:02:31','36a8fd44-aa49-4ac9-9a16-faef741d29b5'),(92,225,NULL,2,26,'05b8b641ce945dd87dc168f336c6523c','purchase',115.7600,115.7600,'CAD','CAD',1.0000,'success','37285542','T1E6ST','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"125\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E6ST\",\"transactionId\":\"37285542\",\"responseMessage\":null,\"cardToken\":\"2649b316de3c81ace9011c_42424242\",\"cardNumber\":\"4242********4242\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-19 12:04:23','2023-06-19 12:04:23','ecc0ac49-d7e5-42ee-9240-3c851054db58'),(93,228,NULL,2,26,'bf221b8ea1e692b3eb1594ebe451f966','purchase',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285577','094264','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"76bfcfc1365c2e25a0f648\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"094264\",\"transactionId\":\"37285577\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"76bfcfc1365c2e25a0f648_55268252\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2023-06-19 12:13:15','2023-06-19 12:13:15','f1da56b2-9c9f-4205-9e1d-e44cb3fb658a'),(94,231,NULL,2,26,'d669fdaaa3ce33794e9af1653d752e68','purchase',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285583','030765','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"030765\",\"transactionId\":\"37285583\",\"responseMessage\":null,\"cardToken\":\"76bfcfc1365c2e25a0f648_55268252\",\"cardNumber\":\"5526********8252\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-19 12:14:36','2023-06-19 12:14:36','c04f7704-63aa-41c2-a57f-7678755ccea7'),(95,228,93,2,1,'865877c65f1e8af4c2417efdc784186f','refund',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285577','','','jj','{\"transactionId\":\"37285577\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 12:15:21','2023-06-19 12:15:21','c25ca14f-f773-4bea-a0b1-0c1c075c8443'),(96,231,94,2,1,'fad9910507b23be438eee9939745b2cf','refund',1.6300,1.6300,'CAD','CAD',1.0000,'success','37285583','','','fff','{\"transactionId\":\"37285583\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 12:16:18','2023-06-19 12:16:18','d46c198b-10ee-4e6b-a6a7-ec7499dc372c'),(97,234,NULL,2,26,'76a20a4bf942be3973ec2deddd97956a','authorize',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285603','057953','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedev\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ee7fcdbdcba362dbfe6c64\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"057953\",\"transactionId\":\"37285603\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"ee7fcdbdcba362dbfe6c64\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 12:19:01','2023-06-19 12:19:01','ac1bcfda-c89f-4041-94cf-d9cec5ca3651'),(98,237,NULL,2,26,'9b069b2ed73cef13366f819871bf46ce','authorize',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285605','005896','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ea630e1537940176014dbe\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"005896\",\"transactionId\":\"37285605\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"ea630e1537940176014dbe\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-19 12:20:20','2023-06-19 12:20:20','daeec0cf-7808-4099-b751-0c7c282ceacf'),(99,237,98,2,1,'ee5ac8d7d201f96e36401bca59f81edf','capture',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285606','','','','{\"response\":\"1\",\"transactionId\":\"37285606\",\"cardToken\":\"ea630e1537940176014dbe\"}','2023-06-19 12:20:46','2023-06-19 12:20:46','7217d520-42e4-4164-a7ee-4db1061e3c46'),(100,237,99,2,1,'b186e269beadb5e95d897cabd4d59198','refund',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285606','','','dd','{\"transactionId\":\"37285606\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 12:21:40','2023-06-19 12:21:40','c2129aff-1763-47e9-b615-916079313239'),(101,240,NULL,2,26,'0b48b24ec32d489bab0fb19db7fdaa34','authorize',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285611','070489','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"526\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"070489\",\"transactionId\":\"37285611\",\"responseMessage\":null,\"cardToken\":\"76bfcfc1365c2e25a0f648_55268252\",\"cardNumber\":\"5526********8252\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST26\"}','2023-06-19 12:22:35','2023-06-19 12:22:35','e635dd0c-973d-49b7-9bea-6124362a84da'),(102,240,101,2,1,'5a6a43b3592a13aae87bfecd3e91311f','capture',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285613','','','','{\"response\":\"1\",\"transactionId\":\"37285613\",\"cardToken\":\"76bfcfc1365c2e25a0f648\"}','2023-06-19 12:23:13','2023-06-19 12:23:13','4a018e5c-0497-4bf9-b5bd-34b9eae15dc8'),(103,240,102,2,1,'9ceceb65c32497360d77f987c8fa0991','refund',0.5700,0.5700,'CAD','CAD',1.0000,'success','37285613','','','ddd','{\"transactionId\":\"37285613\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 12:23:25','2023-06-19 12:23:25','946b66b5-e1ff-4ed0-b150-8b66545cf598'),(104,243,NULL,2,NULL,'40841268f32a1eeaba4fcddc4959140b','purchase',1.1300,1.1300,'CAD','CAD',1.0000,'success','37295456','00018G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"54d2fe56266796d501ddb3\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"00018G\",\"transactionId\":\"37295456\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"54d2fe56266796d501ddb3\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1176\",\"customer\":null}','2023-06-19 21:13:35','2023-06-19 21:13:35','623fe029-5b0e-4845-baf0-90b08c07b649'),(105,243,104,2,1,'9b284ce119b5ff746c649ec70cc54514','refund',1.1300,1.1300,'CAD','CAD',1.0000,'success','37295456','','','','{\"transactionId\":\"37295456\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 21:15:45','2023-06-19 21:15:45','086c3b4e-75f7-4ae0-b579-c13db3225690'),(106,243,NULL,2,1,'47bdd0d6552993a4496ba4be625e9655','purchase',1.1300,1.1300,'CAD','CAD',1.0000,'failed','','','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":null,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":null,\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2023-06-19 21:22:18','2023-06-19 21:22:18','de9b7521-c268-41c0-bcd9-99b54cf7226d'),(107,254,NULL,2,NULL,'5a52335483b2f8c8ed9f9faa208f6aa9','purchase',1.1300,1.1300,'CAD','CAD',1.0000,'success','37295899','02744G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"678db0c6fa1dad4bba8396\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"02744G\",\"transactionId\":\"37295899\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"678db0c6fa1dad4bba8396\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1177\",\"customer\":null}','2023-06-19 21:34:26','2023-06-19 21:34:26','ab2c5afe-762f-4672-a378-c17b42850660'),(108,254,107,2,1,'103d80effd45e2ed7257e5ea56f8f5aa','refund',1.1300,1.1300,'CAD','CAD',1.0000,'success','37295899','','','TEST','{\"transactionId\":\"37295899\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 21:35:07','2023-06-19 21:35:07','0ea7d49e-0838-4120-bb0a-e874e3fe2ef1'),(109,257,NULL,2,245,'07ca71dd951f9d2dc75878659a0bf0dd','purchase',35.7500,35.7500,'CAD','CAD',1.0000,'success','37296171','09180G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"8886892f03ccb61cb1d33e\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"09180G\",\"transactionId\":\"37296171\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"8886892f03ccb61cb1d33e_45201326\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST245\",\"customer\":\"CUST245\"}','2023-06-19 21:46:41','2023-06-19 21:46:41','6ff17faf-6da1-47e6-8537-1cae09196e1e'),(110,257,109,2,1,'fc772d3c632773e84e9fe11c2b622996','refund',35.7500,35.7500,'CAD','CAD',1.0000,'success','37296171','','','','{\"transactionId\":\"37296171\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 21:47:15','2023-06-19 21:47:15','5861ab2f-65fa-4a8f-8578-742358f638f5'),(111,262,NULL,2,245,'7114611b3bab54a020fa91b42738a7ea','purchase',56.5000,56.5000,'CAD','CAD',1.0000,'success','37296222','05388G','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"1123\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"05388G\",\"transactionId\":\"37296222\",\"responseMessage\":null,\"cardToken\":\"8886892f03ccb61cb1d33e_45201326\",\"cardNumber\":\"4520********1326\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST245\"}','2023-06-19 21:48:46','2023-06-19 21:48:46','8dd93163-d8a1-4cde-83a4-3186069ec7e4'),(112,262,111,2,1,'068841c7c62df9c9e67de4d95822c017','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37296222','','','','{\"transactionId\":\"37296222\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-19 21:49:07','2023-06-19 21:49:07','93b594d2-5fe1-43b2-8874-456ce266289c'),(113,265,NULL,2,NULL,'f25ce5c43b1b2e441a0d8f69f604c321','authorize',2.1300,2.1300,'CAD','CAD',1.0000,'success','37298912','04076G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"f83d43d58f3928a822c92e\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"04076G\",\"transactionId\":\"37298912\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"f83d43d58f3928a822c92e\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1178\",\"customer\":null}','2023-06-20 02:48:03','2023-06-20 02:48:03','69a56dab-99db-4a2c-b3e1-11a2c6b886b5'),(114,265,113,2,1,'40efc0a1b130fafda48d4a697e5ba44b','capture',2.1300,2.1300,'CAD','CAD',1.0000,'success','37298919','','','','{\"response\":\"1\",\"transactionId\":\"37298919\",\"cardToken\":\"f83d43d58f3928a822c92e\"}','2023-06-20 02:49:42','2023-06-20 02:49:42','d460a1f2-55bb-4103-a95a-ca03b504ed7c'),(115,265,114,2,1,'04dc3e6a3c6ae30da810ba468f91088e','refund',2.1300,2.1300,'CAD','CAD',1.0000,'success','37298919','','','','{\"transactionId\":\"37298919\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 02:50:02','2023-06-20 02:50:02','52d1dc22-c8c3-4e77-bbc7-3a9949933583'),(116,268,NULL,2,245,'5fa01272a2df35561e5d1a6a67049d3b','authorize',35.7500,35.7500,'CAD','CAD',1.0000,'success','37298930','06056G','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"1123\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"06056G\",\"transactionId\":\"37298930\",\"responseMessage\":null,\"cardToken\":\"8886892f03ccb61cb1d33e_45201326\",\"cardNumber\":\"4520********1326\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST245\"}','2023-06-20 02:52:02','2023-06-20 02:52:02','903230f0-cdac-48ea-a0f4-ad6cb5435571'),(117,268,116,2,1,'695acd8d514692f8fbb8b750917764d6','capture',35.7500,35.7500,'CAD','CAD',1.0000,'success','37298935','','','','{\"response\":\"1\",\"transactionId\":\"37298935\",\"cardToken\":\"8886892f03ccb61cb1d33e\"}','2023-06-20 02:52:58','2023-06-20 02:52:58','6baaca3d-c527-4642-81c9-66f79af15882'),(118,268,117,2,1,'ea566782b96613ed4eb97516a53d1f23','refund',35.7500,35.7500,'CAD','CAD',1.0000,'success','37298935','','','TEST','{\"transactionId\":\"37298935\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 02:53:11','2023-06-20 02:53:11','bceb847b-ad0a-4c01-9a8a-ca839e572670'),(119,268,NULL,2,1,'84f48ceb1ac256d430c95ff5f0d0d0dc','authorize',35.7500,35.7500,'CAD','CAD',1.0000,'failed','','','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":null,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":null,\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2023-06-20 02:54:06','2023-06-20 02:54:06','df5ee8e9-2aa8-46f8-98de-e5a3a79b3026'),(120,243,NULL,2,1,'0cec0c84a83a5457efc7c48669ddbda5','purchase',1.1300,1.1300,'CAD','CAD',1.0000,'success','37299355','T5E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfsf\",\"lastName\":\"sfsdd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"e3781d8f3d1013d26d0b61\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T5E9ST\",\"transactionId\":\"37299355\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"e3781d8f3d1013d26d0b61\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-20 07:43:43','2023-06-20 07:43:43','5be1ce04-e3ec-42b3-a604-bbbdf83abb6b'),(121,243,120,2,1,'1eb688d38bdf3fe6d5ba2c51d53a1f19','refund',1.1300,1.1300,'CAD','CAD',1.0000,'success','37299355','','','','{\"transactionId\":\"37299355\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 07:44:49','2023-06-20 07:44:49','b2c8c43d-c9de-4751-a38c-e087967bb8f0'),(122,243,NULL,2,1,'29a9383b14298dddba82dee44a7fc679','authorize',1.1300,1.1300,'CAD','CAD',1.0000,'success','37299357','T6E9ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"gg\",\"lastName\":\"hhh\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"2dfa9320c24b8fdf20f81a\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T6E9ST\",\"transactionId\":\"37299357\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"2dfa9320c24b8fdf20f81a\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-20 07:45:06','2023-06-20 07:45:06','c0fb6666-c3bf-43d2-8a7c-6771a0f73738'),(123,243,122,2,1,'4d51c676a51b3e59edf51031036b1ce0','capture',1.1300,1.1300,'CAD','CAD',1.0000,'success','37299359','','','','{\"response\":\"1\",\"transactionId\":\"37299359\",\"cardToken\":\"2dfa9320c24b8fdf20f81a\"}','2023-06-20 07:45:13','2023-06-20 07:45:13','2499fa67-ae53-4dfb-94f6-cb6162c9a355'),(124,273,NULL,2,NULL,'c78a367ba31f5586adfb0c2c8be4705a','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'failed','','','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"der\",\"lastName\":\"ttt\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":null,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":null,\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2023-06-20 07:46:29','2023-06-20 07:46:29','5d91c902-d156-46a9-b2a3-9f10c78fc8c4'),(125,273,NULL,2,NULL,'2fa410a68284413bda78a8aefc4dcd81','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'failed','','','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"der\",\"lastName\":\"ttt\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":null,\"threeDSecure\":false,\"response\":null,\"approvalCode\":null,\"transactionId\":null,\"responseMessage\":null,\"cardToken\":null,\"cardNumber\":null,\"cardType\":null,\"customerCode\":null,\"customer\":null}','2023-06-20 07:47:36','2023-06-20 07:47:36','e01bec29-d788-4d74-a92d-bb08020ffb92'),(126,273,NULL,2,NULL,'bfec8c9a3a380846fbe863e784185178','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299361','T7E8ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfsdf\",\"lastName\":\"sdfs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"80bf183a8d2449ea9645b8\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E8ST\",\"transactionId\":\"37299361\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"80bf183a8d2449ea9645b8\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CST1179\",\"customer\":null}','2023-06-20 07:47:53','2023-06-20 07:47:53','1dbd20cf-308d-4a90-a48f-48b0b0fe206d'),(127,273,126,2,1,'150e51d26c1f5a550f60ff4fd0e56295','capture',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299362','','','','{\"response\":\"1\",\"transactionId\":\"37299362\",\"cardToken\":\"80bf183a8d2449ea9645b8\"}','2023-06-20 07:48:12','2023-06-20 07:48:12','3c67d856-5c9e-48ee-9088-4a9c5fbf766c'),(128,273,127,2,1,'c48c94459c1db0c634eeec28e9257d49','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299362','','','','{\"transactionId\":\"37299362\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 07:48:26','2023-06-20 07:48:26','68ae877d-b390-4938-9457-b3f2da664679'),(129,273,NULL,2,1,'abfde294296eda221189397d42cc43c1','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299364','T7E8ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"fds\",\"lastName\":\"dfsd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"258861596c3fe3640f55d5\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T7E8ST\",\"transactionId\":\"37299364\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"258861596c3fe3640f55d5\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CST1180\",\"customer\":null}','2023-06-20 07:48:41','2023-06-20 07:48:41','60e932d8-04fe-450f-b8d9-4a0714b57ed0'),(130,273,129,2,1,'659e07cf1b6de15f2e3878b1bd61fbe4','capture',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299365','','','','{\"response\":\"1\",\"transactionId\":\"37299365\",\"cardToken\":\"258861596c3fe3640f55d5\"}','2023-06-20 07:48:47','2023-06-20 07:48:47','01db1055-a963-42c0-9427-c666e927e213'),(131,268,NULL,2,1,'e576879629b0c4f588b4856c265f9ccb','authorize',35.7500,35.7500,'CAD','CAD',1.0000,'success','37299368','T3E2ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"tyy\",\"lastName\":\"trty\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"1885cbe74f7beb2cc90441\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T3E2ST\",\"transactionId\":\"37299368\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"1885cbe74f7beb2cc90441\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-20 07:55:47','2023-06-20 07:55:47','8077d6c3-d83c-446c-b2bd-d86386063c24'),(132,279,NULL,2,1,'b016d87b16b91ea62f9dac5e3e3142e7','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299370','T2E1ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dfd\",\"lastName\":\"fdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"e952390c46f1d949c57e85\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E1ST\",\"transactionId\":\"37299370\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"e952390c46f1d949c57e85\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CST1181\",\"customer\":null}','2023-06-20 08:01:56','2023-06-20 08:01:56','c3018729-2433-4035-9c11-be624256049d'),(133,279,132,2,1,'24dc555605398a05bea232c0fe5e99da','capture',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299371','','','','{\"response\":\"1\",\"transactionId\":\"37299371\",\"cardToken\":\"e952390c46f1d949c57e85\"}','2023-06-20 08:02:11','2023-06-20 08:02:11','cd084266-d970-4320-8545-096b17e241a1'),(134,279,133,2,1,'a03e93a8a7f93dd512bd666d36714433','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299371','','','','{\"transactionId\":\"37299371\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 08:02:22','2023-06-20 08:02:22','35a24973-cfbf-4413-b53e-ca4d38de7f09'),(135,279,NULL,2,1,'bf26c34727c1b679e54be897730b2788','authorize',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299373','T1E8ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"dffdf\",\"lastName\":\"dfgdf\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"303858d0ef0ce4830c72bd\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T1E8ST\",\"transactionId\":\"37299373\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"303858d0ef0ce4830c72bd\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-20 08:02:48','2023-06-20 08:02:48','4ae3a66d-7ab1-4ecd-a004-b4e4262d0f7c'),(136,273,130,2,1,'9cdfdc47ae96e25ffa831beec1c88679','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299365','','','','{\"transactionId\":\"37299365\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 08:09:29','2023-06-20 08:09:29','b4788bbb-a5b9-4502-8fe7-259d9f2760c1'),(137,273,NULL,2,1,'a01d36f4d9179deff2c3881ed561a4e3','purchase',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299379','T5E7ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"gsdgs\",\"lastName\":\"gsdgsd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"7e58529d7c3f9b44711823\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T5E7ST\",\"transactionId\":\"37299379\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"7e58529d7c3f9b44711823\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-20 08:09:56','2023-06-20 08:09:56','f4e9c931-0fec-4084-8b0c-fcad9d016f6e'),(138,273,137,2,1,'863fd0e77af461339bb38335e691a37f','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299379','','','','{\"transactionId\":\"37299379\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 08:10:19','2023-06-20 08:10:19','bc048486-6a0f-49c2-a7bf-80f8351234cb'),(139,282,NULL,2,1,'6b724cd97317dee3e722dec6aab750df','purchase',56.5000,56.5000,'CAD','CAD',1.0000,'success','37299394','T4E4ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"ffg\",\"lastName\":\"fg\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"67570e2ac0040ae02d71eb\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T4E4ST\",\"transactionId\":\"37299394\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"67570e2ac0040ae02d71eb\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CST1182\",\"customer\":null}','2023-06-20 08:15:14','2023-06-20 08:15:14','486907a5-ae14-4949-8620-efa03b927bea'),(140,190,NULL,2,26,'d0450b7c4ac133c15eacf89478180846','purchase',2.2600,2.2600,'CAD','CAD',1.0000,'success','37299395','T2E6ST','APPROVED','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"sf\",\"lastName\":\"dfsd\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"cb7700c72393a8f7413a8f\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"T2E6ST\",\"transactionId\":\"37299395\",\"responseMessage\":\"APPROVED\",\"cardToken\":\"cb7700c72393a8f7413a8f\",\"cardNumber\":\"4242 **** **** 4242\",\"cardType\":\"Visa\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-20 08:16:29','2023-06-20 08:16:29','ea1d0abf-e8c8-44bc-88b0-f4a69ef3e83a'),(141,190,140,2,1,'14cda0c3c7c58f7136fc0369938543d0','refund',2.2600,2.2600,'CAD','CAD',1.0000,'failed','37299395','','','','{\"transactionId\":\"37299395\",\"response\":0,\"responseMessage\":\"\"}','2023-06-20 15:40:00','2023-06-20 15:40:00','2b018f24-630b-423f-b5aa-bf778185df0c'),(142,268,131,2,1,'49902015a9d429744daca6eec75aa6e9','capture',35.7500,35.7500,'CAD','CAD',1.0000,'success','37302939','','','','{\"response\":\"1\",\"transactionId\":\"37302939\",\"cardToken\":\"1885cbe74f7beb2cc90441\"}','2023-06-20 15:45:21','2023-06-20 15:45:21','ec0ecc9e-28ac-49ea-ad1f-d9dff2cfd489'),(143,295,NULL,2,245,'ecc48d92daef858f6e56dfab00583cff','authorize',30.1000,30.1000,'CAD','CAD',1.0000,'success','37303268','08651G','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"1123\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"08651G\",\"transactionId\":\"37303268\",\"responseMessage\":null,\"cardToken\":\"8886892f03ccb61cb1d33e_45201326\",\"cardNumber\":\"4520********1326\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST245\"}','2023-06-20 15:59:55','2023-06-20 15:59:55','5b8bcbcf-587b-4f79-b3fc-3b9364bf00ab'),(144,295,143,2,1,'e4c9e2b3f37b671f8885348d4d29d1c7','capture',30.1000,30.1000,'CAD','CAD',1.0000,'success','37303294','','','','{\"response\":\"1\",\"transactionId\":\"37303294\",\"cardToken\":\"8886892f03ccb61cb1d33e\"}','2023-06-20 16:00:59','2023-06-20 16:00:59','f0ad832b-013a-441e-bf8d-88045239102a'),(145,295,144,2,1,'1180a6b250db1ba6380ce9728baf950f','refund',30.1000,30.1000,'CAD','CAD',1.0000,'success','37303294','','','','{\"transactionId\":\"37303294\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 16:01:16','2023-06-20 16:01:16','88f38f61-da23-4630-bdb6-8885c2c69d62'),(146,298,NULL,2,245,'e52f01a1335cf1b2d38ff596c71539c7','authorize',2.7000,2.7000,'CAD','CAD',1.0000,'success','37303560','04082G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"ad270cb2dba96350714905\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"04082G\",\"transactionId\":\"37303560\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"ad270cb2dba96350714905_45201326\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST245\",\"customer\":\"CUST245\"}','2023-06-20 16:11:37','2023-06-20 16:11:37','70470a80-7313-4b7b-a24f-06ac0d24b05e'),(147,298,NULL,2,1,'670fb1e5632ca126641ee31bc5064233','authorize',2.7000,2.7000,'CAD','CAD',1.0000,'success','37303578','06248G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"36ebd70e62481e0ce98942\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"06248G\",\"transactionId\":\"37303578\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"36ebd70e62481e0ce98942\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST245\",\"customer\":null}','2023-06-20 16:12:09','2023-06-20 16:12:09','740a5512-0228-42c5-a5f9-a3cc469c5a59'),(148,298,147,2,1,'d22fe433bb5f5f096e85673b76f3b6c8','capture',2.7000,2.7000,'CAD','CAD',1.0000,'success','37303666','','','','{\"response\":\"1\",\"transactionId\":\"37303666\",\"cardToken\":\"36ebd70e62481e0ce98942\"}','2023-06-20 16:16:02','2023-06-20 16:16:02','8cdaa4c0-d278-495b-b242-2488340a43ab'),(149,298,148,2,1,'6d76c7a5b47190aacdc0adc0d393bf20','refund',2.7000,2.7000,'CAD','CAD',1.0000,'success','37303666','','','','{\"transactionId\":\"37303666\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 16:17:43','2023-06-20 16:17:43','7caaafbe-bb9a-4353-95a5-4b0003c47b70'),(150,302,NULL,2,245,'2d6d5acd49eb0ccc7b65b8e2558a5050','purchase',58.0700,58.0700,'CAD','CAD',1.0000,'success','37303736','07795G','','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":null,\"lastName\":null,\"number\":null,\"month\":null,\"year\":null,\"cvv\":null,\"token\":null,\"expiry\":\"1123\",\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"07795G\",\"transactionId\":\"37303736\",\"responseMessage\":null,\"cardToken\":\"8886892f03ccb61cb1d33e_45201326\",\"cardNumber\":\"4520********1326\",\"cardType\":null,\"customerCode\":null,\"customer\":\"CUST245\"}','2023-06-20 16:19:27','2023-06-20 16:19:27','7740efd5-7e58-4a66-b53c-a913caefa350'),(151,302,150,2,1,'b6846f60837f2ba79ba36216edcfe974','refund',0.5700,0.5700,'CAD','CAD',1.0000,'failed','37303736','','This transaction cannot be refunded. You can try to void full transaction amount','Test','{\"transactionId\":\"37303736\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-20 16:20:38','2023-06-20 16:20:38','58feb573-aa96-4100-824f-d9aef526227d'),(152,302,150,2,1,'268a5e5e54f4c597acdf92c82e3a6c8d','refund',58.0700,58.0700,'CAD','CAD',1.0000,'success','37303736','','','Full refund','{\"transactionId\":\"37303736\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-20 16:22:58','2023-06-20 16:22:58','74f4ff01-b1b2-42af-8d78-690001527759'),(153,290,NULL,2,26,'1bde3e8317de7b68ca8096e1c1cffa77','purchase',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315501','031908','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"add1a48cec43a948d84a15\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"031908\",\"transactionId\":\"37315501\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"add1a48cec43a948d84a15_55268252\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":\"CUST26\"}','2023-06-21 07:51:07','2023-06-21 07:51:07','d684b1ab-79e9-461c-95d3-ebd5be8e1eef'),(154,290,153,2,1,'6eb4af3126dfe81724d139afe1335a1a','refund',0.1000,0.1000,'CAD','CAD',1.0000,'failed','37315501','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"37315501\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-21 07:51:34','2023-06-21 07:51:34','ec3cc375-df29-4429-a392-2a7541d4f965'),(155,290,153,2,1,'f58b1058d5a061029c3de774e6034656','refund',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315501','','','','{\"transactionId\":\"37315501\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-21 07:51:44','2023-06-21 07:51:44','a8fe8d0e-e6af-449d-af94-e2de2855b8ba'),(156,290,NULL,2,1,'059ad3b29f0dee134fa0d088b6dbc30b','purchase',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315503','068664','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"1461706e0c05c0835bb266\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"068664\",\"transactionId\":\"37315503\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"1461706e0c05c0835bb266\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-21 07:52:30','2023-06-21 07:52:30','8b4c9f81-b690-438b-ad29-57e71bdabb31'),(157,290,156,2,1,'65e4147ca93cdd21685a9d5547303afa','refund',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315503','','','','{\"transactionId\":\"37315503\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-21 07:55:03','2023-06-21 07:55:03','d1407a41-efc9-470b-8a5a-5f1ddc1c5f1b'),(158,290,NULL,2,1,'da0d15e1459e8666062f41afef2ff380','purchase',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315534','012012','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedews\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"8ca1c6cf8a937ed50802a1\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"012012\",\"transactionId\":\"37315534\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"8ca1c6cf8a937ed50802a1\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST1\",\"customer\":null}','2023-06-21 08:30:41','2023-06-21 08:30:41','3bbebe8c-2102-46b8-963d-ec33bc397b51'),(159,290,158,2,1,'3f405694bc7237f8edac44632e75588d','refund',0.2800,0.2800,'CAD','CAD',1.0000,'success','37315534','','','','{\"transactionId\":\"37315534\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-21 08:31:06','2023-06-21 08:31:06','bfb92e34-ed9d-4445-9659-6d7df24b6109'),(160,198,NULL,2,26,'2075b20589db7e50eca89bec077bd85c','purchase',1.1300,1.1300,'CAD','CAD',1.0000,'success','37315536','041682','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedews\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"9d7c05e29fca54e242f1db\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"041682\",\"transactionId\":\"37315536\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"9d7c05e29fca54e242f1db\",\"cardNumber\":\"5526 **** **** 8252\",\"cardType\":\"Mastercard\",\"customerCode\":\"CUST26\",\"customer\":null}','2023-06-21 08:31:40','2023-06-21 08:31:40','47cf0b7d-3b23-4a89-a6fe-9e821288d327'),(161,198,160,2,1,'9cd918b4ed3370b37ad3299979c32e56','refund',1.1300,1.1300,'CAD','CAD',1.0000,'success','37315536','','','','{\"transactionId\":\"37315536\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-21 08:32:54','2023-06-21 08:32:54','f06bcb35-cd1e-4bf2-9f28-73b6853aa994'),(162,310,NULL,2,NULL,'fc32a3fd916816ef14a946369ab1c4b5','purchase',56.5000,56.5000,'CAD','CAD',1.0000,'success','37328554','03458G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"5cbf0c3cb8fa60a55ec026\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"03458G\",\"transactionId\":\"37328554\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"5cbf0c3cb8fa60a55ec026\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1183\",\"customer\":null}','2023-06-21 23:04:50','2023-06-21 23:04:50','a4942d69-72cc-48f1-913f-24b806de400f'),(163,310,162,2,1,'7319493665164a82b4444f9337d03475','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37328554','','','Test','{\"transactionId\":\"37328554\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-21 23:09:10','2023-06-21 23:09:10','d209b7a0-2680-4166-a3f5-5f46e4b7b169'),(164,310,NULL,2,1,'eb6c54fc9e431cc3d4f5edc25beca969','purchase',56.5000,56.5000,'CAD','CAD',1.0000,'success','37329185','01060G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"0b56120a9bcb35a95f9edf\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"01060G\",\"transactionId\":\"37329185\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"0b56120a9bcb35a95f9edf\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1183\",\"customer\":null}','2023-06-21 23:57:03','2023-06-21 23:57:03','409a5b98-fd6d-47e5-b15f-099ea7c4e7f7'),(165,310,164,2,1,'72d7bc688c52d381eb5fe79e56896cfe','refund',56.5000,56.5000,'CAD','CAD',1.0000,'success','37329185','','','test','{\"transactionId\":\"37329185\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-22 00:12:20','2023-06-22 00:12:20','7b96e447-28d3-43c0-abf1-9ab92f9ed265'),(166,320,NULL,2,1,'3f9317501032a10daca83bdd14b887ca','authorize',57.5000,57.5000,'CAD','CAD',1.0000,'success','37332820','09174G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"9ccb0e1d783fb475ef780c\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"09174G\",\"transactionId\":\"37332820\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"9ccb0e1d783fb475ef780c\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1184\",\"customer\":null}','2023-06-22 14:43:10','2023-06-22 14:43:10','8aa70a85-5a73-4aa3-91ae-18dfe37cdb79'),(167,320,166,2,1,'b8579742d9cb02a8f28bdd2d530d4201','capture',57.5000,57.5000,'CAD','CAD',1.0000,'success','37332827','','','','{\"response\":\"1\",\"transactionId\":\"37332827\",\"cardToken\":\"9ccb0e1d783fb475ef780c\"}','2023-06-22 14:43:30','2023-06-22 14:43:30','f6df035d-7fba-41c5-9bf3-ccb0c481abbd'),(168,62,NULL,2,1,'412adc64ab5723d72eb2d37c1b891e86','authorize',57.0700,57.0700,'CAD','CAD',1.0000,'success','37332881','09260G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"e96b8cb2e3aa4d4978dc1d\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"09260G\",\"transactionId\":\"37332881\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"e96b8cb2e3aa4d4978dc1d_45201326\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CUST1\",\"customer\":\"CUST1\"}','2023-06-22 14:46:43','2023-06-22 14:46:43','6ae9d9b2-7e08-45f3-b3d9-8cb7469bfc53'),(169,320,167,2,1,'22012b5b55c4e9aa71f3fbaf776e4584','refund',57.5000,57.5000,'CAD','CAD',1.0000,'success','37332827','','','','{\"transactionId\":\"37332827\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-22 14:47:05','2023-06-22 14:47:05','1b2b136d-466e-4834-8eb1-6b0947892429'),(170,62,168,2,1,'8ec2869efc663918f78b98f552e35c87','capture',57.0700,57.0700,'CAD','CAD',1.0000,'success','37335903','','','','{\"response\":\"1\",\"transactionId\":\"37335903\",\"cardToken\":\"e96b8cb2e3aa4d4978dc1d\"}','2023-06-22 17:09:29','2023-06-22 17:09:29','89056a45-50b5-4c2d-adf2-21b733aba10c'),(171,62,170,2,1,'b00f4a3fe57b12aceb32b9d9a92d7acc','refund',50.0000,50.0000,'CAD','CAD',1.0000,'failed','37335903','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"37335903\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-22 17:09:42','2023-06-22 17:09:42','55aef51c-0dc9-41d5-96bc-5d5acf320c88'),(172,62,170,2,1,'8f0829dfc10c647411924f379ea2bf64','refund',57.0700,57.0700,'CAD','CAD',1.0000,'success','37335903','','','','{\"transactionId\":\"37335903\",\"response\":\"1\",\"responseMessage\":\"\"}','2023-06-22 17:09:55','2023-06-22 17:09:55','ce9a55e2-32ba-4056-8dcb-4036258a27b0'),(173,324,NULL,2,1,'6e27e543b6f2527ea2eb9c2788c90b12','authorize',29.1000,29.1000,'CAD','CAD',1.0000,'success','37336033','03280G','APPROVAL','','{\"\\u0000yii\\\\base\\\\Component\\u0000_events\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_eventWildcards\":[],\"\\u0000yii\\\\base\\\\Component\\u0000_behaviors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_errors\":[],\"\\u0000yii\\\\base\\\\Model\\u0000_validators\":{},\"\\u0000yii\\\\base\\\\Model\\u0000_scenario\":\"default\",\"firstName\":\"Andrei\",\"lastName\":\"Medvedevs\",\"number\":\"\",\"month\":null,\"year\":null,\"cvv\":null,\"token\":\"12af30b93debfba6cfb6fe\",\"expiry\":null,\"threeDSecure\":false,\"response\":\"1\",\"approvalCode\":\"03280G\",\"transactionId\":\"37336033\",\"responseMessage\":\"APPROVAL\",\"cardToken\":\"12af30b93debfba6cfb6fe\",\"cardNumber\":\"4520 **** **** 1326\",\"cardType\":\"Visa\",\"customerCode\":\"CST1185\",\"customer\":null}','2023-06-22 17:15:05','2023-06-22 17:15:05','1ff07103-992c-4a0f-adf6-9ea54e657f43'),(174,324,173,2,1,'1ebd470575536f8fdca9669c6d639fa2','capture',29.1000,29.1000,'CAD','CAD',1.0000,'success','37336066','','','','{\"response\":\"1\",\"transactionId\":\"37336066\",\"cardToken\":\"12af30b93debfba6cfb6fe\"}','2023-06-22 17:16:19','2023-06-22 17:16:19','a11b5c7e-3f2a-4372-ba39-b25655ec7c90'),(175,324,174,2,1,'5e82f139b47e03fd1934a949d9731ebd','refund',10.0000,10.0000,'CAD','CAD',1.0000,'failed','37336066','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"37336066\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-22 17:16:32','2023-06-22 17:16:32','e7ca40a0-f15f-42a9-b2ee-10aaa7658c6e'),(176,324,174,2,1,'4038045064a97ef42838c959eec0ef76','refund',10.0000,10.0000,'CAD','CAD',1.0000,'failed','37336066','','This transaction cannot be refunded. You can try to void full transaction amount','Partial Refund','{\"transactionId\":\"37336066\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-23 13:55:11','2023-06-23 13:55:11','a03d8c16-a48a-48b7-b4e1-2285e443df0e'),(177,324,174,2,1,'be1cf42249c4c09cd819d8ea29b9b88b','refund',10.0000,10.0000,'CAD','CAD',1.0000,'failed','37336066','','This transaction cannot be refunded. You can try to void full transaction amount','','{\"transactionId\":\"37336066\",\"response\":0,\"responseMessage\":\"This transaction cannot be refunded. You can try to void full transaction amount\"}','2023-06-23 13:58:20','2023-06-23 13:58:20','c5e5ab4d-264b-46ac-bfa9-106b93033138'); /*!40000 ALTER TABLE `commerce_transactions` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `commerce_variants` -- LOCK TABLES `commerce_variants` WRITE; /*!40000 ALTER TABLE `commerce_variants` DISABLE KEYS */; set autocommit=0; INSERT INTO `commerce_variants` VALUES (8,7,'W4789-X1',1,50.0000,1,0.0000,0.0000,0.0000,0.0000,0,1,NULL,NULL,0,'2022-10-12 19:03:29','2023-07-03 06:55:11','adbaadc9-5132-44c7-8ad1-cda4a34bd1c6'),(20,19,'W4789-X2',1,1.0000,1,0.0000,0.0000,0.0000,0.0000,0,1,NULL,NULL,0,'2022-10-12 19:41:00','2023-07-03 06:55:11','9f29cd67-55cf-46df-b252-275235138f36'),(22,21,'W4789-X3',1,0.5000,1,0.0000,0.0000,0.0000,0.0000,0,1,NULL,NULL,0,'2022-10-12 19:41:15','2023-07-03 06:55:11','eb5ab40c-7993-4240-9706-47d7d7254956'); /*!40000 ALTER TABLE `commerce_variants` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `content` -- LOCK TABLES `content` WRITE; /*!40000 ALTER TABLE `content` DISABLE KEYS */; set autocommit=0; INSERT INTO `content` VALUES (1,1,1,NULL,'2022-05-20 18:56:06','2022-05-20 18:56:06','5b212c87-0528-4579-bab2-814daba0c9fa',NULL,NULL,NULL,NULL,NULL),(2,3,1,'Store','2022-10-12 14:54:49','2022-10-12 14:54:49','4aaf2176-eb0e-4cb9-9059-d407856ab9c8',NULL,NULL,NULL,NULL,NULL),(3,4,1,NULL,'2022-10-12 15:25:43','2022-10-12 15:25:43','eac66c37-48b1-4648-8e74-da76bc5816df',NULL,NULL,NULL,NULL,NULL),(4,6,1,'Store','2022-10-12 18:29:12','2022-10-28 11:19:08','04dfc654-2ba4-4b5c-a616-e776594791fb',NULL,NULL,NULL,NULL,NULL),(5,7,1,'Product 01','2022-10-12 19:03:29','2023-07-03 06:55:11','a81a6f38-9682-4888-8bef-e22977984178',NULL,1,NULL,NULL,NULL),(6,8,1,'Product 01','2022-10-12 19:03:29','2023-07-03 06:55:11','5006074c-13bd-41ea-bef1-4fa8242a4a51',NULL,NULL,NULL,NULL,NULL),(7,9,1,'Home','2022-10-12 19:14:23','2023-07-03 06:53:45','277c4e85-490b-4a21-be00-c7fda5c557d0',NULL,NULL,NULL,NULL,NULL),(8,10,1,'Home','2022-10-12 19:14:23','2022-10-12 19:14:23','e1abe7b7-f9e4-4d40-b2c8-ce71980982fa',NULL,NULL,NULL,NULL,NULL),(9,11,1,'Home','2022-10-12 19:14:23','2022-10-12 19:14:23','eda4250a-1327-4029-a098-0582504819da',NULL,NULL,NULL,NULL,NULL),(10,12,1,'Shop','2022-10-12 19:20:28','2022-10-12 19:21:48','22e48e26-b955-40e3-8a55-5e5181231b4c',NULL,NULL,NULL,NULL,NULL),(11,13,1,'Shop','2022-10-12 19:20:28','2022-10-12 19:20:28','1341daa8-c480-43d1-bbf5-9cbf2cc56e2a',NULL,NULL,NULL,NULL,NULL),(12,14,1,'Shop','2022-10-12 19:20:28','2022-10-12 19:20:28','a30814c7-534e-476c-88b8-74ff917ce1d9',NULL,NULL,NULL,NULL,NULL),(13,15,1,'Shop','2022-10-12 19:21:04','2022-10-12 19:21:04','ab12d763-9441-4fe4-bd1d-bb518d9e38dd',NULL,NULL,NULL,NULL,NULL),(14,16,1,'Shop','2022-10-12 19:21:04','2022-10-12 19:21:04','6d74995a-c79a-4ed8-9013-41aa358afc9d',NULL,NULL,NULL,NULL,NULL),(15,17,1,'Shop','2022-10-12 19:21:20','2022-10-12 19:21:20','a6037f3a-f7c3-418d-9c0c-1a4f31309ade',NULL,NULL,NULL,NULL,NULL),(16,18,1,'Shop','2022-10-12 19:21:48','2022-10-12 19:21:48','099feb1d-efe5-4c82-8022-629a9ec15a87',NULL,NULL,NULL,NULL,NULL),(17,19,1,'Product 02','2022-10-12 19:41:00','2023-07-03 06:55:11','5e47d3f1-9429-4a3e-b631-0128bc9a87c3',NULL,0,NULL,NULL,NULL),(18,20,1,'Product 02','2022-10-12 19:41:00','2023-07-03 06:55:11','c066e7db-0f85-49eb-a76a-8b8733512fc2',NULL,NULL,NULL,NULL,NULL),(19,21,1,'Product 03','2022-10-12 19:41:15','2023-07-03 06:55:11','98a167aa-e2b2-4b5e-85a3-49d99f3e8d9c',NULL,0,NULL,NULL,NULL),(20,22,1,'Product 03','2022-10-12 19:41:15','2023-07-03 06:55:11','2da868d4-80ca-4faa-8b6e-6b8c80612d7f',NULL,NULL,NULL,NULL,NULL),(24,26,1,NULL,'2022-10-17 14:29:14','2022-10-17 14:32:45','55de5a2c-f212-448f-9d92-679c53628b32',NULL,NULL,NULL,NULL,NULL),(25,27,1,'Shipping Address','2022-10-17 14:33:13','2022-10-28 10:35:08','dc1cea2e-04d4-49f0-9ba8-85f245949ce5',NULL,NULL,NULL,NULL,NULL),(28,30,1,'Billing Address','2022-10-28 10:34:57','2022-10-28 10:35:08','a7695961-9997-452c-91a4-372458bbaf3d',NULL,NULL,NULL,NULL,NULL),(29,31,1,NULL,'2022-10-28 11:16:09','2022-10-28 11:37:29','0222210c-1f97-4dcd-a39a-1fddc1d1b0aa',NULL,NULL,NULL,NULL,NULL),(31,33,1,'Shipping Address','2022-10-28 11:19:54','2022-10-28 11:37:29','29ef4986-6a58-42d4-a938-3c8304e914ae',NULL,NULL,NULL,NULL,NULL),(32,34,1,'Billing Address','2022-10-28 11:19:54','2022-10-28 11:37:29','b57aabbf-a5b7-42f6-90d6-c46de6c26127',NULL,NULL,NULL,NULL,NULL),(33,35,1,NULL,'2022-10-28 11:54:11','2022-10-28 11:55:25','1a3676c1-81ab-40cd-aad0-7cbb9d8c4c44',NULL,NULL,NULL,NULL,NULL),(34,36,1,'Shipping Address','2022-10-28 11:54:55','2022-10-28 11:55:25','ac27b883-38f0-43e0-a419-86cdd988b89a',NULL,NULL,NULL,NULL,NULL),(35,37,1,'Billing Address','2022-10-28 11:54:55','2022-10-28 11:55:25','719db336-a46c-4ad8-8a3d-07796e3e4407',NULL,NULL,NULL,NULL,NULL),(36,38,1,NULL,'2022-10-28 11:55:40','2022-10-28 12:06:01','7c276ca5-16e0-4035-9505-982c6e78a323',NULL,NULL,NULL,NULL,NULL),(37,39,1,'Shipping Address','2022-10-28 11:56:29','2022-10-28 12:06:01','79a9fcf4-5d34-4d73-ad1b-0987a619ede1',NULL,NULL,NULL,NULL,NULL),(38,40,1,'Billing Address','2022-10-28 11:56:29','2022-10-28 12:06:01','1adff101-684f-4efb-9d3d-0d936f8745b1',NULL,NULL,NULL,NULL,NULL),(39,41,1,NULL,'2022-10-28 12:06:10','2022-10-28 12:06:56','fbecb9b3-313d-469e-b3bb-a77617703562',NULL,NULL,NULL,NULL,NULL),(40,42,1,'Shipping Address','2022-10-28 12:06:47','2022-10-28 12:06:56','5c7f6ef7-94f0-4073-a266-1d94490f464d',NULL,NULL,NULL,NULL,NULL),(41,43,1,'Billing Address','2022-10-28 12:06:47','2022-10-28 12:06:56','e7c6f76f-993f-44be-be17-45d548778a44',NULL,NULL,NULL,NULL,NULL),(42,44,1,'Main','2022-10-28 12:07:50','2022-10-28 12:07:50','af4c5c04-59d7-46c8-8fcc-77eca246c76c',NULL,NULL,NULL,NULL,NULL),(43,45,1,NULL,'2022-10-28 12:07:55','2022-11-10 08:27:31','603da496-4961-4a2f-8096-38fc8eb95713',NULL,NULL,NULL,NULL,NULL),(44,46,1,'Shipping Address','2022-10-28 12:08:30','2022-11-10 08:27:31','02291758-4fb1-4135-a3fb-d4ff19218832',NULL,NULL,NULL,NULL,NULL),(46,48,1,'Billing Address','2022-10-31 12:45:39','2022-11-10 08:27:31','c80e5415-42da-4365-91b7-33cbdc959f2e',NULL,NULL,NULL,NULL,NULL),(47,49,1,NULL,'2022-10-31 12:46:21','2022-10-31 12:59:58','64411120-b1b9-4d34-b226-c56d1f9d2985',NULL,NULL,NULL,NULL,NULL),(48,50,1,'Shipping Address','2022-10-31 12:46:32','2022-10-31 12:59:58','2ef97a74-c7ee-4f3c-b01c-88fdb0717153',NULL,NULL,NULL,NULL,NULL),(49,51,1,'Billing Address','2022-10-31 12:46:32','2022-10-31 12:59:58','3e81603d-87bf-4c4b-afed-ef1263ea6b7d',NULL,NULL,NULL,NULL,NULL),(50,52,1,NULL,'2022-10-31 13:12:29','2022-10-31 14:06:37','76c17077-a379-406a-ba7b-beb7efa0fe45',NULL,NULL,NULL,NULL,NULL),(51,53,1,'Shipping Address','2022-10-31 13:12:57','2022-10-31 14:06:37','5aad5f2f-ea7b-48b3-9900-ded197839aaa',NULL,NULL,NULL,NULL,NULL),(52,54,1,'Billing Address','2022-10-31 13:12:57','2022-10-31 14:06:37','e0193fc9-fa6e-4705-994e-bc792b536431',NULL,NULL,NULL,NULL,NULL),(53,55,1,NULL,'2022-11-09 13:39:29','2022-11-10 07:16:24','4eecaff3-7c07-4ce6-bc43-1fd34ffc99cb',NULL,NULL,NULL,NULL,NULL),(56,58,1,'Shipping Address','2022-11-09 13:56:12','2022-11-10 07:16:24','67321005-33fe-49de-99b5-4c36ab14ba02',NULL,NULL,NULL,NULL,NULL),(57,59,1,'Billing Address','2022-11-09 13:56:12','2022-11-10 07:16:24','9e179ce1-61c7-4231-a8bf-50cdd01f71d4',NULL,NULL,NULL,NULL,NULL),(58,60,1,NULL,'2022-11-09 14:12:01','2022-11-10 13:30:20','51dce2de-4f7c-4b7a-a540-6cd24d4bbcbd',NULL,NULL,NULL,NULL,NULL),(59,61,1,'New Address','2022-11-09 14:14:00','2022-11-10 13:30:20','16c7602e-a553-4c81-a6cf-b7173b8c8f01',NULL,NULL,NULL,NULL,NULL),(60,62,1,NULL,'2022-11-10 08:32:53','2023-06-22 17:09:56','8f9c4d3d-4952-476f-b77c-0c8f47912b51',NULL,NULL,NULL,NULL,NULL),(61,63,1,'New Address','2022-11-10 08:33:05','2023-06-22 17:09:56','fa09bdc1-dba8-4f04-9dc7-5e3f28a0f6d6',NULL,NULL,NULL,NULL,NULL),(62,64,1,NULL,'2022-11-10 08:34:06','2022-11-10 08:38:56','4f32bde1-077e-4f83-9ecd-33a043cdf8b7',NULL,NULL,NULL,NULL,NULL),(63,65,1,'New Address','2022-11-10 08:34:38','2022-11-10 08:38:56','9731d0ed-600d-4234-8e39-00881fe81847',NULL,NULL,NULL,NULL,NULL),(64,66,1,NULL,'2022-11-10 08:35:00','2022-11-10 08:35:00','6b0ac069-960b-4402-88ca-d4260d102d9f',NULL,NULL,NULL,NULL,NULL),(65,67,1,'Shipping Address','2022-11-10 08:36:32','2022-11-10 08:38:56','bdac60e2-8342-46a8-a47e-ad3183136484',NULL,NULL,NULL,NULL,NULL),(66,68,1,'Billing Address','2022-11-10 08:36:32','2022-11-10 08:38:56','111af88e-49e8-453d-80bf-b2a9a071a7e2',NULL,NULL,NULL,NULL,NULL),(67,69,1,'Shipping Address','2022-11-10 12:19:01','2022-11-10 13:30:20','63721252-05fd-40f2-bbec-1be86dd05b7c',NULL,NULL,NULL,NULL,NULL),(68,70,1,'Billing Address','2022-11-10 12:19:01','2022-11-10 13:30:20','19bf032a-fadb-45c4-b6f4-3e6e49492f59',NULL,NULL,NULL,NULL,NULL),(69,71,1,NULL,'2022-11-10 13:35:35','2022-11-10 13:36:12','5732b743-1b3d-4b95-a4cf-8e12e8339a82',NULL,NULL,NULL,NULL,NULL),(70,72,1,'New Address','2022-11-10 13:35:40','2022-11-10 13:36:12','e1900718-b109-4a13-bc87-cb21426afc98',NULL,NULL,NULL,NULL,NULL),(71,73,1,'Shipping Address','2022-11-10 13:35:46','2022-11-10 13:36:12','342744dc-cb2e-44c9-8f6d-30b87ca26756',NULL,NULL,NULL,NULL,NULL),(72,74,1,'Billing Address','2022-11-10 13:35:46','2022-11-10 13:36:12','3a1cc11a-59db-47ae-8421-9572648d8536',NULL,NULL,NULL,NULL,NULL),(73,75,1,NULL,'2022-11-11 12:02:51','2022-11-11 12:04:07','3a9fb739-8bc6-4a57-9abf-c03caeefc5da',NULL,NULL,NULL,NULL,NULL),(74,76,1,'Shipping Address','2022-11-11 12:03:08','2022-11-11 12:04:07','9146c896-09c4-4995-8669-6512dfd9df01',NULL,NULL,NULL,NULL,NULL),(75,77,1,'Billing Address','2022-11-11 12:03:08','2022-11-11 12:04:07','9bb166f4-ae3a-4b06-a3a2-04fa5b33b7e2',NULL,NULL,NULL,NULL,NULL),(76,78,1,NULL,'2022-11-11 12:25:22','2022-11-11 12:45:34','069de1c0-4cb1-4599-96bb-f818991e8076',NULL,NULL,NULL,NULL,NULL),(77,79,1,'Shipping Address','2022-11-11 12:26:29','2022-11-11 12:45:34','cf9d7b5a-7d35-4f25-8413-1e32aa69b037',NULL,NULL,NULL,NULL,NULL),(78,80,1,'Billing Address','2022-11-11 12:26:29','2022-11-11 12:45:34','02b16303-0064-4821-a57c-3fd1fd06d5f7',NULL,NULL,NULL,NULL,NULL),(79,81,1,NULL,'2022-11-11 12:47:01','2022-11-11 12:50:04','2ab931f9-45eb-4a5f-b9ec-2000a944c328',NULL,NULL,NULL,NULL,NULL),(80,82,1,'Shipping Address','2022-11-11 12:47:16','2022-11-11 12:50:04','b7e8dd4a-3ecf-46fc-82f9-7af2b21331a6',NULL,NULL,NULL,NULL,NULL),(81,83,1,'Billing Address','2022-11-11 12:47:16','2022-11-11 12:50:04','c95a7dff-f7ce-4b5b-ba36-ce5cfc907e70',NULL,NULL,NULL,NULL,NULL),(82,84,1,NULL,'2022-11-11 12:51:55','2022-11-11 12:59:55','f3d0c540-712a-4ea1-a429-10ef99a7c8b0',NULL,NULL,NULL,NULL,NULL),(83,85,1,'Shipping Address','2022-11-11 12:52:07','2022-11-11 12:59:55','f7d17b74-1f51-4f8f-bfe2-d16f4ca5a9e3',NULL,NULL,NULL,NULL,NULL),(84,86,1,'Billing Address','2022-11-11 12:52:07','2022-11-11 12:59:55','1790d6f3-37b1-4314-a49a-128bdcf90d8b',NULL,NULL,NULL,NULL,NULL),(85,87,1,NULL,'2022-11-11 12:59:45','2022-11-11 13:01:59','2eb4b8fa-28a1-4e48-848a-93b73bbc640d',NULL,NULL,NULL,NULL,NULL),(86,88,1,'Shipping Address','2022-11-11 13:01:45','2022-11-11 13:01:59','082eb44b-084a-437b-9a83-874ccc32368f',NULL,NULL,NULL,NULL,NULL),(87,89,1,'Billing Address','2022-11-11 13:01:45','2022-11-11 13:01:59','a0eeb26d-437d-44ab-9ca5-c5a62ab5d6e5',NULL,NULL,NULL,NULL,NULL),(88,90,1,NULL,'2022-11-14 13:19:12','2022-11-14 13:55:58','3ddfde78-2512-44ad-9006-d2719d665c62',NULL,NULL,NULL,NULL,NULL),(89,91,1,'Shipping Address','2022-11-14 13:19:29','2022-11-14 13:55:58','1cf7d44f-c9cf-46d0-bacb-eeae27cd685a',NULL,NULL,NULL,NULL,NULL),(90,92,1,'Billing Address','2022-11-14 13:19:29','2022-11-14 13:55:58','c82165ef-a9a3-4655-a36b-f590ad5041e6',NULL,NULL,NULL,NULL,NULL),(91,93,1,NULL,'2022-11-14 14:04:29','2022-11-14 14:06:43','539aeb0a-a437-4eee-bc5e-d8863e1da8c3',NULL,NULL,NULL,NULL,NULL),(92,94,1,'Shipping Address','2022-11-14 14:05:02','2022-11-14 14:06:43','76cca077-a755-4465-8d01-1a1db04ec672',NULL,NULL,NULL,NULL,NULL),(93,95,1,'Billing Address','2022-11-14 14:05:02','2022-11-14 14:06:43','86018b16-5774-4600-9973-c1fc6f63f869',NULL,NULL,NULL,NULL,NULL),(94,96,1,NULL,'2022-11-14 14:09:31','2022-11-14 14:11:41','f1574b90-b706-44db-a947-c4fd6518596c',NULL,NULL,NULL,NULL,NULL),(95,97,1,'Shipping Address','2022-11-14 14:09:50','2022-11-14 14:11:41','e134478a-6b95-4bbf-b3b9-7bdb0481f383',NULL,NULL,NULL,NULL,NULL),(96,98,1,'Billing Address','2022-11-14 14:09:50','2022-11-14 14:11:41','fea4932a-fc08-42f8-9d9e-019b8443d815',NULL,NULL,NULL,NULL,NULL),(97,99,1,NULL,'2022-11-14 14:14:06','2022-11-14 14:18:16','0bb61c45-d346-4efa-8281-c2c4211794e7',NULL,NULL,NULL,NULL,NULL),(98,100,1,'Shipping Address','2022-11-14 14:14:22','2022-11-14 14:18:16','be04fa52-ecba-4f31-b811-7d4eba2d05d8',NULL,NULL,NULL,NULL,NULL),(99,101,1,'Billing Address','2022-11-14 14:14:22','2022-11-14 14:18:16','320915ff-0f49-4815-8943-b9c48e97ad6a',NULL,NULL,NULL,NULL,NULL),(100,102,1,NULL,'2022-11-14 14:19:50','2022-11-14 14:20:49','afcf4e1e-5914-4f14-b317-68cd035d475c',NULL,NULL,NULL,NULL,NULL),(101,103,1,'Shipping Address','2022-11-14 14:20:11','2022-11-14 14:20:49','bb80d674-f52d-4f0c-a13a-189d1998066b',NULL,NULL,NULL,NULL,NULL),(102,104,1,'Billing Address','2022-11-14 14:20:11','2022-11-14 14:20:49','0c8e95be-fdac-4fdc-be32-700247576996',NULL,NULL,NULL,NULL,NULL),(103,105,1,NULL,'2022-11-14 14:20:56','2022-11-14 14:24:58','8fc9908c-b6dc-48d5-9300-382810ea9c27',NULL,NULL,NULL,NULL,NULL),(104,106,1,'Shipping Address','2022-11-14 14:21:23','2022-11-14 14:24:58','2bbc0141-e00b-440d-9da9-5199c969c09c',NULL,NULL,NULL,NULL,NULL),(105,107,1,'Billing Address','2022-11-14 14:21:23','2022-11-14 14:24:58','9367efd9-f1fb-42b5-ad74-73d3e1f4e70b',NULL,NULL,NULL,NULL,NULL),(106,108,1,NULL,'2022-11-14 14:25:08','2022-11-15 11:24:28','b3078b5f-3c4a-4199-bcd2-28bed78999be',NULL,NULL,NULL,NULL,NULL),(107,109,1,'Shipping Address','2022-11-14 14:25:22','2022-11-15 11:24:28','47903890-7bc5-4b39-bbd1-93ee5daf7e11',NULL,NULL,NULL,NULL,NULL),(108,110,1,'Billing Address','2022-11-14 14:25:22','2022-11-15 11:24:28','c2d5e832-ee5b-4d20-8615-705f485541ec',NULL,NULL,NULL,NULL,NULL),(109,111,1,NULL,'2022-11-15 11:25:34','2022-11-15 11:33:03','b80c5882-601a-41e6-aa21-9bdf8837e134',NULL,NULL,NULL,NULL,NULL),(110,112,1,'New Address','2022-11-15 11:27:46','2022-11-15 11:33:03','8174f0ff-0079-4312-8d73-cc286e9e1327',NULL,NULL,NULL,NULL,NULL),(111,113,1,'Shipping Address','2022-11-15 11:28:18','2022-11-15 11:33:03','b8894993-60d7-4244-9c8e-87a9461b5865',NULL,NULL,NULL,NULL,NULL),(112,114,1,'Billing Address','2022-11-15 11:28:18','2022-11-15 11:33:03','f6ee9140-de7e-40ee-8f53-cc807ce0a547',NULL,NULL,NULL,NULL,NULL),(113,115,1,NULL,'2022-11-15 11:59:20','2022-11-15 11:59:57','685f1484-fcea-4571-87f2-65b0acb97f7b',NULL,NULL,NULL,NULL,NULL),(114,116,1,'Shipping Address','2022-11-15 11:59:27','2022-11-15 11:59:57','6c3a3162-abe2-4b29-af53-b65d5e47b2ee',NULL,NULL,NULL,NULL,NULL),(115,117,1,'Billing Address','2022-11-15 11:59:27','2022-11-15 11:59:57','f6dcc8c4-2572-4a95-8149-fe4c2c61a095',NULL,NULL,NULL,NULL,NULL),(116,118,1,NULL,'2022-11-15 12:00:59','2022-11-15 12:03:50','04f1d75e-5376-4abc-bae6-b1ea32fff58c',NULL,NULL,NULL,NULL,NULL),(117,119,1,'Shipping Address','2022-11-15 12:01:08','2022-11-15 12:03:50','0b4da6b7-f664-4b84-a5e0-5b75a6742142',NULL,NULL,NULL,NULL,NULL),(118,120,1,'Billing Address','2022-11-15 12:01:08','2022-11-15 12:03:50','c0c7257a-c16b-4d25-a49b-1dab7d5564db',NULL,NULL,NULL,NULL,NULL),(119,121,1,NULL,'2022-11-15 13:52:30','2022-11-15 14:01:20','ddbdb103-e957-48db-8674-cd4ae0f13fc4',NULL,NULL,NULL,NULL,NULL),(120,122,1,'Shipping Address','2022-11-15 13:52:48','2022-11-15 14:01:20','026c44e1-5b49-4bd9-a8be-0de3ee50e318',NULL,NULL,NULL,NULL,NULL),(121,123,1,'Billing Address','2022-11-15 13:52:48','2022-11-15 14:01:20','279588d7-c3d3-48a7-becc-c3a0bda4ffde',NULL,NULL,NULL,NULL,NULL),(122,124,1,NULL,'2022-11-15 14:02:53','2023-03-06 12:15:17','069abe3e-db3c-4355-b928-8e199ff8190b',NULL,NULL,NULL,NULL,NULL),(123,125,1,'Shipping Address','2022-11-15 14:03:04','2023-03-06 12:15:17','b38bc19e-45ae-47eb-8d31-9a2876a8bf51',NULL,NULL,NULL,NULL,NULL),(124,126,1,'Billing Address','2022-11-15 14:03:04','2023-03-06 12:15:17','9525d51c-6f49-46c1-85b6-99efcb5ab27f',NULL,NULL,NULL,NULL,NULL),(125,127,1,NULL,'2022-11-15 14:03:46','2023-06-15 08:58:57','039e1ca9-ee84-41d5-937a-eadb4068b218',NULL,NULL,NULL,NULL,NULL),(128,130,1,NULL,'2023-01-23 13:29:11','2023-01-23 13:29:11','9337afe0-e601-4043-9683-95def22cb9d8',NULL,NULL,NULL,NULL,NULL),(129,131,1,NULL,'2023-01-23 13:31:24','2023-01-23 14:09:05','cd57836e-1d6d-42a9-825a-cd9f753fe025',NULL,NULL,NULL,NULL,NULL),(130,132,1,'New Address','2023-01-23 13:34:19','2023-01-23 14:09:05','a450c995-ed64-43f9-9a75-bd5609b81520',NULL,NULL,NULL,NULL,NULL),(131,133,1,'Images','2023-01-23 13:44:37','2023-01-23 13:44:37','28196896-7745-494a-b0d3-ca6651666827',NULL,NULL,NULL,NULL,NULL),(132,134,1,'Ready Player Me Avatar','2023-01-23 14:09:02','2023-01-23 14:09:02','35606842-21ee-4e84-853f-95a522261860',NULL,NULL,NULL,NULL,NULL),(133,135,1,NULL,'2023-01-23 14:09:42','2023-06-16 11:12:50','a4777d4a-b8f1-4820-ac9c-dbf6e4674307','fgdgdf',NULL,NULL,NULL,NULL),(134,136,1,'New Address','2023-01-23 14:09:52','2023-06-16 11:12:50','9932ecb5-ea13-4ba3-8c01-369dd60d64b5',NULL,NULL,NULL,NULL,NULL),(135,137,1,NULL,'2023-01-24 09:29:11','2023-06-16 13:25:06','715e9995-ff94-4c5c-b35d-89df5e0107e8',NULL,NULL,NULL,NULL,NULL),(136,138,1,'Ready Player Me Avatar','2023-01-24 09:46:57','2023-01-24 09:46:57','cf3949d8-6a3e-4936-8511-399e19069f9a',NULL,NULL,NULL,NULL,NULL),(137,139,1,'Screenshot 102','2023-01-24 09:48:13','2023-01-24 09:48:13','80ab5403-5de8-436c-9441-3855dc0dce4b',NULL,NULL,NULL,NULL,NULL),(138,140,1,'Rental Agreement2021 1','2023-01-24 09:48:58','2023-01-24 09:48:58','79190690-651d-415b-8bd9-f41f7ecb8210',NULL,NULL,NULL,NULL,NULL),(139,141,1,'Rental Agreement2021 1','2023-01-24 09:57:57','2023-01-24 09:57:57','e36e4031-0641-49c5-bcd8-a4b968bbb5fc',NULL,NULL,NULL,NULL,NULL),(140,142,1,'Rental Agreement2021 1','2023-01-24 10:04:57','2023-01-24 10:04:57','6afdee16-a63a-452f-a82d-715c9ef3c318',NULL,NULL,NULL,NULL,NULL),(141,143,1,'Rental Agreement2021 1','2023-01-24 10:10:52','2023-01-24 10:10:52','0a54768c-db40-4a48-84b2-475409bdf476',NULL,NULL,NULL,NULL,NULL),(142,144,1,'Rental Agreement2021 1','2023-01-24 10:11:17','2023-01-24 10:11:17','9b9a6999-8913-418f-bd2a-481d136f05db',NULL,NULL,NULL,NULL,NULL),(143,145,1,'Images','2023-01-24 10:13:37','2023-01-24 10:13:37','0c574343-f263-4441-ba3f-eb2a551cf2fe',NULL,NULL,NULL,NULL,NULL),(144,146,1,'Rental Agreement2021 1','2023-01-24 10:16:21','2023-01-24 10:16:21','84f57c8d-aa8d-4597-8279-25ddbddb085e',NULL,NULL,NULL,NULL,NULL),(145,147,1,'Rental Agreement2021 1','2023-01-24 10:28:00','2023-01-24 10:28:00','f1d6fce4-5d44-4eaf-943e-853db53aa87e',NULL,NULL,NULL,NULL,NULL),(146,148,1,'Rental Agreement2021 1 1','2023-01-24 10:31:09','2023-01-24 10:31:09','14f9fc39-3ad8-4abc-82d3-61d39e04f263',NULL,NULL,NULL,NULL,NULL),(147,149,1,'Rental Agreement2021 1 1','2023-01-24 10:33:10','2023-01-24 10:33:10','95956d3f-1ae4-4ae2-9c09-f4587c3af777',NULL,NULL,NULL,NULL,NULL),(148,150,1,'Tickets 2ad495957943b0e6a3871721062844f7 2','2023-01-24 10:35:19','2023-01-24 10:35:19','a86f5aad-6d7c-4613-9897-aad184fd110b',NULL,NULL,NULL,NULL,NULL),(149,151,1,'Rental Agreement2021 1','2023-01-24 10:36:29','2023-01-24 10:36:29','4a0a4d25-d3f4-49e0-a893-f9857093a91c',NULL,NULL,NULL,NULL,NULL),(150,152,1,'Screenshot 131','2023-01-24 10:43:14','2023-01-24 10:43:14','f100cc15-c06f-49bd-98e8-d18ef50e6238',NULL,NULL,NULL,NULL,NULL),(151,153,1,'Rental Agreement2021 1 1','2023-01-24 10:45:16','2023-01-24 10:45:16','538ee0aa-ca40-4a16-9608-413b7a364159',NULL,NULL,NULL,NULL,NULL),(152,154,1,'Rental Agreement2021 1 1','2023-01-24 10:46:02','2023-01-24 10:46:02','2b598176-a112-47bd-b112-0aa791eba20a',NULL,NULL,NULL,NULL,NULL),(153,155,1,'Rental Agreement2021 1','2023-01-24 10:46:39','2023-01-24 10:46:39','970ccb9e-373f-493b-9766-03c332faf8e4',NULL,NULL,NULL,NULL,NULL),(154,156,1,'Rental Agreement2021 1','2023-01-24 10:47:04','2023-01-24 10:47:04','f6517d2c-52e0-4d2d-a536-ae81b4776d16',NULL,NULL,NULL,NULL,NULL),(155,157,1,'New Address','2023-01-24 10:58:30','2023-06-16 13:25:06','33d5b2df-3d8f-4c7e-870e-972ad5e1f79e',NULL,NULL,NULL,NULL,NULL),(158,160,1,NULL,'2023-01-25 10:33:28','2023-06-19 11:10:17','73ef8070-1087-4372-8a6f-d4a711ddfe80',NULL,NULL,NULL,NULL,NULL),(163,165,1,NULL,'2023-04-12 07:40:33','2023-04-12 07:49:20','0f674595-fd0f-4506-9667-a846ce7a14ad',NULL,NULL,NULL,NULL,NULL),(164,166,1,'New Address','2023-04-12 07:43:19','2023-04-12 07:49:20','9f3df603-e321-4697-8add-f06fb248088a',NULL,NULL,NULL,NULL,NULL),(165,167,1,'Shipping Address','2023-04-12 07:43:48','2023-04-12 07:49:20','beb79a38-0634-466a-8b14-0af22301ee47',NULL,NULL,NULL,NULL,NULL),(166,168,1,'Billing Address','2023-04-12 07:43:48','2023-04-12 07:49:20','be6d4b11-e1c3-487e-9c09-0c5cbf860614',NULL,NULL,NULL,NULL,NULL),(167,169,1,NULL,'2023-06-15 07:52:15','2023-06-15 07:55:53','59a0d3da-e8ea-408b-b04d-4742c8c0798d',NULL,NULL,NULL,NULL,NULL),(168,170,1,'Shipping Address','2023-06-15 07:55:29','2023-06-15 07:55:53','1710ff4f-19c7-4ec9-952d-977e1048baa0',NULL,NULL,NULL,NULL,NULL),(169,171,1,'Billing Address','2023-06-15 07:55:29','2023-06-15 07:55:53','19c7e997-450c-4dc7-9e1e-f5d3e9857c39',NULL,NULL,NULL,NULL,NULL),(170,172,1,'Shipping Address','2023-06-15 08:58:42','2023-06-15 08:58:57','67f4eb0a-b70a-4596-8ff8-45b5545787c8',NULL,NULL,NULL,NULL,NULL),(171,173,1,'Billing Address','2023-06-15 08:58:42','2023-06-15 08:58:57','219e4ece-dd1a-43e0-b809-45bdce1a6518',NULL,NULL,NULL,NULL,NULL),(172,174,1,NULL,'2023-06-15 08:59:08','2023-06-16 10:26:17','8e9071ef-af25-47dc-9c14-bcb421269c64',NULL,NULL,NULL,NULL,NULL),(173,175,1,'New Address','2023-06-15 09:00:02','2023-06-16 10:26:17','2dc78d85-b66c-4c3b-9396-5b41c35a8def',NULL,NULL,NULL,NULL,NULL),(178,180,1,'Shipping Address','2023-06-16 10:21:57','2023-06-16 10:26:17','ae003c80-4272-45b0-9767-13b62b08cec9',NULL,NULL,NULL,NULL,NULL),(179,181,1,'Billing Address','2023-06-16 10:21:58','2023-06-16 10:26:17','97093353-0836-43c2-a336-2e435f46f735',NULL,NULL,NULL,NULL,NULL),(180,182,1,NULL,'2023-06-16 10:29:12','2023-06-16 10:45:02','b430b722-222d-4222-9e58-fc44bdbd7801',NULL,NULL,NULL,NULL,NULL),(181,183,1,'New Address','2023-06-16 10:31:28','2023-06-16 10:45:02','dfa0cda2-b350-4637-8adc-539dfda5c719',NULL,NULL,NULL,NULL,NULL),(186,188,1,'Shipping Address','2023-06-16 10:44:48','2023-06-16 10:45:02','b319b15b-bf43-4c85-a92c-4c2dacaba9ec',NULL,NULL,NULL,NULL,NULL),(187,189,1,'Billing Address','2023-06-16 10:44:48','2023-06-16 10:45:02','76727978-b2d1-4ecf-993e-774f19297760',NULL,NULL,NULL,NULL,NULL),(188,190,1,NULL,'2023-06-16 11:10:08','2023-06-20 08:16:29','ff2e1d33-df02-4d40-948f-482a4da75d57',NULL,NULL,NULL,NULL,NULL),(191,193,1,'Shipping Address','2023-06-16 11:12:31','2023-06-16 11:12:50','65b03a38-1f0d-40d2-9dd0-3494607998ca',NULL,NULL,NULL,NULL,NULL),(192,194,1,'Billing Address','2023-06-16 11:12:31','2023-06-16 11:12:50','985a6327-7f2b-4622-b729-35dc16c883ed',NULL,NULL,NULL,NULL,NULL),(193,195,1,NULL,'2023-06-16 11:13:31','2023-06-16 11:13:59','06af6ca4-4688-469b-96c8-125b3b0c6d76',NULL,NULL,NULL,NULL,NULL),(194,196,1,'Shipping Address','2023-06-16 11:13:41','2023-06-16 11:13:59','846c187b-94aa-493f-a7de-c0cad304a9ad',NULL,NULL,NULL,NULL,NULL),(195,197,1,'Billing Address','2023-06-16 11:13:41','2023-06-16 11:13:59','14dbf22f-3004-469a-b6bb-755fded187f6',NULL,NULL,NULL,NULL,NULL),(196,198,1,NULL,'2023-06-16 11:19:30','2023-06-21 08:32:54','0d82a6bc-a1b0-4ce4-8f95-097edce1a86f',NULL,NULL,NULL,NULL,NULL),(199,201,1,NULL,'2023-06-16 13:21:07','2023-06-16 13:21:29','62b945f0-77da-4e7d-941e-72025d22884e',NULL,NULL,NULL,NULL,NULL),(200,202,1,'Shipping Address','2023-06-16 13:21:58','2023-06-16 13:25:06','9cc62ac5-daf3-4bec-9ee7-47ac2753865f',NULL,NULL,NULL,NULL,NULL),(201,203,1,'Billing Address','2023-06-16 13:21:58','2023-06-16 13:25:06','841bd96b-3a0b-4dab-9567-b8c306d65266',NULL,NULL,NULL,NULL,NULL),(202,204,1,'Shipping Address','2023-06-19 10:50:31','2023-06-19 11:10:17','65fe7388-f675-46a2-9cf4-d9f6d1e55f33',NULL,NULL,NULL,NULL,NULL),(203,205,1,'Billing Address','2023-06-19 10:50:31','2023-06-19 11:10:17','4ab3e1a3-6b8b-4ae1-a024-93e638f16000',NULL,NULL,NULL,NULL,NULL),(204,206,1,NULL,'2023-06-19 11:12:46','2023-06-19 11:16:26','74575488-c0ed-434d-bfc2-68056b2521b2',NULL,NULL,NULL,NULL,NULL),(205,207,1,'Shipping Address','2023-06-19 11:13:05','2023-06-19 11:16:26','78b43300-94a0-49b7-aceb-fed4516dbf0e',NULL,NULL,NULL,NULL,NULL),(206,208,1,'Billing Address','2023-06-19 11:13:05','2023-06-19 11:16:26','41fdeecb-0858-42c2-9ced-33deacb7e68b',NULL,NULL,NULL,NULL,NULL),(207,209,1,NULL,'2023-06-19 11:19:52','2023-06-19 11:26:33','cc1c3514-ce61-4c56-8091-1f3e0927303c',NULL,NULL,NULL,NULL,NULL),(208,210,1,'Shipping Address','2023-06-19 11:20:03','2023-06-19 11:26:33','b0d3950a-eff5-4193-9a56-bd463efeeaa4',NULL,NULL,NULL,NULL,NULL),(209,211,1,'Billing Address','2023-06-19 11:20:03','2023-06-19 11:26:33','cfe02671-fda9-41b2-93fa-e9ab06b73a86',NULL,NULL,NULL,NULL,NULL),(210,212,1,NULL,'2023-06-19 11:21:48','2023-06-19 11:26:55','5aeebc26-bbae-43ca-9f58-775af7577a08',NULL,NULL,NULL,NULL,NULL),(211,213,1,'New Address','2023-06-19 11:22:00','2023-06-19 11:26:55','860b080e-bbf6-4acb-952e-783dd29ad955',NULL,NULL,NULL,NULL,NULL),(212,214,1,'Shipping Address','2023-06-19 11:22:07','2023-06-19 11:26:55','6be01510-0521-4d74-b290-c11122a21a8f',NULL,NULL,NULL,NULL,NULL),(213,215,1,'Billing Address','2023-06-19 11:22:07','2023-06-19 11:26:55','7c237251-bd2f-4316-98c8-f0bacf4d5616',NULL,NULL,NULL,NULL,NULL),(214,216,1,NULL,'2023-06-19 11:27:45','2023-06-19 11:28:34','df04b19e-422f-4f73-bfa8-ed0aad87497e',NULL,NULL,NULL,NULL,NULL),(215,217,1,'Shipping Address','2023-06-19 11:27:59','2023-06-19 11:28:34','108601cf-3cb3-4f89-b698-f3e1a6f861b8',NULL,NULL,NULL,NULL,NULL),(216,218,1,'Billing Address','2023-06-19 11:27:59','2023-06-19 11:28:34','6edb5f8b-fc98-492f-a72a-0b3f477d1acf',NULL,NULL,NULL,NULL,NULL),(217,219,1,NULL,'2023-06-19 11:39:12','2023-06-19 11:40:34','72a33f27-b478-4db2-9299-a9d5c0166159',NULL,NULL,NULL,NULL,NULL),(218,220,1,'Shipping Address','2023-06-19 11:39:38','2023-06-19 11:40:34','cb644ce4-4052-426a-8fc7-950e55589a9f',NULL,NULL,NULL,NULL,NULL),(219,221,1,'Billing Address','2023-06-19 11:39:38','2023-06-19 11:40:34','ed30a293-a180-4440-8038-c13290ab0c8e',NULL,NULL,NULL,NULL,NULL),(220,222,1,NULL,'2023-06-19 12:01:17','2023-06-19 12:02:31','e27b088c-357a-4f51-895b-4c63656e155f',NULL,NULL,NULL,NULL,NULL),(221,223,1,'Shipping Address','2023-06-19 12:01:27','2023-06-19 12:02:31','a7921036-ed00-49b5-a36d-2ba08b5d81e7',NULL,NULL,NULL,NULL,NULL),(222,224,1,'Billing Address','2023-06-19 12:01:27','2023-06-19 12:02:31','921b6232-4702-44a3-bb97-955f7704f434',NULL,NULL,NULL,NULL,NULL),(223,225,1,NULL,'2023-06-19 12:04:01','2023-06-19 12:04:23','2d963374-009f-4770-a690-b8602ba55293',NULL,NULL,NULL,NULL,NULL),(224,226,1,'Shipping Address','2023-06-19 12:04:12','2023-06-19 12:04:23','354e826a-7a97-4a3d-b8cc-fadfec37f116',NULL,NULL,NULL,NULL,NULL),(225,227,1,'Billing Address','2023-06-19 12:04:12','2023-06-19 12:04:23','004b3cf9-c64d-4dbc-b9b9-05300c0c33c2',NULL,NULL,NULL,NULL,NULL),(226,228,1,NULL,'2023-06-19 12:12:19','2023-06-19 12:15:21','faaf32bc-18b2-40c5-9598-84878cbf942a',NULL,NULL,NULL,NULL,NULL),(227,229,1,'Shipping Address','2023-06-19 12:12:30','2023-06-19 12:15:21','82254ac9-cb44-4613-a630-752ccc356da4',NULL,NULL,NULL,NULL,NULL),(228,230,1,'Billing Address','2023-06-19 12:12:30','2023-06-19 12:15:21','674bdc1e-a6fc-4f0d-8233-e30590c4178e',NULL,NULL,NULL,NULL,NULL),(229,231,1,NULL,'2023-06-19 12:14:08','2023-06-19 12:16:18','326bf944-dc0c-4ac8-940a-863a3c8c8fe3',NULL,NULL,NULL,NULL,NULL),(230,232,1,'Shipping Address','2023-06-19 12:14:22','2023-06-19 12:16:18','f9ab8cc7-b9f0-46d0-b02e-7e65a61545a9',NULL,NULL,NULL,NULL,NULL),(231,233,1,'Billing Address','2023-06-19 12:14:22','2023-06-19 12:16:18','2bb91c47-9dc6-42ea-80e6-709af4e31c42',NULL,NULL,NULL,NULL,NULL),(232,234,1,NULL,'2023-06-19 12:17:02','2023-06-19 12:19:01','eaaa77da-ed90-443d-8a13-6f50bab6d5b7',NULL,NULL,NULL,NULL,NULL),(233,235,1,'Shipping Address','2023-06-19 12:17:11','2023-06-19 12:19:01','68e238f4-e07e-46ec-887c-dfdf987f8997',NULL,NULL,NULL,NULL,NULL),(234,236,1,'Billing Address','2023-06-19 12:17:11','2023-06-19 12:19:01','2a4ae412-6745-40b2-b8fb-6d360309d094',NULL,NULL,NULL,NULL,NULL),(235,237,1,NULL,'2023-06-19 12:19:44','2023-06-19 12:21:40','f4c97458-8584-47df-acf6-7b23b6e054ef',NULL,NULL,NULL,NULL,NULL),(236,238,1,'Shipping Address','2023-06-19 12:19:54','2023-06-19 12:21:40','5655a472-9144-44a2-bf2e-65f8e8790b8d',NULL,NULL,NULL,NULL,NULL),(237,239,1,'Billing Address','2023-06-19 12:19:54','2023-06-19 12:21:40','3f7d1b8f-ba54-49cc-aa35-f3951ce4703b',NULL,NULL,NULL,NULL,NULL),(238,240,1,NULL,'2023-06-19 12:22:15','2023-06-19 12:23:25','c23b1557-4afc-404d-91ee-a6d677b6ace9',NULL,NULL,NULL,NULL,NULL),(239,241,1,'Shipping Address','2023-06-19 12:22:23','2023-06-19 12:23:25','ffce33d7-4ddd-452c-8412-5bc0fdde45fd',NULL,NULL,NULL,NULL,NULL),(240,242,1,'Billing Address','2023-06-19 12:22:23','2023-06-19 12:23:25','2660d8cd-cdd1-42c4-a2b2-6a50141b7d0d',NULL,NULL,NULL,NULL,NULL),(241,243,1,NULL,'2023-06-19 16:24:56','2023-06-20 07:45:13','0603f044-e9e2-4761-80a2-9113cf72c3e4',NULL,NULL,NULL,NULL,NULL),(242,244,1,'New Address','2023-06-19 21:11:09','2023-06-20 07:45:13','d69ef5f4-724e-411d-ae18-25f84efa62ea',NULL,NULL,NULL,NULL,NULL),(243,245,1,NULL,'2023-06-19 21:11:19','2023-06-19 21:36:53','92ee2290-d285-4627-9bed-17fc9dfa5821',NULL,NULL,NULL,NULL,NULL),(244,246,1,'Shipping Address','2023-06-19 21:12:18','2023-06-20 07:45:13','de7c41e4-5871-4ec6-aa8a-fe62cc279ce1',NULL,NULL,NULL,NULL,NULL),(245,247,1,'Billing Address','2023-06-19 21:12:19','2023-06-20 07:45:13','65654bb6-ca41-4165-b1cc-59f1b464e37d',NULL,NULL,NULL,NULL,NULL),(246,248,1,NULL,'2023-06-19 21:24:42','2023-06-19 21:24:42','63b75d6e-0a67-46d8-b30e-06118d4e0949',NULL,NULL,NULL,NULL,NULL),(247,249,1,'Billing Address','2023-06-19 21:24:57','2023-06-19 21:25:52','443b7180-bda9-4e0d-a044-ec8add44c03b',NULL,NULL,NULL,NULL,NULL),(248,250,1,'Screenshot 2023 06 08 at 1 17 40 PM','2023-06-19 21:26:25','2023-06-19 21:26:25','c1962152-fbd6-46a9-ac5d-4e44dd3ae42c',NULL,NULL,NULL,NULL,NULL),(249,251,1,NULL,'2023-06-19 21:27:41','2023-06-19 21:27:41','6277b738-7e8c-4fd0-a421-7f806ffe9ccc',NULL,NULL,NULL,NULL,NULL),(250,252,1,NULL,'2023-06-19 21:29:15','2023-06-19 21:29:15','840b478c-1b6a-480a-a1fb-2f818b177b2f',NULL,NULL,NULL,NULL,NULL),(251,253,1,'Billing Address','2023-06-19 21:29:24','2023-06-19 21:29:24','0afa1047-9ead-4f45-8f9a-f62a5cb80647',NULL,NULL,NULL,NULL,NULL),(252,254,1,NULL,'2023-06-19 21:32:41','2023-06-19 21:35:07','11af6e35-6644-4210-a760-667281ccc236',NULL,NULL,NULL,NULL,NULL),(253,255,1,'Shipping Address','2023-06-19 21:34:00','2023-06-19 21:35:07','08b3a9fe-b436-4105-bbe7-4400d4e07a7f',NULL,NULL,NULL,NULL,NULL),(254,256,1,'Billing Address','2023-06-19 21:34:00','2023-06-19 21:35:07','5db0dcca-708f-4ef7-85a6-dcd244b6cb97',NULL,NULL,NULL,NULL,NULL),(255,257,1,NULL,'2023-06-19 21:35:22','2023-06-19 21:47:15','50b3f350-c535-4bc5-afda-901992504fbe',NULL,NULL,NULL,NULL,NULL),(256,258,1,'New Address','2023-06-19 21:35:29','2023-06-19 21:47:15','151f4186-16d9-4988-a281-0779c5628c28',NULL,NULL,NULL,NULL,NULL),(257,259,1,'Shipping Address','2023-06-19 21:37:49','2023-06-19 21:47:15','4d3ece5d-177c-4911-83e1-8ce7d3af32ed',NULL,NULL,NULL,NULL,NULL),(259,261,1,'Billing Address','2023-06-19 21:46:17','2023-06-19 21:47:15','6a5670bd-d6f9-4dfd-a1de-2775d9dcdffb',NULL,NULL,NULL,NULL,NULL),(260,262,1,NULL,'2023-06-19 21:47:25','2023-06-19 21:49:07','f260e857-a65c-4cec-9124-7ee2a2e1e75c',NULL,NULL,NULL,NULL,NULL),(261,263,1,'Shipping Address','2023-06-19 21:48:24','2023-06-19 21:49:07','32284bbf-62b1-48f2-89f1-e6eb9d3d3f35',NULL,NULL,NULL,NULL,NULL),(262,264,1,'Billing Address','2023-06-19 21:48:24','2023-06-19 21:49:07','8659c1a9-a323-4c57-9ed6-c0bb8bd56a97',NULL,NULL,NULL,NULL,NULL),(263,265,1,NULL,'2023-06-20 02:46:26','2023-06-20 02:50:02','d773ef8a-f27f-4ca1-9561-a4b0e2a6a800',NULL,NULL,NULL,NULL,NULL),(264,266,1,'Shipping Address','2023-06-20 02:47:25','2023-06-20 02:50:02','b40f9324-a58b-4882-8133-4a1d9233cc4b',NULL,NULL,NULL,NULL,NULL),(265,267,1,'Billing Address','2023-06-20 02:47:25','2023-06-20 02:50:02','cff73ebb-ae47-437d-9287-6dcd8cacf35e',NULL,NULL,NULL,NULL,NULL),(266,268,1,NULL,'2023-06-20 02:50:35','2023-06-20 15:45:21','1bb2d7c4-1de2-4553-9e30-2d4e5ae7659e',NULL,NULL,NULL,NULL,NULL),(267,269,1,'New Address','2023-06-20 02:50:51','2023-06-20 15:45:21','7b77d56d-76d0-47bc-a143-27a38d352d72',NULL,NULL,NULL,NULL,NULL),(268,270,1,'Shipping Address','2023-06-20 02:51:39','2023-06-20 15:45:21','a9250a52-0ca2-48a9-a5e4-4011b6bc3cab',NULL,NULL,NULL,NULL,NULL),(269,271,1,'Billing Address','2023-06-20 02:51:39','2023-06-20 15:45:21','b69e64bd-2a71-4bfb-9648-7ff61a020a89',NULL,NULL,NULL,NULL,NULL),(270,272,1,NULL,'2023-06-20 07:45:23','2023-07-05 09:50:28','4599a83d-36a5-418c-a36e-8981d42cda75',NULL,NULL,NULL,NULL,NULL),(271,273,1,NULL,'2023-06-20 07:45:37','2023-06-20 08:10:19','9ebb3356-14bd-425a-afd7-150a2c216e99',NULL,NULL,NULL,NULL,NULL),(272,274,1,'Shipping Address','2023-06-20 07:46:08','2023-06-20 08:10:19','bbf062f9-b447-45fe-821a-32bb2bbf1ca0',NULL,NULL,NULL,NULL,NULL),(273,275,1,'Billing Address','2023-06-20 07:46:08','2023-06-20 08:10:19','6263d4c8-5b3a-4d81-b307-f44a2b02bc6f',NULL,NULL,NULL,NULL,NULL),(274,276,1,NULL,'2023-06-20 07:49:40','2023-06-20 07:52:47','9c6cc6b7-c973-4088-909e-aecb45e5fe55',NULL,NULL,NULL,NULL,NULL),(275,277,1,'Billing Address','2023-06-20 07:50:51','2023-06-20 07:52:47','5a816d46-a1b2-4dcc-b3c4-74e215978efe',NULL,NULL,NULL,NULL,NULL),(276,278,1,'Shipping Address','2023-06-20 07:52:42','2023-06-20 07:52:47','1d41cf8f-5bd2-467f-8d80-5d90137b8841',NULL,NULL,NULL,NULL,NULL),(277,279,1,NULL,'2023-06-20 07:56:49','2023-06-20 08:02:48','29537313-515d-46ca-8598-87b327f4640a',NULL,NULL,NULL,NULL,NULL),(278,280,1,'Billing Address','2023-06-20 07:57:04','2023-06-20 08:02:48','e3f9bfed-e3f6-4c57-bf6f-aca381858c60',NULL,NULL,NULL,NULL,NULL),(279,281,1,'Shipping Address','2023-06-20 07:57:07','2023-06-20 08:02:48','5d4c0f30-637e-42a2-bcbb-61ff722a1899',NULL,NULL,NULL,NULL,NULL),(280,282,1,NULL,'2023-06-20 08:03:49','2023-06-20 08:15:14','971b95ca-b465-4dd3-9f33-24afc056cddc',NULL,NULL,NULL,NULL,NULL),(281,283,1,'Billing Address','2023-06-20 08:04:06','2023-06-20 08:04:06','ba91487b-fcd9-4279-b6d2-503b828b8d98',NULL,NULL,NULL,NULL,NULL),(284,286,1,'Billing Address','2023-06-20 08:05:15','2023-06-20 08:15:14','70a33554-ff3a-45f3-aa15-a6437b0d079f',NULL,NULL,NULL,NULL,NULL),(285,287,1,'Shipping Address','2023-06-20 08:06:07','2023-06-20 08:15:14','32c1d7a9-86e0-4b06-a573-b5c7e345977f',NULL,NULL,NULL,NULL,NULL),(286,288,1,'Shipping Address','2023-06-20 08:16:09','2023-06-20 08:16:29','0cb6ab9a-dabf-47c1-adb1-72fef5a3d2c5',NULL,NULL,NULL,NULL,NULL),(287,289,1,'Billing Address','2023-06-20 08:16:09','2023-06-20 08:16:29','91175e69-1539-489b-8c50-e5bf30caba67',NULL,NULL,NULL,NULL,NULL),(288,290,1,NULL,'2023-06-20 08:17:23','2023-06-21 08:31:06','8d9f01b7-32a6-4c42-b4d5-ebeafc94422d',NULL,NULL,NULL,NULL,NULL),(291,293,1,NULL,'2023-06-20 15:55:01','2023-06-20 15:56:15','0f6ed748-a2f5-4b51-9a4e-5e42b5ef241a',NULL,NULL,NULL,NULL,NULL),(292,294,1,'New Address','2023-06-20 15:56:06','2023-06-20 15:56:15','46876269-7c55-4771-b1f4-90eb1adca5dc',NULL,NULL,NULL,NULL,NULL),(293,295,1,NULL,'2023-06-20 15:56:57','2023-06-20 16:01:16','98787fb6-f70a-45be-bc41-a0c4553d1079',NULL,NULL,NULL,NULL,NULL),(294,296,1,'Shipping Address','2023-06-20 15:59:31','2023-06-20 16:01:16','db223ac4-6498-49a0-9598-2262858592fe',NULL,NULL,NULL,NULL,NULL),(295,297,1,'Billing Address','2023-06-20 15:59:31','2023-06-20 16:01:16','5c5d2981-6594-442b-a5a6-ac1ed9a14bb8',NULL,NULL,NULL,NULL,NULL),(296,298,1,NULL,'2023-06-20 16:07:59','2023-06-20 16:17:43','9a2d279f-26c7-44ed-9604-4da153f29b2a',NULL,NULL,NULL,NULL,NULL),(297,299,1,'New Address','2023-06-20 16:08:07','2023-06-20 16:17:43','7164f8f1-7fb3-48ad-bfe3-66392dce5fb7',NULL,NULL,NULL,NULL,NULL),(298,300,1,'Shipping Address','2023-06-20 16:10:26','2023-06-20 16:17:43','a519f400-c7f7-4dde-b4f2-228eb0479cdd',NULL,NULL,NULL,NULL,NULL),(299,301,1,'Billing Address','2023-06-20 16:10:26','2023-06-20 16:17:43','0242d05e-9ee9-4da5-86da-96d0f44b0a48',NULL,NULL,NULL,NULL,NULL),(300,302,1,NULL,'2023-06-20 16:18:30','2023-06-20 16:25:29','9e924dc6-c7f0-471f-a11c-29e5a5e10372',NULL,NULL,NULL,NULL,NULL),(301,303,1,'Shipping Address','2023-06-20 16:19:12','2023-06-20 16:25:29','b52c5a13-4c16-42a6-9718-89672bf553c0',NULL,NULL,NULL,NULL,NULL),(302,304,1,'Billing Address','2023-06-20 16:19:12','2023-06-20 16:25:29','c35ba0ef-f508-4f03-a34b-6fab4df28bb6',NULL,NULL,NULL,NULL,NULL),(303,305,1,NULL,'2023-06-20 16:27:55','2023-06-20 16:30:20','fb34ba4f-1e06-4dcb-8a49-12844a8c4006',NULL,NULL,NULL,NULL,NULL),(304,306,1,'Shipping Address','2023-06-21 07:37:24','2023-06-21 08:31:06','4863241c-db2c-46e0-9039-96ff9c0de112',NULL,NULL,NULL,NULL,NULL),(305,307,1,'Billing Address','2023-06-21 07:37:24','2023-06-21 08:31:06','7cafb32a-f98b-4633-bfd1-379dd1a04e8d',NULL,NULL,NULL,NULL,NULL),(306,308,1,'Shipping Address','2023-06-21 08:24:22','2023-06-21 08:32:54','dce5874d-31bc-4f2d-b0db-1320708550ff',NULL,NULL,NULL,NULL,NULL),(307,309,1,'Billing Address','2023-06-21 08:24:22','2023-06-21 08:32:54','3d1769e6-d625-45f0-8d2e-f9114ee2aefd',NULL,NULL,NULL,NULL,NULL),(308,310,1,NULL,'2023-06-21 22:08:27','2023-06-22 00:12:20','238694d9-7e1f-4c4a-a5ad-29bc8758c8a3',NULL,NULL,NULL,NULL,NULL),(309,311,1,'Shipping Address','2023-06-21 22:10:13','2023-06-22 00:12:20','3644b78f-8417-41a9-8dda-f6a2dd535fff',NULL,NULL,NULL,NULL,NULL),(310,312,1,'Billing Address','2023-06-21 22:10:13','2023-06-22 00:12:20','032159a4-c9ce-4fe8-b88b-7d7223c3aa9c',NULL,NULL,NULL,NULL,NULL),(311,313,1,NULL,'2023-06-22 00:13:28','2023-06-22 00:19:57','2c4a0537-cd5a-4980-931e-ebfca4c4bdd1',NULL,NULL,NULL,NULL,NULL),(312,314,1,'Billing Address','2023-06-22 00:19:13','2023-06-22 00:19:57','b6847cab-4144-41e7-82bb-be1010f08cbd',NULL,NULL,NULL,NULL,NULL),(313,315,1,NULL,'2023-06-22 00:42:50','2023-06-22 00:45:18','1ca17263-b808-431f-9a65-35b60ccd4bdb',NULL,NULL,NULL,NULL,NULL),(314,316,1,'Billing Address','2023-06-22 00:42:58','2023-06-22 00:45:18','7c4e3f97-481d-4430-9717-eade61eca94f',NULL,NULL,NULL,NULL,NULL),(315,317,1,'New Address','2023-06-22 08:30:46','2023-07-05 09:50:28','2a16568d-295b-470c-95ac-182a6063e321',NULL,NULL,NULL,NULL,NULL),(316,318,1,'Shipping Address','2023-06-22 08:30:58','2023-07-05 09:50:28','b043ff35-5112-418f-b63b-641a182e4227',NULL,NULL,NULL,NULL,NULL),(317,319,1,'Billing Address','2023-06-22 08:30:58','2023-07-05 09:50:28','21d94120-a911-4757-adf2-e619f4f0f574',NULL,NULL,NULL,NULL,NULL),(318,320,1,NULL,'2023-06-22 14:40:30','2023-06-22 14:47:05','4f09f6d5-624e-4a98-a840-c8870d07f038',NULL,NULL,NULL,NULL,NULL),(319,321,1,'Billing Address','2023-06-22 14:40:38','2023-06-22 14:47:05','b9139d4b-8aa5-4dde-b1db-e13f93cf0286',NULL,NULL,NULL,NULL,NULL),(320,322,1,'Shipping Address','2023-06-22 14:46:15','2023-06-22 17:09:56','ca2ee0e1-f802-484a-bdea-f3eef9dfda25',NULL,NULL,NULL,NULL,NULL),(321,323,1,'Billing Address','2023-06-22 14:46:15','2023-06-22 17:09:56','9718a66e-4f79-4fc7-8add-44e43bafb443',NULL,NULL,NULL,NULL,NULL),(322,324,1,NULL,'2023-06-22 17:13:14','2023-06-22 17:16:19','eb4ed635-15ad-43bf-a6bb-440bc6b4b751',NULL,NULL,NULL,NULL,NULL),(323,325,1,'Billing Address','2023-06-22 17:13:21','2023-06-22 17:16:19','d835f2d5-2046-45b8-a97c-2fee4fed6c21',NULL,NULL,NULL,NULL,NULL),(324,326,1,'Home','2023-07-03 06:53:45','2023-07-03 06:53:45','22e31d01-3cd4-448e-be19-95b9e2e47591',NULL,NULL,NULL,NULL,NULL),(325,133,2,'Images','2023-07-03 06:55:11','2023-07-03 06:55:11','4ff4c240-bf38-4b48-8afa-83c0b79b9ac1',NULL,NULL,NULL,NULL,NULL),(326,134,2,'Ready Player Me Avatar','2023-07-03 06:55:11','2023-07-03 06:55:11','612d2da4-5c48-4134-a33a-2a3335433b14',NULL,NULL,NULL,NULL,NULL),(327,138,2,'Ready Player Me Avatar','2023-07-03 06:55:11','2023-07-03 06:55:11','18445477-198c-4ee8-ace2-f184a165c0f0',NULL,NULL,NULL,NULL,NULL),(328,139,2,'Screenshot 102','2023-07-03 06:55:11','2023-07-03 06:55:11','57aca8e3-4a8a-422a-b0c3-e649a9ad9e72',NULL,NULL,NULL,NULL,NULL),(329,140,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','ca7da635-d32f-410a-98a5-2a08a06c611e',NULL,NULL,NULL,NULL,NULL),(330,141,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','b8683740-fba0-4e16-a373-93e5d3cb5626',NULL,NULL,NULL,NULL,NULL),(331,142,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','d3c4df2a-32d6-4bf3-a330-2bdb894e8413',NULL,NULL,NULL,NULL,NULL),(332,143,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','cf0e436c-4204-4bce-bdbe-5800d1b5a335',NULL,NULL,NULL,NULL,NULL),(333,144,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','a946e804-4582-4d42-b2cf-640fd968ef4d',NULL,NULL,NULL,NULL,NULL),(334,145,2,'Images','2023-07-03 06:55:11','2023-07-03 06:55:11','776fcc2e-77ab-4d40-8dc7-3bc017f9e049',NULL,NULL,NULL,NULL,NULL),(335,146,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','1faa1735-2b99-41a3-95a1-03a5291a5787',NULL,NULL,NULL,NULL,NULL),(336,147,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','7f95751e-0d82-4abb-a73f-24b8cf63beb0',NULL,NULL,NULL,NULL,NULL),(337,148,2,'Rental Agreement2021 1 1','2023-07-03 06:55:11','2023-07-03 06:55:11','8dd3f8e7-cd7f-4ceb-9d85-95a649729a86',NULL,NULL,NULL,NULL,NULL),(338,149,2,'Rental Agreement2021 1 1','2023-07-03 06:55:11','2023-07-03 06:55:11','505c4d33-b2c9-4ddd-ba21-005e8ec88dc6',NULL,NULL,NULL,NULL,NULL),(339,150,2,'Tickets 2ad495957943b0e6a3871721062844f7 2','2023-07-03 06:55:11','2023-07-03 06:55:11','76d60710-ab33-4a4a-8c47-776ef513b356',NULL,NULL,NULL,NULL,NULL),(340,151,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','04bca7e2-af20-4620-a873-2a3b085f72b6',NULL,NULL,NULL,NULL,NULL),(341,152,2,'Screenshot 131','2023-07-03 06:55:11','2023-07-03 06:55:11','3b4a539e-7947-42b2-a696-cc93e1b3e503',NULL,NULL,NULL,NULL,NULL),(342,153,2,'Rental Agreement2021 1 1','2023-07-03 06:55:11','2023-07-03 06:55:11','b30caabe-d197-4a16-bddb-54cde19275e0',NULL,NULL,NULL,NULL,NULL),(343,154,2,'Rental Agreement2021 1 1','2023-07-03 06:55:11','2023-07-03 06:55:11','a6eab38b-5036-41fe-b53e-de2ada95bc91',NULL,NULL,NULL,NULL,NULL),(344,155,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','26a30be2-97e5-423b-9621-ca39886b15c2',NULL,NULL,NULL,NULL,NULL),(345,156,2,'Rental Agreement2021 1','2023-07-03 06:55:11','2023-07-03 06:55:11','f93fb278-efe1-45b6-8de1-d2fa40760d7a',NULL,NULL,NULL,NULL,NULL),(346,250,2,'Screenshot 2023 06 08 at 1 17 40 PM','2023-07-03 06:55:11','2023-07-03 06:55:11','de214e21-ede6-48f6-8895-bdfac21b9a3c',NULL,NULL,NULL,NULL,NULL),(347,8,2,'Product 01','2023-07-03 06:55:11','2023-07-03 06:55:11','9c49f702-8959-45bd-8064-23e76a779d2a',NULL,NULL,NULL,NULL,NULL),(348,7,2,'Product 01','2023-07-03 06:55:11','2023-07-03 06:55:11','8dca66b5-0975-4635-b7f4-e5fadb38265c',NULL,1,NULL,NULL,NULL),(349,20,2,'Product 02','2023-07-03 06:55:11','2023-07-03 06:55:11','ac83529b-4789-45c3-b6a9-2dcf72952bbe',NULL,NULL,NULL,NULL,NULL),(350,19,2,'Product 02','2023-07-03 06:55:11','2023-07-03 06:55:11','6ad53259-7f69-4364-b058-e9b39f77fb4a',NULL,0,NULL,NULL,NULL),(351,22,2,'Product 03','2023-07-03 06:55:11','2023-07-03 06:55:11','f2198cc0-c3e9-4506-b990-b4ddd5588cbf',NULL,NULL,NULL,NULL,NULL),(352,21,2,'Product 03','2023-07-03 06:55:11','2023-07-03 06:55:11','f86d5f92-4e71-4bea-8d5c-4c170784ea01',NULL,0,NULL,NULL,NULL),(353,327,1,'Home','2023-07-03 06:55:29','2023-07-03 08:03:09','582dc204-2739-49b2-839e-3f7f6358fce6',NULL,NULL,'Наступні проблеми з ліцензією можна вирішити, здійснивши одноразову покупку на Craft Console.\n\nCraft CMS дозволений для версії Solo, але встановлена версія Pro.\nContent Buddy потребує покупки.\nCraft Commerce потребує покупки.\nHelcim для Craft Commerce потребує покупки.',NULL,NULL),(354,328,1,'Unveiling the Ultimate Luxury and Power of the BMW X5: A Journey from its Origins to the Cutting-Edge Model','2023-07-03 07:32:34','2023-07-03 07:32:34','c5e65aa1-3781-4096-ba1b-dd1e632b43b5',NULL,NULL,NULL,'<p>Welcome to our in-depth article on the BMW X5, a luxury SUV that has been capturing hearts and turning heads since its introduction. In this piece, we will delve into the luxurious features and exceptional performance that make the BMW X5 stand out in its class. We will also take a journey through its evolution, from its inception to the latest model, to understand how this remarkable vehicle has evolved over the years. So, buckle up and get ready to explore the world of the BMW X5, where opulence meets exhilaration.</p><h2 id=\"1.-exploring-the-luxurious-features-and-performance-of-the-bmw-x5\">1. "Exploring the Luxurious Features and Performance of the BMW X5"</h2><p>The BMW X5 is a luxury SUV that combines elegant design with impressive performance. This vehicle is equipped with a range of luxurious features that enhance comfort, convenience, and overall driving experience.</p><p>One of the standout features of the BMW X5 is its spacious and opulent interior. The cabin is meticulously crafted with high-quality materials, giving it a premium feel. The seats are not only comfortable but also offer excellent support, making long drives a breeze. The interior is also designed to provide ample legroom and headroom for both front and rear passengers.</p><p>In terms of technology, the BMW X5 is packed with advanced features that add to its luxurious appeal. The infotainment system is intuitive and easy to use, with a large touchscreen display that provides access to navigation, entertainment, and vehicle settings. The X5 also offers smartphone integration, allowing drivers to seamlessly connect their devices for hands-free calling and music streaming.</p><p>When it comes to performance, the BMW X5 does not disappoint. It is available with a range of powerful engines, including a turbocharged inline-six and a V8, delivering impressive acceleration and smooth power delivery. The X5 also boasts precise handling and responsive steering, making it a joy to drive on both city streets and winding roads.</p><p>Furthermore, the BMW X5 offers a host of advanced safety features to ensure a</p><h2 id=\"2.-the-evolution-of-the-bmw-x5:-from-its-inception-to-the-latest-model\">2. "The Evolution of the BMW X5: From its Inception to the Latest Model"</h2><p>The BMW X5 has come a long way since its inception, evolving into a sophisticated and powerful luxury SUV that continues to set standards in its class. Introduced in 1999, the first-generation X5 was BMW's first foray into the SUV market, combining the brand's signature performance and handling with the versatility and practicality demanded by consumers.</p><p>With its muscular stance and dynamic lines, the initial X5 made a strong visual statement. It featured a range of powerful engines, including inline-six and V8 options, delivering exhilarating performance on the road. The first-generation X5 also introduced BMW's xDrive all-wheel drive system, providing enhanced traction and stability in various driving conditions.</p><p>As the years went by, BMW continued to refine and improve the X5, introducing the second-generation model in 2006. This iteration featured a more modern and streamlined design, incorporating BMW's iconic kidney grille and sleeker headlights. Under the hood, the second-generation X5 offered a wider range of engine choices, including diesel options for the European market.</p><p>In 2013, the third-generation X5 was unveiled, showcasing a more athletic and aggressive appearance. The latest model boasted enhanced aerodynamics, improved fuel efficiency, and advanced technologies. It introduced a range of innovative features, such as the iDrive infotainment system, adaptive</p>',NULL),(355,328,2,'Unveiling the Ultimate Luxury and Power of the BMW X5: A Journey from its Origins to the Cutting-Edge Model','2023-07-03 07:32:34','2023-07-03 07:32:34','80706b80-cb33-4273-aa4b-b71c873c6aea',NULL,NULL,NULL,'<p>Welcome to our in-depth article on the BMW X5, a luxury SUV that has been capturing hearts and turning heads since its introduction. In this piece, we will delve into the luxurious features and exceptional performance that make the BMW X5 stand out in its class. We will also take a journey through its evolution, from its inception to the latest model, to understand how this remarkable vehicle has evolved over the years. So, buckle up and get ready to explore the world of the BMW X5, where opulence meets exhilaration.</p><h2 id=\"1.-exploring-the-luxurious-features-and-performance-of-the-bmw-x5\">1. "Exploring the Luxurious Features and Performance of the BMW X5"</h2><p>The BMW X5 is a luxury SUV that combines elegant design with impressive performance. This vehicle is equipped with a range of luxurious features that enhance comfort, convenience, and overall driving experience.</p><p>One of the standout features of the BMW X5 is its spacious and opulent interior. The cabin is meticulously crafted with high-quality materials, giving it a premium feel. The seats are not only comfortable but also offer excellent support, making long drives a breeze. The interior is also designed to provide ample legroom and headroom for both front and rear passengers.</p><p>In terms of technology, the BMW X5 is packed with advanced features that add to its luxurious appeal. The infotainment system is intuitive and easy to use, with a large touchscreen display that provides access to navigation, entertainment, and vehicle settings. The X5 also offers smartphone integration, allowing drivers to seamlessly connect their devices for hands-free calling and music streaming.</p><p>When it comes to performance, the BMW X5 does not disappoint. It is available with a range of powerful engines, including a turbocharged inline-six and a V8, delivering impressive acceleration and smooth power delivery. The X5 also boasts precise handling and responsive steering, making it a joy to drive on both city streets and winding roads.</p><p>Furthermore, the BMW X5 offers a host of advanced safety features to ensure a</p><h2 id=\"2.-the-evolution-of-the-bmw-x5:-from-its-inception-to-the-latest-model\">2. "The Evolution of the BMW X5: From its Inception to the Latest Model"</h2><p>The BMW X5 has come a long way since its inception, evolving into a sophisticated and powerful luxury SUV that continues to set standards in its class. Introduced in 1999, the first-generation X5 was BMW's first foray into the SUV market, combining the brand's signature performance and handling with the versatility and practicality demanded by consumers.</p><p>With its muscular stance and dynamic lines, the initial X5 made a strong visual statement. It featured a range of powerful engines, including inline-six and V8 options, delivering exhilarating performance on the road. The first-generation X5 also introduced BMW's xDrive all-wheel drive system, providing enhanced traction and stability in various driving conditions.</p><p>As the years went by, BMW continued to refine and improve the X5, introducing the second-generation model in 2006. This iteration featured a more modern and streamlined design, incorporating BMW's iconic kidney grille and sleeker headlights. Under the hood, the second-generation X5 offered a wider range of engine choices, including diesel options for the European market.</p><p>In 2013, the third-generation X5 was unveiled, showcasing a more athletic and aggressive appearance. The latest model boasted enhanced aerodynamics, improved fuel efficiency, and advanced technologies. It introduced a range of innovative features, such as the iDrive infotainment system, adaptive</p>',NULL),(356,329,1,'An image of a sleek bmw x5 gliding throu 512x512 22697904','2023-07-03 07:33:33','2023-07-03 07:33:33','3e0f2832-018e-4c59-80f7-5e9f590b6dc0',NULL,NULL,NULL,NULL,NULL),(357,329,2,'An image of a sleek bmw x5 gliding throu 512x512 22697904','2023-07-03 07:33:33','2023-07-03 07:33:33','5f03b027-71a1-4159-8389-8096eb774dbe',NULL,NULL,NULL,NULL,NULL),(358,330,1,'Unveiling the Allure and Innovation of the BMW X5: An In-Depth Analysis of its Design and Features','2023-07-03 07:33:33','2023-07-03 07:33:33','08fd049d-bfed-4450-82c9-b439430b7c10',NULL,NULL,NULL,'<p>Welcome to our article on the BMW X5, a luxury SUV that combines sleek design with cutting-edge features. In this article, we will explore the stunning design elements of the BMW X5 and delve into its innovative features that set it apart from other vehicles in its class. Additionally, we will take a closer look at the powerful engine and exceptional driving dynamics of the BMW X5, uncovering the exhilarating performance that awaits behind the wheel. So buckle up and get ready to embark on a thrilling journey into the world of the BMW X5.</p><h2 id=\"1.-exploring-the-sleek-design-and-cutting-edge-features-of-the-bmw-x5\">1. "Exploring the Sleek Design and Cutting-Edge Features of the BMW X5"</h2><p>The BMW X5 is a luxury SUV that combines sleek design with cutting-edge features, making it a standout in its class. From the moment you lay eyes on the X5, its elegant and sporty appearance captures your attention. The aggressive front grille, muscular stance, and aerodynamic lines give the X5 a commanding presence on the road.</p><p>Step inside the X5, and you'll be greeted by a refined and luxurious interior. The spacious cabin is adorned with high-quality materials and exquisite craftsmanship, creating an atmosphere of sophistication. The ergonomic design of the seats ensures optimal comfort, even on long drives.</p><p>But the allure of the BMW X5 goes beyond its stylish exterior and luxurious interior. This SUV is packed with cutting-edge features that enhance both performance and convenience. The X5 offers a range of powerful engines, including hybrid options, that deliver impressive acceleration and fuel efficiency. The advanced suspension system provides a smooth and comfortable ride, while the precise steering and responsive handling make it a joy to drive.</p><p>Technology is at the forefront of the X5, with a host of innovative features that cater to both driver and passenger. The intuitive infotainment system offers seamless connectivity, allowing you to easily access your favorite apps, music, and navigation. The responsive touchscreen and voice control functionality make it effortless to navigate through the system while keeping your</p><h2 id=\"2.-unleashing-the-power-and-performance-of-the-bmw-x5:-a-closer-look-at-the-engine-and-driving-dynamics\">2. "Unleashing the Power and Performance of the BMW X5: A Closer Look at the Engine and Driving Dynamics"</h2><p>The BMW X5 is renowned for its powerful engine and exceptional driving dynamics, offering a thrilling and dynamic driving experience. Under the hood, this luxury SUV is equipped with a range of robust engine options that deliver impressive power and performance.</p><p>One of the standout engine choices for the BMW X5 is the 4.4-liter TwinPower Turbo V8 engine, which is available in the top-of-the-line X5 M50i model. This engine generates a staggering 523 horsepower and 553 lb-ft of torque, propelling the vehicle from 0 to 60 mph in just 4.1 seconds. The X5 M50i is not only fast but also offers exhilarating acceleration and smooth power delivery, ensuring an adrenaline-pumping ride.</p><p>For those seeking a balance between power and efficiency, the BMW X5 also offers a range of inline-six engines, such as the 3.0-liter TwinPower Turbo inline-six engine found in the X5 xDrive40i. This engine produces 335 horsepower and 331 lb-ft of torque, providing ample power for spirited driving while still maintaining respectable fuel efficiency.</p><p>To enhance the driving dynamics of the BMW X5, the vehicle comes equipped with advanced technologies and features. One such feature is the xDrive all-wheel drive system, which distributes power between the front and rear wheels</p>',NULL),(359,330,2,'Unveiling the Allure and Innovation of the BMW X5: An In-Depth Analysis of its Design and Features','2023-07-03 07:33:33','2023-07-03 07:33:33','8f7184d9-c70f-4dd0-a351-726ce84bcdab',NULL,NULL,NULL,'<p>Welcome to our article on the BMW X5, a luxury SUV that combines sleek design with cutting-edge features. In this article, we will explore the stunning design elements of the BMW X5 and delve into its innovative features that set it apart from other vehicles in its class. Additionally, we will take a closer look at the powerful engine and exceptional driving dynamics of the BMW X5, uncovering the exhilarating performance that awaits behind the wheel. So buckle up and get ready to embark on a thrilling journey into the world of the BMW X5.</p><h2 id=\"1.-exploring-the-sleek-design-and-cutting-edge-features-of-the-bmw-x5\">1. "Exploring the Sleek Design and Cutting-Edge Features of the BMW X5"</h2><p>The BMW X5 is a luxury SUV that combines sleek design with cutting-edge features, making it a standout in its class. From the moment you lay eyes on the X5, its elegant and sporty appearance captures your attention. The aggressive front grille, muscular stance, and aerodynamic lines give the X5 a commanding presence on the road.</p><p>Step inside the X5, and you'll be greeted by a refined and luxurious interior. The spacious cabin is adorned with high-quality materials and exquisite craftsmanship, creating an atmosphere of sophistication. The ergonomic design of the seats ensures optimal comfort, even on long drives.</p><p>But the allure of the BMW X5 goes beyond its stylish exterior and luxurious interior. This SUV is packed with cutting-edge features that enhance both performance and convenience. The X5 offers a range of powerful engines, including hybrid options, that deliver impressive acceleration and fuel efficiency. The advanced suspension system provides a smooth and comfortable ride, while the precise steering and responsive handling make it a joy to drive.</p><p>Technology is at the forefront of the X5, with a host of innovative features that cater to both driver and passenger. The intuitive infotainment system offers seamless connectivity, allowing you to easily access your favorite apps, music, and navigation. The responsive touchscreen and voice control functionality make it effortless to navigate through the system while keeping your</p><h2 id=\"2.-unleashing-the-power-and-performance-of-the-bmw-x5:-a-closer-look-at-the-engine-and-driving-dynamics\">2. "Unleashing the Power and Performance of the BMW X5: A Closer Look at the Engine and Driving Dynamics"</h2><p>The BMW X5 is renowned for its powerful engine and exceptional driving dynamics, offering a thrilling and dynamic driving experience. Under the hood, this luxury SUV is equipped with a range of robust engine options that deliver impressive power and performance.</p><p>One of the standout engine choices for the BMW X5 is the 4.4-liter TwinPower Turbo V8 engine, which is available in the top-of-the-line X5 M50i model. This engine generates a staggering 523 horsepower and 553 lb-ft of torque, propelling the vehicle from 0 to 60 mph in just 4.1 seconds. The X5 M50i is not only fast but also offers exhilarating acceleration and smooth power delivery, ensuring an adrenaline-pumping ride.</p><p>For those seeking a balance between power and efficiency, the BMW X5 also offers a range of inline-six engines, such as the 3.0-liter TwinPower Turbo inline-six engine found in the X5 xDrive40i. This engine produces 335 horsepower and 331 lb-ft of torque, providing ample power for spirited driving while still maintaining respectable fuel efficiency.</p><p>To enhance the driving dynamics of the BMW X5, the vehicle comes equipped with advanced technologies and features. One such feature is the xDrive all-wheel drive system, which distributes power between the front and rear wheels</p>',NULL),(360,331,1,'Screenshot 27','2023-07-05 09:31:53','2023-07-05 09:31:53','21634e30-b708-4491-b193-26c81a7b3aa0',NULL,NULL,NULL,NULL,NULL),(361,331,2,'Screenshot 27','2023-07-05 09:31:53','2023-07-05 09:31:53','80344e7f-df02-489f-adfd-c82d8e426396',NULL,NULL,NULL,NULL,NULL),(362,332,1,'Ringtone','2023-07-05 10:29:18','2023-07-05 10:29:18','ca51419f-5d3a-418c-9369-425fbcf16e98',NULL,NULL,NULL,NULL,NULL),(363,332,2,'Ringtone','2023-07-05 10:29:18','2023-07-05 10:29:18','05fa9c38-c6dc-48ae-950f-32622a1998b0',NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `content` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `content_buddy_prompt` -- LOCK TABLES `content_buddy_prompt` WRITE; /*!40000 ALTER TABLE `content_buddy_prompt` DISABLE KEYS */; set autocommit=0; INSERT INTO `content_buddy_prompt` VALUES (1,'Write a paragraph on this','Write a paragraph on this topic:\r\n\r\n[[text]]\r\n\r\n----\r\nWritten paragraph:',1,1,1,400,1,0.7,'2023-07-03 06:52:32','2023-07-03 06:52:32','96e6e9f4-bc54-4f1e-ad2b-6da238dad377'),(2,'Continue this text','Continue this text:\n\n[[text]]\n\n----\nContinued text:',1,0,1,800,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','bc50b589-8bd9-4b64-a99a-5795b476a176'),(3,'Generate ideas on this','Generate a few ideas on that as bullet points:\n\n[[text]]\n\n----\nGenerated ideas in bullet points:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','c1dc7aeb-1353-4c9d-b2c3-f220fc2fa9f9'),(4,'Write an article about this','Write a complete article about this:\n\n[[text]]\n\n----\nWritten article:',1,1,1,1500,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','30d10498-fc60-444e-b2f9-a18dae0e7ca2'),(5,'Generate a TL;DR','Generate a TL;DR of this text:\n\n[[text]]\n\n----\nTL;DR:',1,1,1,300,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','d4086b59-da33-47e0-9e29-d5b7ee9aa368'),(6,'Paraphrase','Paraphrase this text:\n\n[[text]]\n\n----\nParaphrased text:',1,1,2,400,2,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','8de10607-6176-43bf-b0e3-0ae559196f48'),(7,'Paraphrase','Paraphrase this text in a sarcastic way:\n\n[[text]]\n\n----\nParaphrased text:',0,1,2,400,2,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','e26ef7b9-256c-4117-aee4-485139e036a7'),(8,'Paraphrase','Paraphrase this text in a humorous way:\n\n[[text]]\n\n----\nParaphrased text:',0,1,2,400,2,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','91db491b-e24e-4be2-ac18-a9cae3683a02'),(9,'Summarize','Summarize this text:\n\n[[text]]\n\n----\nSummarized text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','c636573f-d450-4afe-9074-3472b2e6b539'),(10,'Summarize','Summarize this text in a concise way:\n\n[[text]]\n\n----\nSummarized text:',0,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','f5d3a945-cb08-4668-b734-f59dd6ec39d6'),(11,'Summarize','Summarize this text into bullet points:\n\n[[text]]\n\n----\nSummarized text:',0,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','740f2ddc-1784-485f-b7b5-ae55962b79d8'),(12,'Generate subtitle','Generate a title for this text:\n\n[[text]]\n\n----\nTitle:',1,1,1,200,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','b8068521-b6b1-4455-aec2-d0ba54712949'),(13,'Turn into advertisement','Turn the following text into a creative advertisement:\n\n[[text]]\n\n----\nAdvertisement text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','3f29c3ab-d787-4548-9424-a70832d13b25'),(14,'Explain to a 5 years old kid','Explain to a 5 years old kid:\n\n[[text]]\n\n----\nExplaining text:',1,1,1,800,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','0fbb7b6a-2d62-446a-9197-bb8a532dbc10'),(15,'Find a matching quote','Find a matching quote:\n\n[[text]]\n\n----\nQuote text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','4f90e96e-f0d5-4aa2-8370-77570e2d2d35'),(16,'Generate image idea','Describe an image that would match this text:\n\n[[text]]\n\n----\nGenerated idea text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','9a8d9ad9-139e-4da8-b9e2-e99844ebd216'),(17,'Scientific language','Explain in scientific language:\n\n[[text]]\n\n----\nExplaining text:',0,1,1,800,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','8f23debd-c5cf-47d3-9964-23631e8db64e'),(18,'Use multiple adjectives','Use multiple adjectives:\n\n[[text]]\n\n----\nAdjectives text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','6df7ef96-92a3-4219-b82e-3b52279aa9bc'),(19,'Write a product description','Write a product description:\n\n[[text]]\n\n----\nProduct description text:',1,1,1,800,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','8120f7e1-5414-42ef-8640-e50af04b6ee7'),(20,'Generate catchy subtitles','Generate catchy subtitles:\n\n[[text]]\n\n----\nSubtitles text:',1,1,1,400,1,0.7,'2023-07-03 06:50:42','2023-07-03 06:50:42','d0426cb1-27ca-430c-a2a7-02df0817fcdd'),(21,'Translate to FR','Translate to fr-FR: [[text]]',1,1,1,400,1,0.7,'2023-07-03 07:05:53','2023-07-03 07:05:53','0750bfa2-efe9-4014-8716-24638b80c80e'); /*!40000 ALTER TABLE `content_buddy_prompt` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `craftidtokens` -- LOCK TABLES `craftidtokens` WRITE; /*!40000 ALTER TABLE `craftidtokens` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `craftidtokens` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `deprecationerrors` -- LOCK TABLES `deprecationerrors` WRITE; /*!40000 ALTER TABLE `deprecationerrors` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `deprecationerrors` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `drafts` -- LOCK TABLES `drafts` WRITE; /*!40000 ALTER TABLE `drafts` DISABLE KEYS */; set autocommit=0; INSERT INTO `drafts` VALUES (2,NULL,1,0,'First draft',NULL,0,NULL,0),(3,NULL,1,0,'First draft',NULL,0,NULL,0),(12,9,1,1,'Draft 1','',1,NULL,1),(13,NULL,NULL,0,'First draft',NULL,0,NULL,1),(14,NULL,NULL,0,'First draft',NULL,0,NULL,1); /*!40000 ALTER TABLE `drafts` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `elements` -- LOCK TABLES `elements` WRITE; /*!40000 ALTER TABLE `elements` DISABLE KEYS */; set autocommit=0; INSERT INTO `elements` VALUES (1,NULL,NULL,NULL,NULL,'craft\\elements\\User',1,0,'2022-05-20 18:56:06','2022-05-20 18:56:06',NULL,NULL,'bb2f4396-98d4-4b13-9048-41ab2ee8a006'),(2,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Donation',1,0,'2022-10-12 14:54:36','2022-10-12 14:54:36',NULL,NULL,'f1146341-6dee-4677-95d6-ae6dc7b85ef2'),(3,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-12 14:54:49','2022-10-12 14:54:49',NULL,NULL,'2bfcfeb6-4a90-450a-96a3-34142b1ba25a'),(4,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Order',1,0,'2022-10-12 15:25:43','2022-10-12 15:25:43',NULL,NULL,'0280c69c-08c4-47d1-ac75-e312132e9226'),(5,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Donation',1,0,'2022-10-12 18:29:03','2022-10-12 18:29:03',NULL,NULL,'e775dc2b-4fce-4f4b-8f31-e4fff4595300'),(6,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-12 18:29:12','2022-10-28 11:19:08',NULL,NULL,'739d69cf-5548-418b-be45-2f1af00db723'),(7,NULL,NULL,NULL,3,'craft\\commerce\\elements\\Product',1,0,'2022-10-12 19:03:29','2023-06-19 21:40:43',NULL,NULL,'cdbd0c65-866b-411f-b6b4-c8c63a8a78af'),(8,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Variant',1,0,'2022-10-12 19:03:29','2023-07-03 06:55:11',NULL,NULL,'4a2ce0d3-c782-4953-a941-408461c02d97'),(9,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2022-10-12 19:14:23','2023-07-03 06:53:45',NULL,NULL,'9171ccc2-4eda-47eb-a87c-273639302193'),(10,9,NULL,1,4,'craft\\elements\\Entry',1,0,'2022-10-12 19:14:23','2022-10-12 19:14:23',NULL,NULL,'f1eadbd8-db6a-4b87-84f9-87c24acc172b'),(11,9,NULL,2,4,'craft\\elements\\Entry',1,0,'2022-10-12 19:14:23','2022-10-12 19:14:23',NULL,NULL,'bf6de2dc-239e-43a3-941b-920e762f478d'),(12,NULL,NULL,NULL,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:20:28','2022-10-12 19:21:48',NULL,NULL,'afc9e14c-4ea8-4f4a-9abf-39283dd9c00d'),(13,12,NULL,3,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:20:28','2022-10-12 19:20:28',NULL,NULL,'72378f4e-bb58-4e7c-8b78-09c0fbf28971'),(14,12,NULL,4,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:20:28','2022-10-12 19:20:28',NULL,NULL,'24a59834-fd26-496d-946f-ed2350ab93f9'),(15,12,NULL,5,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:21:04','2022-10-12 19:21:04',NULL,NULL,'5b2c7eb1-bff5-4007-93e4-1bf6d1dbd9e6'),(16,12,NULL,6,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:21:04','2022-10-12 19:21:04',NULL,NULL,'a4f1a66f-3e48-4283-8ae5-96e6873d85aa'),(17,12,NULL,7,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:21:20','2022-10-12 19:21:20',NULL,NULL,'55dcb8ce-e420-49ba-8a46-250605332975'),(18,12,NULL,8,5,'craft\\elements\\Entry',1,0,'2022-10-12 19:21:48','2022-10-12 19:21:48',NULL,NULL,'b2a46465-f43e-4750-9112-3c043fc4d2fd'),(19,NULL,NULL,NULL,3,'craft\\commerce\\elements\\Product',1,0,'2022-10-12 19:41:00','2023-06-19 21:10:46',NULL,NULL,'27e836a8-e0ea-411a-8f3a-76ab64cb4036'),(20,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Variant',1,0,'2022-10-12 19:41:00','2023-07-03 06:55:11',NULL,NULL,'9099f5dd-ad0b-4230-9ac5-ad03a8adabdd'),(21,NULL,NULL,NULL,3,'craft\\commerce\\elements\\Product',1,0,'2022-10-12 19:41:15','2023-06-19 12:16:56',NULL,NULL,'6bdd0e78-5a91-419f-811f-73e2305b6536'),(22,NULL,NULL,NULL,NULL,'craft\\commerce\\elements\\Variant',1,0,'2022-10-12 19:41:15','2023-07-03 06:55:11',NULL,NULL,'8154b46e-82b0-4fa3-aad8-078b5a522178'),(26,NULL,NULL,NULL,NULL,'craft\\elements\\User',1,0,'2022-10-17 14:29:14','2022-10-17 14:32:45',NULL,NULL,'0c5bed37-cd3d-4656-8186-6608f36590bc'),(27,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-17 14:33:13','2022-10-28 10:35:08',NULL,NULL,'a0dfdcbf-5dd6-4ffc-8415-173b6d6b29ca'),(30,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 10:34:57','2022-10-28 10:35:08',NULL,NULL,'40e13ea8-b983-486e-9901-eb4401703943'),(31,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-28 11:16:09','2022-10-28 11:37:29',NULL,NULL,'a5291179-1176-4b8f-bff3-c18bb9a36c2d'),(33,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:19:54','2022-10-28 11:37:29',NULL,NULL,'faa5b571-6571-41aa-b75c-ba854c5b315c'),(34,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:19:54','2022-10-28 11:37:29',NULL,NULL,'78f33b8f-59d2-4705-ab61-e2402966dec8'),(35,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-28 11:54:11','2022-10-28 11:55:25',NULL,NULL,'9e3fe2d7-663f-438b-9501-904978994e94'),(36,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:54:55','2022-10-28 11:55:25',NULL,NULL,'04af1bfc-c050-42df-b1e5-d4de974ff7f8'),(37,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:54:55','2022-10-28 11:55:25',NULL,NULL,'60ff469b-7f80-4923-b609-e5ba95e790f8'),(38,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-28 11:55:40','2022-10-28 12:06:01',NULL,NULL,'8d575d93-4a43-4cd6-b3a7-65a6d390246e'),(39,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:56:29','2022-10-28 12:06:01',NULL,NULL,'b472b77f-244f-47f1-945e-bac06aca17eb'),(40,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 11:56:29','2022-10-28 12:06:01',NULL,NULL,'e8acee0b-8cc5-464b-bdea-ef8983fa0d5f'),(41,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-28 12:06:10','2022-10-28 12:06:56',NULL,NULL,'f729397b-cbf6-42f3-b852-8b7f7d18f7af'),(42,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 12:06:47','2022-10-28 12:06:56',NULL,NULL,'0b28d4f7-89ed-4100-808b-f9e5786f3fc7'),(43,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 12:06:47','2022-10-28 12:06:56',NULL,NULL,'a525f57f-32d9-4e13-8f54-cc6d5cad7de2'),(44,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 12:07:49','2022-10-28 12:07:49',NULL,NULL,'e266356e-4b7f-446d-b32d-ac019c33ee1f'),(45,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-28 12:07:55','2022-11-10 08:27:31',NULL,NULL,'ab0d9333-d2d3-44e1-ad9d-9e057b8b9d11'),(46,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-28 12:08:30','2022-11-10 08:27:31',NULL,NULL,'3f3bc739-3b69-43ff-b4a0-ca88cf1879e7'),(48,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-31 12:45:39','2022-11-10 08:27:31',NULL,NULL,'56182fa6-ea51-497b-9fe6-66cae395437d'),(49,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-31 12:46:21','2022-10-31 12:59:58',NULL,NULL,'6902f525-6d31-41dc-ab92-7f9c76d7b010'),(50,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-31 12:46:32','2022-10-31 12:59:58',NULL,NULL,'887af222-918b-4254-be46-3aff0fcaa840'),(51,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-31 12:46:32','2022-10-31 12:59:58',NULL,NULL,'0c6bc1a9-91b4-471a-bc1f-50de184c71b4'),(52,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-10-31 13:12:29','2022-10-31 14:06:37',NULL,NULL,'a046c399-6c54-4e9e-9362-29c543e48e0d'),(53,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-31 13:12:57','2022-10-31 14:06:37',NULL,NULL,'068cf62d-3027-4e9a-bd4e-469702e75d80'),(54,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-10-31 13:12:57','2022-10-31 14:06:37',NULL,NULL,'c29491dd-19f6-4056-90a2-52ced21d57f7'),(55,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-09 13:39:29','2022-11-10 07:16:24',NULL,NULL,'1be027e5-1a5d-4f6c-bddb-030d77b185a4'),(58,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-09 13:56:12','2022-11-10 07:16:24',NULL,NULL,'a68d45c2-60ed-4d12-ba80-e08bb5a48ae9'),(59,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-09 13:56:12','2022-11-10 07:16:24',NULL,NULL,'1be77b7a-3639-49ad-bf3c-7ae4129db84e'),(60,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-09 14:12:01','2022-11-10 13:30:20',NULL,'2022-11-10 13:35:26','c944a96f-73ee-4ba4-9563-9a067e33647d'),(61,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-09 14:14:00','2022-11-10 13:30:20',NULL,NULL,'59390e7a-679d-460a-8a08-124db66c63bc'),(62,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-10 08:32:53','2023-06-22 17:09:56',NULL,NULL,'995b89ba-b859-4066-b5e7-37f8747c7579'),(63,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 08:33:05','2023-06-22 17:09:56',NULL,NULL,'aba4c17d-88f9-463e-92ef-d7d64d2d9970'),(64,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-10 08:34:06','2022-11-10 08:38:56',NULL,NULL,'942810bb-eeda-4cc3-a267-b2a25ed7ec97'),(65,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 08:34:38','2022-11-10 08:38:56',NULL,NULL,'c9f61cc9-540e-4a38-b472-48a79e67ffed'),(66,NULL,NULL,NULL,NULL,'craft\\elements\\User',1,0,'2022-11-10 08:35:00','2022-11-10 08:35:00',NULL,NULL,'8c23077b-e158-4fd4-af56-29e3fbe76170'),(67,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 08:36:32','2022-11-10 08:38:56',NULL,NULL,'572bc23b-fc42-46e7-8058-cc2fa7b5333f'),(68,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 08:36:32','2022-11-10 08:38:56',NULL,NULL,'cd8bc8ac-3bc9-4f2c-8bd4-7fc5bd0d5b92'),(69,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 12:19:01','2022-11-10 13:30:20',NULL,NULL,'ad792466-233e-4405-bf01-73d56332090f'),(70,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 12:19:01','2022-11-10 13:30:20',NULL,NULL,'3969e679-55c1-43f7-a984-0b03020bc733'),(71,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-10 13:35:35','2022-11-10 13:36:12',NULL,NULL,'1fcea76c-a9c1-42a9-b223-646133ef5255'),(72,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 13:35:40','2022-11-10 13:36:12',NULL,NULL,'3ccf9bd8-0473-4480-af56-737dd966a8dd'),(73,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 13:35:46','2022-11-10 13:36:12',NULL,NULL,'8fc20a88-727a-47dd-a672-4f4899dbb02f'),(74,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-10 13:35:46','2022-11-10 13:36:12',NULL,NULL,'24329852-de40-4ed0-b8b1-26c7a24f3a7f'),(75,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-11 12:02:51','2022-11-11 12:04:07',NULL,NULL,'cb96c492-e657-464f-b5e4-938cf8640134'),(76,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:03:08','2022-11-11 12:04:07',NULL,NULL,'6785d9ce-d492-4a0a-8129-0efccad074ba'),(77,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:03:08','2022-11-11 12:04:07',NULL,NULL,'fc34a0b7-5b35-4298-ad8a-90c3ae0b0d46'),(78,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-11 12:25:22','2022-11-11 12:45:34',NULL,NULL,'007c2aa5-eea6-4ba0-9604-76cef1e69888'),(79,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:26:29','2022-11-11 12:45:34',NULL,NULL,'ee6439a4-1284-4201-a9c7-d31f3c2682d8'),(80,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:26:29','2022-11-11 12:45:34',NULL,NULL,'e30cf3ce-2227-4039-ac0e-4c7c105101a5'),(81,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-11 12:47:01','2022-11-11 12:50:04',NULL,NULL,'ab94c781-f5b1-4205-95bf-f7506a466217'),(82,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:47:16','2022-11-11 12:50:04',NULL,NULL,'88910a51-3746-4a70-bd88-efc23a802a82'),(83,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:47:16','2022-11-11 12:50:04',NULL,NULL,'3bef7e95-43fa-40f4-a3f7-ea8ec9ac217f'),(84,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-11 12:51:54','2022-11-11 12:59:55',NULL,NULL,'90703aca-ae16-4418-a256-6af76df32850'),(85,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:52:07','2022-11-11 12:59:55',NULL,NULL,'6885d68d-0983-4e27-9bd9-097e95dc047a'),(86,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 12:52:07','2022-11-11 12:59:55',NULL,NULL,'0a4be721-3e9d-4da7-adc6-8d2098995353'),(87,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-11 12:59:45','2022-11-11 13:01:59',NULL,NULL,'a1c487e9-9359-4e1d-b63c-87f25386a1be'),(88,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 13:01:45','2022-11-11 13:01:59',NULL,NULL,'64cc51b6-87eb-4834-adcb-c1a717b40c9c'),(89,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-11 13:01:45','2022-11-11 13:01:59',NULL,NULL,'861215c9-2a1d-471c-bf68-b82ceb128180'),(90,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 13:19:12','2022-11-14 13:55:58',NULL,NULL,'7ded87e0-1a91-4846-b4cb-a5c81de77534'),(91,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 13:19:29','2022-11-14 13:55:58',NULL,NULL,'c95e6ca6-4d27-4529-9cfd-08087115b95b'),(92,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 13:19:29','2022-11-14 13:55:58',NULL,NULL,'b19da9a5-38b5-4be4-a2db-00ae421f18a9'),(93,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:04:29','2022-11-14 14:06:43',NULL,NULL,'807c7a76-1de0-40b0-b08c-89be1001205f'),(94,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:05:02','2022-11-14 14:06:43',NULL,NULL,'dc3036e1-fc36-408e-b32c-39aaa72be004'),(95,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:05:02','2022-11-14 14:06:43',NULL,NULL,'f29fd456-bdfa-4d87-9064-2a864f5ce7e7'),(96,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:09:31','2022-11-14 14:11:41',NULL,NULL,'6a434098-b753-4613-b9c9-5e1e0f9f7510'),(97,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:09:50','2022-11-14 14:11:41',NULL,NULL,'502c055c-4434-4612-818e-0bca8b7897b2'),(98,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:09:50','2022-11-14 14:11:41',NULL,NULL,'1cdb7737-412d-4eea-b151-00957503a99d'),(99,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:14:06','2022-11-14 14:18:16',NULL,NULL,'d40a3eb7-dded-43fd-ab1c-be75c151c6aa'),(100,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:14:22','2022-11-14 14:18:16',NULL,NULL,'3c4d1f5a-f9df-45d5-973e-e7016c5c1fdf'),(101,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:14:22','2022-11-14 14:18:16',NULL,NULL,'d2a7cfb2-b836-4775-98ba-eb1abe556ecb'),(102,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:19:50','2022-11-14 14:20:49',NULL,NULL,'162b812f-6cc8-449f-baf6-22a87933f6fb'),(103,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:20:11','2022-11-14 14:20:49',NULL,NULL,'3f9fa18b-57a6-4fba-8248-abd4b05ebdac'),(104,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:20:11','2022-11-14 14:20:49',NULL,NULL,'015c2599-0790-49b4-acf5-198504a468ab'),(105,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:20:56','2022-11-14 14:24:58',NULL,NULL,'a6bad80f-87f2-431f-8404-71a88a30b3b6'),(106,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:21:23','2022-11-14 14:24:58',NULL,NULL,'100046e3-d792-4cae-aa42-32638a82cba7'),(107,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:21:23','2022-11-14 14:24:58',NULL,NULL,'96379fd7-6c4b-4d46-92e7-8f12b0940c41'),(108,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-14 14:25:08','2022-11-15 11:24:28',NULL,NULL,'ef3acfec-4b40-46f9-bd9a-3e9ac786c91f'),(109,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:25:22','2022-11-15 11:24:28',NULL,NULL,'97295eed-a8d5-47a9-9fac-cbf8971c0532'),(110,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-14 14:25:22','2022-11-15 11:24:28',NULL,NULL,'ce8681a8-5808-4aab-9b71-9ed32e14ccb5'),(111,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 11:25:34','2022-11-15 11:33:03',NULL,NULL,'d1a68ba0-a421-40c8-ba6c-5b4f7706b61a'),(112,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 11:27:46','2022-11-15 11:33:03',NULL,NULL,'4e65bba9-f883-4bb5-b9cd-049614ca9327'),(113,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 11:28:18','2022-11-15 11:33:03',NULL,NULL,'ec7057c7-7cf2-456d-8883-39a47a224454'),(114,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 11:28:18','2022-11-15 11:33:03',NULL,NULL,'a7466b41-25c1-47eb-9aa6-53995d2dc46b'),(115,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 11:59:20','2022-11-15 11:59:57',NULL,NULL,'b8bf9c00-19a9-4f5f-80f0-e938fa9d2fbe'),(116,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 11:59:27','2022-11-15 11:59:57',NULL,NULL,'d6d27ef2-b1a4-4a87-962c-57a8bfd87632'),(117,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 11:59:27','2022-11-15 11:59:57',NULL,NULL,'2489eb31-1234-4dd8-ae12-e6a5badf9233'),(118,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 12:00:59','2022-11-15 12:03:50',NULL,NULL,'15f3c6e5-1842-4a98-8d69-3d36e7f4f50b'),(119,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 12:01:08','2022-11-15 12:03:50',NULL,NULL,'21eac0c1-c6dd-49c6-af55-903cd2bd6d12'),(120,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 12:01:08','2022-11-15 12:03:50',NULL,NULL,'ec83b6f7-ed52-41cb-bddd-40d84e418f50'),(121,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 13:52:30','2022-11-15 14:01:20',NULL,NULL,'15b955b0-dd57-4b2e-83db-dc74930f2aac'),(122,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 13:52:48','2022-11-15 14:01:20',NULL,NULL,'b1cfdacb-d6ef-4f65-a3e5-246b5c7e5fad'),(123,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 13:52:48','2022-11-15 14:01:20',NULL,NULL,'51d84ed9-c5a1-4950-aff1-b0d67d6fb620'),(124,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 14:02:53','2023-03-06 12:15:17',NULL,NULL,'66852a60-5da6-4ef1-9397-a4b4c8c03190'),(125,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 14:03:04','2023-03-06 12:15:17',NULL,NULL,'c7070ce5-49bc-4ad7-b33d-024d1c80470e'),(126,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2022-11-15 14:03:04','2023-03-06 12:15:17',NULL,NULL,'89efa3fc-777a-4c4c-9dad-1764ded947f5'),(127,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2022-11-15 14:03:46','2023-06-15 08:58:57',NULL,NULL,'d66c9afd-0077-4e00-add4-e8e1a395399f'),(130,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-01-23 13:29:11','2023-01-23 13:29:11',NULL,NULL,'b6ae24d8-32fe-4c35-bf97-113064e5429f'),(131,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-01-23 13:31:24','2023-01-23 14:09:05',NULL,'2023-01-23 14:09:32','5780ce94-31a1-442b-bfa8-3d835003e9f1'),(132,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-01-23 13:34:19','2023-01-23 14:09:05',NULL,NULL,'775d7b7c-3e8a-438f-8db9-3925863bb5a4'),(133,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-23 13:44:37','2023-01-23 13:44:37',NULL,NULL,'d6edfbbf-2fac-4927-a53b-780975bf9a53'),(134,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-23 14:09:02','2023-01-23 14:09:02',NULL,NULL,'44207a89-4165-46de-b2de-89f4394cf473'),(135,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-01-23 14:09:42','2023-06-16 11:12:50',NULL,NULL,'7f5054ae-b487-4345-b4f8-57755af61c9d'),(136,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-01-23 14:09:52','2023-06-16 11:12:50',NULL,NULL,'c371c6bb-f23f-4a51-9145-1ae140d25de5'),(137,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-01-24 09:29:11','2023-06-16 13:25:06',NULL,NULL,'e60753fe-b850-46cb-99ff-fba79c92d0e4'),(138,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 09:46:57','2023-01-24 09:46:57',NULL,NULL,'3522e518-4edc-4ff7-8598-bd52fe90b9f0'),(139,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 09:48:13','2023-01-24 09:48:13',NULL,NULL,'f6972a01-7b1e-421b-af81-c228478f1fd3'),(140,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 09:48:58','2023-01-24 09:48:58',NULL,NULL,'b7e7c051-2e06-4a88-a5a1-6dbff4e98799'),(141,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 09:57:57','2023-01-24 09:57:57',NULL,NULL,'6665c2b9-0b3e-4cd7-98ec-1bee7bca559b'),(142,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:04:57','2023-01-24 10:04:57',NULL,NULL,'2db6dbc2-69c3-4140-bfc3-79c3a4b2f6ff'),(143,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:10:52','2023-01-24 10:10:52',NULL,NULL,'f9d19e87-8f68-4837-9079-de87f1695236'),(144,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:11:17','2023-01-24 10:11:17',NULL,NULL,'abf8b388-845a-4b00-b4e0-c36be00ee5c5'),(145,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:13:37','2023-01-24 10:13:37',NULL,NULL,'8cc3bee4-c25b-4c27-94e2-a7dc343e7c5c'),(146,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:16:21','2023-01-24 10:16:21',NULL,NULL,'6232664e-590e-4432-a2f3-eed4759f924d'),(147,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:28:00','2023-01-24 10:28:00',NULL,NULL,'094135d5-fcd2-452e-99ce-5bf21f9e6856'),(148,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:31:09','2023-01-24 10:31:09',NULL,NULL,'537feda4-6b0f-4b47-a175-dd44998bcf7c'),(149,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:33:10','2023-01-24 10:33:10',NULL,NULL,'3acddcb7-23a1-454e-8115-40903c0c3252'),(150,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:35:19','2023-01-24 10:35:19',NULL,NULL,'19182d5b-5172-4d3f-bfa3-35197024af37'),(151,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:36:29','2023-01-24 10:36:29',NULL,NULL,'45540e91-0e56-4c1f-a83b-e5c05958811e'),(152,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:43:14','2023-01-24 10:43:14',NULL,NULL,'d8e7c4c3-2b0e-456e-b93a-1a4d2f269429'),(153,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:45:16','2023-01-24 10:45:16',NULL,NULL,'536ccdb6-eda2-47db-b2d4-bdb0ad6413a7'),(154,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:46:02','2023-01-24 10:46:02',NULL,NULL,'893a52ce-f34f-47c8-9fe1-1eabb7921a3d'),(155,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:46:39','2023-01-24 10:46:39',NULL,NULL,'ef76db47-f967-4e6c-b925-36fcd1306d82'),(156,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-01-24 10:47:04','2023-01-24 10:47:04',NULL,NULL,'2bddf997-1e4d-4bbc-9a98-6b67e90155e3'),(157,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-01-24 10:58:30','2023-06-16 13:25:06',NULL,NULL,'d026e90e-972c-400f-826b-45be0ba35bab'),(160,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-01-25 10:33:28','2023-06-19 11:10:17',NULL,NULL,'d2e57a83-88ec-4c82-b3fa-8ebd36f7678b'),(165,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-04-12 07:40:33','2023-04-12 07:49:20',NULL,NULL,'37817e94-245d-4239-9add-0f526c9c957c'),(166,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-04-12 07:43:19','2023-04-12 07:49:20',NULL,NULL,'aa7eeeb3-1c0a-4399-b067-9d4a47fbc452'),(167,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-04-12 07:43:48','2023-04-12 07:49:20',NULL,NULL,'8227f076-0ee9-4d39-96c0-826cbcd9f99b'),(168,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-04-12 07:43:48','2023-04-12 07:49:20',NULL,NULL,'3a1f9b40-453a-40fa-9cb0-a4f52ee1bc12'),(169,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-15 07:52:15','2023-06-15 07:55:53',NULL,NULL,'c1716429-001f-421b-b665-81b2eb4f428b'),(170,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-15 07:55:29','2023-06-15 07:55:53',NULL,NULL,'ebd1e6eb-d316-48b4-af25-2fe9c388551b'),(171,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-15 07:55:29','2023-06-15 07:55:53',NULL,NULL,'8a3029ec-9203-4b89-bd51-8d6c37f37689'),(172,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-15 08:58:42','2023-06-15 08:58:57',NULL,NULL,'ab122050-c58d-427b-9d6a-11ab11dba0a1'),(173,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-15 08:58:42','2023-06-15 08:58:57',NULL,NULL,'0da30a03-7a6e-4342-9c29-da6b18b736ff'),(174,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-15 08:59:08','2023-06-16 10:26:17',NULL,NULL,'c4d16ec0-f807-4092-aca1-411118b355eb'),(175,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-15 09:00:02','2023-06-16 10:26:17',NULL,NULL,'8e9c1a36-f23e-4105-9cc8-41c665048797'),(180,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 10:21:57','2023-06-16 10:26:17',NULL,NULL,'0155091c-b834-41f4-ad39-44e5d56f7124'),(181,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 10:21:58','2023-06-16 10:26:17',NULL,NULL,'94fa8fca-da09-4c93-a671-d3bda91d6107'),(182,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-16 10:29:12','2023-06-16 10:45:02',NULL,NULL,'e3fa3cea-41ad-4ec6-a9f2-396071ed2d01'),(183,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 10:31:28','2023-06-16 10:45:02',NULL,NULL,'633df4c7-714c-4395-a552-980a8f7ab541'),(188,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 10:44:48','2023-06-16 10:45:02',NULL,NULL,'3018553b-4f10-42e1-9b95-5d0deefc08d9'),(189,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 10:44:48','2023-06-16 10:45:02',NULL,NULL,'8a70bcd7-e356-464b-a758-63b398933253'),(190,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-16 11:10:08','2023-06-20 08:16:29',NULL,NULL,'d5008ecb-fc12-4a41-8237-75d15efb1036'),(193,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 11:12:31','2023-06-16 11:12:50',NULL,NULL,'227f1fe6-9d57-4b14-b22a-16b51f6122e9'),(194,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 11:12:31','2023-06-16 11:12:50',NULL,NULL,'6908e878-b82a-424a-bef1-ba320031c216'),(195,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-16 11:13:31','2023-06-16 11:13:59',NULL,NULL,'1a8b4192-9af8-4278-a96b-7ebe22fb918e'),(196,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 11:13:41','2023-06-16 11:13:59',NULL,NULL,'993e2083-4883-41c9-8de9-aa4c88b2dde8'),(197,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 11:13:41','2023-06-16 11:13:59',NULL,NULL,'77572f5c-411d-475c-bbc2-8dd0548cc16f'),(198,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-16 11:19:30','2023-06-21 08:32:54',NULL,NULL,'0e14f6b8-7204-4cc7-b6ea-4e720225e5ee'),(201,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-16 13:21:07','2023-06-16 13:21:29',NULL,NULL,'591767fa-c033-4cc3-a5a5-b1b388614fe4'),(202,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 13:21:58','2023-06-16 13:25:06',NULL,NULL,'c948382f-5642-49e9-b957-fb1221552b52'),(203,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-16 13:21:58','2023-06-16 13:25:06',NULL,NULL,'70999bcd-b8bf-4c09-bb56-59f85fab6b2f'),(204,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 10:50:31','2023-06-19 11:10:17',NULL,NULL,'343799ca-a817-424c-8d8c-3faaddb80b16'),(205,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 10:50:31','2023-06-19 11:10:17',NULL,NULL,'98e597a2-5697-48a0-8d29-a7cfc5c976fe'),(206,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 11:12:46','2023-06-19 11:16:26',NULL,NULL,'333197f6-985e-4b2f-8739-28f511a9a55b'),(207,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:13:05','2023-06-19 11:16:26',NULL,NULL,'c878bd4e-7d28-4adb-bdd7-ef853709aace'),(208,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:13:05','2023-06-19 11:16:26',NULL,NULL,'29f87b6d-ec65-4dd5-8ed5-fff73d338961'),(209,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 11:19:52','2023-06-19 11:26:33',NULL,NULL,'d3c6c7c4-4dba-41f8-8dfd-f4a5d6f2ede5'),(210,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:20:03','2023-06-19 11:26:33',NULL,NULL,'f1812663-0fdf-45b9-bad8-24274f7a9e0c'),(211,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:20:03','2023-06-19 11:26:33',NULL,NULL,'7b0b6127-1f80-4c33-8841-f15b09e45bb7'),(212,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 11:21:48','2023-06-19 11:26:55',NULL,NULL,'060aadf6-62e8-417b-82e7-d18bb608f23a'),(213,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:22:00','2023-06-19 11:26:55',NULL,NULL,'e32cce35-e315-4d79-8448-48d924b073ee'),(214,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:22:07','2023-06-19 11:26:55',NULL,NULL,'82ab1be0-ff4e-46e4-95e5-70ed70599a92'),(215,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:22:07','2023-06-19 11:26:55',NULL,NULL,'be6626d9-18af-49f7-ad06-232a7d63328e'),(216,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 11:27:45','2023-06-19 11:28:34',NULL,NULL,'d2b9ed59-b978-4036-aa9f-5d598d028f54'),(217,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:27:59','2023-06-19 11:28:34',NULL,NULL,'f962a453-65f2-48a8-9b47-64f290da56ec'),(218,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:27:59','2023-06-19 11:28:34',NULL,NULL,'50686e78-693c-4c99-bdf1-020efd150f1e'),(219,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 11:39:12','2023-06-19 11:40:34',NULL,NULL,'fa51bdad-181b-4405-b083-1334ca8d7774'),(220,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:39:38','2023-06-19 11:40:34',NULL,NULL,'7af3e557-57f3-487e-b7f6-3f5b9e89e51c'),(221,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 11:39:38','2023-06-19 11:40:34',NULL,NULL,'e1996278-2df0-4a3f-9122-60b0fcdb7f4c'),(222,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:01:17','2023-06-19 12:02:31',NULL,NULL,'0f26fa32-d911-4fa0-9c66-7a9bf7aefc3d'),(223,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:01:27','2023-06-19 12:02:31',NULL,NULL,'453315cb-b4db-47e0-b608-1df170958bac'),(224,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:01:27','2023-06-19 12:02:31',NULL,NULL,'c113776b-bc59-4878-9b74-3cf195b49580'),(225,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:04:01','2023-06-19 12:04:23',NULL,NULL,'69c2b0f9-08c2-4a6b-a303-c52071647f9c'),(226,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:04:12','2023-06-19 12:04:23',NULL,NULL,'e3d666cc-8b2b-45e7-a336-6214572277c4'),(227,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:04:12','2023-06-19 12:04:23',NULL,NULL,'ac240986-4f78-4413-bb0f-3fb0cf3ee23d'),(228,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:12:19','2023-06-19 12:15:21',NULL,NULL,'6f4730c5-22e3-4c98-beb4-c996ef7167fa'),(229,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:12:30','2023-06-19 12:15:21',NULL,NULL,'2e8bb04e-05b3-4b7f-b6cc-3a88156031b1'),(230,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:12:30','2023-06-19 12:15:21',NULL,NULL,'f4cce5fc-a563-414a-be09-bc109140b0ba'),(231,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:14:08','2023-06-19 12:16:18',NULL,NULL,'5cef9941-9408-49c7-a251-ad6d468b374c'),(232,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:14:22','2023-06-19 12:16:18',NULL,NULL,'78388788-7da0-4000-a4ce-26d87f924bc2'),(233,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:14:22','2023-06-19 12:16:18',NULL,NULL,'d0d9058a-da83-4584-8306-2b8c03cd4bd8'),(234,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:17:02','2023-06-19 12:19:01',NULL,NULL,'802c3b4c-b9df-448f-8286-e29aa30151e5'),(235,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:17:11','2023-06-19 12:19:01',NULL,NULL,'a64cfabf-cf1f-4e13-a093-3321aac762ef'),(236,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:17:11','2023-06-19 12:19:01',NULL,NULL,'d0ef2492-1740-47ba-b7fa-5d85f7d2546c'),(237,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:19:44','2023-06-19 12:21:40',NULL,NULL,'64ddf8ad-ba08-457a-9aa1-7283c567b035'),(238,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:19:54','2023-06-19 12:21:40',NULL,NULL,'010bcc27-090e-4d10-8fd9-6df6004bc007'),(239,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:19:54','2023-06-19 12:21:40',NULL,NULL,'87b02030-1207-4c93-a66f-b322925dc040'),(240,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 12:22:15','2023-06-19 12:23:25',NULL,NULL,'10c213cb-0070-47b9-909a-8394bb195f28'),(241,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:22:23','2023-06-19 12:23:25',NULL,NULL,'42f15bf3-8ed8-4c95-aae3-090f0506ed90'),(242,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 12:22:23','2023-06-19 12:23:25',NULL,NULL,'e24cce3b-a6e3-4c06-af2f-5a7830cc77d0'),(243,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 16:24:56','2023-06-20 07:45:13',NULL,NULL,'70c4839f-43e8-4593-81eb-ea599daf84d7'),(244,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:11:09','2023-06-20 07:45:13',NULL,NULL,'d126f179-4a1e-49ca-8e23-507d1c2f0b9a'),(245,NULL,NULL,NULL,NULL,'craft\\elements\\User',1,0,'2023-06-19 21:11:19','2023-06-19 21:36:53',NULL,NULL,'c1e5bef4-f9ee-4ea6-97ec-6949a6e2e1ce'),(246,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:12:18','2023-06-20 07:45:13',NULL,NULL,'66a37bf9-ebad-4819-95d3-60e5c043b755'),(247,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:12:19','2023-06-20 07:45:13',NULL,NULL,'bc027909-3f3d-4973-995f-1a3164104538'),(248,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:24:42','2023-06-19 21:24:42',NULL,NULL,'5caea1d2-90a6-4fdf-b1c1-97d22553b183'),(249,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:24:57','2023-06-19 21:25:52',NULL,NULL,'d542490a-48fd-40df-a1af-ac4ca1dff2de'),(250,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-06-19 21:26:25','2023-06-19 21:26:25',NULL,NULL,'e662d03a-bfdf-4643-9c6f-6c3ce9ccb89b'),(251,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:27:41','2023-06-19 21:27:41',NULL,NULL,'a920403b-8778-43a3-8b5f-668477ef5d00'),(252,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:29:15','2023-06-19 21:29:15',NULL,NULL,'b1c62ab5-1869-43a7-b99e-61650b563b46'),(253,NULL,2,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:29:24','2023-06-19 21:29:24',NULL,NULL,'2fe40872-cd5e-4afa-9e28-9bfcb2bee201'),(254,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:32:41','2023-06-19 21:35:07',NULL,NULL,'9f9c4168-c8da-4511-aa2c-4a3b3d885cea'),(255,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:34:00','2023-06-19 21:35:07',NULL,NULL,'ed3f4f34-e830-49bc-8aa6-373e66d7dce4'),(256,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:34:00','2023-06-19 21:35:07',NULL,NULL,'cdf723a0-e5d3-4edf-9fb2-f472679705f6'),(257,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:35:22','2023-06-19 21:47:15',NULL,NULL,'c26bc847-2d3e-40fa-8251-ac4fa206912e'),(258,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:35:29','2023-06-19 21:47:15',NULL,NULL,'be981402-24fe-43e2-83dc-8aeb92948ca2'),(259,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:37:49','2023-06-19 21:47:15',NULL,NULL,'bc7edca7-37e0-4ee4-8d05-1a98901fa53f'),(261,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:46:17','2023-06-19 21:47:15',NULL,NULL,'7d10108a-1afd-425c-9bb7-bc1c6c4e162b'),(262,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-19 21:47:25','2023-06-19 21:49:07',NULL,NULL,'b39bc3d6-e4f2-422e-8474-9dcbf5757c43'),(263,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:48:24','2023-06-19 21:49:07',NULL,NULL,'852620b8-3927-4dd3-a169-dffb2ee1a255'),(264,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-19 21:48:24','2023-06-19 21:49:07',NULL,NULL,'b8488e19-accb-4d54-87fb-b4c318f8a6ea'),(265,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 02:46:26','2023-06-20 02:50:02',NULL,NULL,'4ba503ce-e267-491d-bcd4-912bda80c9d2'),(266,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 02:47:25','2023-06-20 02:50:02',NULL,NULL,'79f40aab-04ea-432f-aa59-f128e6cd86b7'),(267,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 02:47:25','2023-06-20 02:50:02',NULL,NULL,'58e34c5a-e023-4e30-9440-89c10a807306'),(268,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 02:50:35','2023-06-20 15:45:21',NULL,NULL,'877b4294-79d6-4bd2-bf8e-b1d293f845fd'),(269,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 02:50:51','2023-06-20 15:45:21',NULL,NULL,'08bc1e6c-8121-4241-9ac3-f2ea473dd848'),(270,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 02:51:39','2023-06-20 15:45:21',NULL,NULL,'daef9910-1e12-4562-959f-4601abeef246'),(271,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 02:51:39','2023-06-20 15:45:21',NULL,NULL,'7fa3f833-0320-466f-8e15-96b93aa9e727'),(272,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 07:45:23','2023-07-05 09:50:28',NULL,NULL,'4e159c30-99cf-417f-99c9-0dc7489e09e7'),(273,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 07:45:37','2023-06-20 08:10:19',NULL,NULL,'f49a04dd-b2a7-4a22-ab86-a8484e63ef90'),(274,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:46:08','2023-06-20 08:10:19',NULL,NULL,'f55ba047-fd7f-4728-9573-c0b93af75e1b'),(275,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:46:08','2023-06-20 08:10:19',NULL,NULL,'944d40bb-349a-48a7-aeac-a92468f97129'),(276,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 07:49:40','2023-06-20 07:52:47',NULL,NULL,'441c9258-80bf-4d8c-ae62-846024e8a24a'),(277,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:50:51','2023-06-20 07:52:47',NULL,NULL,'4d65fd49-0581-49bb-ae39-50520237c211'),(278,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:52:42','2023-06-20 07:52:47',NULL,NULL,'2f9f37e6-fa49-45de-a795-04b8a40f42f2'),(279,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 07:56:49','2023-06-20 08:02:48',NULL,NULL,'a9800100-9f15-4fd4-8862-8852b9074781'),(280,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:57:04','2023-06-20 08:02:48',NULL,NULL,'63ad0100-8a29-47b6-af3b-2390cd3a2801'),(281,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 07:57:07','2023-06-20 08:02:48',NULL,NULL,'a47f16fb-bd0d-4b0a-b9bd-de2226b3fd47'),(282,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 08:03:49','2023-06-20 08:15:14',NULL,NULL,'82e9a6c6-546b-435c-a218-7e3051a4c5e8'),(283,NULL,3,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 08:04:06','2023-06-20 08:04:06',NULL,NULL,'6ecae570-14b3-493f-97a6-03ec4bc8a4f6'),(286,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 08:05:15','2023-06-20 08:15:14',NULL,NULL,'68b24d8b-5336-41f2-8ed3-f3fca7782a67'),(287,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 08:06:07','2023-06-20 08:15:14',NULL,NULL,'e4b3864f-bd2a-41b0-94aa-861e5864977e'),(288,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 08:16:09','2023-06-20 08:16:29',NULL,NULL,'5e2703b9-9b91-4e7f-a3b8-ad3e8ea009cc'),(289,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 08:16:09','2023-06-20 08:16:29',NULL,NULL,'c8b3568d-003e-4448-bb97-fed6f04fb784'),(290,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 08:17:23','2023-06-21 08:31:06',NULL,NULL,'7d8897ea-24cd-487f-8114-11f14ed61643'),(293,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 15:55:01','2023-06-20 15:56:15',NULL,NULL,'e2d5b4b1-60b5-4984-8461-fd75d9e1564d'),(294,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 15:56:06','2023-06-20 15:56:15',NULL,NULL,'2da51da8-5412-4409-a63a-782609a36082'),(295,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 15:56:57','2023-06-20 16:01:16',NULL,NULL,'79feed6b-01d3-4549-b871-bf66d7b1831b'),(296,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 15:59:31','2023-06-20 16:01:16',NULL,NULL,'320d0efb-f6d6-4598-b515-f68612b97cee'),(297,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 15:59:31','2023-06-20 16:01:16',NULL,NULL,'0d459531-0059-4144-bd42-a31605f8d6cf'),(298,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 16:07:59','2023-06-20 16:17:43',NULL,NULL,'2c84818a-a8a8-44d4-a749-ad83ccaf329e'),(299,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 16:08:07','2023-06-20 16:17:43',NULL,NULL,'2d182117-875b-47b7-af50-d3dd00f4ef18'),(300,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 16:10:26','2023-06-20 16:17:43',NULL,NULL,'acd27a62-c157-4208-92a6-993c2354f64c'),(301,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 16:10:26','2023-06-20 16:17:43',NULL,NULL,'d74289e8-c56a-4409-8d75-67e83cdd2ed7'),(302,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 16:18:30','2023-06-20 16:25:29',NULL,NULL,'8db5a638-e0b1-4f3a-906c-e12a673a1c26'),(303,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 16:19:12','2023-06-20 16:25:29',NULL,NULL,'12956bff-8910-4714-986c-9b6bf5805cae'),(304,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-20 16:19:12','2023-06-20 16:25:29',NULL,NULL,'8c859428-b5d0-492e-b465-de6668900c9a'),(305,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-20 16:27:55','2023-06-20 16:30:20',NULL,NULL,'a6d733fa-7e74-4a04-bfe3-86dcdaa41c29'),(306,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 07:37:24','2023-06-21 08:31:06',NULL,NULL,'d50e1d10-4333-48a0-988a-71d006fba9c4'),(307,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 07:37:24','2023-06-21 08:31:06',NULL,NULL,'32e5dd45-8ee9-42fb-85d9-331143658c7d'),(308,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 08:24:22','2023-06-21 08:32:54',NULL,NULL,'febc9659-b8da-4275-869f-a6ce70bb32cd'),(309,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 08:24:22','2023-06-21 08:32:54',NULL,NULL,'73bc5267-eefb-4724-a17a-112360fdd870'),(310,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-21 22:08:27','2023-06-22 00:12:20',NULL,NULL,'1ec0d5ce-9a9d-4f3a-9cbc-7d7453a7c0f4'),(311,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 22:10:13','2023-06-22 00:12:20',NULL,NULL,'35ee753a-77c0-4e5a-bb82-61e7731db779'),(312,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-21 22:10:13','2023-06-22 00:12:20',NULL,NULL,'0e619c9c-de29-4f28-8488-e53bd5cd6ecc'),(313,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-22 00:13:28','2023-06-22 00:19:57',NULL,NULL,'0687f3a4-18b2-4562-a8c1-b8df880d511a'),(314,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 00:19:13','2023-06-22 00:19:57',NULL,NULL,'da387070-db05-44c7-bd99-7836a5469865'),(315,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-22 00:42:50','2023-06-22 00:45:18',NULL,NULL,'7e544094-3963-44b6-97be-23d390b89c9c'),(316,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 00:42:58','2023-06-22 00:45:18',NULL,NULL,'39597813-4536-4cc2-8ba5-22b57fd33426'),(317,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 08:30:46','2023-07-05 09:50:28',NULL,NULL,'bc0e275f-aecc-42b9-9f84-a3b5d383f3e7'),(318,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 08:30:58','2023-07-05 09:50:28',NULL,NULL,'a1c5fed0-fbe4-4419-817b-6e7c28c36096'),(319,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 08:30:58','2023-07-05 09:50:28',NULL,NULL,'f0eeb85d-ffa9-45f0-9c6f-c6f73ed8ed85'),(320,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-22 14:40:30','2023-06-22 14:47:05',NULL,NULL,'0e7ba22f-b26a-41ab-b403-79dc91c8d502'),(321,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 14:40:38','2023-06-22 14:47:05',NULL,NULL,'ae963a21-ea75-4d85-9b5b-40710a884178'),(322,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 14:46:15','2023-06-22 17:09:56',NULL,NULL,'066da5e1-c839-4a18-a26e-caa42e2a4c4e'),(323,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 14:46:15','2023-06-22 17:09:56',NULL,NULL,'cb909ec4-4dd7-4afb-8a61-ae1f320f7f3b'),(324,NULL,NULL,NULL,2,'craft\\commerce\\elements\\Order',1,0,'2023-06-22 17:13:14','2023-06-22 17:16:19',NULL,NULL,'727c18ba-f6fe-43cf-91bb-a69d641f4107'),(325,NULL,NULL,NULL,NULL,'craft\\elements\\Address',1,0,'2023-06-22 17:13:21','2023-06-22 17:16:19',NULL,NULL,'6ace75c2-156b-4558-bf60-bee28cd60adc'),(326,9,NULL,9,4,'craft\\elements\\Entry',1,0,'2023-07-03 06:53:45','2023-07-03 06:53:45',NULL,NULL,'42c144c1-a7e9-4353-b5d8-b9cba95fd2b4'),(327,9,12,NULL,4,'craft\\elements\\Entry',1,0,'2023-07-03 06:55:29','2023-07-03 08:03:09',NULL,NULL,'63a42d7e-f977-48e1-85d0-de883dc0944b'),(328,NULL,13,NULL,7,'craft\\elements\\Entry',1,0,'2023-07-03 07:32:34','2023-07-03 07:32:34',NULL,NULL,'297aeecc-b616-49f3-b5d5-0006de8f4f3f'),(329,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-07-03 07:33:33','2023-07-03 07:33:33',NULL,NULL,'93a3a077-6e4f-47ac-9b42-3f0f1bf1dd10'),(330,NULL,14,NULL,7,'craft\\elements\\Entry',1,0,'2023-07-03 07:33:33','2023-07-03 07:33:33',NULL,NULL,'c9b92769-9d4a-4fe2-90ce-e5c37234ab05'),(331,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-07-05 09:31:53','2023-07-05 09:31:53',NULL,NULL,'65fcea7c-27a9-4712-b54e-fcc0f4850f55'),(332,NULL,NULL,NULL,6,'craft\\elements\\Asset',1,0,'2023-07-05 10:29:18','2023-07-05 10:29:18',NULL,NULL,'baba53fa-2262-4007-bc36-e0b2516ba067'); /*!40000 ALTER TABLE `elements` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `elements_sites` -- LOCK TABLES `elements_sites` WRITE; /*!40000 ALTER TABLE `elements_sites` DISABLE KEYS */; set autocommit=0; INSERT INTO `elements_sites` VALUES (1,1,1,NULL,NULL,1,'2022-05-20 18:56:06','2022-05-20 18:56:06','90ac42c4-c6f3-4fca-9d27-902693f3f09b'),(2,2,1,NULL,NULL,1,'2022-10-12 14:54:36','2022-10-12 14:54:36','35c9b7a0-4f83-4a17-a64b-ec3373105684'),(3,3,1,NULL,NULL,1,'2022-10-12 14:54:49','2022-10-12 14:54:49','8abccd81-1a79-404e-b3da-f69e2066b49f'),(4,4,1,NULL,NULL,1,'2022-10-12 15:25:43','2022-10-12 15:25:43','e1b3ae90-5454-4e72-806c-9ba3d32952bb'),(5,5,1,NULL,NULL,1,'2022-10-12 18:29:04','2022-10-12 18:29:04','b7dc8dd5-db15-42ac-aaaa-594e9f904886'),(6,6,1,NULL,NULL,1,'2022-10-12 18:29:12','2022-10-12 18:29:12','c93757e9-0407-47ad-a5a7-642ba3814877'),(7,7,1,'product-01','shop/product-01',1,'2022-10-12 19:03:29','2022-10-12 19:19:57','edfb64dc-52ad-4dad-9d45-5eb6135ef4d5'),(8,8,1,NULL,NULL,1,'2022-10-12 19:03:29','2022-10-12 19:03:29','6892f11a-196a-402a-855e-b686849ad8cf'),(9,9,1,'home','__home__',1,'2022-10-12 19:14:23','2022-10-12 19:14:23','bc0408a2-74f1-472b-9bb7-6df5fb2d2a4f'),(10,10,1,'home','__home__',1,'2022-10-12 19:14:23','2022-10-12 19:14:23','4146b5a6-3af9-46dd-b42b-a67a095e028b'),(11,11,1,'home','__home__',1,'2022-10-12 19:14:23','2022-10-12 19:14:23','e29058bf-f8c0-4cd5-b78a-0fac3ccf0f94'),(12,12,1,'shop','shop',1,'2022-10-12 19:20:28','2022-10-12 19:20:28','59129d9e-e376-4e23-a6d3-e5f825dfd57e'),(13,13,1,'shop','shop',1,'2022-10-12 19:20:28','2022-10-12 19:20:28','879b095f-4b83-47c9-bcb6-6258ead8f4b3'),(14,14,1,'shop','shop',1,'2022-10-12 19:20:28','2022-10-12 19:20:28','cc7a07f2-f746-42f7-9800-08b7cd668b60'),(15,15,1,'shop','shop',1,'2022-10-12 19:21:04','2022-10-12 19:21:04','785e1d90-af9d-4e89-8aaf-ec94365fe603'),(16,16,1,'shop','shop',1,'2022-10-12 19:21:04','2022-10-12 19:21:04','bc0f79bf-5f93-4306-94fb-628be26c78ed'),(17,17,1,'shop','shop',1,'2022-10-12 19:21:20','2022-10-12 19:21:20','c30baadf-4fea-4b64-9b55-228d8befa88c'),(18,18,1,'shop','shop',1,'2022-10-12 19:21:48','2022-10-12 19:21:48','165ecfc9-0e33-467a-801a-c04a8c7f367c'),(19,19,1,'product-02','shop/product-02',1,'2022-10-12 19:41:00','2022-10-12 19:41:00','f544ef9d-d8af-42e5-81c9-315db535340d'),(20,20,1,NULL,NULL,1,'2022-10-12 19:41:00','2022-10-12 19:41:00','361bc755-c593-4132-8518-5074cec11fa6'),(21,21,1,'product-03','shop/product-03',1,'2022-10-12 19:41:15','2022-10-12 19:41:15','90cbd776-f13e-4e52-b3ce-ef6bb4b45618'),(22,22,1,NULL,NULL,1,'2022-10-12 19:41:15','2022-10-12 19:41:15','5e9298c8-56b1-4509-a8fc-fdf215cf9c05'),(26,26,1,NULL,NULL,1,'2022-10-17 14:29:14','2022-10-17 14:29:14','eb314490-34d3-429d-9205-7f5e46331603'),(27,27,1,NULL,NULL,1,'2022-10-17 14:33:13','2022-10-17 14:33:13','96ce562c-2c6d-4c82-8098-4f78466b42be'),(30,30,1,NULL,NULL,1,'2022-10-28 10:34:57','2022-10-28 10:34:57','5ea4570f-7447-4507-b447-8abae8e7f5fd'),(31,31,1,NULL,NULL,1,'2022-10-28 11:16:09','2022-10-28 11:16:09','d13c2e97-5061-484e-9a78-9e1bb1686704'),(33,33,1,NULL,NULL,1,'2022-10-28 11:19:54','2022-10-28 11:19:54','6b8d7711-a4ab-4411-bfa2-926861bc338c'),(34,34,1,NULL,NULL,1,'2022-10-28 11:19:54','2022-10-28 11:19:54','85ba6bb6-1cc9-4190-accf-aac5bf02b0b6'),(35,35,1,NULL,NULL,1,'2022-10-28 11:54:11','2022-10-28 11:54:11','2170d1c4-b062-4a49-b786-d293dcafe338'),(36,36,1,NULL,NULL,1,'2022-10-28 11:54:55','2022-10-28 11:54:55','b559652e-5c1c-4ce3-954a-033f9ca40924'),(37,37,1,NULL,NULL,1,'2022-10-28 11:54:55','2022-10-28 11:54:55','93530cdf-ae9f-481e-b898-d445a8c05ade'),(38,38,1,NULL,NULL,1,'2022-10-28 11:55:40','2022-10-28 11:55:40','3ca9fc27-408e-4c6b-8e73-7a7b6033f213'),(39,39,1,NULL,NULL,1,'2022-10-28 11:56:29','2022-10-28 11:56:29','32e5904e-a62a-4f99-8118-47c30087dfe0'),(40,40,1,NULL,NULL,1,'2022-10-28 11:56:29','2022-10-28 11:56:29','9339e5b8-2f5f-44bb-a36a-d25a17bc46e1'),(41,41,1,NULL,NULL,1,'2022-10-28 12:06:10','2022-10-28 12:06:10','d2b396a0-97e8-4329-897e-7eb122da9a14'),(42,42,1,NULL,NULL,1,'2022-10-28 12:06:47','2022-10-28 12:06:47','04c94ac5-1cf6-4c0c-9a42-1ccc0b520296'),(43,43,1,NULL,NULL,1,'2022-10-28 12:06:47','2022-10-28 12:06:47','3c1d8719-2666-4114-8a13-6c6bcf011cea'),(44,44,1,NULL,NULL,1,'2022-10-28 12:07:49','2022-10-28 12:07:49','3788aff2-bb96-47f0-9700-cb886bfdd65e'),(45,45,1,NULL,NULL,1,'2022-10-28 12:07:55','2022-10-28 12:07:55','bdb55a28-b4fc-4378-bb6b-dc4e12705526'),(46,46,1,NULL,NULL,1,'2022-10-28 12:08:30','2022-10-28 12:08:30','1717842f-cf5f-49f7-a91f-6d959b0aae1d'),(48,48,1,NULL,NULL,1,'2022-10-31 12:45:39','2022-10-31 12:45:39','722342d1-628c-427d-a953-75ca20be3972'),(49,49,1,NULL,NULL,1,'2022-10-31 12:46:21','2022-10-31 12:46:21','e01908a8-28fb-43d4-976f-ed73a649832a'),(50,50,1,NULL,NULL,1,'2022-10-31 12:46:32','2022-10-31 12:46:32','750ed9b8-f452-4d36-9373-9204fc42f701'),(51,51,1,NULL,NULL,1,'2022-10-31 12:46:32','2022-10-31 12:46:32','da1ba1e2-1a73-4982-8d2e-9cfa9ba02473'),(52,52,1,NULL,NULL,1,'2022-10-31 13:12:29','2022-10-31 13:12:29','2cf1d62e-d4fa-4060-8c6c-c0cd3405fc72'),(53,53,1,NULL,NULL,1,'2022-10-31 13:12:57','2022-10-31 13:12:57','58ed0e07-f923-4e71-b4e7-0e4999c4af82'),(54,54,1,NULL,NULL,1,'2022-10-31 13:12:57','2022-10-31 13:12:57','d38b1101-bee3-4056-ab02-0e66bd5d14b7'),(55,55,1,NULL,NULL,1,'2022-11-09 13:39:29','2022-11-09 13:39:29','e2227392-666b-4a31-9cc3-5581348df653'),(58,58,1,NULL,NULL,1,'2022-11-09 13:56:12','2022-11-09 13:56:12','bdf43efe-dc8d-40c1-bd9d-fe914d234e4d'),(59,59,1,NULL,NULL,1,'2022-11-09 13:56:12','2022-11-09 13:56:12','bef9dfd1-4d14-4450-8660-71dd27a2fb3c'),(60,60,1,NULL,NULL,1,'2022-11-09 14:12:01','2022-11-09 14:12:01','b0126af3-c9cf-4d9c-9bce-f941a3813393'),(61,61,1,NULL,NULL,1,'2022-11-09 14:14:00','2022-11-09 14:14:00','dc5fa75a-d27a-4f6d-82c3-9b5e079d2458'),(62,62,1,NULL,NULL,1,'2022-11-10 08:32:53','2022-11-10 08:32:53','42aa1e25-0994-41b2-a663-1a5c02d51dfd'),(63,63,1,NULL,NULL,1,'2022-11-10 08:33:05','2022-11-10 08:33:05','4c75a7e6-9cef-4f7d-8008-8649d1e8388c'),(64,64,1,NULL,NULL,1,'2022-11-10 08:34:06','2022-11-10 08:34:06','996cbf25-ec62-4ffe-9610-0d824ae44c02'),(65,65,1,NULL,NULL,1,'2022-11-10 08:34:38','2022-11-10 08:34:38','71ecfc68-d3b1-4cb8-ae38-2290e71091fe'),(66,66,1,NULL,NULL,1,'2022-11-10 08:35:00','2022-11-10 08:35:00','08debd22-5699-4680-8947-867101f4379e'),(67,67,1,NULL,NULL,1,'2022-11-10 08:36:32','2022-11-10 08:36:32','6a845046-3e19-4ce3-8ecb-ba330d28b3bc'),(68,68,1,NULL,NULL,1,'2022-11-10 08:36:32','2022-11-10 08:36:32','c8367bfa-af1b-4a8b-b35d-ec86f4840f45'),(69,69,1,NULL,NULL,1,'2022-11-10 12:19:01','2022-11-10 12:19:01','3797f4b7-0fe0-450e-a693-a85cf4225804'),(70,70,1,NULL,NULL,1,'2022-11-10 12:19:01','2022-11-10 12:19:01','b976c604-f68c-4dd0-a374-ac4f82068b43'),(71,71,1,NULL,NULL,1,'2022-11-10 13:35:35','2022-11-10 13:35:35','7abd187a-d544-49cb-bd35-ffdc28e16d2c'),(72,72,1,NULL,NULL,1,'2022-11-10 13:35:40','2022-11-10 13:35:40','2dde895d-2026-45a7-aa2b-95dbd4a6745f'),(73,73,1,NULL,NULL,1,'2022-11-10 13:35:46','2022-11-10 13:35:46','73e3b5ed-020b-4a18-a151-3c59f8837162'),(74,74,1,NULL,NULL,1,'2022-11-10 13:35:46','2022-11-10 13:35:46','2714f4f9-bc35-4621-ad9b-a8dfa8837fc6'),(75,75,1,NULL,NULL,1,'2022-11-11 12:02:51','2022-11-11 12:02:51','f874f55f-9a32-4bb5-bd1a-4c13658d1073'),(76,76,1,NULL,NULL,1,'2022-11-11 12:03:08','2022-11-11 12:03:08','a40f6fcf-8870-49b1-ba0b-75b58ff0b4dc'),(77,77,1,NULL,NULL,1,'2022-11-11 12:03:08','2022-11-11 12:03:08','45a4b9c2-2fab-4a54-aa21-1b7083c92307'),(78,78,1,NULL,NULL,1,'2022-11-11 12:25:22','2022-11-11 12:25:22','15e5daa9-7228-40ee-9f99-5be46c8264e6'),(79,79,1,NULL,NULL,1,'2022-11-11 12:26:29','2022-11-11 12:26:29','341be211-2cd5-4fa8-b400-febe5b6438c4'),(80,80,1,NULL,NULL,1,'2022-11-11 12:26:29','2022-11-11 12:26:29','f1deaa8a-d8ca-40df-9cf8-3d3003f11e41'),(81,81,1,NULL,NULL,1,'2022-11-11 12:47:01','2022-11-11 12:47:01','8cb202e6-f489-462d-8a66-9530e92dd219'),(82,82,1,NULL,NULL,1,'2022-11-11 12:47:16','2022-11-11 12:47:16','a2a452f7-9e37-428b-87e4-9278be41ae21'),(83,83,1,NULL,NULL,1,'2022-11-11 12:47:16','2022-11-11 12:47:16','337b9180-256f-4117-ab4a-9b5049080457'),(84,84,1,NULL,NULL,1,'2022-11-11 12:51:55','2022-11-11 12:51:55','f83d861d-9e4a-473a-aefe-a8833a6d9719'),(85,85,1,NULL,NULL,1,'2022-11-11 12:52:07','2022-11-11 12:52:07','5da31d02-9368-43d5-8c15-8fa64223817f'),(86,86,1,NULL,NULL,1,'2022-11-11 12:52:07','2022-11-11 12:52:07','e77b6e56-9108-4457-908c-dcc7a07df528'),(87,87,1,NULL,NULL,1,'2022-11-11 12:59:45','2022-11-11 12:59:45','603ee8c9-88d3-4e6f-8d74-c67a7ff04bbb'),(88,88,1,NULL,NULL,1,'2022-11-11 13:01:45','2022-11-11 13:01:45','812385b1-8dc5-4546-a46e-3a594a71c1a4'),(89,89,1,NULL,NULL,1,'2022-11-11 13:01:45','2022-11-11 13:01:45','24e52500-0ed9-4f73-a17a-0df73e3fe850'),(90,90,1,NULL,NULL,1,'2022-11-14 13:19:12','2022-11-14 13:19:12','7faacff6-0184-42b1-8b15-7981f91813fd'),(91,91,1,NULL,NULL,1,'2022-11-14 13:19:29','2022-11-14 13:19:29','232035cb-aa71-4c91-afe8-6ca65fef1106'),(92,92,1,NULL,NULL,1,'2022-11-14 13:19:29','2022-11-14 13:19:29','6f669e3f-73fe-4e49-b328-350991e48302'),(93,93,1,NULL,NULL,1,'2022-11-14 14:04:29','2022-11-14 14:04:29','d9aeb880-b737-4df6-a40a-579e44d283ef'),(94,94,1,NULL,NULL,1,'2022-11-14 14:05:02','2022-11-14 14:05:02','80a504b1-4537-451c-ad91-03ab9933bbf7'),(95,95,1,NULL,NULL,1,'2022-11-14 14:05:02','2022-11-14 14:05:02','bd1f9ec9-cbbc-44f1-ab74-49c33e812bd0'),(96,96,1,NULL,NULL,1,'2022-11-14 14:09:31','2022-11-14 14:09:31','c8c32e0c-ac82-42ad-b71e-f041ef99ec96'),(97,97,1,NULL,NULL,1,'2022-11-14 14:09:50','2022-11-14 14:09:50','912d7767-4cc6-4bf4-aa8d-7f6e6b12b1cf'),(98,98,1,NULL,NULL,1,'2022-11-14 14:09:50','2022-11-14 14:09:50','ce81699c-414a-4274-aedc-c78327c24c38'),(99,99,1,NULL,NULL,1,'2022-11-14 14:14:06','2022-11-14 14:14:06','9504e439-e242-4ca7-89ed-7e545b175b8e'),(100,100,1,NULL,NULL,1,'2022-11-14 14:14:22','2022-11-14 14:14:22','1125c2a4-95fc-4b93-b4c7-2e7253b25318'),(101,101,1,NULL,NULL,1,'2022-11-14 14:14:22','2022-11-14 14:14:22','6d0c5862-476e-4617-a203-531bbd921f56'),(102,102,1,NULL,NULL,1,'2022-11-14 14:19:50','2022-11-14 14:19:50','ca8e7347-6b86-431d-9ae1-9ea907fc6737'),(103,103,1,NULL,NULL,1,'2022-11-14 14:20:11','2022-11-14 14:20:11','0fe0b0ec-49bf-4c9e-88fd-8cc380d53c0a'),(104,104,1,NULL,NULL,1,'2022-11-14 14:20:11','2022-11-14 14:20:11','e801468e-c15c-4d91-b540-08cbe1b04c07'),(105,105,1,NULL,NULL,1,'2022-11-14 14:20:56','2022-11-14 14:20:56','83656d37-4556-4ce3-bf26-06d8d475cc6b'),(106,106,1,NULL,NULL,1,'2022-11-14 14:21:23','2022-11-14 14:21:23','dc8d0506-c551-4466-a480-43b0eab3b8a0'),(107,107,1,NULL,NULL,1,'2022-11-14 14:21:23','2022-11-14 14:21:23','6830249a-829d-4ccb-80ee-cf245f75d807'),(108,108,1,NULL,NULL,1,'2022-11-14 14:25:08','2022-11-14 14:25:08','1b9e190a-9efa-4340-a868-81ac3343f435'),(109,109,1,NULL,NULL,1,'2022-11-14 14:25:22','2022-11-14 14:25:22','75eddde3-c2b2-4a27-a188-4ffd9b5640a2'),(110,110,1,NULL,NULL,1,'2022-11-14 14:25:22','2022-11-14 14:25:22','d52bda64-09c1-4974-a845-fdd6cb998f0a'),(111,111,1,NULL,NULL,1,'2022-11-15 11:25:34','2022-11-15 11:25:34','9ca69716-3c54-4e96-9a5f-2bfba95e0f30'),(112,112,1,NULL,NULL,1,'2022-11-15 11:27:46','2022-11-15 11:27:46','75f3f980-b87b-4bf1-a414-4ccd9d7f904f'),(113,113,1,NULL,NULL,1,'2022-11-15 11:28:18','2022-11-15 11:28:18','0704da82-5e27-459b-9dd5-5c8c8f1d7a22'),(114,114,1,NULL,NULL,1,'2022-11-15 11:28:18','2022-11-15 11:28:18','81b92482-2020-4dcb-84c5-d15ae156d614'),(115,115,1,NULL,NULL,1,'2022-11-15 11:59:20','2022-11-15 11:59:20','e5526389-990c-4b46-a1d0-9bf7f4d2cb25'),(116,116,1,NULL,NULL,1,'2022-11-15 11:59:27','2022-11-15 11:59:27','5e198fef-fedf-407c-96d4-eedea0686ee3'),(117,117,1,NULL,NULL,1,'2022-11-15 11:59:27','2022-11-15 11:59:27','f40c9d57-ee9c-46a0-ad2e-43c9426b4b87'),(118,118,1,NULL,NULL,1,'2022-11-15 12:00:59','2022-11-15 12:00:59','809c13dd-a17c-421b-9019-876e11fb1dc5'),(119,119,1,NULL,NULL,1,'2022-11-15 12:01:08','2022-11-15 12:01:08','b2d0d621-1d29-43d7-889f-65d6788b7cfa'),(120,120,1,NULL,NULL,1,'2022-11-15 12:01:08','2022-11-15 12:01:08','444e55f0-b8fc-4a65-85f8-d8988b625ad5'),(121,121,1,NULL,NULL,1,'2022-11-15 13:52:30','2022-11-15 13:52:30','82c636a7-ddfc-4a2b-98d4-1c8303920f5a'),(122,122,1,NULL,NULL,1,'2022-11-15 13:52:48','2022-11-15 13:52:48','13f5d93e-bf35-45fc-8078-c10ad8a6ac9b'),(123,123,1,NULL,NULL,1,'2022-11-15 13:52:48','2022-11-15 13:52:48','cbefc7c6-ee24-4d04-922a-7196e44bc7e9'),(124,124,1,NULL,NULL,1,'2022-11-15 14:02:53','2022-11-15 14:02:53','fbd25387-4b38-4a46-96b4-c6366d54184c'),(125,125,1,NULL,NULL,1,'2022-11-15 14:03:04','2022-11-15 14:03:04','882a4df4-f212-40ea-be92-8f994bb42ea7'),(126,126,1,NULL,NULL,1,'2022-11-15 14:03:04','2022-11-15 14:03:04','19660402-f2e1-4f34-ac9f-cc2779f144a6'),(127,127,1,NULL,NULL,1,'2022-11-15 14:03:46','2022-11-15 14:03:46','6a8d117d-961a-42eb-b03d-b400b0a5cf80'),(130,130,1,NULL,NULL,1,'2023-01-23 13:29:11','2023-01-23 13:29:11','4632a61c-7327-4ca9-aff1-20f5c0327d9f'),(131,131,1,NULL,NULL,1,'2023-01-23 13:31:24','2023-01-23 13:31:24','e644f1e3-ed53-4897-bea1-8c300e0489c3'),(132,132,1,NULL,NULL,1,'2023-01-23 13:34:19','2023-01-23 13:34:19','e3021d3a-70e9-491a-b04a-e1df9b00d927'),(133,133,1,NULL,NULL,1,'2023-01-23 13:44:37','2023-01-23 13:44:37','40334704-9863-461b-b059-1b42c4c5ac16'),(134,134,1,NULL,NULL,1,'2023-01-23 14:09:02','2023-01-23 14:09:02','7def0ec1-85e7-4e93-9104-70e646d739ab'),(135,135,1,NULL,NULL,1,'2023-01-23 14:09:42','2023-01-23 14:09:42','679a5612-123c-4dad-ba8e-cebe4a95df1a'),(136,136,1,NULL,NULL,1,'2023-01-23 14:09:52','2023-01-23 14:09:52','1e0d1c7f-7f9b-420d-90af-6d3ffc627e18'),(137,137,1,NULL,NULL,1,'2023-01-24 09:29:11','2023-01-24 09:29:11','24e6303f-22fe-43ed-b339-22f7c54f2ef5'),(138,138,1,NULL,NULL,1,'2023-01-24 09:46:57','2023-01-24 09:46:57','63967384-c4af-40bd-b343-073747be432d'),(139,139,1,NULL,NULL,1,'2023-01-24 09:48:13','2023-01-24 09:48:13','f79e05d7-7266-45a8-a390-3a41104a152d'),(140,140,1,NULL,NULL,1,'2023-01-24 09:48:58','2023-01-24 09:48:58','1bcca905-32e0-4367-8f4f-20f1f157c516'),(141,141,1,NULL,NULL,1,'2023-01-24 09:57:57','2023-01-24 09:57:57','6806ea31-b3b0-4475-b95e-b3bd8e3161e4'),(142,142,1,NULL,NULL,1,'2023-01-24 10:04:57','2023-01-24 10:04:57','70c0c9cc-fc0d-4c84-88a5-7ba9f5ce8acd'),(143,143,1,NULL,NULL,1,'2023-01-24 10:10:52','2023-01-24 10:10:52','12981984-0f11-40d9-9cea-4037fde04e2e'),(144,144,1,NULL,NULL,1,'2023-01-24 10:11:17','2023-01-24 10:11:17','f665e13f-ba00-4a7b-a11d-66650c4c4edb'),(145,145,1,NULL,NULL,1,'2023-01-24 10:13:37','2023-01-24 10:13:37','1689f7b9-2408-43a1-baab-55bfc7192a21'),(146,146,1,NULL,NULL,1,'2023-01-24 10:16:21','2023-01-24 10:16:21','af288063-6cf3-41b4-9cfd-3ed027e5f536'),(147,147,1,NULL,NULL,1,'2023-01-24 10:28:00','2023-01-24 10:28:00','111f4465-4387-473f-bbde-d90f2f42500f'),(148,148,1,NULL,NULL,1,'2023-01-24 10:31:09','2023-01-24 10:31:09','53c54d11-d3dd-463d-b318-d4904d16766a'),(149,149,1,NULL,NULL,1,'2023-01-24 10:33:10','2023-01-24 10:33:10','0d90a96d-ac31-4a14-9e57-bdf17ba8f055'),(150,150,1,NULL,NULL,1,'2023-01-24 10:35:19','2023-01-24 10:35:19','4995b4e8-1287-468e-9117-059d99fa2600'),(151,151,1,NULL,NULL,1,'2023-01-24 10:36:29','2023-01-24 10:36:29','694d6a38-92c5-4d94-9f2d-93eaec46222b'),(152,152,1,NULL,NULL,1,'2023-01-24 10:43:14','2023-01-24 10:43:14','5485f306-41ad-4e0b-a0ae-eec21d49e826'),(153,153,1,NULL,NULL,1,'2023-01-24 10:45:16','2023-01-24 10:45:16','7d83c082-ac33-488c-a94a-925d00614390'),(154,154,1,NULL,NULL,1,'2023-01-24 10:46:02','2023-01-24 10:46:02','8fa0119a-2177-4f88-83e1-f86c2f98835e'),(155,155,1,NULL,NULL,1,'2023-01-24 10:46:39','2023-01-24 10:46:39','a75d6ec4-532c-44e6-a2bd-2a546e07e419'),(156,156,1,NULL,NULL,1,'2023-01-24 10:47:04','2023-01-24 10:47:04','d59b3a12-5275-4e02-b101-1b1f0c6d75ca'),(157,157,1,NULL,NULL,1,'2023-01-24 10:58:30','2023-01-24 10:58:30','459b3b7f-000f-48f8-af07-1fd70adf099c'),(160,160,1,NULL,NULL,1,'2023-01-25 10:33:28','2023-01-25 10:33:28','e9d19593-1a10-44ae-b437-3fe298cd1422'),(165,165,1,NULL,NULL,1,'2023-04-12 07:40:33','2023-04-12 07:40:33','d3052401-6205-4183-a2ce-356bc2090161'),(166,166,1,NULL,NULL,1,'2023-04-12 07:43:19','2023-04-12 07:43:19','b6abc7ce-55b7-45e0-8744-10169576225f'),(167,167,1,NULL,NULL,1,'2023-04-12 07:43:48','2023-04-12 07:43:48','d6b4ac2c-f73a-4d43-8d8e-4229969f6ce3'),(168,168,1,NULL,NULL,1,'2023-04-12 07:43:48','2023-04-12 07:43:48','42ba3bae-7355-41a2-bd6a-a5350a0af9b8'),(169,169,1,NULL,NULL,1,'2023-06-15 07:52:15','2023-06-15 07:52:15','3da696c8-6a36-4e55-8e5c-d1dc5d191458'),(170,170,1,NULL,NULL,1,'2023-06-15 07:55:29','2023-06-15 07:55:29','fca683e1-cd08-4e61-9900-44c08a70bde3'),(171,171,1,NULL,NULL,1,'2023-06-15 07:55:29','2023-06-15 07:55:29','d08e3a2d-6b43-415a-9f1e-02ca7d2947f5'),(172,172,1,NULL,NULL,1,'2023-06-15 08:58:42','2023-06-15 08:58:42','04e6fed8-c777-475e-acc6-ed023b099c42'),(173,173,1,NULL,NULL,1,'2023-06-15 08:58:42','2023-06-15 08:58:42','3b051429-68c5-4d96-aff6-c864b6485033'),(174,174,1,NULL,NULL,1,'2023-06-15 08:59:08','2023-06-15 08:59:08','137f7fb9-63da-41c8-8c2b-97b201d355ba'),(175,175,1,NULL,NULL,1,'2023-06-15 09:00:02','2023-06-15 09:00:02','a2c09a58-c571-444d-908d-8c75ae67ae52'),(180,180,1,NULL,NULL,1,'2023-06-16 10:21:57','2023-06-16 10:21:57','e2cabd4f-2411-4245-88f4-3704541ae0dc'),(181,181,1,NULL,NULL,1,'2023-06-16 10:21:58','2023-06-16 10:21:58','bc8b206d-dc1b-431b-ac2d-0298964f4f26'),(182,182,1,NULL,NULL,1,'2023-06-16 10:29:12','2023-06-16 10:29:12','dc77d1d9-2e51-41fb-9683-d29a0f605b6f'),(183,183,1,NULL,NULL,1,'2023-06-16 10:31:28','2023-06-16 10:31:28','29de14bb-ecba-4d29-bc9a-affecfb58cb7'),(188,188,1,NULL,NULL,1,'2023-06-16 10:44:48','2023-06-16 10:44:48','21834297-7017-4d3e-9189-cfaa18e4e20e'),(189,189,1,NULL,NULL,1,'2023-06-16 10:44:48','2023-06-16 10:44:48','9f852671-6067-4f02-b14c-134b7894be86'),(190,190,1,NULL,NULL,1,'2023-06-16 11:10:08','2023-06-16 11:10:08','19a78a42-4170-43ad-9f13-801e024eb278'),(193,193,1,NULL,NULL,1,'2023-06-16 11:12:31','2023-06-16 11:12:31','1c31eaf9-4478-4422-a584-a1458ff13280'),(194,194,1,NULL,NULL,1,'2023-06-16 11:12:31','2023-06-16 11:12:31','1666cbd9-2d4b-475d-88ad-fb12be1e079b'),(195,195,1,NULL,NULL,1,'2023-06-16 11:13:31','2023-06-16 11:13:31','76a48009-ccb7-4d90-9947-5d60fbfdcbed'),(196,196,1,NULL,NULL,1,'2023-06-16 11:13:41','2023-06-16 11:13:41','5b298d30-f7c8-41b0-8d47-320fd57fb3dd'),(197,197,1,NULL,NULL,1,'2023-06-16 11:13:41','2023-06-16 11:13:41','8df92cd8-f5a4-4930-94e0-f993e216262c'),(198,198,1,NULL,NULL,1,'2023-06-16 11:19:30','2023-06-16 11:19:30','2823261c-00f6-4831-85b1-d95b20d77323'),(201,201,1,NULL,NULL,1,'2023-06-16 13:21:07','2023-06-16 13:21:07','497e8936-a140-462a-afaa-1ea4a9041fd1'),(202,202,1,NULL,NULL,1,'2023-06-16 13:21:58','2023-06-16 13:21:58','f3db05a2-264a-47d7-b47c-93f711b7f557'),(203,203,1,NULL,NULL,1,'2023-06-16 13:21:58','2023-06-16 13:21:58','51370a36-40d0-4fde-9d14-66e9515391f6'),(204,204,1,NULL,NULL,1,'2023-06-19 10:50:31','2023-06-19 10:50:31','7a3f8a96-da82-4997-86af-6eb1c9632ed9'),(205,205,1,NULL,NULL,1,'2023-06-19 10:50:31','2023-06-19 10:50:31','9ceb546c-7358-4a16-8dd1-d3c796927013'),(206,206,1,NULL,NULL,1,'2023-06-19 11:12:46','2023-06-19 11:12:46','2b459cad-0a2d-42de-a8c2-21196f93f3c9'),(207,207,1,NULL,NULL,1,'2023-06-19 11:13:05','2023-06-19 11:13:05','612cc2b5-6b2b-4c59-be48-49be7bf27dea'),(208,208,1,NULL,NULL,1,'2023-06-19 11:13:05','2023-06-19 11:13:05','e628686c-3665-491c-8dc1-1ffafc89d1a3'),(209,209,1,NULL,NULL,1,'2023-06-19 11:19:52','2023-06-19 11:19:52','489a841e-13df-4eb8-98c4-1f33c6571d71'),(210,210,1,NULL,NULL,1,'2023-06-19 11:20:03','2023-06-19 11:20:03','1452efed-6af8-44d9-871d-4e1c0908f2cc'),(211,211,1,NULL,NULL,1,'2023-06-19 11:20:03','2023-06-19 11:20:03','0b5c4c9d-2197-4342-8c32-ae268713da28'),(212,212,1,NULL,NULL,1,'2023-06-19 11:21:48','2023-06-19 11:21:48','c1cdec8c-76c9-42f1-a280-32b5f0b21b0b'),(213,213,1,NULL,NULL,1,'2023-06-19 11:22:00','2023-06-19 11:22:00','d642bf98-8752-4a25-83c6-7d2f6ab9eeea'),(214,214,1,NULL,NULL,1,'2023-06-19 11:22:07','2023-06-19 11:22:07','d5d2a205-a2a9-44ce-a3e4-9201ff0598c6'),(215,215,1,NULL,NULL,1,'2023-06-19 11:22:07','2023-06-19 11:22:07','9fa14fdc-1df5-4aeb-9a32-eb4bb53c2470'),(216,216,1,NULL,NULL,1,'2023-06-19 11:27:45','2023-06-19 11:27:45','35e53c0f-a944-4223-bf5b-8d94b74b8a72'),(217,217,1,NULL,NULL,1,'2023-06-19 11:27:59','2023-06-19 11:27:59','e3773ba0-0c64-4547-b538-bd6a709de422'),(218,218,1,NULL,NULL,1,'2023-06-19 11:27:59','2023-06-19 11:27:59','da966df1-affb-4065-8397-bb8ba02adfaf'),(219,219,1,NULL,NULL,1,'2023-06-19 11:39:12','2023-06-19 11:39:12','672eb7b1-d560-42aa-8139-4d9d3c35671c'),(220,220,1,NULL,NULL,1,'2023-06-19 11:39:38','2023-06-19 11:39:38','d629b80f-e04c-40e6-bd29-5aa766c7df9e'),(221,221,1,NULL,NULL,1,'2023-06-19 11:39:38','2023-06-19 11:39:38','33ac785e-1b91-4e17-a3de-5b0c6ebc1b8a'),(222,222,1,NULL,NULL,1,'2023-06-19 12:01:17','2023-06-19 12:01:17','2182ac8b-cdfe-4f1a-bec7-b4588903627b'),(223,223,1,NULL,NULL,1,'2023-06-19 12:01:27','2023-06-19 12:01:27','57149415-c4d5-4cfc-ac80-27c9ad9b958a'),(224,224,1,NULL,NULL,1,'2023-06-19 12:01:27','2023-06-19 12:01:27','61b26028-95ac-49c1-8b74-1e111be9d469'),(225,225,1,NULL,NULL,1,'2023-06-19 12:04:01','2023-06-19 12:04:01','a1e1561e-b273-4206-8afd-d9a0a19f62e8'),(226,226,1,NULL,NULL,1,'2023-06-19 12:04:12','2023-06-19 12:04:12','b7db19c9-0346-4acd-a135-67a7a7f9d08f'),(227,227,1,NULL,NULL,1,'2023-06-19 12:04:12','2023-06-19 12:04:12','6394f122-8259-4396-928b-02e25fa5adbb'),(228,228,1,NULL,NULL,1,'2023-06-19 12:12:19','2023-06-19 12:12:19','ff41f3ec-7692-4ed3-a55d-00e24614c5f1'),(229,229,1,NULL,NULL,1,'2023-06-19 12:12:30','2023-06-19 12:12:30','64c625af-ef4c-4c8c-b419-0fc871948b93'),(230,230,1,NULL,NULL,1,'2023-06-19 12:12:30','2023-06-19 12:12:30','4aeab056-f1cb-41f9-a416-0e354446cd9f'),(231,231,1,NULL,NULL,1,'2023-06-19 12:14:08','2023-06-19 12:14:08','b33ba59a-331b-4163-98fc-879eb8dae2a2'),(232,232,1,NULL,NULL,1,'2023-06-19 12:14:22','2023-06-19 12:14:22','ea3735da-0676-4b17-9a06-405349bae92c'),(233,233,1,NULL,NULL,1,'2023-06-19 12:14:22','2023-06-19 12:14:22','970f2106-731a-4b83-9a80-598f50f70372'),(234,234,1,NULL,NULL,1,'2023-06-19 12:17:02','2023-06-19 12:17:02','087d1bf4-da95-4365-a6a3-f85d4f7dc0d9'),(235,235,1,NULL,NULL,1,'2023-06-19 12:17:11','2023-06-19 12:17:11','2cabc839-b0d9-43c0-b8ed-866b7e4dd4cd'),(236,236,1,NULL,NULL,1,'2023-06-19 12:17:11','2023-06-19 12:17:11','41dc8a21-0bc5-4424-8c99-3702e16072d0'),(237,237,1,NULL,NULL,1,'2023-06-19 12:19:44','2023-06-19 12:19:44','da2397cb-51e9-421f-93d3-3c127254c1be'),(238,238,1,NULL,NULL,1,'2023-06-19 12:19:54','2023-06-19 12:19:54','9a8f35c2-32b9-4f6f-abb1-699afd02494b'),(239,239,1,NULL,NULL,1,'2023-06-19 12:19:54','2023-06-19 12:19:54','9df7e698-d1a2-4980-97bf-be8439382b89'),(240,240,1,NULL,NULL,1,'2023-06-19 12:22:15','2023-06-19 12:22:15','fa3c759b-d676-487b-bd8c-5c57e325fd51'),(241,241,1,NULL,NULL,1,'2023-06-19 12:22:23','2023-06-19 12:22:23','2f698782-4279-4f32-bf4e-3c7c4794e790'),(242,242,1,NULL,NULL,1,'2023-06-19 12:22:23','2023-06-19 12:22:23','7a4ddd36-6528-4706-8afd-131a4386186b'),(243,243,1,NULL,NULL,1,'2023-06-19 16:24:56','2023-06-19 16:24:56','fc1458d3-efb9-47a7-9fd8-c5537218f709'),(244,244,1,NULL,NULL,1,'2023-06-19 21:11:09','2023-06-19 21:11:09','ba50555b-20cf-404e-b7ca-b1c2b8aa8c96'),(245,245,1,NULL,NULL,1,'2023-06-19 21:11:19','2023-06-19 21:11:19','17bb9f28-e742-44c8-a1e2-8e13e33498fe'),(246,246,1,NULL,NULL,1,'2023-06-19 21:12:18','2023-06-19 21:12:18','9c4c2e58-8c9c-4b02-96cc-aa904ad5c455'),(247,247,1,NULL,NULL,1,'2023-06-19 21:12:19','2023-06-19 21:12:19','79f063bf-9c9b-4c8f-98c1-efe34bd0f3c6'),(248,248,1,NULL,NULL,1,'2023-06-19 21:24:42','2023-06-19 21:24:42','5373db27-e4c3-4128-b128-a28cd3d2d024'),(249,249,1,'__temp_zteqfkbtwtvkmzfzbgzvfrzrmqzfqgfphilq',NULL,1,'2023-06-19 21:24:57','2023-06-19 21:24:57','126df2b2-cf93-4d71-a1d2-51a541dc6121'),(250,250,1,NULL,NULL,1,'2023-06-19 21:26:25','2023-06-19 21:26:25','aa05509e-702a-470d-8ae3-bd395634b2cf'),(251,251,1,NULL,NULL,1,'2023-06-19 21:27:41','2023-06-19 21:27:41','f482a604-83b1-402d-8bd0-cd8ea41bd9f1'),(252,252,1,NULL,NULL,1,'2023-06-19 21:29:15','2023-06-19 21:29:15','b0c95761-69f7-4274-b360-796fbf10e013'),(253,253,1,'__temp_ynhzmioflthjsiydscjdrnafeatehpxnzoop',NULL,1,'2023-06-19 21:29:24','2023-06-19 21:29:24','35bdf242-0e72-4a7e-93c9-e4e4991f7e97'),(254,254,1,NULL,NULL,1,'2023-06-19 21:32:41','2023-06-19 21:32:41','097f09c6-f714-4030-8341-df2d6d4fb917'),(255,255,1,NULL,NULL,1,'2023-06-19 21:34:00','2023-06-19 21:34:00','6c034931-3749-4fc4-886d-37d509c0a8f6'),(256,256,1,NULL,NULL,1,'2023-06-19 21:34:00','2023-06-19 21:34:00','85494a44-ace6-4d60-bfa4-86e0f829cb79'),(257,257,1,NULL,NULL,1,'2023-06-19 21:35:22','2023-06-19 21:35:22','ec743589-b7f8-4238-b3aa-83bae69ee6f5'),(258,258,1,NULL,NULL,1,'2023-06-19 21:35:29','2023-06-19 21:35:29','5ae71d86-f320-40ce-8e00-06dfbe7ee11d'),(259,259,1,NULL,NULL,1,'2023-06-19 21:37:49','2023-06-19 21:37:49','437a3465-8a35-406d-b0dd-9814f33fec96'),(261,261,1,NULL,NULL,1,'2023-06-19 21:46:17','2023-06-19 21:46:17','5e676ccf-6052-4f8e-94f0-e6f195f259bf'),(262,262,1,NULL,NULL,1,'2023-06-19 21:47:25','2023-06-19 21:47:25','7da6caab-bbcd-4a5d-bb45-8e7c8a37ba71'),(263,263,1,NULL,NULL,1,'2023-06-19 21:48:24','2023-06-19 21:48:24','94ff012f-77bd-4b97-b5c4-82b5989e6bfa'),(264,264,1,NULL,NULL,1,'2023-06-19 21:48:24','2023-06-19 21:48:24','dbee0506-822c-4a1a-a53b-0944c2292794'),(265,265,1,NULL,NULL,1,'2023-06-20 02:46:26','2023-06-20 02:46:26','c0ed4f46-7b46-4bfc-a9b6-9da58b8b4dba'),(266,266,1,NULL,NULL,1,'2023-06-20 02:47:25','2023-06-20 02:47:25','9c7666ac-d2ed-48b9-ab19-b46f155e744b'),(267,267,1,NULL,NULL,1,'2023-06-20 02:47:25','2023-06-20 02:47:25','d08ee11c-9417-4a3a-a371-0e0eae04cfd2'),(268,268,1,NULL,NULL,1,'2023-06-20 02:50:35','2023-06-20 02:50:35','fe117437-0950-499e-b914-5f34a1a80f08'),(269,269,1,NULL,NULL,1,'2023-06-20 02:50:51','2023-06-20 02:50:51','2469d3f7-3138-4df3-bb5e-2dcc803a2c1c'),(270,270,1,NULL,NULL,1,'2023-06-20 02:51:39','2023-06-20 02:51:39','5e0a87ec-3ac2-4d64-9843-a7878a1c403b'),(271,271,1,NULL,NULL,1,'2023-06-20 02:51:39','2023-06-20 02:51:39','d55f02ca-4cf3-4c4f-a5ab-dedcba74ed0f'),(272,272,1,NULL,NULL,1,'2023-06-20 07:45:23','2023-06-20 07:45:23','02e33fcd-1cae-4696-aea0-7b4788420b6e'),(273,273,1,NULL,NULL,1,'2023-06-20 07:45:37','2023-06-20 07:45:37','e529af49-2b21-45f7-b0c3-d1369fce7015'),(274,274,1,NULL,NULL,1,'2023-06-20 07:46:08','2023-06-20 07:46:08','602e7fc0-267e-4aa0-9b8a-b501863678c4'),(275,275,1,NULL,NULL,1,'2023-06-20 07:46:08','2023-06-20 07:46:08','5ae3e6b0-b764-4ec8-9eb0-5326213263e0'),(276,276,1,NULL,NULL,1,'2023-06-20 07:49:40','2023-06-20 07:49:40','c3bb9396-def6-432e-aaab-00d9e6de338a'),(277,277,1,NULL,NULL,1,'2023-06-20 07:50:51','2023-06-20 07:50:51','1081f0c0-cab2-4ffd-8e74-933fec7cec0e'),(278,278,1,NULL,NULL,1,'2023-06-20 07:52:42','2023-06-20 07:52:42','64d330b2-d1a9-4b33-913e-0f5111e0d16b'),(279,279,1,NULL,NULL,1,'2023-06-20 07:56:49','2023-06-20 07:56:49','a63c44f9-a178-4518-9bd0-9d4c7c2731c9'),(280,280,1,NULL,NULL,1,'2023-06-20 07:57:04','2023-06-20 07:57:04','9fe3d7a6-2354-439f-8b38-cb9d72445877'),(281,281,1,NULL,NULL,1,'2023-06-20 07:57:07','2023-06-20 07:57:07','b035b392-7087-451b-9ec4-63cca502847a'),(282,282,1,NULL,NULL,1,'2023-06-20 08:03:49','2023-06-20 08:03:49','987c7f2f-56f9-430b-9744-cce7c39e493a'),(283,283,1,'__temp_bzlrodqzowjyllagyubsvtvnncntaevwlvnq',NULL,1,'2023-06-20 08:04:06','2023-06-20 08:04:06','27c75fea-84a2-4077-85dc-dc8db43ed5ab'),(286,286,1,'__temp_gpikdpepunjbfcweasypcwighlsawrjevszl',NULL,1,'2023-06-20 08:05:15','2023-06-20 08:05:15','7cd300ee-0e79-4829-89b7-86e57fba7855'),(287,287,1,'__temp_nnqsidybohqhzxghhkrxecjxjmovkhkalpgb',NULL,1,'2023-06-20 08:06:07','2023-06-20 08:06:07','9d7fde1c-9b4f-4d42-b256-b21357678f93'),(288,288,1,NULL,NULL,1,'2023-06-20 08:16:09','2023-06-20 08:16:09','f3d0df0c-ea6a-4b88-87ac-9384b95eaf9f'),(289,289,1,NULL,NULL,1,'2023-06-20 08:16:09','2023-06-20 08:16:09','625d31df-099c-4824-88b8-460a8ca6e731'),(290,290,1,NULL,NULL,1,'2023-06-20 08:17:23','2023-06-20 08:17:23','566c5a1e-d2bf-4d2d-9e9f-9896e3a41efd'),(293,293,1,NULL,NULL,1,'2023-06-20 15:55:01','2023-06-20 15:55:01','8fd2309e-6343-4943-910a-224438ef14c8'),(294,294,1,NULL,NULL,1,'2023-06-20 15:56:06','2023-06-20 15:56:06','0c6eafa8-3ce1-47c8-a675-079a14e0cbc9'),(295,295,1,NULL,NULL,1,'2023-06-20 15:56:57','2023-06-20 15:56:57','9d1232bc-7a9f-40a6-8c02-a4e5b3cd85a2'),(296,296,1,NULL,NULL,1,'2023-06-20 15:59:31','2023-06-20 15:59:31','de8a36d0-ed58-431a-908c-3bc24b999cee'),(297,297,1,NULL,NULL,1,'2023-06-20 15:59:31','2023-06-20 15:59:31','54902e60-599f-4f1c-a51d-3dbd7b97ec69'),(298,298,1,NULL,NULL,1,'2023-06-20 16:07:59','2023-06-20 16:07:59','00e56f90-0c91-4604-9fcd-87845a4ca580'),(299,299,1,NULL,NULL,1,'2023-06-20 16:08:07','2023-06-20 16:08:07','a3bbe4b6-00a0-4be8-986e-b0535f0010a4'),(300,300,1,NULL,NULL,1,'2023-06-20 16:10:26','2023-06-20 16:10:26','47503dc9-c8c8-4a64-b42e-1156dd337574'),(301,301,1,NULL,NULL,1,'2023-06-20 16:10:26','2023-06-20 16:10:26','3b51e184-4fe2-4f62-a747-670827d388e0'),(302,302,1,NULL,NULL,1,'2023-06-20 16:18:30','2023-06-20 16:18:30','66e81d9f-7e5f-44a0-987d-0de2665ace98'),(303,303,1,NULL,NULL,1,'2023-06-20 16:19:12','2023-06-20 16:19:12','135ad872-6002-41b7-baee-d9ff84d5b964'),(304,304,1,NULL,NULL,1,'2023-06-20 16:19:12','2023-06-20 16:19:12','89759956-f3a7-401f-a6b9-453299465c62'),(305,305,1,NULL,NULL,1,'2023-06-20 16:27:55','2023-06-20 16:27:55','98a311bb-01c5-481f-b2bf-8f8aa5084676'),(306,306,1,NULL,NULL,1,'2023-06-21 07:37:24','2023-06-21 07:37:24','4700e404-2694-4b85-9719-8c20ca5308b2'),(307,307,1,NULL,NULL,1,'2023-06-21 07:37:24','2023-06-21 07:37:24','0ea4817d-3392-4e10-9009-f17b3b57bd31'),(308,308,1,NULL,NULL,1,'2023-06-21 08:24:22','2023-06-21 08:24:22','caf595bd-5ec0-4c5e-99b8-061f5847ffde'),(309,309,1,NULL,NULL,1,'2023-06-21 08:24:22','2023-06-21 08:24:22','d59d21ec-2e39-497c-b3ed-1f10a8623d9f'),(310,310,1,NULL,NULL,1,'2023-06-21 22:08:27','2023-06-21 22:08:27','398e4ec5-46c4-448e-ad00-ad0fe236df64'),(311,311,1,NULL,NULL,1,'2023-06-21 22:10:13','2023-06-21 22:10:13','d22418f8-fa58-461b-ac6d-ae25ed3e3dde'),(312,312,1,NULL,NULL,1,'2023-06-21 22:10:13','2023-06-21 22:10:13','89324f5f-f415-419b-aef6-ab9c30710df6'),(313,313,1,NULL,NULL,1,'2023-06-22 00:13:28','2023-06-22 00:13:28','e84dd8dc-0bd2-4551-87ed-f82940ec46d0'),(314,314,1,'__temp_vzlswcpdmrfmjfgyspkijhoawbaqndgqbbrg',NULL,1,'2023-06-22 00:19:13','2023-06-22 00:19:13','a68307aa-5d9e-4c9a-b0ac-03c4f7b425d4'),(315,315,1,NULL,NULL,1,'2023-06-22 00:42:50','2023-06-22 00:42:50','693f3bd1-5e8d-4ca2-b67d-943cc49d6a1f'),(316,316,1,'__temp_vjuwiilcbkrvdfayrrruxobmslexkppzrpuo',NULL,1,'2023-06-22 00:42:58','2023-06-22 00:42:58','98c514c0-f65a-491d-a169-71144519ea6e'),(317,317,1,NULL,NULL,1,'2023-06-22 08:30:46','2023-06-22 08:30:46','15303d00-ca57-4e66-82ac-85c76d26a957'),(318,318,1,NULL,NULL,1,'2023-06-22 08:30:58','2023-06-22 08:30:58','91d5354f-803b-4f6c-bcce-173948903d47'),(319,319,1,NULL,NULL,1,'2023-06-22 08:30:58','2023-06-22 08:30:58','6d3d3b2b-8358-4018-8786-faf89ef33d2f'),(320,320,1,NULL,NULL,1,'2023-06-22 14:40:30','2023-06-22 14:40:30','c7f9947b-7279-4f47-87ce-0cc4c2a22fbc'),(321,321,1,'__temp_sxlxjhtjixxurvsbqijfycwjgrbhwajozkqb',NULL,1,'2023-06-22 14:40:38','2023-06-22 14:40:38','b40181c2-0cfc-4b02-a587-1c3cc9b81556'),(322,322,1,NULL,NULL,1,'2023-06-22 14:46:15','2023-06-22 14:46:15','903cd2bb-d79b-41e1-89f3-5f35a388727a'),(323,323,1,NULL,NULL,1,'2023-06-22 14:46:15','2023-06-22 14:46:15','70719001-584b-4f42-9d5f-266c18556874'),(324,324,1,NULL,NULL,1,'2023-06-22 17:13:14','2023-06-22 17:13:14','1b26af39-8def-4c86-a52a-c99932871ab3'),(325,325,1,'__temp_ztidxhrkvtdasrrtlzyhnljhwzrnzocubabu',NULL,1,'2023-06-22 17:13:21','2023-06-22 17:13:21','3f5e6089-ad25-4d60-abd3-2ec99612106d'),(326,326,1,'home','__home__',1,'2023-07-03 06:53:45','2023-07-03 06:53:45','5177aabf-56bb-4ca7-a147-de87b2bab02c'),(327,133,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','514586fe-ac78-4e7e-90cc-686f29af74eb'),(328,134,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','29471a64-576b-440f-9d13-21b7b3bcbf02'),(329,138,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','bb56347f-f24b-46a3-a8a5-9fab17167e1a'),(330,139,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','5073d6cf-9de2-4fdb-8719-26fe9f4cf04a'),(331,140,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','a5d32faf-a8ea-4696-8368-482a7b7912de'),(332,141,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','effb15bf-5ee1-4974-92f6-e4b87019ef04'),(333,142,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','a9244216-35f4-4c43-aba6-839a0bd80aae'),(334,143,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','8422205a-889f-4524-b588-308fed94e06a'),(335,144,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','9cc121e9-8126-48c2-a59f-16b0cc577128'),(336,145,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','cbd3ff0a-5f53-4712-8581-69bfb03521ac'),(337,146,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','e58b41af-b131-4d23-8be8-402e2fe43bcf'),(338,147,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','102dda75-20ab-42fd-b3a4-d5719ccbf1b6'),(339,148,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','dd9c1a84-5f28-4e2b-8b98-6543760d78be'),(340,149,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','e5d5c2f3-a748-40ad-ad0e-99ea90856a3d'),(341,150,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','650b416f-b644-478c-aec7-60b02fbd15dd'),(342,151,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','d223c2e2-7ff5-4e1f-a8d6-117db924c6a0'),(343,152,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','a8380c1a-d3a3-4a90-8144-b6abcff2c3cc'),(344,153,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','9f4a0919-f62a-4467-a6b2-bfd3ffb93d09'),(345,154,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','a3b5c31c-0be7-414c-9070-dd4a306afd6f'),(346,155,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','b07a80e9-ddae-4f2d-bbae-b583797ded16'),(347,156,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','6e7d9004-d71e-4534-9dda-aa8532716c9a'),(348,250,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','2efbf91a-ce9d-40cc-8698-03a1a0b6c65b'),(349,8,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','45f53c3f-72ae-449f-adc8-c1f16d835716'),(350,7,2,'product-01','shop/product-01',1,'2023-07-03 06:55:11','2023-07-03 06:55:11','0486e064-04d5-4108-83f9-457e88c445d2'),(351,20,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','884c4d0a-85c6-4f2b-8e7f-e6eb2b6e1d8c'),(352,19,2,'product-02','shop/product-02',1,'2023-07-03 06:55:11','2023-07-03 06:55:11','deaee7c6-3999-4bc3-a5be-28309b3dec24'),(353,22,2,NULL,NULL,1,'2023-07-03 06:55:11','2023-07-03 06:55:11','49f19d55-c5ae-4974-9fe0-f504e407160a'),(354,21,2,'product-03','shop/product-03',1,'2023-07-03 06:55:11','2023-07-03 06:55:11','00d00b79-0aea-43a1-9583-b2db89720dc2'),(355,327,1,'home','__home__',1,'2023-07-03 06:55:29','2023-07-03 06:55:29','2c2b0ec5-33e0-4b6b-afac-69a36f1b5ef0'),(356,328,1,'__temp_rfqtyhomhhtopoarvfmifdtahdyeqzawixqe','blog/__temp_rfqtyhomhhtopoarvfmifdtahdyeqzawixqe',1,'2023-07-03 07:32:34','2023-07-03 07:32:34','b035ba94-2665-42a2-90cd-9ca2a454fbdc'),(357,328,2,'__temp_rfqtyhomhhtopoarvfmifdtahdyeqzawixqe','blog/__temp_rfqtyhomhhtopoarvfmifdtahdyeqzawixqe',1,'2023-07-03 07:32:34','2023-07-03 07:32:34','f500b7d9-0dca-43f6-a850-a33b38cc05f4'),(358,329,1,NULL,NULL,1,'2023-07-03 07:33:33','2023-07-03 07:33:33','18e2ee93-0f26-49e3-962d-6ee59eb35b9f'),(359,329,2,NULL,NULL,1,'2023-07-03 07:33:33','2023-07-03 07:33:33','e5d0c9a8-b83f-4c63-bf80-22f8b076e84c'),(360,330,1,'__temp_uxpzousirpnoyfutsoapptupujgbfrfshije','blog/__temp_uxpzousirpnoyfutsoapptupujgbfrfshije',1,'2023-07-03 07:33:33','2023-07-03 07:33:33','1429af9c-b5f2-4782-9219-986013c8579e'),(361,330,2,'__temp_uxpzousirpnoyfutsoapptupujgbfrfshije','blog/__temp_uxpzousirpnoyfutsoapptupujgbfrfshije',1,'2023-07-03 07:33:33','2023-07-03 07:33:33','d8103ec0-0e54-4d07-8d74-cb46eaa652ae'),(362,331,1,NULL,NULL,1,'2023-07-05 09:31:53','2023-07-05 09:31:53','fdcd68f5-2567-43ef-977a-07fdf6e502c6'),(363,331,2,NULL,NULL,1,'2023-07-05 09:31:53','2023-07-05 09:31:53','688faaeb-b5ba-4e7c-82f6-a1fffc5d8d4b'),(364,332,1,NULL,NULL,1,'2023-07-05 10:29:18','2023-07-05 10:29:18','c9b96c05-1ef2-4f91-8398-69cee05e9451'),(365,332,2,NULL,NULL,1,'2023-07-05 10:29:18','2023-07-05 10:29:18','738cde02-85a9-4b6b-a33f-218a4d000b17'); /*!40000 ALTER TABLE `elements_sites` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `entries` -- LOCK TABLES `entries` WRITE; /*!40000 ALTER TABLE `entries` DISABLE KEYS */; set autocommit=0; INSERT INTO `entries` VALUES (9,1,NULL,1,NULL,'2022-10-12 19:14:00',NULL,NULL,'2022-10-12 19:14:23','2022-10-12 19:14:23'),(10,1,NULL,1,NULL,'2022-10-12 19:14:00',NULL,NULL,'2022-10-12 19:14:23','2022-10-12 19:14:23'),(11,1,NULL,1,NULL,'2022-10-12 19:14:00',NULL,NULL,'2022-10-12 19:14:23','2022-10-12 19:14:23'),(12,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:20:28','2022-10-12 19:20:28'),(13,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:20:28','2022-10-12 19:20:28'),(14,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:20:28','2022-10-12 19:20:28'),(15,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:21:04','2022-10-12 19:21:04'),(16,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:21:04','2022-10-12 19:21:04'),(17,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:21:20','2022-10-12 19:21:20'),(18,2,NULL,2,NULL,'2022-10-12 19:20:00',NULL,NULL,'2022-10-12 19:21:48','2022-10-12 19:21:48'),(326,1,NULL,1,NULL,'2022-10-12 19:14:00',NULL,NULL,'2023-07-03 06:53:45','2023-07-03 06:53:45'),(327,1,NULL,1,NULL,'2022-10-12 19:14:00',NULL,NULL,'2023-07-03 06:55:29','2023-07-03 06:55:29'),(328,3,NULL,3,1,'2023-07-03 07:32:00',NULL,NULL,'2023-07-03 07:32:34','2023-07-03 07:32:34'),(330,3,NULL,3,1,'2023-07-03 07:33:00',NULL,NULL,'2023-07-03 07:33:33','2023-07-03 07:33:33'); /*!40000 ALTER TABLE `entries` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `entrytypes` -- LOCK TABLES `entrytypes` WRITE; /*!40000 ALTER TABLE `entrytypes` DISABLE KEYS */; set autocommit=0; INSERT INTO `entrytypes` VALUES (1,1,4,'Home','home',0,'site',NULL,'{section.name|raw}',1,'2022-10-12 19:14:23','2022-10-12 19:14:23',NULL,'8bb45c41-2625-4bcc-a8fb-e8c347816d9d'),(2,2,5,'Shop','shop',0,'site',NULL,'{section.name|raw}',1,'2022-10-12 19:20:28','2022-10-12 19:20:28',NULL,'3d0c2b16-adae-4c4d-842a-7f558c5ac572'),(3,3,7,'Default','default',1,'site',NULL,NULL,1,'2023-07-03 07:28:46','2023-07-03 07:28:46',NULL,'97e5f851-2705-4ef0-aba2-0e340311176f'); /*!40000 ALTER TABLE `entrytypes` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `fieldgroups` -- LOCK TABLES `fieldgroups` WRITE; /*!40000 ALTER TABLE `fieldgroups` DISABLE KEYS */; set autocommit=0; INSERT INTO `fieldgroups` VALUES (1,'Common','2022-05-20 18:56:06','2022-05-20 18:56:06',NULL,'1195b082-ca18-4697-b64b-31a54ad5fdfc'); /*!40000 ALTER TABLE `fieldgroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `fieldlayoutfields` -- LOCK TABLES `fieldlayoutfields` WRITE; /*!40000 ALTER TABLE `fieldlayoutfields` DISABLE KEYS */; set autocommit=0; INSERT INTO `fieldlayoutfields` VALUES (5,2,9,2,0,0,'2023-06-20 07:51:54','2023-06-20 07:51:54','4dda4509-6697-4a23-992e-d6374200139c'),(6,4,10,4,0,1,'2023-07-03 06:53:45','2023-07-03 06:53:45','7ad17ef1-e589-4440-88d4-315a71898439'),(8,7,13,4,0,1,'2023-07-03 07:30:58','2023-07-03 07:30:58','dba8bb32-8aa7-4de1-b4f6-f1e221c5b799'),(9,7,13,5,0,2,'2023-07-03 07:30:58','2023-07-03 07:30:58','7226d145-d109-48a5-8c7b-4a503b866601'),(10,7,13,1,0,3,'2023-07-03 07:30:58','2023-07-03 07:30:58','c80785be-5b9c-4601-b516-13f238aac973'),(11,3,14,3,0,2,'2023-07-05 12:00:47','2023-07-05 12:00:47','03e1217a-8249-4165-96e2-8e0b2ca2f662'),(12,3,14,4,0,3,'2023-07-05 12:00:47','2023-07-05 12:00:47','2e8f0d96-9adc-4a11-a255-301b17aedcc2'),(13,3,14,5,0,4,'2023-07-05 12:00:47','2023-07-05 12:00:47','1b7ad96f-e56d-42ee-9dbf-f578f47ba91b'); /*!40000 ALTER TABLE `fieldlayoutfields` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `fieldlayouts` -- LOCK TABLES `fieldlayouts` WRITE; /*!40000 ALTER TABLE `fieldlayouts` DISABLE KEYS */; set autocommit=0; INSERT INTO `fieldlayouts` VALUES (2,'craft\\commerce\\elements\\Order','2022-10-12 18:29:04','2023-01-23 13:23:55',NULL,'f3ba1aa7-2637-4a02-bb34-d06d3cdf576e'),(3,'craft\\commerce\\elements\\Product','2022-10-12 19:03:04','2022-10-12 19:03:04',NULL,'3d12d583-f7a6-4c76-9133-fbb666edcbe1'),(4,'craft\\elements\\Entry','2022-10-12 19:14:23','2022-10-12 19:14:23',NULL,'1c9c6242-3536-45b7-8f16-98c0b44dbe88'),(5,'craft\\elements\\Entry','2022-10-12 19:20:28','2022-10-12 19:20:28',NULL,'5dce2daa-f897-4430-854a-16f90eb8653f'),(6,'craft\\elements\\Asset','2023-01-23 13:22:00','2023-01-23 13:22:00',NULL,'a8c2ee8d-b9eb-4495-b043-532112e6ccc0'),(7,'craft\\elements\\Entry','2023-07-03 07:28:46','2023-07-03 07:28:46',NULL,'501a5d6d-9251-4ce2-9b13-c2cf92776065'); /*!40000 ALTER TABLE `fieldlayouts` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `fieldlayouttabs` -- LOCK TABLES `fieldlayouttabs` WRITE; /*!40000 ALTER TABLE `fieldlayouttabs` DISABLE KEYS */; set autocommit=0; INSERT INTO `fieldlayouttabs` VALUES (4,5,'Content','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"uid\":\"f2bd3743-9314-4c2c-bd96-1defb9dcea9d\",\"userCondition\":null,\"elementCondition\":null}]',1,'2022-10-12 19:20:28','2022-10-12 19:20:28','5df3e105-1bd3-49a6-8483-2c8157d04886'),(5,6,'Content','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\assets\\\\AssetTitleField\",\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"uid\":\"e3d7f950-89b1-4ca9-836a-e40cd0e6e35b\",\"userCondition\":null,\"elementCondition\":null}]',1,'2023-01-23 13:22:00','2023-01-23 13:22:00','0ba8d8a7-005f-468f-aaa5-a0a9216402b0'),(9,2,'Files','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e7f28e3e-e3d5-4641-822f-d47e558204cd\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"42f89f86-9d7d-456a-aa51-1fdb50708487\"}]',1,'2023-06-20 07:51:54','2023-06-20 07:51:54','216e86e0-5360-4b63-9477-cdc386f5eace'),(10,4,'Content','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"uid\":\"ef160ab6-a4d6-4ff8-b9da-c20c05f78120\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a863f9f9-30ac-4a39-bd35-246a16e2c208\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"}]',1,'2023-07-03 06:53:45','2023-07-03 06:53:45','35060dcd-15ac-44f2-b835-bc38b45b99e7'),(13,7,'Content','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"uid\":\"ebe36da6-f2d6-4fce-8490-99aa00a804e4\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"02299e3b-c95d-4131-91f9-02f2d7f285f0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"beaa849f-bf70-4b5a-8604-961d53f6d517\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"dd8561c1-9fdc-4b1e-9610-e966c84af218\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"2c944b8b-0a74-42a4-88c5-4999d1f88f56\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"c5a29982-eda9-4fe1-8640-8949a1672a3e\"}]',1,'2023-07-03 07:30:58','2023-07-03 07:30:58','1b80df86-e1bb-4cc6-8d25-bce7eea27023'),(14,3,'Content','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\commerce\\\\fieldlayoutelements\\\\ProductTitleField\",\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"uid\":\"7744b0de-5c13-4cf7-b986-ad82fc68cc3e\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\commerce\\\\fieldlayoutelements\\\\VariantsField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"uid\":\"8fd1f49a-6172-48d4-9c22-b50e649bc4f9\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a0d3f05b-c062-48e4-b04d-2e7e173373a6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"f9a49c14-fb83-40e1-b020-cdde9b64fc87\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"169cde1c-200d-4959-8272-e7f3076915ba\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"53bff16e-0918-469f-8b4e-8e0794e75199\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"dd8561c1-9fdc-4b1e-9610-e966c84af218\"}]',1,'2023-07-05 12:00:47','2023-07-05 12:00:47','a06ff101-19eb-420e-9630-d5acc89335bc'); /*!40000 ALTER TABLE `fieldlayouttabs` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `fields` -- LOCK TABLES `fields` WRITE; /*!40000 ALTER TABLE `fields` DISABLE KEYS */; set autocommit=0; INSERT INTO `fields` VALUES (1,1,'OrderFile','orderfile','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\",\"pdf\"],\"defaultUploadLocationSource\":\"volume:a2191c11-f670-44d7-9de8-dd4403266481\",\"defaultUploadLocationSubpath\":\"/{{dateCreated|date(\'Y-m\')}}/{{uid}}\",\"localizeRelations\":false,\"maxRelations\":null,\"minRelations\":1,\"previewMode\":\"full\",\"restrictFiles\":true,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:a2191c11-f670-44d7-9de8-dd4403266481\",\"restrictedLocationSubpath\":null,\"selectionCondition\":{\"elementType\":\"craft\\\\elements\\\\Asset\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"},\"selectionLabel\":null,\"showSiteMenu\":true,\"showUnpermittedFiles\":true,\"showUnpermittedVolumes\":true,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":true,\"viewMode\":\"list\"}','2023-01-23 13:23:25','2023-01-24 10:45:41','c5a29982-eda9-4fe1-8640-8949a1672a3e'),(2,1,'Reference','orderReference','global','nvjwogpa',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2023-01-23 14:16:39','2023-01-23 14:16:39','42f89f86-9d7d-456a-aa51-1fdb50708487'),(3,1,'Require Prescription','requirePrescription','global','islbuzpo',NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":null,\"onLabel\":null}','2023-01-24 10:49:28','2023-01-24 10:49:28','f9a49c14-fb83-40e1-b020-cdde9b64fc87'),(4,1,'Excerpt','excerpt','global','ceuswxql',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":true,\"placeholder\":null,\"uiMode\":\"normal\"}','2023-07-03 06:53:22','2023-07-03 06:53:22','9a0cdbd7-7dfa-40de-806f-14bd1fce8653'),(5,1,'Description','description','global','xhrbnvew',NULL,0,'site',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":6,\"multiline\":true,\"placeholder\":null,\"uiMode\":\"normal\"}','2023-07-03 07:29:41','2023-07-03 07:29:41','dd8561c1-9fdc-4b1e-9610-e966c84af218'),(6,1,'Product Tags','productTags','global','xoknbofz',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2023-07-05 12:01:16','2023-07-05 12:01:16','62f7cd09-b3c1-476d-a2cf-582f7f78ef6c'); /*!40000 ALTER TABLE `fields` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `globalsets` -- LOCK TABLES `globalsets` WRITE; /*!40000 ALTER TABLE `globalsets` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `globalsets` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `gqlschemas` -- LOCK TABLES `gqlschemas` WRITE; /*!40000 ALTER TABLE `gqlschemas` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `gqlschemas` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `gqltokens` -- LOCK TABLES `gqltokens` WRITE; /*!40000 ALTER TABLE `gqltokens` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `gqltokens` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `imagetransforms` -- LOCK TABLES `imagetransforms` WRITE; /*!40000 ALTER TABLE `imagetransforms` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `imagetransforms` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `info` -- LOCK TABLES `info` WRITE; /*!40000 ALTER TABLE `info` DISABLE KEYS */; set autocommit=0; INSERT INTO `info` VALUES (1,'4.4.15','4.4.0.4',1,'umpnkbvjnrbl','3@bcdxgvnsig','2022-05-20 18:56:06','2023-07-05 12:13:50','55a9e2d1-0eae-42b9-9770-b64eca588664'); /*!40000 ALTER TABLE `info` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `matrixblocks` -- LOCK TABLES `matrixblocks` WRITE; /*!40000 ALTER TABLE `matrixblocks` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `matrixblocks` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `matrixblocks_owners` -- LOCK TABLES `matrixblocks_owners` WRITE; /*!40000 ALTER TABLE `matrixblocks_owners` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `matrixblocks_owners` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `matrixblocktypes` -- LOCK TABLES `matrixblocktypes` WRITE; /*!40000 ALTER TABLE `matrixblocktypes` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `matrixblocktypes` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; set autocommit=0; INSERT INTO `migrations` VALUES (1,'craft','Install','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','fd45b62b-86bd-4d05-8915-e9d967cf7d9e'),(2,'craft','m210121_145800_asset_indexing_changes','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','d7e955b8-80f6-40fc-b00e-fa5c30e60909'),(3,'craft','m210624_222934_drop_deprecated_tables','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','1acb2c8a-872d-4f97-aa57-4ef33eb6a217'),(4,'craft','m210724_180756_rename_source_cols','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','c9981c63-64a7-40fe-b36f-0712a46dc6ed'),(5,'craft','m210809_124211_remove_superfluous_uids','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','56fd1d89-f9a2-4f1a-911c-d0d01fd19b0f'),(6,'craft','m210817_014201_universal_users','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','e2047d4c-183a-4b2b-9adc-7a63d8d8bae8'),(7,'craft','m210904_132612_store_element_source_settings_in_project_config','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','723af7c6-ade3-4545-8458-03c2f3eb94fc'),(8,'craft','m211115_135500_image_transformers','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','52f47a0b-fb71-4d16-ae4b-dcdaf659e9c1'),(9,'craft','m211201_131000_filesystems','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','ef44f0f2-9ca6-473f-9727-dcd9d7bec143'),(10,'craft','m220103_043103_tab_conditions','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','0167ba76-4e59-410e-ac8c-12265950bdd3'),(11,'craft','m220104_003433_asset_alt_text','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','7feb658b-eca0-4d14-a97e-c9040a2b097a'),(12,'craft','m220123_213619_update_permissions','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','72d09d51-3b0e-4fd4-8ef8-072947d92d4c'),(13,'craft','m220126_003432_addresses','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','a5520197-b7ba-49c2-aa4c-792cd24e05a7'),(14,'craft','m220209_095604_add_indexes','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','1fed01c2-7fd3-40f3-aa1e-ba0fa4db3c40'),(15,'craft','m220213_015220_matrixblocks_owners_table','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','d9785c5d-5a55-4b6e-a161-87b8a8f64ee1'),(16,'craft','m220214_000000_truncate_sessions','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','cfcee99e-f4e5-44ee-a9e9-dcf7d0eed244'),(17,'craft','m220222_122159_full_names','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','b0472a3d-aba3-4b73-9731-e7a06802f9ba'),(18,'craft','m220223_180559_nullable_address_owner','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','690ce4a4-b6c1-4202-8f3a-4e099bf46f44'),(19,'craft','m220225_165000_transform_filesystems','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','a394742f-b5ba-4846-8ffc-b14f3659fbb3'),(20,'craft','m220309_152006_rename_field_layout_elements','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','54f39fb8-9a4a-44a0-9c42-ceda378abf8a'),(21,'craft','m220314_211928_field_layout_element_uids','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','c5bcbd37-6174-48c3-b232-26064db12d8d'),(22,'craft','m220316_123800_transform_fs_subpath','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','a131246c-af6f-4f70-a291-2380bacab32b'),(23,'craft','m220317_174250_release_all_jobs','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','c1401990-61d7-452d-98a8-b884dfb6a4e3'),(24,'craft','m220330_150000_add_site_gql_schema_components','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','893a66f4-c923-4ed1-aa7c-0570a7fb6862'),(25,'craft','m220413_024536_site_enabled_string','2022-05-20 18:56:07','2022-05-20 18:56:07','2022-05-20 18:56:07','90f362cf-9ccd-4b81-bb3b-c292a1849228'),(37,'plugin:commerce','Install','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','847ded41-dbc3-48e0-a2f7-8d92cae9f663'),(38,'plugin:commerce','m210614_073359_detailed_permission','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','720ef01a-4c51-4f30-afe3-333651c0517e'),(39,'plugin:commerce','m210831_080542_rename_variant_title_format_field','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','05213909-4061-428c-ab04-db17133a5142'),(40,'plugin:commerce','m210901_211323_not_null_booleans','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','0f83287f-06fc-43ac-b67d-208501a05435'),(41,'plugin:commerce','m210922_133729_add_discount_order_condition_builder','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','8555324c-7047-4689-9e51-3fbb438bfdac'),(42,'plugin:commerce','m211118_101920_split_coupon_codes','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','59350210-6074-4b21-9722-e2882d186293'),(43,'plugin:commerce','m220301_022054_user_addresses','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','d687b968-3a61-4192-af3a-f8f50110dfe2'),(44,'plugin:commerce','m220302_133730_add_discount_user_addresses_condition_builders','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','537da923-2526-4e00-9d71-b0689d64ffe2'),(45,'plugin:commerce','m220304_094835_discount_conditions','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','25d6b9c3-e1ca-4af0-9e75-ede5cc3e3258'),(46,'plugin:commerce','m220308_221717_orderhistory_name','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','522a1ad9-180d-44e9-bc4c-4e6bd8d7fba7'),(47,'plugin:commerce','m220329_075053_convert_gateway_frontend_enabled_column','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','7ca281ea-a7a1-4c51-8379-101bd1e2886a'),(48,'plugin:commerce','m220706_132118_add_purchasable_tax_type','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','2e61bd6d-7f4c-4a97-a45a-ea62948f690a'),(49,'plugin:commerce','m220817_135050_add_purchase_total_back_if_missing','2022-10-12 18:29:04','2022-10-12 18:29:04','2022-10-12 18:29:04','fc01d2f1-2b76-4ba2-9452-97c158ef379c'),(50,'plugin:seo','Install','2022-10-12 19:06:25','2022-10-12 19:06:25','2022-10-12 19:06:25','b5f549be-d597-4842-ba0a-78fd2ccea3e4'),(51,'plugin:seo','m180906_152947_add_site_id_to_redirects','2022-10-12 19:06:25','2022-10-12 19:06:25','2022-10-12 19:06:25','2045e1a8-174d-460f-b005-95c554a1961c'),(52,'plugin:seo','m190114_152300_upgrade_to_new_data_format','2022-10-12 19:06:25','2022-10-12 19:06:25','2022-10-12 19:06:25','2140371e-019f-4055-8cb7-0a6201178282'),(53,'plugin:seo','m200518_110721_add_order_to_redirects','2022-10-12 19:06:25','2022-10-12 19:06:25','2022-10-12 19:06:25','9997bc41-28fa-47e0-8d50-86c9b987fdb2'),(54,'plugin:seo','m201207_124200_add_product_types_to_sitemap','2022-10-12 19:06:25','2022-10-12 19:06:25','2022-10-12 19:06:25','b1ef0a79-5d8a-4d8e-8c18-35a89f8a23df'),(55,'craft','m221027_160703_add_image_transform_fill','2023-06-15 13:10:04','2023-06-15 13:10:04','2023-06-15 13:10:04','402b4b75-14f5-4105-9195-b302eb33a614'),(56,'craft','m221028_130548_add_canonical_id_index','2023-06-15 13:10:04','2023-06-15 13:10:04','2023-06-15 13:10:04','42e8ffcb-9334-44a4-adce-ed8008a7bda5'),(57,'craft','m221118_003031_drop_element_fks','2023-06-15 13:10:04','2023-06-15 13:10:04','2023-06-15 13:10:04','2ac35974-e7a3-4687-a560-6155dbd293ba'),(58,'craft','m230131_120713_asset_indexing_session_new_options','2023-06-15 13:10:05','2023-06-15 13:10:05','2023-06-15 13:10:05','bcdaf8d5-1ce1-4338-a0ad-da6fbce15af6'),(59,'craft','m230226_013114_drop_plugin_license_columns','2023-06-15 13:10:05','2023-06-15 13:10:05','2023-06-15 13:10:05','8b6f90c3-89ee-439b-968d-3a81c8f6425e'),(60,'plugin:convergine-contentbuddy','Install','2023-07-03 06:50:42','2023-07-03 06:50:42','2023-07-03 06:50:42','76ed8c65-8533-4161-9932-aceb9c604909'); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `plugins` -- LOCK TABLES `plugins` WRITE; /*!40000 ALTER TABLE `plugins` DISABLE KEYS */; set autocommit=0; INSERT INTO `plugins` VALUES (2,'bastion-agent','1.1.1','1.0.0','2022-05-20 19:20:52','2022-05-20 19:20:52','2023-06-15 13:06:37','89d75e2c-92da-493d-a70f-b771f7351e5f'),(4,'commerce','4.1.3','4.1.1','2022-10-12 18:29:01','2022-10-12 18:29:01','2023-06-15 13:06:37','ac54ad12-f108-432e-9d85-500a103aec32'),(5,'seo','v4.0.3','3.2.0','2022-10-12 19:06:25','2022-10-12 19:06:25','2023-06-15 13:06:37','419ce135-a20e-4db0-ad93-88140aef85b3'),(6,'commerce-helcim','1.0.0','1.0.0','2022-10-17 14:23:46','2022-10-17 14:23:46','2023-06-15 13:06:37','66104eca-037b-4207-8ef4-dadc697d3433'),(7,'convergine-contentbuddy','1.0.0','1.0.0','2023-07-03 06:50:41','2023-07-03 06:50:41','2023-07-03 06:50:41','f7d06487-e452-4fcb-89ab-585acb63583a'),(8,'carebot','1.0.0','1.0.0','2023-07-04 09:45:01','2023-07-04 09:45:01','2023-07-04 09:45:01','f1d9dce8-0c93-453b-90a5-8747c44ea693'); /*!40000 ALTER TABLE `plugins` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `projectconfig` -- LOCK TABLES `projectconfig` WRITE; /*!40000 ALTER TABLE `projectconfig` DISABLE KEYS */; set autocommit=0; INSERT INTO `projectconfig` VALUES ('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.handle','\"helcim\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.isFrontendEnabled','true'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.name','\"Helcim\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.paymentType','\"authorize\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.accountId','null'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.apiAccountId','\"2500436249\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.apiSecret','\"3fec22f070678d15d09b515d6b1eaefb8ab0b01e\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.apiToken','\"d9s65b28phtZxHH2GW4K76Ww3\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.enableServersideProtection','\"1\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.hashAmount','\"1\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.jsToken','\"bfe58f5ce0fae7fc48303c\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.reCaptchaSite','\"6LcgxK0UAAAAAH9gzsILRr82KZSLrBcry9RynMn4\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.terminalId','null'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.settings.testMode','\"\"'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.sortOrder','99'),('commerce.gateways.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4.type','\"craft\\\\commerce\\\\helcim\\\\gateways\\\\Gateway\"'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.handle','\"dummy\"'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.isFrontendEnabled','false'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.name','\"Dummy\"'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.paymentType','\"purchase\"'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.sortOrder','99'),('commerce.gateways.c7add8bb-e55e-4a8e-8565-832c2f03dc0f.type','\"craft\\\\commerce\\\\gateways\\\\Dummy\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elementCondition','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.elementCondition','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.fieldUid','\"42f89f86-9d7d-456a-aa51-1fdb50708487\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.instructions','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.label','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.required','false'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.tip','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.uid','\"e7f28e3e-e3d5-4641-822f-d47e558204cd\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.userCondition','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.warning','null'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.elements.0.width','100'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.name','\"Files\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.uid','\"216e86e0-5360-4b63-9477-cdc386f5eace\"'),('commerce.orders.fieldLayouts.f3ba1aa7-2637-4a02-bb34-d06d3cdf576e.tabs.0.userCondition','null'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.color','\"green\"'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.default','true'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.description','null'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.handle','\"new\"'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.name','\"New\"'),('commerce.orderStatuses.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c.sortOrder','99'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.descriptionFormat','\"{product.title} - {title}\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.handle','\"tech\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.hasDimensions','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.hasProductTitleField','true'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.hasVariants','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.hasVariantTitleField','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.name','\"Tech\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.autocapitalize','true'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.autocomplete','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.autocorrect','true'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.class','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.disabled','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.id','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.instructions','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.label','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.max','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.min','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.name','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.orientation','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.placeholder','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.readonly','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.requirable','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.size','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.step','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.tip','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.title','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.type','\"craft\\\\commerce\\\\fieldlayoutelements\\\\ProductTitleField\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.uid','\"7744b0de-5c13-4cf7-b986-ad82fc68cc3e\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.warning','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.0.width','100'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.instructions','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.label','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.required','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.tip','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.type','\"craft\\\\commerce\\\\fieldlayoutelements\\\\VariantsField\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.uid','\"8fd1f49a-6172-48d4-9c22-b50e649bc4f9\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.1.warning','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.fieldUid','\"f9a49c14-fb83-40e1-b020-cdde9b64fc87\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.instructions','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.label','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.required','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.tip','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.uid','\"a0d3f05b-c062-48e4-b04d-2e7e173373a6\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.warning','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.2.width','100'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.fieldUid','\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.instructions','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.label','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.required','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.tip','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.uid','\"169cde1c-200d-4959-8272-e7f3076915ba\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.warning','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.3.width','100'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.elementCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.fieldUid','\"dd8561c1-9fdc-4b1e-9610-e966c84af218\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.instructions','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.label','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.required','false'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.tip','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.uid','\"53bff16e-0918-469f-8b4e-8e0794e75199\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.warning','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.elements.4.width','100'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.name','\"Content\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.uid','\"a06ff101-19eb-420e-9630-d5acc89335bc\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productFieldLayouts.3d12d583-f7a6-4c76-9133-fbb666edcbe1.tabs.0.userCondition','null'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.productTitleFormat','\"\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.hasUrls','true'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.template','\"shop/products/_product\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.uriFormat','\"shop/{slug}\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.hasUrls','true'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.template','\"shop/products/_product\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.uriFormat','\"shop/{slug}\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.skuFormat','\"\"'),('commerce.productTypes.b7c11322-b1a5-4913-84d9-2762b866c126.variantTitleFormat','\"{product.title}\"'),('dateModified','1688558522'),('email.fromEmail','\"konstantin@convergine.com\"'),('email.fromName','\"Craft4\"'),('email.transportType','\"craft\\\\mail\\\\transportadapters\\\\Sendmail\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elementCondition','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.autocapitalize','true'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.autocomplete','false'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.autocorrect','true'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.class','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.disabled','false'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.elementCondition','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.id','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.instructions','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.label','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.max','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.min','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.name','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.orientation','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.placeholder','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.readonly','false'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.requirable','false'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.size','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.step','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.tip','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.title','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.uid','\"f2bd3743-9314-4c2c-bd96-1defb9dcea9d\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.userCondition','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.warning','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.elements.0.width','100'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.name','\"Content\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.uid','\"5df3e105-1bd3-49a6-8483-2c8157d04886\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.fieldLayouts.5dce2daa-f897-4430-854a-16f90eb8653f.tabs.0.userCondition','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.handle','\"shop\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.hasTitleField','false'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.name','\"Shop\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.section','\"4fa4c890-b7b9-4f47-8155-0937a7f47f9b\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.sortOrder','1'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.titleFormat','\"{section.name|raw}\"'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.titleTranslationKeyFormat','null'),('entryTypes.3d0c2b16-adae-4c4d-842a-7f558c5ac572.titleTranslationMethod','\"site\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elementCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.autocapitalize','true'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.autocomplete','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.autocorrect','true'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.class','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.disabled','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.elementCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.id','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.instructions','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.label','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.max','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.min','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.name','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.orientation','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.placeholder','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.readonly','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.requirable','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.size','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.step','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.tip','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.title','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.uid','\"ef160ab6-a4d6-4ff8-b9da-c20c05f78120\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.userCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.warning','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.0.width','100'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.elementCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.fieldUid','\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.instructions','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.label','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.required','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.tip','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.uid','\"a863f9f9-30ac-4a39-bd35-246a16e2c208\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.userCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.warning','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.elements.1.width','100'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.name','\"Content\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.uid','\"35060dcd-15ac-44f2-b835-bc38b45b99e7\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.fieldLayouts.1c9c6242-3536-45b7-8f16-98c0b44dbe88.tabs.0.userCondition','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.handle','\"home\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.hasTitleField','false'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.name','\"Home\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.section','\"f645fd95-4a50-4506-a221-32fd3a14cf7f\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.sortOrder','1'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.titleFormat','\"{section.name|raw}\"'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.titleTranslationKeyFormat','null'),('entryTypes.8bb45c41-2625-4bcc-a8fb-e8c347816d9d.titleTranslationMethod','\"site\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elementCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.autocapitalize','true'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.autocomplete','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.autocorrect','true'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.class','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.disabled','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.elementCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.id','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.instructions','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.label','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.max','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.min','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.name','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.orientation','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.placeholder','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.readonly','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.requirable','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.size','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.step','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.tip','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.title','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.uid','\"ebe36da6-f2d6-4fce-8490-99aa00a804e4\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.userCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.warning','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.0.width','100'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.elementCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.fieldUid','\"9a0cdbd7-7dfa-40de-806f-14bd1fce8653\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.instructions','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.label','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.required','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.tip','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.uid','\"02299e3b-c95d-4131-91f9-02f2d7f285f0\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.userCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.warning','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.1.width','100'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.elementCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.fieldUid','\"dd8561c1-9fdc-4b1e-9610-e966c84af218\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.instructions','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.label','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.required','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.tip','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.uid','\"beaa849f-bf70-4b5a-8604-961d53f6d517\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.userCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.warning','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.2.width','100'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.elementCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.fieldUid','\"c5a29982-eda9-4fe1-8640-8949a1672a3e\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.instructions','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.label','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.required','false'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.tip','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.uid','\"2c944b8b-0a74-42a4-88c5-4999d1f88f56\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.userCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.warning','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.elements.3.width','100'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.name','\"Content\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.uid','\"1b80df86-e1bb-4cc6-8d25-bce7eea27023\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.fieldLayouts.501a5d6d-9251-4ce2-9b13-c2cf92776065.tabs.0.userCondition','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.handle','\"default\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.hasTitleField','true'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.name','\"Default\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.section','\"b9aae130-5820-4b92-9a07-97ebd8b1f88e\"'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.sortOrder','1'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.titleFormat','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.titleTranslationKeyFormat','null'),('entryTypes.97e5f851-2705-4ef0-aba2-0e340311176f.titleTranslationMethod','\"site\"'),('fieldGroups.1195b082-ca18-4697-b64b-31a54ad5fdfc.name','\"Common\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.columnSuffix','\"nvjwogpa\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.contentColumnType','\"text\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.handle','\"orderReference\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.instructions','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.name','\"Reference\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.searchable','false'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.byteLimit','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.charLimit','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.code','false'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.columnType','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.initialRows','4'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.multiline','false'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.placeholder','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.settings.uiMode','\"normal\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.translationKeyFormat','null'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.translationMethod','\"none\"'),('fields.42f89f86-9d7d-456a-aa51-1fdb50708487.type','\"craft\\\\fields\\\\PlainText\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.columnSuffix','\"xoknbofz\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.contentColumnType','\"text\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.handle','\"productTags\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.instructions','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.name','\"Product Tags\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.searchable','false'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.byteLimit','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.charLimit','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.code','false'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.columnType','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.initialRows','4'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.multiline','false'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.placeholder','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.settings.uiMode','\"normal\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.translationKeyFormat','null'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.translationMethod','\"none\"'),('fields.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.columnSuffix','\"ceuswxql\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.contentColumnType','\"text\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.handle','\"excerpt\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.instructions','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.name','\"Excerpt\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.searchable','false'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.byteLimit','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.charLimit','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.code','false'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.columnType','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.initialRows','4'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.multiline','true'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.placeholder','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.settings.uiMode','\"normal\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.translationKeyFormat','null'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.translationMethod','\"none\"'),('fields.9a0cdbd7-7dfa-40de-806f-14bd1fce8653.type','\"craft\\\\fields\\\\PlainText\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.columnSuffix','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.contentColumnType','\"string\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.handle','\"orderfile\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.instructions','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.name','\"OrderFile\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.searchable','false'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.allowedKinds.0','\"image\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.allowedKinds.1','\"pdf\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.allowSelfRelations','false'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.allowSubfolders','false'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.allowUploads','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.defaultUploadLocationSource','\"volume:a2191c11-f670-44d7-9de8-dd4403266481\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.defaultUploadLocationSubpath','\"/{{dateCreated|date(\'Y-m\')}}/{{uid}}\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.localizeRelations','false'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.maxRelations','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.minRelations','1'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.previewMode','\"full\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.restrictedDefaultUploadSubpath','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.restrictedLocationSource','\"volume:a2191c11-f670-44d7-9de8-dd4403266481\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.restrictedLocationSubpath','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.restrictFiles','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.restrictLocation','false'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.0.0','\"elementType\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.0.1','\"craft\\\\elements\\\\Asset\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.1.0','\"fieldContext\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.1.1','\"global\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.2.0','\"class\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionCondition.__assoc__.2.1','\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.selectionLabel','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.showSiteMenu','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.showUnpermittedFiles','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.showUnpermittedVolumes','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.source','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.sources','\"*\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.targetSiteId','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.validateRelatedElements','true'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.settings.viewMode','\"list\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.translationKeyFormat','null'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.translationMethod','\"site\"'),('fields.c5a29982-eda9-4fe1-8640-8949a1672a3e.type','\"craft\\\\fields\\\\Assets\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.columnSuffix','\"xhrbnvew\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.contentColumnType','\"text\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.handle','\"description\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.instructions','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.name','\"Description\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.searchable','false'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.byteLimit','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.charLimit','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.code','false'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.columnType','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.initialRows','6'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.multiline','true'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.placeholder','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.settings.uiMode','\"normal\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.translationKeyFormat','null'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.translationMethod','\"site\"'),('fields.dd8561c1-9fdc-4b1e-9610-e966c84af218.type','\"craft\\\\fields\\\\PlainText\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.columnSuffix','\"islbuzpo\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.contentColumnType','\"boolean\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.fieldGroup','\"1195b082-ca18-4697-b64b-31a54ad5fdfc\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.handle','\"requirePrescription\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.instructions','null'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.name','\"Require Prescription\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.searchable','false'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.settings.default','false'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.settings.offLabel','null'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.settings.onLabel','null'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.translationKeyFormat','null'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.translationMethod','\"none\"'),('fields.f9a49c14-fb83-40e1-b020-cdde9b64fc87.type','\"craft\\\\fields\\\\Lightswitch\"'),('fs.local.hasUrls','true'),('fs.local.name','\"Local\"'),('fs.local.settings.path','\"@webroot/order/files\"'),('fs.local.type','\"craft\\\\fs\\\\Local\"'),('fs.local.url','\"/order/files\"'),('meta.__names__.1195b082-ca18-4697-b64b-31a54ad5fdfc','\"Common\"'),('meta.__names__.3d0c2b16-adae-4c4d-842a-7f558c5ac572','\"Shop\"'),('meta.__names__.3f4428c3-a2ad-4ff6-9e20-2d201edccd1c','\"New\"'),('meta.__names__.42f89f86-9d7d-456a-aa51-1fdb50708487','\"Reference\"'),('meta.__names__.4ad22c3a-9757-4c6c-8c43-59352597c16a','\"Craft4\"'),('meta.__names__.4dd4bd2f-b9e5-4264-be74-99e86b86c3a4','\"Helcim\"'),('meta.__names__.4fa4c890-b7b9-4f47-8155-0937a7f47f9b','\"Shop\"'),('meta.__names__.62f7cd09-b3c1-476d-a2cf-582f7f78ef6c','\"Product Tags\"'),('meta.__names__.6e7d2f8f-8aa9-4028-abdb-e3fe21f5dc8b','\"New\"'),('meta.__names__.8bb45c41-2625-4bcc-a8fb-e8c347816d9d','\"Home\"'),('meta.__names__.97e5f851-2705-4ef0-aba2-0e340311176f','\"Default\"'),('meta.__names__.9a0cdbd7-7dfa-40de-806f-14bd1fce8653','\"Excerpt\"'),('meta.__names__.a2191c11-f670-44d7-9de8-dd4403266481','\"OrderFile\"'),('meta.__names__.b7c11322-b1a5-4913-84d9-2762b866c126','\"Tech\"'),('meta.__names__.b9aae130-5820-4b92-9a07-97ebd8b1f88e','\"Blog\"'),('meta.__names__.c1528c63-84e5-4ed1-bd5d-f5fb6281f07a','\"Dummy\"'),('meta.__names__.c5a29982-eda9-4fe1-8640-8949a1672a3e','\"OrderFile\"'),('meta.__names__.c7add8bb-e55e-4a8e-8565-832c2f03dc0f','\"Dummy\"'),('meta.__names__.db89d4c0-0df3-4461-80c5-412bb43b4269','\"Craft4\"'),('meta.__names__.dd8561c1-9fdc-4b1e-9610-e966c84af218','\"Description\"'),('meta.__names__.f25265f7-0983-4a8d-a827-fdce8868cf9f','\"Ru\"'),('meta.__names__.f645fd95-4a50-4506-a221-32fd3a14cf7f','\"Home\"'),('meta.__names__.f9a49c14-fb83-40e1-b020-cdde9b64fc87','\"Require Prescription\"'),('plugins.bastion-agent.edition','\"standard\"'),('plugins.bastion-agent.enabled','true'),('plugins.bastion-agent.schemaVersion','\"1.0.0\"'),('plugins.bastion-agent.settings.lastBeatTime','1665587328'),('plugins.bastion-agent.settings.secretToken','\"dacdddd4e81aba2b21f91f0429d7a186\"'),('plugins.bastion-agent.settings.telemetryInterval','\"900\"'),('plugins.carebot.edition','\"standard\"'),('plugins.carebot.enabled','true'),('plugins.carebot.schemaVersion','\"1.0.0\"'),('plugins.carebot.settings.apiToken','\"fzAljqw1EYA.psBuZSFlw2Cur3U-6FSTzDNeu1hkkE2DyogBex5hpNs\"'),('plugins.carebot.settings.apiUrl','\"qna-carebot-prod\"'),('plugins.carebot.settings.audioUrl','\"https://craft4.newsite.space/order/files/ringtone.mp3\"'),('plugins.carebot.settings.chatColor','\"#3b82f6\"'),('plugins.carebot.settings.iconUrl','\"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\" width=\\\"30px\\\" height=\\\"30px\\\" viewBox=\\\"0 0 30 29\\\" version=\\\"1.1\\\">\\r\\n <path fill=\\\"#fff\\\" d=\\\"M 27.035156 0.484375 L 7.964844 0.484375 C 6.328125 0.484375 5 1.769531 5 3.351562 L 5 7.25 L 2.964844 7.25 C 1.328125 7.25 0 8.535156 0 10.117188 L 0 20.335938 C 0 21.914062 1.328125 23.199219 2.964844 23.199219 L 6 23.199219 L 6 28.03125 C 6 28.234375 6.125 28.410156 6.320312 28.484375 C 6.378906 28.507812 6.441406 28.515625 6.5 28.515625 C 6.640625 28.515625 6.773438 28.460938 6.867188 28.359375 L 11.71875 23.199219 L 22.035156 23.199219 C 23.671875 23.199219 25 21.914062 25 20.335938 L 25 16.433594 L 27.035156 16.433594 C 28.671875 16.433594 30 15.148438 30 13.566406 L 30 3.351562 C 30 1.769531 28.671875 0.484375 27.035156 0.484375 Z M 24 20.335938 C 24 21.378906 23.117188 22.234375 22.035156 22.234375 L 11.496094 22.234375 C 11.359375 22.234375 11.222656 22.289062 11.128906 22.390625 L 7 26.78125 L 7 22.71875 C 7 22.453125 6.773438 22.234375 6.5 22.234375 L 2.964844 22.234375 C 1.878906 22.234375 1 21.378906 1 20.335938 L 1 10.117188 C 1 9.066406 1.878906 8.21875 2.964844 8.21875 L 22.035156 8.21875 C 22.441406 8.21875 22.820312 8.335938 23.132812 8.539062 C 23.652344 8.882812 24 9.464844 24 10.117188 Z M 29 13.566406 C 29 14.613281 28.121094 15.46875 27.035156 15.46875 L 25 15.46875 L 25 10.117188 C 25 8.832031 24.121094 7.742188 22.914062 7.378906 C 22.824219 7.351562 22.730469 7.328125 22.628906 7.3125 C 22.4375 7.273438 22.238281 7.25 22.035156 7.25 L 6 7.25 L 6 3.351562 C 6 2.300781 6.882812 1.449219 7.964844 1.449219 L 27.035156 1.449219 C 28.121094 1.449219 29 2.300781 29 3.351562 Z M 29 13.566406 \\\"/>\\r\\n <path fill=\\\"#fff\\\" d=\\\"M 6 13.058594 L 13 13.058594 C 13.277344 13.058594 13.5 12.839844 13.5 12.574219 C 13.5 12.308594 13.277344 12.089844 13 12.089844 L 6 12.089844 C 5.722656 12.089844 5.5 12.308594 5.5 12.574219 C 5.5 12.839844 5.722656 13.058594 6 13.058594 Z M 6 13.058594 \\\"/>\\r\\n <path fill=\\\"#fff\\\" d=\\\"M 19.5 14.992188 L 6 14.992188 C 5.722656 14.992188 5.5 15.207031 5.5 15.476562 C 5.5 15.742188 5.722656 15.957031 6 15.957031 L 19.5 15.957031 C 19.777344 15.957031 20 15.742188 20 15.476562 C 20 15.207031 19.777344 14.992188 19.5 14.992188 Z M 19.5 14.992188 \\\"/>\\r\\n <path fill=\\\"#fff\\\" d=\\\"M 19.5 17.890625 L 6 17.890625 C 5.722656 17.890625 5.5 18.109375 5.5 18.375 C 5.5 18.640625 5.722656 18.855469 6 18.855469 L 19.5 18.855469 C 19.777344 18.855469 20 18.640625 20 18.375 C 20 18.109375 19.777344 17.890625 19.5 17.890625 Z M 19.5 17.890625 \\\"/>\\r\\n </svg>\"'),('plugins.commerce-helcim.edition','\"standard\"'),('plugins.commerce-helcim.enabled','true'),('plugins.commerce-helcim.licenseKey','\"J0QW93QYPZ9F253FFDSXT7XU\"'),('plugins.commerce-helcim.schemaVersion','\"1.0.0\"'),('plugins.commerce.edition','\"pro\"'),('plugins.commerce.enabled','true'),('plugins.commerce.licenseKey','\"U71SG8HD3L3BRZCBMT17NWNJ\"'),('plugins.commerce.schemaVersion','\"4.1.1\"'),('plugins.commerce.settings.activeCartDuration','3600'),('plugins.commerce.settings.allowCheckoutWithoutPayment','false'),('plugins.commerce.settings.allowEmptyCartOnCheckout','false'),('plugins.commerce.settings.allowPartialPaymentOnCheckout','false'),('plugins.commerce.settings.autoSetCartShippingMethodOption','false'),('plugins.commerce.settings.autoSetNewCartAddresses','true'),('plugins.commerce.settings.cartVariable','\"cart\"'),('plugins.commerce.settings.defaultView','\"commerce/orders\"'),('plugins.commerce.settings.dimensionUnits','\"mm\"'),('plugins.commerce.settings.emailSenderAddress','\"denis@conergine.com\"'),('plugins.commerce.settings.emailSenderAddressPlaceholder','null'),('plugins.commerce.settings.emailSenderName','null'),('plugins.commerce.settings.emailSenderNamePlaceholder','null'),('plugins.commerce.settings.freeOrderPaymentStrategy','\"complete\"'),('plugins.commerce.settings.gatewayPostRedirectTemplate','\"\"'),('plugins.commerce.settings.loadCartRedirectUrl','null'),('plugins.commerce.settings.minimumTotalPriceStrategy','\"default\"'),('plugins.commerce.settings.orderReferenceFormat','\"{{number[:7]}}\"'),('plugins.commerce.settings.paymentCurrency','null'),('plugins.commerce.settings.pdfAllowRemoteImages','false'),('plugins.commerce.settings.pdfPaperOrientation','\"portrait\"'),('plugins.commerce.settings.pdfPaperSize','\"letter\"'),('plugins.commerce.settings.purgeInactiveCarts','true'),('plugins.commerce.settings.purgeInactiveCartsDuration','7776000'),('plugins.commerce.settings.requireBillingAddressAtCheckout','false'),('plugins.commerce.settings.requireShippingAddressAtCheckout','false'),('plugins.commerce.settings.requireShippingMethodSelectionAtCheckout','false'),('plugins.commerce.settings.showEditUserCommerceTab','true'),('plugins.commerce.settings.updateBillingDetailsUrl','\"\"'),('plugins.commerce.settings.updateCartSearchIndexes','true'),('plugins.commerce.settings.useBillingAddressForTax','false'),('plugins.commerce.settings.validateBusinessTaxIdAsVatId','false'),('plugins.commerce.settings.validateCartCustomFieldsOnSubmission','false'),('plugins.commerce.settings.weightUnits','\"g\"'),('plugins.convergine-contentbuddy.edition','\"standard\"'),('plugins.convergine-contentbuddy.enabled','true'),('plugins.convergine-contentbuddy.licenseKey','\"BKOGLJBALJLB5DC9N4YASKG9\"'),('plugins.convergine-contentbuddy.schemaVersion','\"1.0.0\"'),('plugins.convergine-contentbuddy.settings.apiToken','\"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\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.0.0','5'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.0.1','\"1\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.1.0','4'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.1.1','\"1\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.2.0','1'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.2.1','\"\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.3.0','6'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.3.1','\"1\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.4.0','2'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.4.1','\"\"'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.5.0','3'),('plugins.convergine-contentbuddy.settings.enabledFields.__assoc__.5.1','\"\"'),('plugins.convergine-contentbuddy.settings.frequencyPenalty','0.0'),('plugins.convergine-contentbuddy.settings.imageSize','\"512x512\"'),('plugins.convergine-contentbuddy.settings.imagesStyles','\"colourful\"'),('plugins.convergine-contentbuddy.settings.maxTokens','256'),('plugins.convergine-contentbuddy.settings.preferredModel','\"gpt-3.5-turbo\"'),('plugins.convergine-contentbuddy.settings.presencePenalty','0.0'),('plugins.convergine-contentbuddy.settings.systemMessage','\"\"'),('plugins.convergine-contentbuddy.settings.temperature','0.7'),('plugins.convergine-contentbuddy.settings.usePageLang','true'),('plugins.seo.edition','\"standard\"'),('plugins.seo.enabled','true'),('plugins.seo.schemaVersion','\"3.2.0\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.defaultPlacement','\"end\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.enableVersioning','true'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.handle','\"shop\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.name','\"Shop\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.propagationMethod','\"all\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.enabledByDefault','true'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.hasUrls','true'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.template','\"shop/index.twig\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.uriFormat','\"shop\"'),('sections.4fa4c890-b7b9-4f47-8155-0937a7f47f9b.type','\"single\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.defaultPlacement','\"end\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.enableVersioning','true'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.handle','\"blog\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.name','\"Blog\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.propagationMethod','\"all\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.enabledByDefault','true'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.hasUrls','true'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.template','\"blog/_entry\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.uriFormat','\"blog/{slug}\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.enabledByDefault','true'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.hasUrls','true'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.template','\"blog/_entry\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.siteSettings.f25265f7-0983-4a8d-a827-fdce8868cf9f.uriFormat','\"blog/{slug}\"'),('sections.b9aae130-5820-4b92-9a07-97ebd8b1f88e.type','\"channel\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.defaultPlacement','\"end\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.enableVersioning','true'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.handle','\"home\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.name','\"Home\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.propagationMethod','\"all\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.enabledByDefault','true'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.hasUrls','true'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.template','\"home/_entry\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.siteSettings.4ad22c3a-9757-4c6c-8c43-59352597c16a.uriFormat','\"__home__\"'),('sections.f645fd95-4a50-4506-a221-32fd3a14cf7f.type','\"single\"'),('siteGroups.db89d4c0-0df3-4461-80c5-412bb43b4269.name','\"Craft4\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.baseUrl','\"$PRIMARY_SITE_URL\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.handle','\"default\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.hasUrls','true'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.language','\"en-US\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.name','\"Craft4\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.primary','true'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.siteGroup','\"db89d4c0-0df3-4461-80c5-412bb43b4269\"'),('sites.4ad22c3a-9757-4c6c-8c43-59352597c16a.sortOrder','1'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.baseUrl','\"@web/ru\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.enabled','\"1\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.handle','\"ru\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.hasUrls','true'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.language','\"ru-UA\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.name','\"Ru\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.primary','false'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.siteGroup','\"db89d4c0-0df3-4461-80c5-412bb43b4269\"'),('sites.f25265f7-0983-4a8d-a827-fdce8868cf9f.sortOrder','2'),('system.edition','\"pro\"'),('system.live','true'),('system.name','\"Craft4\"'),('system.retryDuration','null'),('system.schemaVersion','\"4.4.0.4\"'),('system.timeZone','\"America/Los_Angeles\"'),('users.allowPublicRegistration','true'),('users.deactivateByDefault','false'),('users.defaultGroup','\"\"'),('users.photoSubpath','null'),('users.photoVolumeUid','null'),('users.requireEmailVerification','true'),('users.validateOnPublicRegistration','false'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elementCondition','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.autocapitalize','true'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.autocomplete','false'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.autocorrect','true'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.class','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.disabled','false'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.elementCondition','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.id','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.instructions','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.label','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.max','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.min','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.name','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.orientation','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.placeholder','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.readonly','false'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.requirable','false'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.size','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.step','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.tip','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.title','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\assets\\\\AssetTitleField\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.uid','\"e3d7f950-89b1-4ca9-836a-e40cd0e6e35b\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.userCondition','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.warning','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.elements.0.width','100'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.name','\"Content\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.uid','\"0ba8d8a7-005f-468f-aaa5-a0a9216402b0\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fieldLayouts.a8c2ee8d-b9eb-4495-b043-532112e6ccc0.tabs.0.userCondition','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.fs','\"local\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.handle','\"orderfile\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.name','\"OrderFile\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.sortOrder','1'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.titleTranslationKeyFormat','null'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.titleTranslationMethod','\"site\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.transformFs','\"\"'),('volumes.a2191c11-f670-44d7-9de8-dd4403266481.transformSubpath','\"\"'); /*!40000 ALTER TABLE `projectconfig` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `queue` -- LOCK TABLES `queue` WRITE; /*!40000 ALTER TABLE `queue` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `queue` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `relations` -- LOCK TABLES `relations` WRITE; /*!40000 ALTER TABLE `relations` DISABLE KEYS */; set autocommit=0; INSERT INTO `relations` VALUES (1,1,131,NULL,134,1,'2023-01-23 14:09:05','2023-01-23 14:09:05','87806253-80ba-47d8-a74e-deff9e2040ad'),(18,1,137,NULL,156,1,'2023-01-24 10:47:04','2023-01-24 10:47:04','21fe201a-5e30-49f0-8054-7455b4ab7365'),(19,1,330,NULL,329,1,'2023-07-03 07:33:33','2023-07-03 07:33:33','88488dca-8ff7-4c9d-b356-27caabec8bae'); /*!40000 ALTER TABLE `relations` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `revisions` -- LOCK TABLES `revisions` WRITE; /*!40000 ALTER TABLE `revisions` DISABLE KEYS */; set autocommit=0; INSERT INTO `revisions` VALUES (1,9,1,1,NULL),(2,9,1,2,NULL),(3,12,1,1,NULL),(4,12,1,2,NULL),(5,12,1,3,NULL),(6,12,1,4,NULL),(7,12,1,5,NULL),(8,12,1,6,NULL),(9,9,1,3,NULL); /*!40000 ALTER TABLE `revisions` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `searchindex` -- LOCK TABLES `searchindex` WRITE; /*!40000 ALTER TABLE `searchindex` DISABLE KEYS */; set autocommit=0; INSERT INTO `searchindex` VALUES (1,'username',0,1,' craftadmin '),(1,'fullname',0,1,''),(1,'firstname',0,1,''),(1,'lastname',0,1,''),(1,'email',0,1,' konstantin convergine com '),(1,'slug',0,1,''),(2,'slug',0,1,''),(3,'countrycode',0,1,' us '),(3,'administrativearea',0,1,''),(3,'locality',0,1,''),(3,'dependentlocality',0,1,''),(3,'postalcode',0,1,''),(3,'sortingcode',0,1,''),(3,'addressline1',0,1,''),(3,'addressline2',0,1,''),(3,'organization',0,1,''),(3,'organizationtaxid',0,1,''),(3,'fullname',0,1,''),(3,'slug',0,1,''),(3,'title',0,1,' store '),(4,'billingfirstname',0,1,''),(4,'billinglastname',0,1,''),(4,'billingfullname',0,1,''),(4,'email',0,1,' konstantin convergine com '),(4,'number',0,1,' 2d52d97f5cdbfd1ca9ab6b819f5adbeb '),(4,'shippingfirstname',0,1,''),(4,'shippinglastname',0,1,''),(4,'shippingfullname',0,1,''),(4,'shortnumber',0,1,' 2d52d97 '),(4,'transactionreference',0,1,''),(4,'username',0,1,' craftadmin '),(4,'reference',0,1,''),(4,'skus',0,1,''),(4,'lineitemdescriptions',0,1,''),(4,'slug',0,1,''),(5,'slug',0,1,''),(6,'dependentlocality',0,1,''),(6,'postalcode',0,1,' m4m 4m4 '),(6,'locality',0,1,' dsdfsdf '),(6,'administrativearea',0,1,' mb '),(6,'countrycode',0,1,' ca '),(8,'producttitle',0,1,' product 01 '),(8,'sku',0,1,' w4789 x1 '),(8,'price',0,1,' 50 '),(8,'width',0,1,' 0 '),(8,'height',0,1,' 0 '),(8,'length',0,1,' 0 '),(8,'weight',0,1,' 0 '),(7,'slug',0,1,' product 01 '),(7,'sku',0,1,' w4789 x1 '),(9,'slug',0,1,' home '),(12,'title',0,1,' shop '),(12,'slug',0,1,' shop '),(20,'width',0,1,' 0 '),(20,'height',0,1,' 0 '),(20,'length',0,1,' 0 '),(20,'weight',0,1,' 0 '),(20,'stock',0,1,' 0 '),(20,'hasunlimitedstock',0,1,' 1 '),(20,'sku',0,1,' w4789 x2 '),(20,'price',0,1,' 1 '),(19,'slug',0,1,' product 02 '),(19,'sku',0,1,' w4789 x2 '),(22,'producttitle',0,1,' product 03 '),(22,'sku',0,1,' w4789 x3 '),(22,'price',0,1,' 0 5 '),(22,'width',0,1,' 0 '),(22,'height',0,1,' 0 '),(22,'length',0,1,' 0 '),(22,'weight',0,1,' 0 '),(21,'slug',0,1,' product 03 '),(21,'sku',0,1,' w4789 x3 '),(34,'title',0,1,' billing address '),(34,'countrycode',0,1,' ca '),(34,'administrativearea',0,1,' on '),(34,'locality',0,1,' toronto '),(34,'dependentlocality',0,1,''),(34,'postalcode',0,1,' m4m4m4 '),(34,'sortingcode',0,1,''),(34,'addressline1',0,1,' brodie 155 '),(34,'addressline2',0,1,''),(34,'organization',0,1,''),(34,'organizationtaxid',0,1,''),(33,'organization',0,1,''),(34,'slug',0,1,''),(8,'stock',0,1,' 0 '),(8,'hasunlimitedstock',0,1,' 1 '),(8,'minqty',0,1,''),(7,'title',0,1,' product 01 '),(8,'maxqty',0,1,''),(20,'maxqty',0,1,''),(20,'producttitle',0,1,' product 02 '),(20,'slug',0,1,''),(20,'title',0,1,' product 02 '),(19,'title',0,1,' product 02 '),(22,'stock',0,1,' 0 '),(22,'hasunlimitedstock',0,1,' 1 '),(22,'minqty',0,1,''),(21,'title',0,1,' product 03 '),(31,'lineitemdescriptions',0,1,' product 02 product 02 '),(33,'organizationtaxid',0,1,''),(33,'countrycode',0,1,' ca '),(33,'administrativearea',0,1,' on '),(33,'locality',0,1,' toronto '),(33,'dependentlocality',0,1,''),(33,'postalcode',0,1,' m4m4m4 '),(33,'sortingcode',0,1,''),(33,'addressline1',0,1,' brodie 155 '),(33,'addressline2',0,1,''),(6,'title',0,1,' store '),(6,'slug',0,1,''),(6,'fullname',0,1,''),(6,'organizationtaxid',0,1,''),(6,'addressline2',0,1,''),(6,'organization',0,1,''),(6,'addressline1',0,1,' 63 halton garden '),(22,'maxqty',0,1,''),(21,'defaultsku',0,1,' w4789 x3 '),(257,'username',0,1,' janetest '),(20,'minqty',0,1,''),(19,'defaultsku',0,1,' w4789 x2 '),(31,'billinglastname',0,1,' piskun '),(6,'sortingcode',0,1,''),(27,'countrycode',0,1,' us '),(30,'countrycode',0,1,' us '),(30,'administrativearea',0,1,' ca '),(39,'title',0,1,' shipping address '),(31,'slug',0,1,''),(41,'reference',0,1,' 38c1d53 '),(31,'shortnumber',0,1,' c2312ed '),(31,'transactionreference',0,1,' 34354046 34354046 '),(31,'username',0,1,' denis '),(31,'reference',0,1,' c2312ed '),(31,'skus',0,1,' w4789 x2 '),(26,'username',0,1,' denis '),(26,'firstname',0,1,''),(26,'fullname',0,1,''),(26,'lastname',0,1,''),(26,'email',0,1,' denis convergine com '),(26,'slug',0,1,''),(31,'shippingfullname',0,1,' denis piskun '),(30,'slug',0,1,''),(30,'fullname',0,1,' denis '),(30,'postalcode',0,1,' 67876 '),(30,'sortingcode',0,1,''),(30,'addressline1',0,1,' brodie 155 '),(30,'addressline2',0,1,''),(30,'organization',0,1,''),(30,'organizationtaxid',0,1,''),(30,'dependentlocality',0,1,''),(30,'locality',0,1,' toronto '),(33,'title',0,1,' shipping address '),(33,'slug',0,1,''),(30,'title',0,1,' billing address '),(31,'billingfullname',0,1,' denis piskun '),(31,'email',0,1,' denis convergine com '),(31,'number',0,1,' c2312ed147126346824e21117dd3ae39 '),(27,'title',0,1,' shipping address '),(27,'locality',0,1,' toronto '),(27,'dependentlocality',0,1,''),(27,'postalcode',0,1,' 67876 '),(31,'billingfirstname',0,1,' denis '),(34,'fullname',0,1,' denis piskun '),(27,'administrativearea',0,1,' ca '),(27,'sortingcode',0,1,''),(27,'addressline1',0,1,' brodie 155 '),(27,'addressline2',0,1,''),(27,'organization',0,1,''),(27,'organizationtaxid',0,1,''),(27,'fullname',0,1,' denis '),(27,'slug',0,1,''),(31,'shippingfirstname',0,1,' denis '),(31,'shippinglastname',0,1,' piskun '),(33,'fullname',0,1,' denis piskun '),(35,'email',0,1,' denis convergine com '),(35,'number',0,1,' 94d3dc41c8a530e8a3e0c6989b56ae3b '),(35,'shippingfirstname',0,1,' denis '),(35,'shippinglastname',0,1,' piskun '),(35,'shippingfullname',0,1,' denis piskun '),(35,'shortnumber',0,1,' 94d3dc4 '),(35,'transactionreference',0,1,' 34354077 '),(35,'username',0,1,' denis '),(35,'reference',0,1,' 94d3dc4 '),(35,'skus',0,1,' w4789 x2 '),(35,'lineitemdescriptions',0,1,' product 02 product 02 '),(35,'slug',0,1,''),(35,'billinglastname',0,1,' piskun '),(35,'billingfirstname',0,1,' denis '),(36,'fullname',0,1,' denis piskun '),(36,'slug',0,1,''),(36,'organizationtaxid',0,1,''),(36,'locality',0,1,' toronto '),(36,'dependentlocality',0,1,''),(36,'postalcode',0,1,' m4m4m4 '),(36,'sortingcode',0,1,''),(36,'addressline1',0,1,' bodie 155 '),(36,'addressline2',0,1,''),(37,'postalcode',0,1,' m4m4m4 '),(37,'sortingcode',0,1,''),(37,'addressline1',0,1,' bodie 155 '),(37,'addressline2',0,1,''),(37,'organization',0,1,''),(37,'organizationtaxid',0,1,''),(37,'administrativearea',0,1,' on '),(37,'locality',0,1,' toronto '),(37,'dependentlocality',0,1,''),(36,'countrycode',0,1,' ca '),(36,'organization',0,1,''),(36,'administrativearea',0,1,' on '),(37,'countrycode',0,1,' ca '),(35,'billingfullname',0,1,' denis piskun '),(37,'fullname',0,1,' denis piskun '),(37,'slug',0,1,''),(36,'title',0,1,' shipping address '),(37,'title',0,1,' billing address '),(38,'slug',0,1,''),(44,'dependentlocality',0,1,''),(38,'username',0,1,' denis '),(38,'reference',0,1,' 4a10d15 '),(38,'skus',0,1,' w4789 x2 '),(38,'billingfirstname',0,1,' denis '),(38,'billinglastname',0,1,' piskun '),(38,'billingfullname',0,1,' denis piskun '),(38,'email',0,1,' denis convergine com '),(38,'number',0,1,' 4a10d15b13037577644d150e9f559232 '),(38,'shippingfirstname',0,1,' denis '),(38,'shippinglastname',0,1,' piskun '),(38,'shippingfullname',0,1,' denis piskun '),(38,'shortnumber',0,1,' 4a10d15 '),(38,'transactionreference',0,1,' 34354086 '),(39,'fullname',0,1,' denis piskun '),(39,'slug',0,1,''),(39,'organizationtaxid',0,1,''),(39,'locality',0,1,' toronto '),(39,'dependentlocality',0,1,''),(39,'postalcode',0,1,' m4m4m4 '),(39,'sortingcode',0,1,''),(39,'addressline1',0,1,' brodie 155 '),(39,'addressline2',0,1,''),(40,'slug',0,1,''),(40,'title',0,1,' billing address '),(40,'organizationtaxid',0,1,''),(40,'fullname',0,1,' denis piskun '),(40,'organization',0,1,''),(40,'administrativearea',0,1,' on '),(40,'locality',0,1,' toronto '),(40,'dependentlocality',0,1,''),(39,'countrycode',0,1,' ca '),(39,'organization',0,1,''),(39,'administrativearea',0,1,' on '),(40,'postalcode',0,1,' m4m4m4 '),(40,'sortingcode',0,1,''),(40,'addressline1',0,1,' brodie 155 '),(40,'addressline2',0,1,''),(38,'lineitemdescriptions',0,1,' product 02 product 02 '),(40,'countrycode',0,1,' ca '),(44,'locality',0,1,' toronto '),(44,'administrativearea',0,1,' on '),(44,'countrycode',0,1,' ca '),(41,'username',0,1,' denis '),(41,'billingfirstname',0,1,' denis '),(41,'billinglastname',0,1,''),(41,'billingfullname',0,1,' denis '),(41,'email',0,1,' denis convergine com '),(41,'number',0,1,' 38c1d53322e16eb5f4dbfd3189767de7 '),(41,'shippingfirstname',0,1,' denis '),(41,'shippinglastname',0,1,''),(41,'shippingfullname',0,1,' denis '),(41,'shortnumber',0,1,' 38c1d53 '),(41,'transactionreference',0,1,' 34354111 '),(42,'organization',0,1,''),(42,'countrycode',0,1,' ca '),(42,'administrativearea',0,1,' on '),(42,'locality',0,1,' toronto '),(42,'dependentlocality',0,1,''),(42,'postalcode',0,1,' m4m4m4 '),(42,'sortingcode',0,1,''),(42,'addressline1',0,1,' brodie 155 '),(42,'addressline2',0,1,''),(43,'fullname',0,1,' denis '),(43,'slug',0,1,''),(43,'title',0,1,' billing address '),(43,'organization',0,1,''),(43,'organizationtaxid',0,1,''),(43,'addressline2',0,1,''),(43,'postalcode',0,1,' m4m4m4 '),(43,'sortingcode',0,1,''),(43,'addressline1',0,1,' brodie 155 '),(41,'slug',0,1,''),(42,'organizationtaxid',0,1,''),(42,'fullname',0,1,' denis '),(42,'slug',0,1,''),(42,'title',0,1,' shipping address '),(43,'countrycode',0,1,' ca '),(43,'administrativearea',0,1,' on '),(43,'locality',0,1,' toronto '),(43,'dependentlocality',0,1,''),(41,'skus',0,1,' w4789 x2 '),(41,'lineitemdescriptions',0,1,' product 02 product 02 '),(44,'postalcode',0,1,' m4m4m4 '),(44,'sortingcode',0,1,''),(44,'addressline1',0,1,' brodie 155 '),(44,'addressline2',0,1,''),(44,'organization',0,1,''),(44,'organizationtaxid',0,1,''),(44,'fullname',0,1,' denis piskun '),(44,'slug',0,1,''),(44,'title',0,1,' main '),(55,'lineitemdescriptions',0,1,' product 02 product 02 '),(48,'fullname',0,1,' denis piskun '),(48,'slug',0,1,''),(48,'title',0,1,' billing address '),(165,'billingfirstname',0,1,' denis '),(48,'addressline2',0,1,' lend 156 '),(48,'sortingcode',0,1,''),(48,'addressline1',0,1,' sammer str 155 '),(48,'locality',0,1,' richmond hill '),(48,'dependentlocality',0,1,''),(55,'username',0,1,' denis '),(48,'organization',0,1,' convergine '),(48,'postalcode',0,1,' m2m2m2 '),(45,'username',0,1,' craftadmin '),(45,'slug',0,1,''),(46,'administrativearea',0,1,' on '),(46,'locality',0,1,' toronto '),(48,'administrativearea',0,1,' on '),(45,'lineitemdescriptions',0,1,' product 01 product 01 product 02 product 02 '),(45,'transactionreference',0,1,' 34508966 '),(45,'billingfirstname',0,1,' denis '),(45,'billinglastname',0,1,' piskun '),(45,'billingfullname',0,1,' denis piskun '),(45,'email',0,1,' konstantin convergine com '),(45,'number',0,1,' 7946cfa871e1e7a63ba56da4dc35d8fd '),(45,'shippingfirstname',0,1,' denis '),(45,'shippinglastname',0,1,' piskun '),(45,'shippingfullname',0,1,' denis piskun '),(45,'shortnumber',0,1,' 7946cfa '),(46,'title',0,1,' shipping address '),(46,'slug',0,1,''),(46,'organizationtaxid',0,1,''),(46,'fullname',0,1,' denis piskun '),(46,'dependentlocality',0,1,''),(46,'postalcode',0,1,' m4m4m4 '),(46,'sortingcode',0,1,''),(46,'addressline1',0,1,' brodie 155 '),(46,'addressline2',0,1,''),(46,'organization',0,1,''),(49,'billingfullname',0,1,' denis piskun '),(46,'countrycode',0,1,' ca '),(52,'slug',0,1,''),(49,'shortnumber',0,1,' 5c8d744 '),(49,'transactionreference',0,1,' 34381296 '),(49,'username',0,1,' denis '),(49,'reference',0,1,' 5c8d744 '),(49,'skus',0,1,' w4789 x2 '),(49,'lineitemdescriptions',0,1,' product 02 product 02 '),(49,'shippingfullname',0,1,' denis piskun '),(49,'shippinglastname',0,1,' piskun '),(49,'shippingfirstname',0,1,' denis '),(49,'number',0,1,' 5c8d7441356702c0eadb7dbc1783f2bf '),(49,'billingfirstname',0,1,' denis '),(49,'billinglastname',0,1,' piskun '),(50,'countrycode',0,1,' ca '),(50,'administrativearea',0,1,' on '),(50,'locality',0,1,' toronto '),(50,'dependentlocality',0,1,''),(50,'title',0,1,' shipping address '),(50,'slug',0,1,''),(50,'organizationtaxid',0,1,''),(50,'organization',0,1,''),(50,'postalcode',0,1,' m4m4m4 '),(50,'sortingcode',0,1,''),(50,'addressline1',0,1,' brodie 155 '),(49,'email',0,1,' denis convergine com '),(51,'slug',0,1,''),(51,'title',0,1,' billing address '),(51,'organizationtaxid',0,1,''),(51,'fullname',0,1,' denis piskun '),(51,'organization',0,1,''),(51,'administrativearea',0,1,' on '),(51,'locality',0,1,' toronto '),(51,'dependentlocality',0,1,''),(50,'addressline2',0,1,''),(51,'postalcode',0,1,' m4m4m4 '),(51,'sortingcode',0,1,''),(51,'addressline1',0,1,' brodie 155 '),(51,'addressline2',0,1,''),(49,'slug',0,1,''),(50,'fullname',0,1,' denis piskun '),(51,'countrycode',0,1,' ca '),(53,'organization',0,1,''),(53,'sortingcode',0,1,''),(53,'addressline1',0,1,' brodie 155 '),(53,'addressline2',0,1,''),(52,'reference',0,1,' 211fbfb '),(52,'skus',0,1,' w4789 x2 '),(52,'lineitemdescriptions',0,1,' product 02 product 02 '),(52,'billinglastname',0,1,' piskun '),(52,'billingfullname',0,1,' denis piskun '),(52,'email',0,1,' denis convergine com '),(52,'number',0,1,' 211fbfbce377e151db038ccda36c2b75 '),(52,'shippingfirstname',0,1,' denis '),(52,'shippinglastname',0,1,' piskun '),(52,'shippingfullname',0,1,' denis piskun '),(52,'shortnumber',0,1,' 211fbfb '),(52,'transactionreference',0,1,' 34381920 '),(52,'username',0,1,' denis '),(53,'postalcode',0,1,' m4m4m4 '),(53,'countrycode',0,1,' ca '),(54,'countrycode',0,1,' ca '),(53,'slug',0,1,''),(53,'title',0,1,' shipping address '),(53,'organizationtaxid',0,1,''),(53,'fullname',0,1,' denis piskun '),(53,'administrativearea',0,1,' on '),(53,'locality',0,1,' toronto '),(53,'dependentlocality',0,1,''),(54,'administrativearea',0,1,' on '),(54,'locality',0,1,' toronto '),(54,'dependentlocality',0,1,''),(54,'postalcode',0,1,' m4m4m4 '),(54,'sortingcode',0,1,''),(54,'addressline1',0,1,' brodie 155 '),(54,'addressline2',0,1,''),(54,'organization',0,1,''),(54,'organizationtaxid',0,1,''),(54,'fullname',0,1,' denis piskun '),(54,'slug',0,1,''),(54,'title',0,1,' billing address '),(58,'title',0,1,' shipping address '),(52,'billingfirstname',0,1,' denis '),(72,'organizationtaxid',0,1,''),(48,'organizationtaxid',0,1,' 1565 '),(55,'slug',0,1,''),(78,'slug',0,1,''),(59,'organizationtaxid',0,1,''),(59,'countrycode',0,1,' ca '),(59,'administrativearea',0,1,' on '),(59,'locality',0,1,' toronto '),(59,'dependentlocality',0,1,''),(59,'postalcode',0,1,' m4m4m4 '),(59,'sortingcode',0,1,''),(59,'addressline1',0,1,' brodie 155 '),(59,'addressline2',0,1,''),(59,'organization',0,1,''),(58,'dependentlocality',0,1,''),(58,'postalcode',0,1,' m4m4m4 '),(58,'sortingcode',0,1,''),(58,'addressline1',0,1,' brodie 155 '),(58,'addressline2',0,1,''),(58,'organization',0,1,''),(58,'administrativearea',0,1,' on '),(58,'locality',0,1,' toronto '),(58,'fullname',0,1,' denis piskun '),(58,'slug',0,1,''),(58,'organizationtaxid',0,1,''),(55,'reference',0,1,' d36c998 '),(55,'billinglastname',0,1,' piskun '),(55,'billingfirstname',0,1,' denis '),(55,'billingfullname',0,1,' denis piskun '),(55,'email',0,1,' denis convergine com '),(55,'number',0,1,' d36c9987aba702de9aa14e655a31eefb '),(55,'shippingfirstname',0,1,' denis '),(55,'shippinglastname',0,1,' piskun '),(55,'shippingfullname',0,1,' denis piskun '),(55,'shortnumber',0,1,' d36c998 '),(55,'transactionreference',0,1,' 34497909 34497909 34497909 '),(59,'fullname',0,1,' denis piskun '),(59,'slug',0,1,''),(59,'title',0,1,' billing address '),(58,'countrycode',0,1,' ca '),(60,'lineitemdescriptions',0,1,' product 02 product 02 '),(60,'reference',0,1,''),(60,'skus',0,1,' w4789 x2 '),(60,'username',0,1,' denis '),(60,'shortnumber',0,1,' ae96668 '),(60,'transactionreference',0,1,''),(60,'shippingfullname',0,1,' denis piskun '),(60,'billinglastname',0,1,' piskun '),(60,'billingfirstname',0,1,' denis '),(60,'email',0,1,' denis convergine com '),(60,'number',0,1,' ae96668e157afa29b2eb565f1543acb5 '),(60,'shippingfirstname',0,1,' denis '),(60,'shippinglastname',0,1,' piskun '),(61,'postalcode',0,1,''),(61,'sortingcode',0,1,''),(61,'addressline1',0,1,''),(61,'addressline2',0,1,''),(61,'organization',0,1,''),(61,'organizationtaxid',0,1,''),(61,'administrativearea',0,1,''),(61,'locality',0,1,''),(61,'dependentlocality',0,1,''),(126,'organizationtaxid',0,1,''),(48,'countrycode',0,1,' ca '),(55,'skus',0,1,' w4789 x2 '),(310,'slug',0,1,''),(62,'billingfullname',0,1,' andrei medvedevs '),(45,'reference',0,1,' 7946cfa '),(45,'skus',0,1,' w4789 x1 w4789 x2 '),(169,'slug',0,1,''),(62,'number',0,1,' 1f194b4c98866f4c965904eb2913597e '),(322,'administrativearea',0,1,' on '),(169,'lineitemdescriptions',0,1,' product 01 product 01 '),(62,'shortnumber',0,1,' 1f194b4 '),(62,'transactionreference',0,1,' 37332881 37335903 37335903 37335903 '),(62,'username',0,1,' craftadmin '),(62,'reference',0,1,' 1f194b4 '),(62,'skus',0,1,' w4789 x1 w4789 x2 '),(62,'lineitemdescriptions',0,1,' product 01 product 01 product 02 product 02 '),(62,'shippingfullname',0,1,' andrei medvedevs '),(62,'shippinglastname',0,1,' medvedevs '),(63,'countrycode',0,1,' us '),(63,'administrativearea',0,1,''),(63,'locality',0,1,''),(63,'dependentlocality',0,1,''),(222,'shippinglastname',0,1,' piskun '),(69,'administrativearea',0,1,' on '),(66,'username',0,1,''),(64,'billingfirstname',0,1,' tom '),(64,'billinglastname',0,1,' bill '),(64,'billingfullname',0,1,' tom hanks bill '),(64,'email',0,1,' denis1 convergine com '),(64,'number',0,1,' 4e4adba2f5351dec39d8951d640a03c3 '),(64,'shippingfirstname',0,1,' tom '),(64,'shippinglastname',0,1,' ship '),(64,'shippingfullname',0,1,' tom hanks ship '),(64,'shortnumber',0,1,' 4e4adba '),(64,'transactionreference',0,1,' 34508976 '),(64,'username',0,1,''),(64,'reference',0,1,' 4e4adba '),(64,'skus',0,1,' w4789 x2 w4789 x3 '),(64,'lineitemdescriptions',0,1,' product 02 product 02 product 03 product 03 '),(64,'slug',0,1,''),(65,'fullname',0,1,''),(65,'slug',0,1,''),(65,'title',0,1,' new address '),(65,'administrativearea',0,1,''),(65,'locality',0,1,''),(65,'dependentlocality',0,1,''),(65,'postalcode',0,1,' m4m4m4 '),(65,'sortingcode',0,1,''),(65,'addressline1',0,1,''),(65,'addressline2',0,1,''),(65,'organization',0,1,''),(65,'organizationtaxid',0,1,''),(66,'fullname',0,1,''),(66,'firstname',0,1,''),(66,'lastname',0,1,''),(66,'email',0,1,' denis1 convergine com '),(66,'slug',0,1,''),(65,'countrycode',0,1,' ca '),(67,'title',0,1,' shipping address '),(67,'countrycode',0,1,' ca '),(67,'administrativearea',0,1,' on '),(67,'locality',0,1,' city ship '),(67,'dependentlocality',0,1,''),(67,'postalcode',0,1,' s7s7s7 '),(67,'sortingcode',0,1,''),(67,'addressline1',0,1,' addres ship line 1 '),(67,'addressline2',0,1,' addres dhip line 2 '),(68,'countrycode',0,1,' ca '),(69,'countrycode',0,1,' ca '),(68,'fullname',0,1,' tom hanks bill '),(68,'addressline1',0,1,' addres bill line 1 '),(68,'addressline2',0,1,' addres bill line 2 '),(68,'administrativearea',0,1,' pe '),(68,'locality',0,1,' city bill '),(68,'dependentlocality',0,1,''),(68,'postalcode',0,1,' b4b4b4 '),(68,'sortingcode',0,1,''),(67,'organization',0,1,''),(67,'organizationtaxid',0,1,''),(67,'fullname',0,1,' tom hanks ship '),(67,'slug',0,1,''),(68,'slug',0,1,''),(68,'title',0,1,' billing address '),(68,'organization',0,1,' convergine '),(68,'organizationtaxid',0,1,''),(61,'fullname',0,1,''),(61,'slug',0,1,''),(60,'billingfullname',0,1,' denis piskun '),(69,'slug',0,1,''),(69,'title',0,1,' shipping address '),(69,'organizationtaxid',0,1,''),(69,'fullname',0,1,' denis piskun '),(69,'organization',0,1,''),(69,'locality',0,1,' toronto '),(69,'dependentlocality',0,1,''),(69,'postalcode',0,1,' m4m4m4 '),(69,'sortingcode',0,1,''),(69,'addressline1',0,1,' brodie 155 '),(69,'addressline2',0,1,''),(70,'fullname',0,1,' denis piskun '),(70,'slug',0,1,''),(70,'organization',0,1,''),(70,'organizationtaxid',0,1,''),(70,'addressline2',0,1,''),(70,'administrativearea',0,1,' on '),(70,'locality',0,1,' toronto '),(70,'dependentlocality',0,1,''),(70,'postalcode',0,1,' m4m4m4 '),(70,'sortingcode',0,1,''),(70,'addressline1',0,1,' brodie 155 '),(70,'countrycode',0,1,' ca '),(61,'title',0,1,' new address '),(60,'slug',0,1,''),(61,'countrycode',0,1,' us '),(70,'title',0,1,' billing address '),(71,'slug',0,1,''),(71,'lineitemdescriptions',0,1,' product 02 product 02 '),(71,'billingfirstname',0,1,' denis '),(71,'billinglastname',0,1,' piskun '),(71,'billingfullname',0,1,' denis piskun '),(71,'email',0,1,' denis convergine com '),(71,'number',0,1,' 906d1f06a0e5c34c197886bfaafbeb42 '),(71,'shippingfirstname',0,1,' denis '),(71,'shippinglastname',0,1,' piskun '),(71,'shippingfullname',0,1,' denis piskun '),(71,'shortnumber',0,1,' 906d1f0 '),(71,'transactionreference',0,1,' 34510132 '),(71,'username',0,1,' denis '),(71,'reference',0,1,' 906d1f0 '),(72,'slug',0,1,''),(72,'title',0,1,' new address '),(72,'fullname',0,1,''),(72,'countrycode',0,1,' us '),(72,'administrativearea',0,1,''),(72,'locality',0,1,''),(72,'dependentlocality',0,1,''),(72,'postalcode',0,1,''),(72,'sortingcode',0,1,''),(72,'addressline1',0,1,''),(72,'addressline2',0,1,''),(72,'organization',0,1,''),(74,'slug',0,1,''),(73,'fullname',0,1,' denis piskun '),(73,'slug',0,1,''),(73,'organizationtaxid',0,1,''),(73,'countrycode',0,1,' ca '),(73,'administrativearea',0,1,' on '),(73,'locality',0,1,' toronto '),(73,'dependentlocality',0,1,''),(73,'postalcode',0,1,' m4m4m4 '),(73,'sortingcode',0,1,''),(73,'addressline1',0,1,' brodie 155 '),(73,'addressline2',0,1,''),(73,'organization',0,1,''),(74,'fullname',0,1,' denis piskun '),(74,'locality',0,1,' toronto '),(74,'dependentlocality',0,1,''),(74,'postalcode',0,1,' m4m4m4 '),(74,'sortingcode',0,1,''),(74,'addressline1',0,1,' brodie 155 '),(74,'addressline2',0,1,''),(74,'organization',0,1,''),(74,'organizationtaxid',0,1,''),(73,'title',0,1,' shipping address '),(74,'countrycode',0,1,' ca '),(78,'username',0,1,' denis '),(74,'administrativearea',0,1,' on '),(74,'title',0,1,' billing address '),(75,'billingfirstname',0,1,' denis '),(71,'skus',0,1,' w4789 x2 '),(75,'skus',0,1,' w4789 x2 '),(76,'dependentlocality',0,1,''),(75,'shortnumber',0,1,' 3575d58 '),(75,'transactionreference',0,1,' 34522336 '),(75,'username',0,1,' denis '),(75,'reference',0,1,' 3575d58 '),(75,'billinglastname',0,1,' piskun '),(75,'billingfullname',0,1,' denis piskun '),(75,'email',0,1,' denis convergine com '),(75,'number',0,1,' 3575d58f5ce149bbceb1f16ffb03beb2 '),(75,'shippingfirstname',0,1,' denis '),(75,'shippinglastname',0,1,' piskun '),(75,'shippingfullname',0,1,' denis piskun '),(76,'slug',0,1,''),(75,'lineitemdescriptions',0,1,' product 02 product 02 '),(76,'sortingcode',0,1,''),(76,'addressline1',0,1,' brodie 155 '),(76,'addressline2',0,1,''),(76,'organization',0,1,''),(76,'organizationtaxid',0,1,''),(76,'fullname',0,1,' denis piskun '),(76,'postalcode',0,1,' m4m4m4 '),(76,'administrativearea',0,1,' on '),(76,'locality',0,1,' toronto '),(78,'shippinglastname',0,1,' piskun '),(77,'countrycode',0,1,' ca '),(77,'administrativearea',0,1,' on '),(77,'locality',0,1,' toronto '),(77,'dependentlocality',0,1,''),(77,'postalcode',0,1,' m4m4m4 '),(77,'sortingcode',0,1,''),(77,'addressline1',0,1,' brodie 155 '),(77,'addressline2',0,1,''),(77,'organization',0,1,''),(77,'organizationtaxid',0,1,''),(77,'fullname',0,1,' denis piskun '),(77,'slug',0,1,''),(77,'title',0,1,' billing address '),(76,'title',0,1,' shipping address '),(75,'slug',0,1,''),(76,'countrycode',0,1,' ca '),(78,'reference',0,1,' 2898d74 '),(78,'skus',0,1,' w4789 x2 '),(78,'transactionreference',0,1,' 34522409 34522409 34522409 34522409 34522440 '),(78,'shippingfullname',0,1,' denis piskun '),(78,'shortnumber',0,1,' 2898d74 '),(78,'shippingfirstname',0,1,' denis '),(78,'billingfirstname',0,1,' denis '),(78,'billinglastname',0,1,' piskun '),(78,'billingfullname',0,1,' denis piskun '),(78,'email',0,1,' denis convergine com '),(78,'number',0,1,' 2898d7454880a3350381a3f0cef43084 '),(79,'countrycode',0,1,' ca '),(79,'administrativearea',0,1,' on '),(79,'locality',0,1,' toronto '),(80,'addressline2',0,1,''),(79,'slug',0,1,''),(79,'title',0,1,' shipping address '),(79,'organizationtaxid',0,1,''),(79,'fullname',0,1,' denis piskun '),(79,'addressline1',0,1,' brodie 155 '),(79,'dependentlocality',0,1,''),(79,'postalcode',0,1,' m4m4m4 '),(79,'sortingcode',0,1,''),(80,'slug',0,1,''),(80,'title',0,1,' billing address '),(80,'organizationtaxid',0,1,''),(80,'fullname',0,1,' denis piskun '),(80,'organization',0,1,''),(80,'sortingcode',0,1,''),(80,'addressline1',0,1,' brodie 155 '),(78,'lineitemdescriptions',0,1,' product 02 product 02 '),(80,'countrycode',0,1,' ca '),(80,'administrativearea',0,1,' on '),(80,'locality',0,1,' toronto '),(80,'dependentlocality',0,1,''),(80,'postalcode',0,1,' m4m4m4 '),(79,'organization',0,1,''),(79,'addressline2',0,1,''),(83,'title',0,1,' billing address '),(83,'postalcode',0,1,' m4m4m4 '),(83,'countrycode',0,1,' ca '),(81,'reference',0,1,' 51e22b4 '),(81,'skus',0,1,' w4789 x2 '),(81,'lineitemdescriptions',0,1,' product 02 product 02 '),(81,'billingfirstname',0,1,' denis '),(81,'billinglastname',0,1,' piskun '),(81,'billingfullname',0,1,' denis piskun '),(81,'email',0,1,' denis convergine com '),(81,'number',0,1,' 51e22b42844e36f8a79c1ddb708d82e8 '),(81,'shippingfirstname',0,1,' denis '),(81,'shippinglastname',0,1,' piskun '),(81,'shippingfullname',0,1,' denis piskun '),(81,'shortnumber',0,1,' 51e22b4 '),(81,'transactionreference',0,1,' 34522448 '),(81,'username',0,1,' denis '),(83,'sortingcode',0,1,''),(82,'addressline2',0,1,''),(82,'organization',0,1,''),(82,'organizationtaxid',0,1,''),(82,'fullname',0,1,' denis piskun '),(82,'slug',0,1,''),(82,'administrativearea',0,1,' on '),(82,'locality',0,1,' toronto '),(82,'dependentlocality',0,1,''),(82,'postalcode',0,1,' m4m4m4 '),(82,'sortingcode',0,1,''),(82,'addressline1',0,1,' brodie 155 '),(81,'slug',0,1,''),(83,'fullname',0,1,' denis piskun '),(83,'slug',0,1,''),(83,'addressline1',0,1,' brodie 155 '),(83,'addressline2',0,1,''),(83,'administrativearea',0,1,' on '),(83,'locality',0,1,' toronto '),(83,'dependentlocality',0,1,''),(82,'countrycode',0,1,' ca '),(84,'slug',0,1,''),(83,'organization',0,1,''),(83,'organizationtaxid',0,1,''),(82,'title',0,1,' shipping address '),(84,'lineitemdescriptions',0,1,' product 02 product 02 '),(87,'slug',0,1,''),(84,'reference',0,1,' 74b77e5 '),(84,'skus',0,1,' w4789 x2 '),(84,'billingfirstname',0,1,' denis '),(84,'billinglastname',0,1,' piskun '),(84,'billingfullname',0,1,' denis piskun '),(84,'email',0,1,' denis convergine com '),(84,'number',0,1,' 74b77e52dc331a4dfb2aabc67f289139 '),(84,'shippingfirstname',0,1,' denis '),(84,'shippinglastname',0,1,' piskun '),(84,'shippingfullname',0,1,' denis piskun '),(84,'shortnumber',0,1,' 74b77e5 '),(84,'transactionreference',0,1,' 34522456 34522466 '),(85,'slug',0,1,''),(85,'countrycode',0,1,' ca '),(85,'administrativearea',0,1,' on '),(85,'locality',0,1,' toronto '),(85,'dependentlocality',0,1,''),(85,'postalcode',0,1,' m4m4m4 '),(85,'sortingcode',0,1,''),(85,'addressline1',0,1,' brodie 155 '),(85,'addressline2',0,1,''),(85,'organization',0,1,''),(85,'organizationtaxid',0,1,''),(85,'fullname',0,1,' denis piskun '),(86,'countrycode',0,1,' ca '),(86,'administrativearea',0,1,' on '),(86,'locality',0,1,' toronto '),(86,'dependentlocality',0,1,''),(86,'postalcode',0,1,' m4m4m4 '),(86,'sortingcode',0,1,''),(86,'addressline1',0,1,' brodie 155 '),(86,'addressline2',0,1,''),(86,'organization',0,1,''),(86,'organizationtaxid',0,1,''),(86,'fullname',0,1,' denis piskun '),(86,'slug',0,1,''),(86,'title',0,1,' billing address '),(85,'title',0,1,' shipping address '),(88,'slug',0,1,''),(87,'billingfirstname',0,1,' denis '),(87,'billinglastname',0,1,' piskun '),(87,'billingfullname',0,1,' denis piskun '),(87,'email',0,1,' denis convergine com '),(87,'number',0,1,' dbe31a91f8a553eed9a45a02ae9368e7 '),(87,'shippingfirstname',0,1,' denis '),(87,'shippinglastname',0,1,' piskun '),(87,'shippingfullname',0,1,' denis piskun '),(87,'shortnumber',0,1,' dbe31a9 '),(87,'transactionreference',0,1,' 34522473 '),(87,'username',0,1,' denis '),(84,'username',0,1,' denis '),(88,'title',0,1,' shipping address '),(87,'lineitemdescriptions',0,1,' product 01 product 01 product 02 product 02 '),(87,'skus',0,1,' w4789 x1 w4789 x2 '),(88,'organization',0,1,''),(89,'title',0,1,' billing address '),(88,'organizationtaxid',0,1,''),(88,'countrycode',0,1,' ca '),(88,'administrativearea',0,1,' on '),(88,'locality',0,1,' toronto '),(88,'dependentlocality',0,1,''),(88,'postalcode',0,1,' m4m4m4 '),(88,'sortingcode',0,1,''),(88,'addressline1',0,1,' brodie 155 '),(88,'addressline2',0,1,''),(89,'fullname',0,1,' denis piskun '),(89,'slug',0,1,''),(89,'organizationtaxid',0,1,''),(89,'locality',0,1,' toronto '),(89,'dependentlocality',0,1,''),(89,'postalcode',0,1,' m4m4m4 '),(89,'sortingcode',0,1,''),(89,'addressline1',0,1,' brodie 155 '),(89,'addressline2',0,1,''),(89,'countrycode',0,1,' ca '),(89,'organization',0,1,''),(89,'administrativearea',0,1,' on '),(88,'fullname',0,1,' denis piskun '),(90,'slug',0,1,''),(87,'reference',0,1,' dbe31a9 '),(90,'billingfirstname',0,1,' denis '),(91,'countrycode',0,1,' ca '),(92,'organization',0,1,''),(92,'organizationtaxid',0,1,''),(92,'fullname',0,1,' denis piskun '),(90,'billinglastname',0,1,' piskun '),(90,'billingfullname',0,1,' denis piskun '),(90,'email',0,1,' denis convergine com '),(90,'number',0,1,' 59dde4eb0ffaa9c2b23cbc4b31c29306 '),(90,'shippingfirstname',0,1,' denis '),(90,'shippinglastname',0,1,' piskun '),(90,'shippingfullname',0,1,' denis piskun '),(90,'shortnumber',0,1,' 59dde4e '),(90,'transactionreference',0,1,' 34547641 34547648 '),(90,'username',0,1,' denis '),(92,'addressline2',0,1,''),(91,'organizationtaxid',0,1,''),(91,'fullname',0,1,' denis piskun '),(91,'dependentlocality',0,1,''),(91,'postalcode',0,1,' m4m4m4 '),(90,'lineitemdescriptions',0,1,' product 02 product 02 '),(90,'skus',0,1,' w4789 x2 '),(91,'title',0,1,' shipping address '),(95,'countrycode',0,1,' ca '),(91,'slug',0,1,''),(91,'addressline2',0,1,''),(91,'organization',0,1,''),(91,'sortingcode',0,1,''),(91,'addressline1',0,1,' brodie 155 '),(90,'reference',0,1,' 59dde4e '),(92,'countrycode',0,1,' ca '),(92,'administrativearea',0,1,' on '),(92,'locality',0,1,' toronto '),(92,'dependentlocality',0,1,''),(92,'postalcode',0,1,' m4m4m4 '),(92,'sortingcode',0,1,''),(92,'addressline1',0,1,' brodie 155 '),(91,'administrativearea',0,1,' on '),(92,'title',0,1,' billing address '),(93,'skus',0,1,' w4789 x2 '),(92,'slug',0,1,''),(91,'locality',0,1,' toronto '),(98,'dependentlocality',0,1,''),(93,'lineitemdescriptions',0,1,' product 02 product 02 '),(93,'billinglastname',0,1,' piskun '),(93,'billingfullname',0,1,' denis piskun '),(93,'email',0,1,' denis convergine com '),(93,'number',0,1,' 9781af48f519f6c0c6010ba13e3b6fed '),(93,'shippingfirstname',0,1,' denis '),(93,'shippinglastname',0,1,' piskun '),(93,'shippingfullname',0,1,' denis piskun '),(93,'shortnumber',0,1,' 9781af4 '),(93,'transactionreference',0,1,' 34547714 '),(93,'username',0,1,' denis '),(93,'reference',0,1,' 9781af4 '),(93,'billingfirstname',0,1,' denis '),(94,'fullname',0,1,' denis piskun '),(94,'slug',0,1,''),(94,'organization',0,1,''),(94,'organizationtaxid',0,1,''),(94,'addressline2',0,1,''),(94,'administrativearea',0,1,' on '),(94,'locality',0,1,' toronto '),(94,'dependentlocality',0,1,''),(94,'postalcode',0,1,' m4m4m4 '),(94,'sortingcode',0,1,''),(94,'addressline1',0,1,' brodie 155 '),(94,'countrycode',0,1,' ca '),(95,'addressline2',0,1,''),(95,'organization',0,1,''),(95,'organizationtaxid',0,1,''),(95,'fullname',0,1,' denis piskun '),(95,'slug',0,1,''),(95,'title',0,1,' billing address '),(95,'administrativearea',0,1,' on '),(95,'locality',0,1,' toronto '),(95,'dependentlocality',0,1,''),(95,'postalcode',0,1,' m4m4m4 '),(95,'sortingcode',0,1,''),(95,'addressline1',0,1,' brodie 155 '),(94,'title',0,1,' shipping address '),(93,'slug',0,1,''),(96,'reference',0,1,' 7c3042d '),(98,'sortingcode',0,1,''),(98,'addressline1',0,1,' brodie 155 '),(96,'skus',0,1,' w4789 x2 '),(96,'billingfirstname',0,1,' denis '),(96,'billinglastname',0,1,' piskun '),(96,'billingfullname',0,1,' denis piskun '),(96,'email',0,1,' denis convergine com '),(96,'number',0,1,' 7c3042d9c0c175f392453225e8660343 '),(96,'shippingfirstname',0,1,' denis '),(96,'shippinglastname',0,1,' piskun '),(96,'shippingfullname',0,1,' denis piskun '),(96,'shortnumber',0,1,' 7c3042d '),(96,'transactionreference',0,1,' 34547759 '),(96,'username',0,1,' denis '),(98,'title',0,1,' billing address '),(97,'addressline2',0,1,''),(97,'sortingcode',0,1,''),(97,'addressline1',0,1,' brodie 155 '),(97,'dependentlocality',0,1,''),(97,'countrycode',0,1,' ca '),(97,'slug',0,1,''),(97,'organization',0,1,''),(97,'organizationtaxid',0,1,''),(97,'postalcode',0,1,' m4m4m4 '),(97,'administrativearea',0,1,' on '),(97,'locality',0,1,' toronto '),(98,'organization',0,1,''),(98,'organizationtaxid',0,1,''),(98,'fullname',0,1,' denis piskun '),(98,'slug',0,1,''),(98,'postalcode',0,1,' m4m4m4 '),(98,'administrativearea',0,1,' on '),(98,'locality',0,1,' toronto '),(97,'fullname',0,1,' denis piskun '),(96,'lineitemdescriptions',0,1,' product 02 product 02 '),(96,'slug',0,1,''),(98,'countrycode',0,1,' ca '),(100,'title',0,1,' shipping address '),(98,'addressline2',0,1,''),(97,'title',0,1,' shipping address '),(102,'billingfullname',0,1,' denis piskun '),(99,'lineitemdescriptions',0,1,' product 02 product 02 '),(99,'skus',0,1,' w4789 x2 '),(99,'username',0,1,' denis '),(99,'billingfirstname',0,1,' denis '),(99,'billinglastname',0,1,' piskun '),(99,'billingfullname',0,1,' denis piskun '),(99,'email',0,1,' denis convergine com '),(99,'number',0,1,' e481071a5fe8b1789527c7afcee975eb '),(99,'shippingfirstname',0,1,' denis '),(99,'shippinglastname',0,1,' piskun '),(99,'shippingfullname',0,1,' denis piskun '),(99,'shortnumber',0,1,' e481071 '),(99,'transactionreference',0,1,' 34547792 34547812 '),(100,'fullname',0,1,' denis piskun '),(100,'slug',0,1,''),(100,'organization',0,1,''),(100,'organizationtaxid',0,1,''),(100,'addressline2',0,1,''),(100,'administrativearea',0,1,' on '),(100,'locality',0,1,' toronto '),(100,'dependentlocality',0,1,''),(100,'postalcode',0,1,' m4m4m4 '),(100,'sortingcode',0,1,''),(100,'addressline1',0,1,' brodie 155 '),(100,'countrycode',0,1,' ca '),(99,'slug',0,1,''),(101,'countrycode',0,1,' ca '),(101,'administrativearea',0,1,' on '),(101,'locality',0,1,' toronto '),(101,'dependentlocality',0,1,''),(101,'postalcode',0,1,' m4m4m4 '),(101,'sortingcode',0,1,''),(101,'addressline1',0,1,' brodie 155 '),(101,'addressline2',0,1,''),(101,'organization',0,1,''),(101,'organizationtaxid',0,1,''),(101,'fullname',0,1,' denis piskun '),(101,'slug',0,1,''),(101,'title',0,1,' billing address '),(99,'reference',0,1,' e481071 '),(102,'slug',0,1,''),(102,'email',0,1,' denis convergine com '),(102,'number',0,1,' 11d9391f3441156e9d82f5c43a8e18d9 '),(102,'shippingfirstname',0,1,' denis '),(102,'shippinglastname',0,1,' piskun '),(102,'shippingfullname',0,1,' denis piskun '),(102,'shortnumber',0,1,' 11d9391 '),(102,'transactionreference',0,1,' 34547832 '),(102,'username',0,1,' denis '),(102,'reference',0,1,' 11d9391 '),(102,'billinglastname',0,1,' piskun '),(102,'billingfirstname',0,1,' denis '),(104,'countrycode',0,1,' ca '),(103,'title',0,1,' shipping address '),(103,'fullname',0,1,' denis piskun '),(103,'organization',0,1,''),(103,'organizationtaxid',0,1,''),(103,'dependentlocality',0,1,''),(103,'postalcode',0,1,' m4m4m4 '),(103,'sortingcode',0,1,''),(103,'addressline1',0,1,' brodie 155 '),(103,'addressline2',0,1,''),(103,'administrativearea',0,1,' on '),(103,'locality',0,1,' toronto '),(104,'slug',0,1,''),(104,'postalcode',0,1,' m4m4m4 '),(104,'sortingcode',0,1,''),(104,'addressline1',0,1,' brodie 155 '),(104,'addressline2',0,1,''),(104,'organization',0,1,''),(104,'administrativearea',0,1,' on '),(104,'locality',0,1,' toronto '),(104,'dependentlocality',0,1,''),(103,'slug',0,1,''),(104,'title',0,1,' billing address '),(104,'organizationtaxid',0,1,''),(104,'fullname',0,1,' denis piskun '),(103,'countrycode',0,1,' ca '),(102,'lineitemdescriptions',0,1,' product 02 product 02 '),(102,'skus',0,1,' w4789 x2 '),(105,'slug',0,1,''),(105,'email',0,1,' denis convergine com '),(106,'title',0,1,' shipping address '),(105,'shippingfullname',0,1,' denis piskun '),(105,'shortnumber',0,1,' 7e9d0ed '),(105,'transactionreference',0,1,' 34547843 34547870 '),(105,'username',0,1,' denis '),(105,'reference',0,1,' 7e9d0ed '),(105,'skus',0,1,' w4789 x3 w4789 x2 '),(105,'lineitemdescriptions',0,1,' product 03 product 03 product 02 product 02 '),(105,'shippinglastname',0,1,' piskun '),(105,'shippingfirstname',0,1,' denis '),(105,'number',0,1,' 7e9d0edb0316bff02a1770b068db4c80 '),(105,'billinglastname',0,1,' piskun '),(105,'billingfirstname',0,1,' denis '),(106,'countrycode',0,1,' ca '),(106,'administrativearea',0,1,' on '),(106,'locality',0,1,' toronto '),(106,'dependentlocality',0,1,''),(106,'postalcode',0,1,' m4m4m4 '),(106,'sortingcode',0,1,''),(106,'addressline1',0,1,' brodie 155 '),(106,'addressline2',0,1,''),(106,'organization',0,1,''),(106,'organizationtaxid',0,1,''),(106,'fullname',0,1,' denis piskun '),(106,'slug',0,1,''),(107,'fullname',0,1,' denis piskun '),(107,'slug',0,1,''),(107,'organization',0,1,''),(107,'organizationtaxid',0,1,''),(107,'addressline2',0,1,''),(107,'administrativearea',0,1,' on '),(107,'locality',0,1,' toronto '),(107,'dependentlocality',0,1,''),(107,'postalcode',0,1,' m4m4m4 '),(107,'sortingcode',0,1,''),(107,'addressline1',0,1,' brodie 155 '),(107,'countrycode',0,1,' ca '),(105,'billingfullname',0,1,' denis piskun '),(107,'title',0,1,' billing address '),(110,'organizationtaxid',0,1,''),(108,'skus',0,1,' w4789 x2 '),(108,'lineitemdescriptions',0,1,' product 02 product 02 '),(108,'username',0,1,' denis '),(108,'billingfirstname',0,1,' denis '),(108,'billinglastname',0,1,' piskun '),(108,'billingfullname',0,1,' denis piskun '),(108,'email',0,1,' denis convergine com '),(108,'number',0,1,' d14c9d9dc6e2a370ab3fbde748e8f251 '),(108,'shippingfirstname',0,1,' denis '),(108,'shippinglastname',0,1,' piskun '),(108,'shippingfullname',0,1,' denis piskun '),(108,'shortnumber',0,1,' d14c9d9 '),(108,'transactionreference',0,1,' 34547875 34559934 '),(110,'dependentlocality',0,1,''),(109,'slug',0,1,''),(109,'dependentlocality',0,1,''),(109,'postalcode',0,1,' m4m4m4 '),(109,'sortingcode',0,1,''),(109,'addressline1',0,1,' brodie 155 '),(109,'addressline2',0,1,''),(109,'organization',0,1,''),(109,'organizationtaxid',0,1,''),(109,'fullname',0,1,' denis piskun '),(109,'administrativearea',0,1,' on '),(109,'locality',0,1,' toronto '),(272,'shortnumber',0,1,' a80c99b '),(110,'slug',0,1,''),(110,'title',0,1,' billing address '),(110,'fullname',0,1,' denis piskun '),(110,'postalcode',0,1,' m4m4m4 '),(110,'sortingcode',0,1,''),(110,'addressline1',0,1,' brodie 155 '),(110,'addressline2',0,1,''),(110,'organization',0,1,''),(109,'title',0,1,' shipping address '),(110,'countrycode',0,1,' ca '),(110,'administrativearea',0,1,' on '),(110,'locality',0,1,' toronto '),(126,'administrativearea',0,1,' on '),(108,'slug',0,1,''),(306,'title',0,1,' shipping address '),(323,'countrycode',0,1,' ca '),(109,'countrycode',0,1,' ca '),(108,'reference',0,1,' d14c9d9 '),(114,'title',0,1,' billing address '),(111,'shippinglastname',0,1,' piskun '),(111,'shippingfullname',0,1,' denis piskun '),(111,'shortnumber',0,1,' 6bec4a8 '),(111,'transactionreference',0,1,' 34560036 34560119 '),(111,'username',0,1,' denis '),(111,'reference',0,1,' 6bec4a8 '),(111,'skus',0,1,' w4789 x3 '),(111,'lineitemdescriptions',0,1,' product 03 product 03 '),(111,'slug',0,1,''),(116,'organization',0,1,''),(114,'slug',0,1,''),(111,'number',0,1,' 6bec4a8cd7e232bce9c77e836581727a '),(111,'billingfirstname',0,1,' denis '),(111,'billinglastname',0,1,' piskun '),(111,'billingfullname',0,1,' denis piskun '),(111,'email',0,1,' denis convergine com '),(112,'organizationtaxid',0,1,''),(112,'countrycode',0,1,' us '),(112,'administrativearea',0,1,''),(112,'locality',0,1,''),(112,'dependentlocality',0,1,''),(112,'postalcode',0,1,''),(112,'sortingcode',0,1,''),(113,'title',0,1,' shipping address '),(112,'fullname',0,1,''),(112,'addressline1',0,1,''),(112,'addressline2',0,1,''),(112,'organization',0,1,''),(114,'countrycode',0,1,' ca '),(113,'organization',0,1,''),(113,'organizationtaxid',0,1,''),(113,'fullname',0,1,' denis piskun '),(113,'slug',0,1,''),(113,'administrativearea',0,1,' on '),(113,'locality',0,1,' toronto '),(113,'dependentlocality',0,1,''),(113,'postalcode',0,1,' m4m4m4 '),(113,'sortingcode',0,1,''),(113,'addressline1',0,1,' brodie 155 '),(113,'addressline2',0,1,''),(114,'administrativearea',0,1,' on '),(114,'locality',0,1,' toronto '),(114,'dependentlocality',0,1,''),(114,'postalcode',0,1,' m4m4m4 '),(114,'sortingcode',0,1,''),(114,'addressline1',0,1,' brodie 155 '),(114,'addressline2',0,1,''),(114,'organization',0,1,''),(114,'organizationtaxid',0,1,''),(114,'fullname',0,1,' denis piskun '),(113,'countrycode',0,1,' ca '),(115,'shippingfirstname',0,1,' denis '),(115,'shippinglastname',0,1,' piskun '),(112,'title',0,1,' new address '),(112,'slug',0,1,''),(111,'shippingfirstname',0,1,' denis '),(117,'countrycode',0,1,' ca '),(115,'skus',0,1,' w4789 x3 '),(115,'lineitemdescriptions',0,1,' product 03 product 03 '),(115,'reference',0,1,' 4c78c29 '),(115,'username',0,1,' denis '),(115,'shortnumber',0,1,' 4c78c29 '),(115,'transactionreference',0,1,' 34560762 34560773 '),(115,'shippingfullname',0,1,' denis piskun '),(115,'billingfirstname',0,1,' denis '),(115,'billinglastname',0,1,' piskun '),(115,'billingfullname',0,1,' denis piskun '),(115,'email',0,1,' denis convergine com '),(115,'number',0,1,' 4c78c299ea8b5c24b7a3ea1afee82afa '),(116,'postalcode',0,1,' m4m4m4 '),(116,'sortingcode',0,1,''),(116,'addressline1',0,1,' brodie 155 '),(117,'dependentlocality',0,1,''),(116,'slug',0,1,''),(116,'title',0,1,' shipping address '),(116,'organizationtaxid',0,1,''),(116,'fullname',0,1,' denis piskun '),(116,'addressline2',0,1,''),(116,'administrativearea',0,1,' on '),(116,'locality',0,1,' toronto '),(116,'dependentlocality',0,1,''),(117,'slug',0,1,''),(117,'title',0,1,' billing address '),(119,'dependentlocality',0,1,''),(117,'addressline2',0,1,''),(117,'organization',0,1,''),(117,'postalcode',0,1,' m4m4m4 '),(117,'locality',0,1,' toronto '),(116,'countrycode',0,1,' ca '),(117,'organizationtaxid',0,1,''),(117,'fullname',0,1,' denis piskun '),(117,'addressline1',0,1,' brodie 155 '),(117,'sortingcode',0,1,''),(115,'slug',0,1,''),(117,'administrativearea',0,1,' on '),(118,'lineitemdescriptions',0,1,' product 03 product 03 '),(118,'shippinglastname',0,1,' piskun '),(118,'shippingfullname',0,1,' denis piskun '),(118,'shortnumber',0,1,' 4d643bb '),(118,'transactionreference',0,1,' 34560811 34560836 34560836 34560836 '),(118,'username',0,1,' denis '),(118,'reference',0,1,' 4d643bb '),(118,'skus',0,1,' w4789 x3 '),(120,'dependentlocality',0,1,''),(120,'countrycode',0,1,' ca '),(118,'shippingfirstname',0,1,' denis '),(118,'billingfirstname',0,1,' denis '),(118,'billinglastname',0,1,' piskun '),(118,'billingfullname',0,1,' denis piskun '),(118,'email',0,1,' denis convergine com '),(118,'number',0,1,' 4d643bb823129ac210a862e4221d1050 '),(119,'slug',0,1,''),(119,'title',0,1,' shipping address '),(119,'fullname',0,1,' denis piskun '),(120,'title',0,1,' billing address '),(119,'sortingcode',0,1,''),(119,'addressline1',0,1,' brodie 155 '),(119,'addressline2',0,1,''),(119,'organization',0,1,''),(119,'organizationtaxid',0,1,''),(119,'postalcode',0,1,' m4m4m4 '),(119,'administrativearea',0,1,' on '),(119,'locality',0,1,' toronto '),(120,'slug',0,1,''),(118,'slug',0,1,''),(121,'number',0,1,' 0b342a650dda56616348c49a6f415a17 '),(120,'sortingcode',0,1,''),(120,'addressline1',0,1,' brodie 155 '),(120,'addressline2',0,1,''),(120,'organization',0,1,''),(120,'organizationtaxid',0,1,''),(119,'countrycode',0,1,' ca '),(120,'fullname',0,1,' denis piskun '),(120,'postalcode',0,1,' m4m4m4 '),(120,'administrativearea',0,1,' on '),(120,'locality',0,1,' toronto '),(123,'slug',0,1,''),(121,'transactionreference',0,1,' 34563472 34563533 34563560 '),(121,'username',0,1,' denis '),(121,'reference',0,1,' 0b342a6 '),(121,'skus',0,1,' w4789 x2 '),(121,'lineitemdescriptions',0,1,' product 02 product 02 '),(121,'shortnumber',0,1,' 0b342a6 '),(121,'shippingfullname',0,1,' denis piskun '),(121,'shippingfirstname',0,1,' denis '),(121,'shippinglastname',0,1,' piskun '),(121,'email',0,1,' denis convergine com '),(121,'billingfirstname',0,1,' denis '),(121,'billinglastname',0,1,' piskun '),(121,'billingfullname',0,1,' denis piskun '),(122,'slug',0,1,''),(122,'title',0,1,' shipping address '),(122,'organizationtaxid',0,1,''),(122,'fullname',0,1,' denis piskun '),(122,'organization',0,1,''),(122,'administrativearea',0,1,' on '),(122,'locality',0,1,' toronto '),(122,'dependentlocality',0,1,''),(122,'postalcode',0,1,' m4m4m4 '),(122,'sortingcode',0,1,''),(122,'addressline1',0,1,' brodie 155 '),(122,'addressline2',0,1,''),(123,'title',0,1,' billing address '),(123,'organizationtaxid',0,1,''),(123,'fullname',0,1,' denis piskun '),(123,'organization',0,1,''),(123,'locality',0,1,' toronto '),(123,'dependentlocality',0,1,''),(123,'postalcode',0,1,' m4m4m4 '),(123,'sortingcode',0,1,''),(123,'addressline1',0,1,' brodie 155 '),(123,'addressline2',0,1,''),(123,'countrycode',0,1,' ca '),(123,'administrativearea',0,1,' on '),(122,'countrycode',0,1,' ca '),(121,'slug',0,1,''),(130,'billingfirstname',0,1,''),(124,'lineitemdescriptions',0,1,' product 02 product 02 '),(124,'slug',0,1,''),(204,'administrativearea',0,1,' on '),(124,'billinglastname',0,1,' piskun '),(124,'billingfullname',0,1,' denis piskun '),(124,'email',0,1,' denis convergine com '),(124,'number',0,1,' 38dadc6c06e2c5d1afbfac90be9f3848 '),(124,'shippingfirstname',0,1,' denis '),(124,'shippinglastname',0,1,' piskun '),(124,'shippingfullname',0,1,' denis piskun '),(124,'shortnumber',0,1,' 38dadc6 '),(124,'transactionreference',0,1,' 34563576 35852324 '),(124,'username',0,1,' denis '),(124,'reference',0,1,' 38dadc6 '),(126,'fullname',0,1,' denis piskun '),(126,'slug',0,1,''),(125,'slug',0,1,''),(125,'title',0,1,' shipping address '),(125,'organizationtaxid',0,1,''),(125,'fullname',0,1,' denis piskun '),(125,'locality',0,1,' toronto '),(125,'dependentlocality',0,1,''),(125,'postalcode',0,1,' m4m4m4 '),(125,'sortingcode',0,1,''),(124,'skus',0,1,' w4789 x2 '),(124,'billingfirstname',0,1,' denis '),(126,'locality',0,1,' toronto '),(126,'dependentlocality',0,1,''),(126,'postalcode',0,1,' m4m4m4 '),(126,'sortingcode',0,1,''),(126,'addressline1',0,1,' brodie 155 '),(126,'addressline2',0,1,''),(126,'organization',0,1,''),(125,'addressline2',0,1,''),(125,'organization',0,1,''),(125,'addressline1',0,1,' brodie 155 '),(125,'administrativearea',0,1,' on '),(126,'title',0,1,' billing address '),(205,'countrycode',0,1,' ca '),(172,'countrycode',0,1,' ca '),(173,'organizationtaxid',0,1,''),(173,'addressline1',0,1,' brodie 155 '),(173,'countrycode',0,1,' ca '),(173,'fullname',0,1,' denis piskun '),(173,'slug',0,1,''),(173,'addressline2',0,1,''),(173,'organization',0,1,''),(173,'administrativearea',0,1,' on '),(173,'locality',0,1,' toronto '),(173,'dependentlocality',0,1,''),(173,'postalcode',0,1,' m4m4m4 '),(173,'sortingcode',0,1,''),(127,'reference',0,1,' 112e429 '),(127,'skus',0,1,' w4789 x1 '),(127,'lineitemdescriptions',0,1,' product 01 product 01 '),(127,'billingfirstname',0,1,' denis '),(127,'billinglastname',0,1,' piskun '),(127,'billingfullname',0,1,' denis piskun '),(127,'email',0,1,' denis convergine com '),(127,'number',0,1,' 112e42989e124788c12b9a566c7ab57e '),(127,'shippingfirstname',0,1,' denis '),(127,'shippinglastname',0,1,' piskun '),(127,'shippingfullname',0,1,' denis piskun '),(127,'shortnumber',0,1,' 112e429 '),(127,'transactionreference',0,1,' 37230115 '),(127,'username',0,1,' denis '),(172,'title',0,1,' shipping address '),(172,'slug',0,1,''),(172,'addressline1',0,1,' brodie 155 '),(172,'addressline2',0,1,''),(172,'organization',0,1,''),(172,'organizationtaxid',0,1,''),(172,'fullname',0,1,' denis piskun '),(172,'sortingcode',0,1,''),(172,'locality',0,1,' toronto '),(172,'dependentlocality',0,1,''),(172,'postalcode',0,1,' m4m4m4 '),(130,'billinglastname',0,1,''),(130,'billingfullname',0,1,''),(130,'email',0,1,''),(130,'number',0,1,' 4906643ba7a1b7d5f5e0e646d1ded74d '),(130,'shippingfirstname',0,1,''),(130,'shippinglastname',0,1,''),(130,'shippingfullname',0,1,''),(130,'shortnumber',0,1,' 4906643 '),(130,'transactionreference',0,1,''),(130,'username',0,1,''),(130,'reference',0,1,''),(130,'skus',0,1,''),(130,'lineitemdescriptions',0,1,''),(130,'slug',0,1,''),(133,'kind',0,1,' image '),(197,'title',0,1,' billing address '),(132,'sortingcode',0,1,''),(132,'countrycode',0,1,' us '),(131,'billingfirstname',0,1,''),(131,'billinglastname',0,1,''),(131,'billingfullname',0,1,''),(131,'email',0,1,' denis convergine com '),(131,'number',0,1,' 5bcc54a5857b0ec9746df6961a9b0521 '),(131,'shippingfirstname',0,1,''),(131,'shippinglastname',0,1,''),(131,'shippingfullname',0,1,''),(131,'shortnumber',0,1,' 5bcc54a '),(131,'transactionreference',0,1,''),(131,'username',0,1,' denis '),(131,'reference',0,1,''),(131,'skus',0,1,' w4789 x3 '),(132,'title',0,1,' new address '),(132,'addressline2',0,1,''),(132,'organization',0,1,''),(132,'organizationtaxid',0,1,''),(132,'fullname',0,1,''),(132,'slug',0,1,''),(132,'addressline1',0,1,''),(132,'administrativearea',0,1,''),(132,'locality',0,1,''),(132,'dependentlocality',0,1,''),(132,'postalcode',0,1,''),(133,'extension',0,1,' jpeg '),(134,'slug',0,1,''),(133,'filename',0,1,' images jpeg '),(133,'slug',0,1,''),(133,'title',0,1,' images '),(131,'lineitemdescriptions',0,1,' product 03 product 03 '),(131,'slug',0,1,''),(134,'kind',0,1,' image '),(134,'extension',0,1,' jpeg '),(134,'filename',0,1,' readyplayerme avatar jpeg '),(134,'title',0,1,' ready player me avatar '),(136,'sortingcode',0,1,''),(136,'locality',0,1,''),(136,'dependentlocality',0,1,''),(135,'shippinglastname',0,1,' piskun '),(193,'title',0,1,' shipping address '),(135,'lineitemdescriptions',0,1,' product 03 product 03 '),(135,'username',0,1,' denis '),(135,'transactionreference',0,1,' 37249093 '),(135,'shippingfullname',0,1,' denis piskun '),(135,'shortnumber',0,1,' 3310895 '),(135,'shippingfirstname',0,1,' denis '),(135,'billingfirstname',0,1,' denis '),(135,'billinglastname',0,1,' piskun '),(135,'billingfullname',0,1,' denis piskun '),(135,'email',0,1,' denis convergine com '),(135,'number',0,1,' 33108955028884428ffd89acc2c66507 '),(269,'countrycode',0,1,' us '),(136,'organization',0,1,''),(136,'addressline1',0,1,''),(136,'addressline2',0,1,''),(136,'postalcode',0,1,''),(136,'countrycode',0,1,' us '),(136,'administrativearea',0,1,''),(135,'reference',0,1,' 3310895 '),(135,'skus',0,1,' w4789 x3 '),(139,'filename',0,1,' screenshot 102 png '),(141,'filename',0,1,' rentalagreement2021 1 pdf '),(152,'extension',0,1,' png '),(202,'countrycode',0,1,' ca '),(203,'fullname',0,1,' denis piskun '),(203,'locality',0,1,' toronto '),(137,'transactionreference',0,1,' 37249657 37249662 37249662 '),(137,'username',0,1,' denis '),(137,'reference',0,1,' bfc8398 '),(137,'skus',0,1,' w4789 x3 '),(137,'lineitemdescriptions',0,1,' product 03 product 03 '),(137,'slug',0,1,''),(138,'filename',0,1,' readyplayerme avatar 2023 01 24 094657 ctgd jpeg '),(138,'extension',0,1,' jpeg '),(138,'kind',0,1,' image '),(138,'slug',0,1,''),(138,'title',0,1,' ready player me avatar '),(149,'filename',0,1,' rentalagreement2021 1 1 2023 01 24 103310 epak pdf '),(139,'extension',0,1,' png '),(139,'kind',0,1,' image '),(139,'slug',0,1,''),(139,'title',0,1,' screenshot 102 '),(142,'filename',0,1,' rentalagreement2021 1 2023 01 24 100457 mhxe pdf '),(140,'filename',0,1,' rentalagreement2021 1 pdf '),(140,'extension',0,1,' pdf '),(140,'kind',0,1,' pdf '),(140,'slug',0,1,''),(140,'title',0,1,' rental agreement2021 1 '),(145,'filename',0,1,' images jpeg '),(141,'extension',0,1,' pdf '),(141,'kind',0,1,' pdf '),(141,'slug',0,1,''),(141,'title',0,1,' rental agreement2021 1 '),(144,'filename',0,1,' rentalagreement2021 1 2023 01 24 101117 yybe pdf '),(142,'extension',0,1,' pdf '),(142,'kind',0,1,' pdf '),(142,'slug',0,1,''),(142,'title',0,1,' rental agreement2021 1 '),(205,'slug',0,1,''),(137,'shippingfirstname',0,1,' denis '),(143,'filename',0,1,' rentalagreement2021 1 pdf '),(143,'extension',0,1,' pdf '),(143,'kind',0,1,' pdf '),(143,'slug',0,1,''),(143,'title',0,1,' rental agreement2021 1 '),(144,'extension',0,1,' pdf '),(144,'kind',0,1,' pdf '),(144,'slug',0,1,''),(144,'title',0,1,' rental agreement2021 1 '),(152,'filename',0,1,' screenshot 131 png '),(145,'extension',0,1,' jpeg '),(145,'kind',0,1,' image '),(145,'slug',0,1,''),(145,'title',0,1,' images '),(146,'filename',0,1,' rentalagreement2021 1 2023 01 24 101621 bqlv pdf '),(146,'extension',0,1,' pdf '),(146,'kind',0,1,' pdf '),(146,'slug',0,1,''),(146,'title',0,1,' rental agreement2021 1 '),(157,'slug',0,1,''),(157,'fullname',0,1,''),(147,'filename',0,1,' rentalagreement2021 1 pdf '),(147,'extension',0,1,' pdf '),(147,'kind',0,1,' pdf '),(147,'slug',0,1,''),(147,'title',0,1,' rental agreement2021 1 '),(148,'filename',0,1,' rentalagreement2021 1 1 pdf '),(148,'extension',0,1,' pdf '),(148,'kind',0,1,' pdf '),(148,'slug',0,1,''),(148,'title',0,1,' rental agreement2021 1 1 '),(149,'extension',0,1,' pdf '),(149,'kind',0,1,' pdf '),(149,'slug',0,1,''),(149,'title',0,1,' rental agreement2021 1 1 '),(151,'filename',0,1,' rentalagreement2021 1 2023 01 24 103629 ftmt pdf '),(156,'filename',0,1,' rentalagreement2021 1 2023 01 24 104704 kghh pdf '),(150,'filename',0,1,' tickets 2ad495957943b0e6a3871721062844f7 2 pdf '),(150,'extension',0,1,' pdf '),(150,'kind',0,1,' pdf '),(150,'slug',0,1,''),(150,'title',0,1,' tickets 2ad495957943b0e6a3871721062844f7 2 '),(151,'extension',0,1,' pdf '),(151,'kind',0,1,' pdf '),(151,'slug',0,1,''),(151,'title',0,1,' rental agreement2021 1 '),(152,'kind',0,1,' image '),(152,'slug',0,1,''),(152,'title',0,1,' screenshot 131 '),(205,'addressline1',0,1,' brodie 155 '),(153,'filename',0,1,' rentalagreement2021 1 1 pdf '),(153,'extension',0,1,' pdf '),(153,'kind',0,1,' pdf '),(153,'slug',0,1,''),(153,'title',0,1,' rental agreement2021 1 1 '),(154,'filename',0,1,' rentalagreement2021 1 1 pdf '),(154,'extension',0,1,' pdf '),(154,'kind',0,1,' pdf '),(154,'slug',0,1,''),(154,'title',0,1,' rental agreement2021 1 1 '),(155,'filename',0,1,' rentalagreement2021 1 pdf '),(155,'extension',0,1,' pdf '),(155,'kind',0,1,' pdf '),(155,'slug',0,1,''),(155,'title',0,1,' rental agreement2021 1 '),(156,'extension',0,1,' pdf '),(156,'kind',0,1,' pdf '),(156,'slug',0,1,''),(156,'title',0,1,' rental agreement2021 1 '),(317,'countrycode',0,1,' us '),(7,'defaultsku',0,1,' w4789 x1 '),(203,'countrycode',0,1,' ca '),(203,'administrativearea',0,1,' on '),(157,'postalcode',0,1,''),(157,'sortingcode',0,1,''),(157,'addressline1',0,1,''),(157,'addressline2',0,1,''),(157,'organization',0,1,''),(202,'fullname',0,1,' denis piskun '),(202,'slug',0,1,''),(202,'organizationtaxid',0,1,''),(157,'organizationtaxid',0,1,''),(157,'administrativearea',0,1,''),(157,'locality',0,1,''),(157,'dependentlocality',0,1,''),(203,'dependentlocality',0,1,''),(203,'postalcode',0,1,' m4m4m4 '),(203,'sortingcode',0,1,''),(203,'addressline1',0,1,' brodie 155 '),(137,'billingfirstname',0,1,' denis '),(137,'billinglastname',0,1,' piskun '),(137,'billingfullname',0,1,' denis piskun '),(137,'email',0,1,' denis convergine com '),(137,'number',0,1,' bfc8398193df22d4e5e26b0773a1b3b6 '),(203,'title',0,1,' billing address '),(137,'shippinglastname',0,1,' piskun '),(137,'shippingfullname',0,1,' denis piskun '),(137,'shortnumber',0,1,' bfc8398 '),(125,'countrycode',0,1,' ca '),(205,'administrativearea',0,1,' on '),(203,'organization',0,1,''),(203,'organizationtaxid',0,1,''),(202,'sortingcode',0,1,''),(202,'addressline1',0,1,' brodie 155 '),(202,'addressline2',0,1,''),(202,'organization',0,1,''),(202,'postalcode',0,1,' m4m4m4 '),(202,'administrativearea',0,1,' on '),(202,'locality',0,1,' toronto '),(320,'slug',0,1,''),(208,'organization',0,1,''),(203,'addressline2',0,1,''),(205,'addressline2',0,1,''),(205,'organization',0,1,''),(205,'organizationtaxid',0,1,''),(205,'fullname',0,1,' denis piskun '),(205,'locality',0,1,' toronto '),(205,'dependentlocality',0,1,''),(205,'postalcode',0,1,' m4m4m4 '),(205,'sortingcode',0,1,''),(204,'countrycode',0,1,' ca '),(160,'lineitemdescriptions',0,1,' product 03 product 03 '),(160,'billingfirstname',0,1,' denis '),(160,'billinglastname',0,1,' piskun '),(160,'billingfullname',0,1,' denis piskun '),(160,'email',0,1,' denis convergine com '),(160,'number',0,1,' ef98a294d72534668e9ba73591a96bac '),(160,'shippingfirstname',0,1,' denis '),(160,'shippinglastname',0,1,' piskun '),(160,'shippingfullname',0,1,' denis piskun '),(160,'shortnumber',0,1,' ef98a29 '),(160,'transactionreference',0,1,' 37285408 37285408 '),(160,'username',0,1,' denis '),(160,'reference',0,1,' ef98a29 '),(160,'skus',0,1,' w4789 x3 '),(63,'organization',0,1,''),(160,'slug',0,1,''),(205,'title',0,1,' billing address '),(204,'slug',0,1,''),(204,'title',0,1,' shipping address '),(204,'organizationtaxid',0,1,''),(204,'fullname',0,1,' denis piskun '),(204,'organization',0,1,''),(204,'locality',0,1,' toronto '),(204,'dependentlocality',0,1,''),(204,'postalcode',0,1,' m4m4m4 '),(204,'sortingcode',0,1,''),(204,'addressline1',0,1,' brodie 155 '),(204,'addressline2',0,1,''),(126,'countrycode',0,1,' ca '),(206,'email',0,1,' denis convergine com '),(165,'skus',0,1,' w4789 x2 '),(165,'lineitemdescriptions',0,1,' product 02 product 02 '),(165,'email',0,1,' denis convergine com '),(165,'number',0,1,' e9ed4bd8ff6c51332cca27029b97d70f '),(165,'shippingfirstname',0,1,' denis '),(165,'shippinglastname',0,1,' piskun '),(165,'shippingfullname',0,1,' denis piskun '),(165,'shortnumber',0,1,' e9ed4bd '),(165,'transactionreference',0,1,' 36309549 36309551 '),(165,'username',0,1,' denis '),(165,'reference',0,1,' e9ed4bd '),(165,'billingfullname',0,1,' denis piskun '),(166,'fullname',0,1,''),(166,'slug',0,1,''),(166,'organization',0,1,''),(166,'organizationtaxid',0,1,''),(166,'addressline2',0,1,''),(166,'administrativearea',0,1,''),(166,'locality',0,1,''),(166,'dependentlocality',0,1,''),(166,'postalcode',0,1,' m4m4m4 '),(166,'sortingcode',0,1,''),(166,'addressline1',0,1,''),(166,'countrycode',0,1,' ca '),(167,'fullname',0,1,' denis piskun '),(166,'title',0,1,' new address '),(180,'postalcode',0,1,' m4m4m4 '),(167,'slug',0,1,''),(167,'locality',0,1,' toronto '),(167,'dependentlocality',0,1,''),(167,'postalcode',0,1,' m4m4m4 '),(167,'sortingcode',0,1,''),(167,'addressline1',0,1,' brodie 155 '),(167,'addressline2',0,1,''),(167,'organization',0,1,''),(167,'organizationtaxid',0,1,''),(167,'administrativearea',0,1,' on '),(169,'skus',0,1,' w4789 x1 '),(168,'slug',0,1,''),(168,'addressline2',0,1,''),(168,'organization',0,1,''),(168,'organizationtaxid',0,1,''),(168,'fullname',0,1,' denis piskun '),(168,'addressline1',0,1,' brodie 155 '),(168,'dependentlocality',0,1,''),(168,'postalcode',0,1,' m4m4m4 '),(165,'billinglastname',0,1,' piskun '),(167,'title',0,1,' shipping address '),(165,'slug',0,1,''),(168,'title',0,1,' billing address '),(168,'sortingcode',0,1,''),(168,'administrativearea',0,1,' on '),(168,'locality',0,1,' toronto '),(167,'countrycode',0,1,' ca '),(168,'countrycode',0,1,' ca '),(174,'slug',0,1,''),(169,'transactionreference',0,1,' 37230043 '),(169,'billingfirstname',0,1,' denis '),(169,'billinglastname',0,1,' piskun '),(169,'billingfullname',0,1,' denis piskun '),(169,'email',0,1,' denis convergine com '),(169,'number',0,1,' 40e679bd4a2209b3a74f8d25afa0b916 '),(169,'shippingfirstname',0,1,' denis '),(169,'shippinglastname',0,1,' piskun '),(169,'shippingfullname',0,1,' denis piskun '),(169,'shortnumber',0,1,' 40e679b '),(171,'title',0,1,' billing address '),(170,'countrycode',0,1,' ca '),(170,'administrativearea',0,1,' on '),(170,'locality',0,1,' toronto '),(170,'dependentlocality',0,1,''),(173,'title',0,1,' billing address '),(170,'title',0,1,' shipping address '),(170,'slug',0,1,''),(170,'organizationtaxid',0,1,''),(170,'organization',0,1,''),(170,'postalcode',0,1,' m4m4m4 '),(170,'sortingcode',0,1,''),(170,'addressline1',0,1,' brodie 155 '),(171,'fullname',0,1,' denis piskun '),(171,'slug',0,1,''),(171,'organization',0,1,''),(171,'organizationtaxid',0,1,''),(171,'addressline2',0,1,''),(171,'administrativearea',0,1,' on '),(171,'locality',0,1,' toronto '),(171,'dependentlocality',0,1,''),(171,'postalcode',0,1,' m4m4m4 '),(170,'addressline2',0,1,''),(171,'countrycode',0,1,' ca '),(169,'username',0,1,' denis '),(171,'sortingcode',0,1,''),(171,'addressline1',0,1,' brodie 155 '),(170,'fullname',0,1,' denis piskun '),(169,'reference',0,1,' 40e679b '),(172,'administrativearea',0,1,' on '),(127,'slug',0,1,''),(182,'slug',0,1,''),(174,'skus',0,1,' w4789 x1 '),(174,'lineitemdescriptions',0,1,' product 01 product 01 '),(175,'title',0,1,' new address '),(175,'fullname',0,1,''),(175,'slug',0,1,''),(175,'addressline2',0,1,''),(175,'organization',0,1,''),(181,'countrycode',0,1,' ca '),(174,'number',0,1,' 0d9b20308af01b19377bb29da4f7a6ae '),(174,'billingfirstname',0,1,' denis '),(174,'billinglastname',0,1,' piskun '),(174,'billingfullname',0,1,' denis piskun '),(174,'email',0,1,' denis convergine com '),(180,'title',0,1,' shipping address '),(174,'shippingfirstname',0,1,' denis '),(174,'shippinglastname',0,1,' piskun '),(174,'shippingfullname',0,1,' denis piskun '),(174,'shortnumber',0,1,' 0d9b203 '),(174,'transactionreference',0,1,' 37249032 '),(174,'username',0,1,' denis '),(174,'reference',0,1,' 0d9b203 '),(175,'addressline1',0,1,''),(175,'postalcode',0,1,' m4m4m4 '),(175,'sortingcode',0,1,''),(175,'dependentlocality',0,1,''),(175,'administrativearea',0,1,''),(180,'fullname',0,1,' denis piskun '),(180,'sortingcode',0,1,''),(180,'addressline1',0,1,' brodie 155 '),(180,'addressline2',0,1,''),(180,'organization',0,1,''),(180,'organizationtaxid',0,1,''),(180,'administrativearea',0,1,' on '),(180,'locality',0,1,' toronto '),(180,'dependentlocality',0,1,''),(181,'fullname',0,1,' denis piskun '),(181,'slug',0,1,''),(181,'organization',0,1,''),(181,'organizationtaxid',0,1,''),(181,'sortingcode',0,1,''),(181,'administrativearea',0,1,' on '),(181,'locality',0,1,' toronto '),(181,'dependentlocality',0,1,''),(180,'countrycode',0,1,' ca '),(181,'addressline1',0,1,' brodie 155 '),(181,'addressline2',0,1,''),(181,'postalcode',0,1,' m4m4m4 '),(175,'organizationtaxid',0,1,''),(175,'locality',0,1,''),(175,'countrycode',0,1,' ca '),(181,'title',0,1,' billing address '),(180,'slug',0,1,''),(189,'organizationtaxid',0,1,''),(189,'addressline2',0,1,''),(189,'organization',0,1,''),(189,'sortingcode',0,1,''),(188,'title',0,1,' shipping address '),(188,'slug',0,1,''),(188,'countrycode',0,1,' ca '),(188,'administrativearea',0,1,' on '),(188,'locality',0,1,' toronto '),(188,'dependentlocality',0,1,''),(188,'postalcode',0,1,' m4m4m4 '),(188,'sortingcode',0,1,''),(188,'addressline1',0,1,' brodie 155 '),(188,'addressline2',0,1,''),(188,'organization',0,1,''),(188,'organizationtaxid',0,1,''),(188,'fullname',0,1,' denis piskun '),(182,'reference',0,1,' 1f144ad '),(189,'title',0,1,' billing address '),(189,'fullname',0,1,' denis piskun '),(189,'slug',0,1,''),(189,'addressline1',0,1,' brodie 155 '),(189,'dependentlocality',0,1,''),(189,'postalcode',0,1,' m4m4m4 '),(182,'lineitemdescriptions',0,1,' product 01 product 01 '),(182,'skus',0,1,' w4789 x1 '),(183,'fullname',0,1,''),(183,'sortingcode',0,1,''),(183,'addressline1',0,1,''),(182,'shortnumber',0,1,' 1f144ad '),(182,'transactionreference',0,1,' 37249069 '),(182,'username',0,1,' denis '),(182,'shippingfullname',0,1,' denis piskun '),(182,'shippinglastname',0,1,' piskun '),(182,'shippingfirstname',0,1,' denis '),(182,'number',0,1,' 1f144ad257d6d9a5707602975f504bb8 '),(182,'billingfullname',0,1,' denis piskun '),(182,'billingfirstname',0,1,' denis '),(182,'billinglastname',0,1,' piskun '),(189,'countrycode',0,1,' ca '),(189,'administrativearea',0,1,' on '),(189,'locality',0,1,' toronto '),(183,'slug',0,1,''),(183,'title',0,1,' new address '),(183,'organization',0,1,''),(183,'organizationtaxid',0,1,''),(183,'addressline2',0,1,''),(183,'administrativearea',0,1,''),(183,'locality',0,1,''),(183,'dependentlocality',0,1,''),(183,'postalcode',0,1,''),(182,'email',0,1,' denis convergine com '),(183,'countrycode',0,1,' us '),(190,'billingfirstname',0,1,' denis '),(289,'addressline1',0,1,' brodie 155 '),(289,'addressline2',0,1,''),(289,'organization',0,1,''),(289,'organizationtaxid',0,1,''),(288,'sortingcode',0,1,''),(288,'addressline1',0,1,' brodie 155 '),(288,'addressline2',0,1,''),(288,'organization',0,1,''),(288,'organizationtaxid',0,1,''),(288,'fullname',0,1,' denis piskun '),(288,'slug',0,1,''),(288,'title',0,1,' shipping address '),(288,'locality',0,1,' toronto '),(288,'dependentlocality',0,1,''),(288,'postalcode',0,1,' m4m4m4 '),(289,'postalcode',0,1,' m4m4m4 '),(288,'countrycode',0,1,' ca '),(289,'title',0,1,' billing address '),(290,'billinglastname',0,1,' piskun '),(289,'slug',0,1,''),(289,'sortingcode',0,1,''),(289,'locality',0,1,' toronto '),(289,'dependentlocality',0,1,''),(190,'billinglastname',0,1,' piskun '),(190,'billingfullname',0,1,' denis piskun '),(190,'email',0,1,' denis convergine com '),(190,'number',0,1,' 4cf1a3ab62dd7181aa1cf306bc3d893f '),(190,'shippingfirstname',0,1,' denis '),(190,'shippinglastname',0,1,' piskun '),(190,'shippingfullname',0,1,' denis piskun '),(190,'shortnumber',0,1,' 4cf1a3a '),(190,'transactionreference',0,1,' 37299395 '),(190,'username',0,1,' denis '),(289,'fullname',0,1,' denis piskun '),(190,'slug',0,1,''),(190,'skus',0,1,' w4789 x2 '),(190,'lineitemdescriptions',0,1,' product 02 product 02 '),(190,'reference',0,1,' 4cf1a3a '),(135,'slug',0,1,''),(136,'fullname',0,1,''),(136,'slug',0,1,''),(136,'organizationtaxid',0,1,''),(193,'fullname',0,1,' denis piskun '),(193,'slug',0,1,''),(193,'organization',0,1,''),(193,'organizationtaxid',0,1,''),(193,'addressline2',0,1,''),(193,'administrativearea',0,1,' on '),(193,'locality',0,1,' toronto '),(193,'dependentlocality',0,1,''),(193,'postalcode',0,1,' m4m4m4 '),(193,'sortingcode',0,1,''),(193,'addressline1',0,1,' brodie 155 '),(193,'countrycode',0,1,' ca '),(194,'title',0,1,' billing address '),(194,'fullname',0,1,' denis piskun '),(194,'slug',0,1,''),(194,'organizationtaxid',0,1,''),(194,'countrycode',0,1,' ca '),(194,'administrativearea',0,1,' on '),(194,'locality',0,1,' toronto '),(194,'dependentlocality',0,1,''),(194,'postalcode',0,1,' m4m4m4 '),(194,'sortingcode',0,1,''),(194,'addressline1',0,1,' brodie 155 '),(194,'addressline2',0,1,''),(194,'organization',0,1,''),(136,'title',0,1,' new address '),(195,'reference',0,1,' fbf5492 '),(195,'skus',0,1,' w4789 x3 '),(195,'lineitemdescriptions',0,1,' product 03 product 03 '),(195,'slug',0,1,''),(195,'billingfirstname',0,1,' denis '),(195,'billinglastname',0,1,' piskun '),(195,'billingfullname',0,1,' denis piskun '),(195,'email',0,1,' denis convergine com '),(195,'number',0,1,' fbf5492295058314071c0c37ed186cfe '),(195,'shippingfirstname',0,1,' denis '),(195,'shippinglastname',0,1,' piskun '),(195,'shippingfullname',0,1,' denis piskun '),(195,'shortnumber',0,1,' fbf5492 '),(195,'transactionreference',0,1,' 37249095 '),(195,'username',0,1,' denis '),(197,'countrycode',0,1,' ca '),(196,'organizationtaxid',0,1,''),(196,'addressline2',0,1,''),(196,'organization',0,1,''),(309,'organization',0,1,''),(196,'title',0,1,' shipping address '),(196,'fullname',0,1,' denis piskun '),(196,'addressline1',0,1,' brodie 155 '),(196,'administrativearea',0,1,' on '),(196,'locality',0,1,' toronto '),(196,'dependentlocality',0,1,''),(196,'postalcode',0,1,' m4m4m4 '),(197,'dependentlocality',0,1,''),(197,'postalcode',0,1,' m4m4m4 '),(197,'sortingcode',0,1,''),(197,'addressline1',0,1,' brodie 155 '),(197,'addressline2',0,1,''),(197,'organization',0,1,''),(197,'organizationtaxid',0,1,''),(197,'fullname',0,1,' denis piskun '),(197,'slug',0,1,''),(196,'sortingcode',0,1,''),(196,'countrycode',0,1,' ca '),(197,'administrativearea',0,1,' on '),(197,'locality',0,1,' toronto '),(196,'slug',0,1,''),(201,'lineitemdescriptions',0,1,''),(310,'email',0,1,' jane convergine com '),(198,'skus',0,1,' w4789 x3 '),(198,'lineitemdescriptions',0,1,' product 03 product 03 '),(308,'countrycode',0,1,' ca '),(309,'slug',0,1,''),(309,'title',0,1,' billing address '),(309,'organizationtaxid',0,1,''),(309,'fullname',0,1,' denis piskun '),(309,'addressline1',0,1,' brodie 155 '),(309,'dependentlocality',0,1,''),(309,'postalcode',0,1,' m4m4m4 '),(309,'sortingcode',0,1,''),(308,'sortingcode',0,1,''),(308,'addressline1',0,1,' brodie 155 '),(308,'addressline2',0,1,''),(308,'organization',0,1,''),(308,'organizationtaxid',0,1,''),(308,'fullname',0,1,' denis piskun '),(308,'slug',0,1,''),(308,'title',0,1,' shipping address '),(308,'administrativearea',0,1,' on '),(308,'locality',0,1,' toronto '),(308,'dependentlocality',0,1,''),(308,'postalcode',0,1,' m4m4m4 '),(198,'slug',0,1,''),(309,'countrycode',0,1,' ca '),(309,'administrativearea',0,1,' on '),(309,'locality',0,1,' toronto '),(311,'slug',0,1,''),(198,'reference',0,1,' 3d401e4 '),(198,'username',0,1,' denis '),(198,'billingfirstname',0,1,' denis '),(198,'billinglastname',0,1,' piskun '),(198,'billingfullname',0,1,' denis piskun '),(198,'email',0,1,' denis convergine com '),(198,'number',0,1,' 3d401e42734131aeb2757efb99bd8854 '),(198,'shippingfirstname',0,1,' denis '),(198,'shippinglastname',0,1,' piskun '),(198,'shippingfullname',0,1,' denis piskun '),(198,'shortnumber',0,1,' 3d401e4 '),(201,'number',0,1,' 02c74b140ac2454930c9aa855c31f57d '),(201,'shippingfirstname',0,1,''),(201,'shippinglastname',0,1,''),(201,'shippingfullname',0,1,''),(201,'shortnumber',0,1,' 02c74b1 '),(201,'transactionreference',0,1,''),(201,'username',0,1,' denis '),(201,'reference',0,1,''),(201,'skus',0,1,''),(201,'email',0,1,' denis convergine com '),(201,'billinglastname',0,1,''),(201,'billingfirstname',0,1,''),(201,'billingfullname',0,1,''),(201,'slug',0,1,''),(202,'title',0,1,' shipping address '),(203,'slug',0,1,''),(202,'dependentlocality',0,1,''),(157,'countrycode',0,1,' us '),(157,'title',0,1,' new address '),(206,'username',0,1,' denis '),(206,'reference',0,1,' f49e2a8 '),(206,'skus',0,1,' w4789 x3 '),(206,'lineitemdescriptions',0,1,' product 03 product 03 '),(206,'slug',0,1,''),(213,'countrycode',0,1,' us '),(206,'transactionreference',0,1,' 37285425 37285425 '),(206,'shippingfullname',0,1,' denis piskun '),(206,'shippingfirstname',0,1,' denis '),(206,'shippinglastname',0,1,' piskun '),(206,'billingfullname',0,1,' denis piskun '),(206,'billingfirstname',0,1,' denis '),(206,'billinglastname',0,1,' piskun '),(207,'countrycode',0,1,' ca '),(207,'administrativearea',0,1,' on '),(207,'locality',0,1,' toronto '),(207,'dependentlocality',0,1,''),(207,'postalcode',0,1,' m4m4m4 '),(207,'sortingcode',0,1,''),(207,'addressline1',0,1,' brodie 155 '),(207,'addressline2',0,1,''),(207,'organization',0,1,''),(207,'organizationtaxid',0,1,''),(207,'fullname',0,1,' denis piskun '),(207,'slug',0,1,''),(207,'title',0,1,' shipping address '),(213,'administrativearea',0,1,''),(208,'organizationtaxid',0,1,''),(208,'countrycode',0,1,' ca '),(208,'administrativearea',0,1,' on '),(208,'locality',0,1,' toronto '),(208,'dependentlocality',0,1,''),(208,'postalcode',0,1,' m4m4m4 '),(208,'sortingcode',0,1,''),(208,'addressline1',0,1,' brodie 155 '),(208,'addressline2',0,1,''),(209,'reference',0,1,' 9beb77d '),(208,'fullname',0,1,' denis piskun '),(208,'slug',0,1,''),(208,'title',0,1,' billing address '),(206,'shortnumber',0,1,' f49e2a8 '),(206,'number',0,1,' f49e2a82ed739bc8c6efd5a2b945c7c7 '),(209,'skus',0,1,' w4789 x3 '),(209,'lineitemdescriptions',0,1,' product 03 product 03 '),(209,'billingfirstname',0,1,' denis '),(209,'billinglastname',0,1,' piskun '),(209,'billingfullname',0,1,' denis piskun '),(209,'email',0,1,' denis convergine com '),(209,'number',0,1,' 9beb77d6649814684ae19c8472c8614d '),(209,'shippingfirstname',0,1,' denis '),(209,'shippinglastname',0,1,' piskun '),(209,'shippingfullname',0,1,' denis piskun '),(209,'shortnumber',0,1,' 9beb77d '),(209,'transactionreference',0,1,' 37285432 37285432 '),(209,'username',0,1,' denis '),(211,'title',0,1,' billing address '),(211,'slug',0,1,''),(209,'slug',0,1,''),(210,'fullname',0,1,' denis piskun '),(210,'slug',0,1,''),(210,'organization',0,1,''),(210,'organizationtaxid',0,1,''),(210,'addressline2',0,1,''),(210,'administrativearea',0,1,' on '),(210,'locality',0,1,' toronto '),(210,'dependentlocality',0,1,''),(210,'postalcode',0,1,' m4m4m4 '),(210,'sortingcode',0,1,''),(210,'addressline1',0,1,' brodie 155 '),(210,'countrycode',0,1,' ca '),(211,'fullname',0,1,' denis piskun '),(211,'organizationtaxid',0,1,''),(211,'administrativearea',0,1,' on '),(211,'locality',0,1,' toronto '),(211,'dependentlocality',0,1,''),(211,'postalcode',0,1,' m4m4m4 '),(211,'sortingcode',0,1,''),(211,'addressline1',0,1,' brodie 155 '),(211,'addressline2',0,1,''),(210,'title',0,1,' shipping address '),(211,'organization',0,1,''),(211,'countrycode',0,1,' ca '),(212,'shippingfirstname',0,1,' denis '),(212,'shippinglastname',0,1,' piskun '),(212,'shippingfullname',0,1,' denis piskun '),(212,'shortnumber',0,1,' d67cd56 '),(212,'transactionreference',0,1,' 37285437 37285437 '),(212,'username',0,1,' denis '),(212,'reference',0,1,' d67cd56 '),(212,'skus',0,1,' w4789 x3 '),(212,'lineitemdescriptions',0,1,' product 03 product 03 '),(212,'slug',0,1,''),(212,'billingfirstname',0,1,' denis '),(212,'billinglastname',0,1,' piskun '),(212,'billingfullname',0,1,' denis piskun '),(212,'email',0,1,' denis convergine com '),(212,'number',0,1,' d67cd56ce8da60e518eb7ef009c3dd9d '),(213,'addressline1',0,1,''),(213,'addressline2',0,1,''),(213,'organization',0,1,''),(213,'organizationtaxid',0,1,''),(213,'fullname',0,1,''),(213,'slug',0,1,''),(213,'title',0,1,' new address '),(216,'slug',0,1,''),(219,'slug',0,1,''),(213,'locality',0,1,''),(213,'dependentlocality',0,1,''),(213,'postalcode',0,1,''),(213,'sortingcode',0,1,''),(220,'title',0,1,' shipping address '),(214,'organization',0,1,''),(214,'organizationtaxid',0,1,''),(214,'fullname',0,1,' denis piskun '),(214,'slug',0,1,''),(214,'title',0,1,' shipping address '),(215,'title',0,1,' billing address '),(214,'locality',0,1,' toronto '),(214,'dependentlocality',0,1,''),(214,'postalcode',0,1,' m4m4m4 '),(214,'sortingcode',0,1,''),(214,'addressline1',0,1,' brodie 155 '),(214,'addressline2',0,1,''),(215,'fullname',0,1,' denis piskun '),(215,'slug',0,1,''),(215,'organization',0,1,''),(215,'organizationtaxid',0,1,''),(215,'addressline2',0,1,''),(215,'administrativearea',0,1,' on '),(215,'locality',0,1,' toronto '),(215,'dependentlocality',0,1,''),(215,'postalcode',0,1,' m4m4m4 '),(215,'sortingcode',0,1,''),(215,'addressline1',0,1,' brodie 155 '),(215,'countrycode',0,1,' ca '),(214,'countrycode',0,1,' ca '),(214,'administrativearea',0,1,' on '),(216,'email',0,1,' denis convergine com '),(216,'number',0,1,' 581511147d0e804fc3bab3d0ad83ff6f '),(216,'shippingfirstname',0,1,' denis '),(216,'shippinglastname',0,1,' piskun '),(216,'shippingfullname',0,1,' denis piskun '),(216,'shortnumber',0,1,' 5815111 '),(216,'transactionreference',0,1,' 37285453 '),(216,'username',0,1,' denis '),(216,'reference',0,1,' 5815111 '),(216,'skus',0,1,' w4789 x3 '),(216,'lineitemdescriptions',0,1,' product 03 product 03 '),(216,'billingfullname',0,1,' denis piskun '),(216,'billingfirstname',0,1,' denis '),(216,'billinglastname',0,1,' piskun '),(217,'addressline2',0,1,''),(217,'organization',0,1,''),(217,'organizationtaxid',0,1,''),(217,'fullname',0,1,' denis piskun '),(217,'slug',0,1,''),(217,'administrativearea',0,1,' on '),(217,'locality',0,1,' toronto '),(217,'dependentlocality',0,1,''),(217,'postalcode',0,1,' m4m4m4 '),(217,'sortingcode',0,1,''),(217,'addressline1',0,1,' brodie 155 '),(218,'organizationtaxid',0,1,''),(218,'fullname',0,1,' denis piskun '),(218,'slug',0,1,''),(218,'title',0,1,' billing address '),(218,'organization',0,1,''),(218,'dependentlocality',0,1,''),(218,'postalcode',0,1,' m4m4m4 '),(218,'sortingcode',0,1,''),(218,'addressline1',0,1,' brodie 155 '),(217,'countrycode',0,1,' ca '),(219,'skus',0,1,' w4789 x2 '),(218,'addressline2',0,1,''),(218,'countrycode',0,1,' ca '),(218,'administrativearea',0,1,' on '),(218,'locality',0,1,' toronto '),(217,'title',0,1,' shipping address '),(219,'lineitemdescriptions',0,1,' product 02 product 02 '),(219,'username',0,1,' denis '),(219,'reference',0,1,' 6c5f1e5 '),(219,'transactionreference',0,1,' 37285476 '),(219,'billingfirstname',0,1,' denis '),(219,'billinglastname',0,1,' piskun '),(219,'billingfullname',0,1,' denis piskun '),(219,'email',0,1,' denis convergine com '),(219,'number',0,1,' 6c5f1e5457ec28d866afaaf442cb0e00 '),(219,'shippingfirstname',0,1,' denis '),(219,'shippinglastname',0,1,' piskun '),(221,'slug',0,1,''),(221,'title',0,1,' billing address '),(220,'slug',0,1,''),(220,'organizationtaxid',0,1,''),(220,'fullname',0,1,' denis piskun '),(220,'postalcode',0,1,' m4m4m4 '),(220,'sortingcode',0,1,''),(220,'addressline1',0,1,' brodie 155 '),(220,'addressline2',0,1,''),(220,'organization',0,1,''),(220,'administrativearea',0,1,' on '),(220,'locality',0,1,' toronto '),(220,'dependentlocality',0,1,''),(221,'fullname',0,1,' denis piskun '),(221,'organizationtaxid',0,1,''),(221,'administrativearea',0,1,' on '),(221,'locality',0,1,' toronto '),(221,'dependentlocality',0,1,''),(221,'postalcode',0,1,' m4m4m4 '),(221,'sortingcode',0,1,''),(221,'addressline1',0,1,' brodie 155 '),(221,'addressline2',0,1,''),(220,'countrycode',0,1,' ca '),(222,'slug',0,1,''),(222,'reference',0,1,' a0d82f6 '),(221,'organization',0,1,''),(221,'countrycode',0,1,' ca '),(219,'shippingfullname',0,1,' denis piskun '),(219,'shortnumber',0,1,' 6c5f1e5 '),(222,'lineitemdescriptions',0,1,' product 01 product 01 '),(222,'skus',0,1,' w4789 x1 '),(222,'username',0,1,' denis '),(222,'transactionreference',0,1,' 37285521 '),(222,'shippingfullname',0,1,' denis piskun '),(222,'shortnumber',0,1,' a0d82f6 '),(222,'shippingfirstname',0,1,' denis '),(222,'billingfirstname',0,1,' denis '),(222,'billinglastname',0,1,' piskun '),(222,'billingfullname',0,1,' denis piskun '),(222,'email',0,1,' denis convergine com '),(222,'number',0,1,' a0d82f669e32ff8f17d426ba3dfd1f77 '),(224,'title',0,1,' billing address '),(223,'fullname',0,1,' denis piskun '),(223,'organization',0,1,''),(223,'organizationtaxid',0,1,''),(223,'dependentlocality',0,1,''),(223,'postalcode',0,1,' m4m4m4 '),(223,'sortingcode',0,1,''),(223,'addressline1',0,1,' brodie 155 '),(223,'addressline2',0,1,''),(223,'administrativearea',0,1,' on '),(223,'locality',0,1,' toronto '),(224,'fullname',0,1,' denis piskun '),(224,'slug',0,1,''),(224,'addressline2',0,1,''),(224,'organization',0,1,''),(224,'administrativearea',0,1,' on '),(224,'locality',0,1,' toronto '),(224,'dependentlocality',0,1,''),(224,'postalcode',0,1,' m4m4m4 '),(224,'sortingcode',0,1,''),(223,'slug',0,1,''),(223,'title',0,1,' shipping address '),(224,'organizationtaxid',0,1,''),(224,'addressline1',0,1,' brodie 155 '),(224,'countrycode',0,1,' ca '),(223,'countrycode',0,1,' ca '),(227,'title',0,1,' billing address '),(227,'postalcode',0,1,' m4m4m4 '),(227,'countrycode',0,1,' ca '),(225,'reference',0,1,' 56ed20b '),(225,'skus',0,1,' w4789 x2 '),(225,'lineitemdescriptions',0,1,' product 02 product 02 '),(225,'billingfirstname',0,1,' denis '),(225,'billinglastname',0,1,' piskun '),(225,'billingfullname',0,1,' denis piskun '),(225,'email',0,1,' denis convergine com '),(225,'number',0,1,' 56ed20b0a4d1d1b0618c7daf288de464 '),(225,'shippingfirstname',0,1,' denis '),(225,'shippinglastname',0,1,' piskun '),(225,'shippingfullname',0,1,' denis piskun '),(225,'shortnumber',0,1,' 56ed20b '),(225,'transactionreference',0,1,' 37285542 '),(225,'username',0,1,' denis '),(227,'sortingcode',0,1,''),(226,'addressline2',0,1,''),(226,'organization',0,1,''),(226,'organizationtaxid',0,1,''),(226,'fullname',0,1,' denis piskun '),(226,'slug',0,1,''),(226,'administrativearea',0,1,' on '),(226,'locality',0,1,' toronto '),(226,'dependentlocality',0,1,''),(226,'postalcode',0,1,' m4m4m4 '),(226,'sortingcode',0,1,''),(226,'addressline1',0,1,' brodie 155 '),(225,'slug',0,1,''),(227,'fullname',0,1,' denis piskun '),(227,'slug',0,1,''),(227,'addressline1',0,1,' brodie 155 '),(227,'addressline2',0,1,''),(227,'administrativearea',0,1,' on '),(227,'locality',0,1,' toronto '),(227,'dependentlocality',0,1,''),(226,'countrycode',0,1,' ca '),(228,'skus',0,1,' w4789 x3 '),(227,'organization',0,1,''),(227,'organizationtaxid',0,1,''),(226,'title',0,1,' shipping address '),(229,'organization',0,1,''),(228,'lineitemdescriptions',0,1,' product 03 product 03 '),(228,'username',0,1,' denis '),(228,'billingfirstname',0,1,' denis '),(228,'billinglastname',0,1,' piskun '),(228,'billingfullname',0,1,' denis piskun '),(228,'email',0,1,' denis convergine com '),(228,'number',0,1,' 82ee65ae8feb73046eb08f961a0bfd92 '),(228,'shippingfirstname',0,1,' denis '),(228,'shippinglastname',0,1,' piskun '),(228,'shippingfullname',0,1,' denis piskun '),(228,'shortnumber',0,1,' 82ee65a '),(228,'transactionreference',0,1,' 37285577 37285577 '),(229,'postalcode',0,1,' m4m4m4 '),(229,'sortingcode',0,1,''),(229,'addressline1',0,1,' brodie 155 '),(230,'dependentlocality',0,1,''),(229,'slug',0,1,''),(229,'title',0,1,' shipping address '),(229,'organizationtaxid',0,1,''),(229,'fullname',0,1,' denis piskun '),(229,'addressline2',0,1,''),(229,'administrativearea',0,1,' on '),(229,'locality',0,1,' toronto '),(229,'dependentlocality',0,1,''),(230,'slug',0,1,''),(230,'title',0,1,' billing address '),(228,'slug',0,1,''),(230,'addressline2',0,1,''),(230,'organization',0,1,''),(230,'postalcode',0,1,' m4m4m4 '),(230,'locality',0,1,' toronto '),(229,'countrycode',0,1,' ca '),(230,'organizationtaxid',0,1,''),(230,'fullname',0,1,' denis piskun '),(230,'addressline1',0,1,' brodie 155 '),(230,'sortingcode',0,1,''),(228,'reference',0,1,' 82ee65a '),(230,'administrativearea',0,1,' on '),(231,'slug',0,1,''),(231,'billingfullname',0,1,' denis piskun '),(22,'slug',0,1,''),(231,'lineitemdescriptions',0,1,' product 03 product 03 '),(231,'email',0,1,' denis convergine com '),(231,'number',0,1,' 0beb522fd4f704f40eef86efa549c61d '),(231,'shippingfirstname',0,1,' denis '),(231,'shippinglastname',0,1,' piskun '),(231,'shippingfullname',0,1,' denis piskun '),(231,'shortnumber',0,1,' 0beb522 '),(231,'transactionreference',0,1,' 37285583 37285583 '),(231,'username',0,1,' denis '),(231,'reference',0,1,' 0beb522 '),(231,'skus',0,1,' w4789 x3 '),(231,'billinglastname',0,1,' piskun '),(231,'billingfirstname',0,1,' denis '),(232,'countrycode',0,1,' ca '),(232,'administrativearea',0,1,' on '),(232,'locality',0,1,' toronto '),(232,'dependentlocality',0,1,''),(232,'postalcode',0,1,' m4m4m4 '),(232,'sortingcode',0,1,''),(232,'addressline1',0,1,' brodie 155 '),(232,'addressline2',0,1,''),(232,'organization',0,1,''),(232,'organizationtaxid',0,1,''),(232,'fullname',0,1,' denis piskun '),(232,'slug',0,1,''),(232,'title',0,1,' shipping address '),(233,'sortingcode',0,1,''),(233,'addressline1',0,1,' brodie 155 '),(233,'addressline2',0,1,''),(233,'organization',0,1,''),(233,'organizationtaxid',0,1,''),(233,'fullname',0,1,' denis piskun '),(233,'slug',0,1,''),(233,'title',0,1,' billing address '),(233,'administrativearea',0,1,' on '),(233,'locality',0,1,' toronto '),(233,'dependentlocality',0,1,''),(233,'postalcode',0,1,' m4m4m4 '),(22,'title',0,1,' product 03 '),(230,'countrycode',0,1,' ca '),(233,'countrycode',0,1,' ca '),(234,'transactionreference',0,1,' 37285603 '),(234,'email',0,1,' denis convergine com '),(234,'slug',0,1,''),(234,'skus',0,1,' w4789 x3 '),(234,'lineitemdescriptions',0,1,' product 03 product 03 '),(234,'reference',0,1,' 8657bfa '),(234,'shortnumber',0,1,' 8657bfa '),(234,'shippingfullname',0,1,' denis piskun '),(234,'shippingfirstname',0,1,' denis '),(234,'shippinglastname',0,1,' piskun '),(234,'billingfullname',0,1,' denis piskun '),(234,'billingfirstname',0,1,' denis '),(234,'billinglastname',0,1,' piskun '),(235,'countrycode',0,1,' ca '),(235,'administrativearea',0,1,' on '),(235,'locality',0,1,' toronto '),(235,'dependentlocality',0,1,''),(235,'postalcode',0,1,' m4m4m4 '),(242,'title',0,1,' billing address '),(235,'title',0,1,' shipping address '),(235,'fullname',0,1,' denis piskun '),(235,'slug',0,1,''),(235,'organization',0,1,''),(235,'organizationtaxid',0,1,''),(235,'addressline2',0,1,''),(235,'sortingcode',0,1,''),(235,'addressline1',0,1,' brodie 155 '),(236,'organizationtaxid',0,1,''),(236,'countrycode',0,1,' ca '),(236,'administrativearea',0,1,' on '),(236,'locality',0,1,' toronto '),(236,'dependentlocality',0,1,''),(236,'postalcode',0,1,' m4m4m4 '),(236,'sortingcode',0,1,''),(236,'addressline1',0,1,' brodie 155 '),(236,'slug',0,1,''),(236,'title',0,1,' billing address '),(236,'fullname',0,1,' denis piskun '),(236,'addressline2',0,1,''),(236,'organization',0,1,''),(234,'username',0,1,' denis '),(234,'number',0,1,' 8657bfa55a8c562be5fe5d7ea022dee7 '),(237,'lineitemdescriptions',0,1,' product 03 product 03 '),(237,'slug',0,1,''),(237,'email',0,1,' denis convergine com '),(237,'number',0,1,' 363f479cdbf82dfde22b435fab29dfd2 '),(237,'shippingfirstname',0,1,' denis '),(237,'shippinglastname',0,1,' piskun '),(237,'shippingfullname',0,1,' denis piskun '),(237,'shortnumber',0,1,' 363f479 '),(237,'transactionreference',0,1,' 37285605 37285606 37285606 '),(237,'username',0,1,' denis '),(237,'reference',0,1,' 363f479 '),(237,'skus',0,1,' w4789 x3 '),(237,'billingfullname',0,1,' denis piskun '),(237,'billingfirstname',0,1,' denis '),(237,'billinglastname',0,1,' piskun '),(238,'sortingcode',0,1,''),(238,'countrycode',0,1,' ca '),(238,'administrativearea',0,1,' on '),(238,'locality',0,1,' toronto '),(239,'slug',0,1,''),(239,'fullname',0,1,' denis piskun '),(238,'fullname',0,1,' denis piskun '),(238,'slug',0,1,''),(238,'organization',0,1,''),(238,'organizationtaxid',0,1,''),(238,'addressline1',0,1,' brodie 155 '),(238,'dependentlocality',0,1,''),(238,'postalcode',0,1,' m4m4m4 '),(239,'title',0,1,' billing address '),(240,'slug',0,1,''),(239,'countrycode',0,1,' ca '),(239,'administrativearea',0,1,' on '),(239,'locality',0,1,' toronto '),(239,'dependentlocality',0,1,''),(239,'postalcode',0,1,' m4m4m4 '),(239,'sortingcode',0,1,''),(239,'addressline1',0,1,' brodie 155 '),(239,'addressline2',0,1,''),(239,'organization',0,1,''),(239,'organizationtaxid',0,1,''),(238,'title',0,1,' shipping address '),(238,'addressline2',0,1,''),(242,'organizationtaxid',0,1,''),(240,'billingfirstname',0,1,' denis '),(240,'billinglastname',0,1,' piskun '),(240,'billingfullname',0,1,' denis piskun '),(240,'email',0,1,' denis convergine com '),(240,'number',0,1,' dd423f836bcbe43ceff81d1a6b2a5211 '),(240,'shippingfirstname',0,1,' denis '),(240,'shippinglastname',0,1,' piskun '),(240,'shippingfullname',0,1,' denis piskun '),(240,'shortnumber',0,1,' dd423f8 '),(240,'transactionreference',0,1,' 37285611 37285613 37285613 '),(240,'username',0,1,' denis '),(240,'reference',0,1,' dd423f8 '),(240,'skus',0,1,' w4789 x3 '),(242,'addressline1',0,1,' brodie 155 '),(242,'administrativearea',0,1,' on '),(241,'slug',0,1,''),(241,'title',0,1,' shipping address '),(241,'organizationtaxid',0,1,''),(241,'fullname',0,1,' denis piskun '),(241,'organization',0,1,''),(241,'administrativearea',0,1,' on '),(241,'locality',0,1,' toronto '),(241,'dependentlocality',0,1,''),(241,'postalcode',0,1,' m4m4m4 '),(241,'sortingcode',0,1,''),(241,'addressline1',0,1,' brodie 155 '),(242,'fullname',0,1,' denis piskun '),(242,'slug',0,1,''),(242,'addressline2',0,1,''),(242,'organization',0,1,''),(242,'locality',0,1,' toronto '),(242,'dependentlocality',0,1,''),(242,'postalcode',0,1,' m4m4m4 '),(242,'sortingcode',0,1,''),(241,'countrycode',0,1,' ca '),(240,'lineitemdescriptions',0,1,' product 03 product 03 '),(242,'countrycode',0,1,' ca '),(241,'addressline2',0,1,''),(247,'addressline2',0,1,''),(244,'title',0,1,' new address '),(244,'sortingcode',0,1,''),(243,'username',0,1,' janetest '),(246,'countrycode',0,1,' ca '),(246,'dependentlocality',0,1,''),(243,'slug',0,1,''),(243,'email',0,1,' jane convergine com '),(243,'number',0,1,' 8870c76b380b1ad0eb238d189c8eb1db '),(243,'shippingfirstname',0,1,' andrei '),(243,'shippinglastname',0,1,' medvedevs '),(243,'shippingfullname',0,1,' andrei medvedevs '),(243,'shortnumber',0,1,' 8870c76 '),(243,'transactionreference',0,1,' 37295456 37295456 37299355 37299355 37299357 37299359 '),(244,'addressline2',0,1,''),(244,'organization',0,1,''),(244,'organizationtaxid',0,1,''),(244,'fullname',0,1,''),(244,'slug',0,1,''),(244,'addressline1',0,1,''),(244,'administrativearea',0,1,''),(244,'locality',0,1,''),(244,'dependentlocality',0,1,''),(244,'postalcode',0,1,''),(245,'username',0,1,' janetest '),(245,'fullname',0,1,' jane test '),(245,'firstname',0,1,' jane '),(243,'skus',0,1,' w4789 x2 '),(243,'lineitemdescriptions',0,1,' product 02 product 02 '),(247,'title',0,1,' billing address '),(247,'fullname',0,1,' andrei medvedevs '),(247,'slug',0,1,''),(247,'organization',0,1,' test '),(246,'addressline2',0,1,''),(246,'organization',0,1,' test '),(246,'organizationtaxid',0,1,''),(246,'administrativearea',0,1,' on '),(246,'locality',0,1,' markham '),(247,'dependentlocality',0,1,''),(247,'countrycode',0,1,' ca '),(244,'countrycode',0,1,' us '),(247,'organizationtaxid',0,1,''),(247,'sortingcode',0,1,''),(247,'addressline1',0,1,' 7030 woodbine ave '),(247,'postalcode',0,1,' l3r 6g2 '),(247,'administrativearea',0,1,' on '),(247,'locality',0,1,' markham '),(243,'reference',0,1,' 8870c76 '),(246,'title',0,1,' shipping address '),(246,'fullname',0,1,' andrei medvedevs '),(246,'slug',0,1,''),(246,'postalcode',0,1,' l3r 6g2 '),(246,'sortingcode',0,1,''),(246,'addressline1',0,1,' 7030 woodbine ave '),(243,'billingfirstname',0,1,' andrei '),(243,'billinglastname',0,1,' medvedevs '),(243,'billingfullname',0,1,' andrei medvedevs '),(248,'billingfirstname',0,1,''),(248,'billinglastname',0,1,''),(248,'billingfullname',0,1,''),(248,'email',0,1,''),(248,'number',0,1,' 2ccfa7765609b58ebadf453c502b100a '),(248,'shippingfirstname',0,1,''),(248,'shippinglastname',0,1,''),(248,'shippingfullname',0,1,''),(248,'shortnumber',0,1,' 2ccfa77 '),(248,'transactionreference',0,1,''),(248,'username',0,1,''),(248,'reference',0,1,''),(248,'skus',0,1,''),(248,'lineitemdescriptions',0,1,''),(248,'slug',0,1,''),(250,'filename',0,1,' screenshot 2023 06 08 at 1 17 40 pm png '),(249,'countrycode',0,1,' ca '),(249,'administrativearea',0,1,' on '),(249,'locality',0,1,' markham '),(249,'dependentlocality',0,1,''),(249,'postalcode',0,1,' l3r 6g2 '),(249,'sortingcode',0,1,''),(249,'addressline1',0,1,' 7030 woodbine ave '),(249,'addressline2',0,1,''),(249,'organization',0,1,''),(249,'organizationtaxid',0,1,''),(249,'fullname',0,1,''),(249,'slug',0,1,' temp zteqfkbtwtvkmzfzbgzvfrzrmqzfqgfphilq '),(249,'title',0,1,' billing address '),(250,'extension',0,1,' png '),(250,'kind',0,1,' image '),(250,'alt',0,1,''),(250,'slug',0,1,''),(250,'title',0,1,' screenshot 2023 06 08 at 1 17 40 pm '),(251,'billingfirstname',0,1,''),(251,'billinglastname',0,1,''),(251,'billingfullname',0,1,''),(251,'email',0,1,''),(251,'number',0,1,' d262c928cd5fc801b4a217c921504dcc '),(251,'shippingfirstname',0,1,''),(251,'shippinglastname',0,1,''),(251,'shippingfullname',0,1,''),(251,'shortnumber',0,1,' d262c92 '),(251,'transactionreference',0,1,''),(251,'username',0,1,''),(251,'reference',0,1,''),(251,'skus',0,1,''),(251,'lineitemdescriptions',0,1,''),(251,'slug',0,1,''),(245,'email',0,1,' jane convergine com '),(245,'lastname',0,1,' test '),(252,'billingfirstname',0,1,''),(252,'billinglastname',0,1,''),(252,'billingfullname',0,1,''),(252,'email',0,1,''),(252,'number',0,1,' f275cda9565164b4b5bf09269f7aa625 '),(252,'shippingfirstname',0,1,''),(252,'shippinglastname',0,1,''),(252,'shippingfullname',0,1,''),(252,'shortnumber',0,1,' f275cda '),(252,'transactionreference',0,1,''),(252,'username',0,1,''),(252,'reference',0,1,''),(252,'skus',0,1,''),(252,'lineitemdescriptions',0,1,''),(252,'slug',0,1,''),(253,'countrycode',0,1,' us '),(253,'administrativearea',0,1,''),(253,'locality',0,1,''),(253,'dependentlocality',0,1,''),(253,'postalcode',0,1,''),(253,'sortingcode',0,1,''),(253,'addressline1',0,1,''),(253,'addressline2',0,1,''),(253,'organization',0,1,''),(253,'organizationtaxid',0,1,''),(253,'fullname',0,1,''),(253,'slug',0,1,' temp ynhzmioflthjsiydscjdrnafeatehpxnzoop '),(253,'title',0,1,' billing address '),(255,'title',0,1,' shipping address '),(255,'fullname',0,1,' andrei medvedevs '),(254,'lineitemdescriptions',0,1,' product 02 product 02 '),(254,'reference',0,1,' 9b13a93 '),(254,'skus',0,1,' w4789 x2 '),(254,'username',0,1,' janetest '),(254,'transactionreference',0,1,' 37295899 37295899 '),(254,'shortnumber',0,1,' 9b13a93 '),(254,'shippinglastname',0,1,' medvedevs '),(254,'shippingfullname',0,1,' andrei medvedevs '),(254,'shippingfirstname',0,1,' andrei '),(254,'number',0,1,' 9b13a931ad940580ee46e59723fa6792 '),(254,'billingfirstname',0,1,' andrei '),(254,'billinglastname',0,1,' medvedevs '),(254,'billingfullname',0,1,' andrei medvedevs '),(254,'email',0,1,' jane convergine com '),(255,'addressline2',0,1,''),(255,'organization',0,1,' test convergine inc '),(255,'organizationtaxid',0,1,''),(255,'locality',0,1,' markham '),(255,'dependentlocality',0,1,''),(255,'postalcode',0,1,' l3r 6g2 '),(255,'sortingcode',0,1,''),(256,'countrycode',0,1,' ca '),(256,'administrativearea',0,1,' on '),(256,'locality',0,1,' markham '),(256,'dependentlocality',0,1,''),(256,'postalcode',0,1,' l3r 6g2 '),(256,'sortingcode',0,1,''),(256,'addressline1',0,1,' 7030 woodbine ave '),(256,'addressline2',0,1,''),(256,'organization',0,1,' test convergine inc '),(256,'organizationtaxid',0,1,''),(256,'fullname',0,1,' andrei medvedevs '),(255,'addressline1',0,1,' 7030 woodbine ave '),(255,'countrycode',0,1,' ca '),(255,'administrativearea',0,1,' on '),(256,'slug',0,1,''),(255,'slug',0,1,''),(256,'title',0,1,' billing address '),(254,'slug',0,1,''),(262,'lineitemdescriptions',0,1,' product 01 product 01 '),(8,'slug',0,1,''),(8,'title',0,1,' product 01 '),(261,'countrycode',0,1,' ca '),(261,'administrativearea',0,1,' on '),(257,'slug',0,1,''),(257,'skus',0,1,' w4789 x1 '),(257,'lineitemdescriptions',0,1,' product 01 product 01 '),(257,'reference',0,1,' 71e7d9c '),(257,'transactionreference',0,1,' 37296171 37296171 '),(257,'shippinglastname',0,1,' medvedevs '),(257,'number',0,1,' 71e7d9c7ff23a870362bf4439ea1e2ab '),(257,'shippingfirstname',0,1,' andrei '),(257,'billinglastname',0,1,' medvedevs '),(257,'billingfirstname',0,1,' andrei '),(259,'title',0,1,' shipping address '),(258,'fullname',0,1,''),(258,'countrycode',0,1,' us '),(258,'administrativearea',0,1,''),(258,'locality',0,1,''),(258,'dependentlocality',0,1,''),(258,'postalcode',0,1,''),(258,'sortingcode',0,1,''),(258,'addressline1',0,1,''),(245,'slug',0,1,''),(257,'shortnumber',0,1,' 71e7d9c '),(258,'title',0,1,' new address '),(258,'slug',0,1,''),(258,'addressline2',0,1,''),(258,'organization',0,1,''),(258,'organizationtaxid',0,1,''),(257,'shippingfullname',0,1,' andrei medvedevs '),(257,'email',0,1,' jane convergine com '),(261,'slug',0,1,''),(261,'title',0,1,' billing address '),(261,'locality',0,1,' markham '),(261,'dependentlocality',0,1,''),(261,'postalcode',0,1,' l3r 6g2 '),(261,'sortingcode',0,1,''),(261,'addressline1',0,1,' 7030 woodbine ave '),(261,'addressline2',0,1,''),(261,'organization',0,1,' test '),(261,'organizationtaxid',0,1,''),(261,'fullname',0,1,' andrei medvedevs '),(259,'sortingcode',0,1,''),(259,'addressline1',0,1,' 7030 woodbine ave '),(259,'addressline2',0,1,''),(259,'organization',0,1,' test '),(259,'organizationtaxid',0,1,''),(259,'fullname',0,1,' andrei medvedevs '),(259,'slug',0,1,''),(259,'countrycode',0,1,' ca '),(259,'administrativearea',0,1,' on '),(259,'locality',0,1,' markham '),(259,'dependentlocality',0,1,''),(259,'postalcode',0,1,' l3r 6g2 '),(257,'billingfullname',0,1,' andrei medvedevs '),(264,'title',0,1,' billing address '),(267,'title',0,1,' billing address '),(262,'billingfirstname',0,1,' andrei '),(262,'billinglastname',0,1,' medvedevs '),(262,'billingfullname',0,1,' andrei medvedevs '),(262,'email',0,1,' jane convergine com '),(262,'number',0,1,' d5b4c7840d141e4a2d837bea6ba8d2d0 '),(262,'shippingfirstname',0,1,' andrei '),(262,'shippinglastname',0,1,' medvedevs '),(262,'shippingfullname',0,1,' andrei medvedevs '),(262,'shortnumber',0,1,' d5b4c78 '),(262,'transactionreference',0,1,' 37296222 37296222 '),(262,'username',0,1,' janetest '),(262,'reference',0,1,' d5b4c78 '),(262,'skus',0,1,' w4789 x1 '),(264,'fullname',0,1,' andrei medvedevs '),(263,'fullname',0,1,' andrei medvedevs '),(263,'dependentlocality',0,1,''),(263,'postalcode',0,1,' l3r 6g2 '),(263,'sortingcode',0,1,''),(263,'addressline1',0,1,' 7030 woodbine ave '),(263,'addressline2',0,1,''),(263,'organization',0,1,' test '),(264,'countrycode',0,1,' ca '),(265,'username',0,1,' janetest '),(264,'sortingcode',0,1,''),(264,'addressline1',0,1,' 7030 woodbine ave '),(264,'addressline2',0,1,''),(264,'organization',0,1,' test '),(264,'organizationtaxid',0,1,''),(264,'postalcode',0,1,' l3r 6g2 '),(264,'administrativearea',0,1,' on '),(264,'locality',0,1,' markham '),(263,'organizationtaxid',0,1,''),(263,'countrycode',0,1,' ca '),(263,'administrativearea',0,1,' on '),(263,'locality',0,1,' markham '),(264,'dependentlocality',0,1,''),(264,'slug',0,1,''),(262,'slug',0,1,''),(263,'slug',0,1,''),(263,'title',0,1,' shipping address '),(265,'reference',0,1,' c64b194 '),(265,'skus',0,1,' w4789 x2 '),(265,'billingfirstname',0,1,' andrei '),(265,'billinglastname',0,1,' medvedevs '),(265,'billingfullname',0,1,' andrei medvedevs '),(265,'email',0,1,' jane convergine com '),(265,'number',0,1,' c64b1943fcb739c884bce1ad43232e8e '),(265,'shippingfirstname',0,1,' andrei '),(265,'shippinglastname',0,1,' medvedevs '),(265,'shippingfullname',0,1,' andrei medvedevs '),(265,'shortnumber',0,1,' c64b194 '),(265,'transactionreference',0,1,' 37298912 37298919 37298919 '),(266,'title',0,1,' shipping address '),(266,'sortingcode',0,1,''),(266,'addressline1',0,1,' 7030 woodbine ave '),(266,'addressline2',0,1,''),(266,'organization',0,1,' test '),(266,'organizationtaxid',0,1,''),(266,'administrativearea',0,1,' on '),(266,'locality',0,1,' markham '),(266,'dependentlocality',0,1,''),(267,'organizationtaxid',0,1,''),(267,'fullname',0,1,' andrei medvedevs '),(267,'slug',0,1,''),(267,'dependentlocality',0,1,''),(267,'postalcode',0,1,' l3r 6g2 '),(266,'postalcode',0,1,' l3r 6g2 '),(265,'lineitemdescriptions',0,1,' product 02 product 02 '),(267,'locality',0,1,' markham '),(267,'countrycode',0,1,' ca '),(266,'slug',0,1,''),(266,'fullname',0,1,' andrei medvedevs '),(267,'sortingcode',0,1,''),(267,'addressline1',0,1,' 7030 woodbine ave '),(267,'addressline2',0,1,''),(267,'organization',0,1,' test '),(266,'countrycode',0,1,' ca '),(265,'slug',0,1,''),(268,'reference',0,1,' 40527e2 '),(267,'administrativearea',0,1,' on '),(271,'sortingcode',0,1,''),(63,'organizationtaxid',0,1,''),(268,'username',0,1,' janetest '),(268,'billingfirstname',0,1,' andrei '),(268,'billinglastname',0,1,' medvedevs '),(268,'billingfullname',0,1,' andrei medvedevs '),(268,'email',0,1,' jane convergine com '),(268,'number',0,1,' 40527e2d2de3236692c418cde7461b91 '),(268,'shippingfirstname',0,1,' andrei '),(268,'shippinglastname',0,1,' medvedevs '),(268,'shippingfullname',0,1,' andrei medvedevs '),(268,'shortnumber',0,1,' 40527e2 '),(268,'transactionreference',0,1,' 37298930 37298935 37298935 37299368 37302939 '),(269,'postalcode',0,1,''),(269,'sortingcode',0,1,''),(269,'addressline1',0,1,''),(269,'addressline2',0,1,''),(269,'organization',0,1,''),(269,'organizationtaxid',0,1,''),(269,'fullname',0,1,''),(269,'slug',0,1,''),(269,'title',0,1,' new address '),(269,'administrativearea',0,1,''),(269,'locality',0,1,''),(269,'dependentlocality',0,1,''),(270,'fullname',0,1,' andrei medvedevs '),(270,'countrycode',0,1,' ca '),(270,'administrativearea',0,1,' on '),(270,'locality',0,1,' markham '),(270,'dependentlocality',0,1,''),(270,'postalcode',0,1,' l3r 6g2 '),(270,'sortingcode',0,1,''),(270,'addressline1',0,1,' 7030 woodbine ave '),(270,'addressline2',0,1,''),(270,'organization',0,1,' convergine '),(270,'organizationtaxid',0,1,''),(271,'countrycode',0,1,' ca '),(271,'administrativearea',0,1,' on '),(271,'locality',0,1,' markham '),(268,'lineitemdescriptions',0,1,' product 01 product 01 '),(268,'skus',0,1,' w4789 x1 '),(331,'kind',0,2,' image '),(281,'slug',0,1,''),(271,'addressline1',0,1,' 7030 woodbine ave '),(271,'addressline2',0,1,''),(271,'organization',0,1,' convergine '),(270,'title',0,1,' shipping address '),(270,'slug',0,1,''),(271,'organizationtaxid',0,1,''),(271,'fullname',0,1,' andrei medvedevs '),(271,'slug',0,1,''),(271,'dependentlocality',0,1,''),(271,'postalcode',0,1,' l3r 6g2 '),(272,'username',0,1,' denis '),(63,'addressline1',0,1,''),(272,'shippingfullname',0,1,' denis piskun '),(272,'shippinglastname',0,1,' piskun '),(272,'billinglastname',0,1,' piskun '),(272,'billingfirstname',0,1,' denis '),(272,'email',0,1,' denis convergine com '),(272,'number',0,1,' a80c99bed48105745f06c484a07eec15 '),(272,'shippingfirstname',0,1,' denis '),(289,'countrycode',0,1,' ca '),(274,'title',0,1,' shipping address '),(282,'slug',0,1,''),(273,'slug',0,1,''),(273,'billingfirstname',0,1,' denis '),(273,'billinglastname',0,1,''),(273,'billingfullname',0,1,' denis '),(273,'email',0,1,' denis1 convergine com '),(273,'number',0,1,' fdd677894d59ff645c394ffb3009499c '),(273,'shippingfirstname',0,1,' denis '),(273,'shippinglastname',0,1,''),(273,'shippingfullname',0,1,' denis '),(273,'shortnumber',0,1,' fdd6778 '),(273,'transactionreference',0,1,' 37299361 37299362 37299362 37299364 37299365 37299365 37299379 37299379 '),(273,'username',0,1,''),(273,'reference',0,1,' fdd6778 '),(274,'slug',0,1,''),(274,'sortingcode',0,1,''),(274,'addressline1',0,1,' brodie 155 '),(274,'addressline2',0,1,''),(274,'organization',0,1,''),(274,'organizationtaxid',0,1,''),(275,'title',0,1,' billing address '),(273,'skus',0,1,' w4789 x1 '),(275,'slug',0,1,''),(275,'postalcode',0,1,' m4m4m4 '),(275,'sortingcode',0,1,''),(275,'addressline1',0,1,' brodie 155 '),(275,'addressline2',0,1,''),(275,'organization',0,1,''),(275,'organizationtaxid',0,1,''),(274,'fullname',0,1,' denis '),(274,'countrycode',0,1,' ca '),(274,'administrativearea',0,1,' on '),(274,'locality',0,1,' toronto '),(274,'dependentlocality',0,1,''),(274,'postalcode',0,1,' m4m4m4 '),(275,'fullname',0,1,' denis '),(275,'countrycode',0,1,' ca '),(275,'administrativearea',0,1,' on '),(275,'locality',0,1,' toronto '),(275,'dependentlocality',0,1,''),(276,'number',0,1,' 4296aab985daaf0d4eabf26469be076a '),(273,'lineitemdescriptions',0,1,' product 01 product 01 '),(276,'shippingfirstname',0,1,' denis '),(276,'shippinglastname',0,1,' piskun '),(276,'shippingfullname',0,1,' denis piskun '),(276,'shortnumber',0,1,' 4296aab '),(276,'transactionreference',0,1,''),(276,'username',0,1,' denis '),(276,'reference',0,1,''),(276,'skus',0,1,' w4789 x1 '),(277,'slug',0,1,''),(277,'fullname',0,1,' denis piskun '),(277,'administrativearea',0,1,' on '),(277,'locality',0,1,' toronto '),(277,'dependentlocality',0,1,''),(277,'postalcode',0,1,' m4m4m4 '),(277,'sortingcode',0,1,''),(277,'addressline1',0,1,' brodie 155 '),(277,'addressline2',0,1,''),(277,'organization',0,1,''),(277,'organizationtaxid',0,1,''),(277,'countrycode',0,1,' ca '),(276,'billinglastname',0,1,' piskun '),(276,'billingfirstname',0,1,' denis '),(276,'billingfullname',0,1,' denis piskun '),(276,'email',0,1,' denis convergine com '),(278,'addressline1',0,1,' brodie 155 '),(278,'sortingcode',0,1,''),(278,'administrativearea',0,1,' on '),(278,'addressline2',0,1,''),(278,'postalcode',0,1,' m4m4m4 '),(278,'dependentlocality',0,1,''),(278,'locality',0,1,' toronto '),(278,'countrycode',0,1,' ca '),(278,'organization',0,1,''),(278,'organizationtaxid',0,1,''),(278,'fullname',0,1,' denis piskun '),(278,'slug',0,1,''),(278,'title',0,1,' shipping address '),(277,'title',0,1,' billing address '),(276,'lineitemdescriptions',0,1,' product 01 product 01 '),(276,'slug',0,1,''),(271,'title',0,1,' billing address '),(268,'slug',0,1,''),(279,'shippinglastname',0,1,' piskun '),(279,'shippingfullname',0,1,' denis piskun '),(279,'shortnumber',0,1,' dec24df '),(279,'transactionreference',0,1,' 37299370 37299371 37299371 37299373 '),(279,'username',0,1,' denis '),(279,'reference',0,1,' dec24df '),(279,'skus',0,1,' w4789 x1 '),(279,'lineitemdescriptions',0,1,' product 01 product 01 '),(280,'organizationtaxid',0,1,''),(280,'sortingcode',0,1,''),(280,'addressline1',0,1,' brodie 155 '),(280,'addressline2',0,1,''),(280,'organization',0,1,''),(280,'administrativearea',0,1,' on '),(280,'locality',0,1,' toronto '),(280,'dependentlocality',0,1,''),(281,'organization',0,1,''),(281,'organizationtaxid',0,1,''),(281,'addressline2',0,1,''),(281,'addressline1',0,1,' brodie 155 '),(279,'slug',0,1,''),(281,'countrycode',0,1,' ca '),(281,'administrativearea',0,1,' on '),(281,'locality',0,1,' toronto '),(281,'dependentlocality',0,1,''),(281,'postalcode',0,1,' m4m4m4 '),(281,'sortingcode',0,1,''),(295,'slug',0,1,''),(280,'postalcode',0,1,' m4m4m4 '),(280,'countrycode',0,1,' ca '),(281,'title',0,1,' shipping address '),(287,'title',0,1,' shipping address '),(279,'number',0,1,' dec24dfe3c90a0f4801e3cfb133ee5a6 '),(279,'billingfirstname',0,1,' denis '),(279,'billinglastname',0,1,' piskun '),(279,'billingfullname',0,1,' denis piskun '),(279,'email',0,1,' denis convergine com '),(281,'fullname',0,1,' denis piskun '),(280,'fullname',0,1,' denis piskun '),(279,'shippingfirstname',0,1,' denis '),(280,'slug',0,1,''),(280,'title',0,1,' billing address '),(286,'title',0,1,' billing address '),(287,'addressline2',0,1,''),(287,'organization',0,1,''),(287,'organizationtaxid',0,1,''),(287,'fullname',0,1,''),(287,'slug',0,1,' temp nnqsidybohqhzxghhkrxecjxjmovkhkalpgb '),(287,'dependentlocality',0,1,''),(287,'administrativearea',0,1,' on '),(283,'countrycode',0,1,' us '),(283,'administrativearea',0,1,''),(283,'locality',0,1,''),(283,'dependentlocality',0,1,''),(283,'postalcode',0,1,''),(283,'sortingcode',0,1,''),(283,'addressline1',0,1,''),(283,'addressline2',0,1,''),(283,'organization',0,1,''),(283,'organizationtaxid',0,1,''),(283,'fullname',0,1,''),(283,'slug',0,1,' temp bzlrodqzowjyllagyubsvtvnncntaevwlvnq '),(283,'title',0,1,' billing address '),(287,'locality',0,1,' toronto '),(282,'email',0,1,' jane convergine com '),(288,'administrativearea',0,1,' on '),(287,'countrycode',0,1,' ca '),(282,'skus',0,1,' w4789 x1 '),(282,'lineitemdescriptions',0,1,' product 01 product 01 '),(282,'reference',0,1,' e5ab9da '),(282,'transactionreference',0,1,' 37299394 '),(282,'shortnumber',0,1,' e5ab9da '),(282,'shippinglastname',0,1,''),(282,'shippingfullname',0,1,''),(282,'shippingfirstname',0,1,''),(282,'billingfullname',0,1,''),(282,'billingfirstname',0,1,''),(282,'billinglastname',0,1,''),(286,'countrycode',0,1,' ca '),(286,'administrativearea',0,1,' mb '),(286,'locality',0,1,' toronto '),(286,'dependentlocality',0,1,''),(286,'postalcode',0,1,' l3b 3g3 '),(286,'sortingcode',0,1,''),(286,'addressline1',0,1,' brodie str 15 '),(286,'addressline2',0,1,''),(282,'username',0,1,' janetest '),(286,'organization',0,1,''),(286,'organizationtaxid',0,1,''),(286,'fullname',0,1,''),(286,'slug',0,1,' temp gpikdpepunjbfcweasypcwighlsawrjevszl '),(287,'postalcode',0,1,' l3b 3g3 '),(287,'sortingcode',0,1,''),(287,'addressline1',0,1,' brodie str 15 '),(282,'number',0,1,' e5ab9da43085d017fbf78ce5d88c5b34 '),(289,'administrativearea',0,1,' on '),(322,'title',0,1,' shipping address '),(307,'addressline1',0,1,' brodie 155 '),(307,'countrycode',0,1,' ca '),(290,'shippingfullname',0,1,' denis piskun '),(290,'shortnumber',0,1,' 595ee21 '),(290,'transactionreference',0,1,' 37315501 37315501 37315501 37315503 37315503 37315534 37315534 '),(290,'username',0,1,' denis '),(290,'reference',0,1,' 595ee21 '),(290,'skus',0,1,' w4789 x3 '),(290,'lineitemdescriptions',0,1,' product 03 product 03 '),(290,'slug',0,1,''),(307,'fullname',0,1,' denis piskun '),(290,'email',0,1,' denis convergine com '),(312,'countrycode',0,1,' ca '),(198,'transactionreference',0,1,' 37315536 37315536 '),(290,'billingfullname',0,1,' denis piskun '),(63,'postalcode',0,1,''),(307,'slug',0,1,''),(290,'billingfirstname',0,1,' denis '),(307,'organization',0,1,''),(307,'sortingcode',0,1,''),(290,'shippingfirstname',0,1,' denis '),(290,'shippinglastname',0,1,' piskun '),(307,'dependentlocality',0,1,''),(307,'postalcode',0,1,' m4m4m4 '),(306,'fullname',0,1,' denis piskun '),(306,'slug',0,1,''),(306,'administrativearea',0,1,' on '),(306,'locality',0,1,' toronto '),(306,'dependentlocality',0,1,''),(306,'postalcode',0,1,' m4m4m4 '),(306,'sortingcode',0,1,''),(306,'addressline1',0,1,' brodie 155 '),(306,'addressline2',0,1,''),(306,'organization',0,1,''),(306,'organizationtaxid',0,1,''),(293,'slug',0,1,''),(294,'slug',0,1,''),(293,'lineitemdescriptions',0,1,' product 01 product 01 product 03 product 03 product 02 product 02 '),(293,'billingfirstname',0,1,''),(293,'billinglastname',0,1,''),(293,'billingfullname',0,1,''),(293,'email',0,1,' jane convergine com '),(293,'number',0,1,' d194361e63d65a693a0548d626f187a8 '),(293,'shippingfirstname',0,1,''),(293,'shippinglastname',0,1,''),(293,'shippingfullname',0,1,''),(293,'shortnumber',0,1,' d194361 '),(293,'transactionreference',0,1,''),(293,'username',0,1,' janetest '),(293,'reference',0,1,''),(293,'skus',0,1,' w4789 x1 w4789 x3 w4789 x2 '),(294,'countrycode',0,1,' us '),(294,'administrativearea',0,1,''),(294,'organizationtaxid',0,1,''),(294,'fullname',0,1,''),(294,'postalcode',0,1,''),(294,'sortingcode',0,1,''),(294,'addressline1',0,1,''),(294,'addressline2',0,1,''),(294,'organization',0,1,''),(294,'locality',0,1,''),(294,'dependentlocality',0,1,''),(294,'title',0,1,' new address '),(297,'organizationtaxid',0,1,''),(297,'fullname',0,1,' andrei medvedevs '),(297,'slug',0,1,''),(297,'title',0,1,' billing address '),(296,'countrycode',0,1,' ca '),(295,'lineitemdescriptions',0,1,' product 01 product 01 product 03 product 03 product 02 product 02 '),(295,'username',0,1,' janetest '),(295,'reference',0,1,' a3464c3 '),(295,'shortnumber',0,1,' a3464c3 '),(295,'billingfirstname',0,1,' andrei '),(295,'billinglastname',0,1,' medvedevs '),(295,'billingfullname',0,1,' andrei medvedevs '),(295,'email',0,1,' jane convergine com '),(295,'number',0,1,' a3464c33e0abdc6328e37874f145cf0a '),(295,'shippingfirstname',0,1,' andrei '),(295,'shippinglastname',0,1,' medvedevs '),(295,'shippingfullname',0,1,' andrei medvedevs '),(296,'addressline2',0,1,''),(296,'organization',0,1,' convergine test '),(296,'organizationtaxid',0,1,''),(296,'fullname',0,1,' andrei medvedevs '),(296,'slug',0,1,''),(296,'title',0,1,' shipping address '),(296,'administrativearea',0,1,' on '),(296,'locality',0,1,' markham '),(295,'transactionreference',0,1,' 37303268 37303294 37303294 '),(297,'countrycode',0,1,' ca '),(297,'administrativearea',0,1,' on '),(297,'locality',0,1,' markham '),(297,'dependentlocality',0,1,''),(297,'postalcode',0,1,' l3r 6g2 '),(297,'sortingcode',0,1,''),(297,'addressline1',0,1,' 7030 woodbine ave '),(297,'addressline2',0,1,''),(296,'dependentlocality',0,1,''),(296,'postalcode',0,1,' l3r 6g2 '),(296,'sortingcode',0,1,''),(296,'addressline1',0,1,' 7030 woodbine ave '),(298,'transactionreference',0,1,' 37303560 37303578 37303666 37303666 '),(297,'organization',0,1,' convergine test '),(299,'administrativearea',0,1,''),(295,'skus',0,1,' w4789 x1 w4789 x3 w4789 x2 '),(299,'countrycode',0,1,' us '),(301,'countrycode',0,1,' ca '),(301,'administrativearea',0,1,' on '),(298,'shortnumber',0,1,' 3e71b74 '),(298,'shippingfirstname',0,1,' andrei '),(298,'shippinglastname',0,1,' medvedevs '),(298,'billingfirstname',0,1,' andrei '),(298,'billinglastname',0,1,' medvedevs '),(298,'billingfullname',0,1,' andrei medvedevs '),(298,'email',0,1,' jane convergine com '),(298,'number',0,1,' 3e71b74ded1732e1ed7bb7d1ce0e5bd9 '),(299,'sortingcode',0,1,''),(299,'addressline1',0,1,''),(299,'addressline2',0,1,''),(299,'organization',0,1,''),(299,'organizationtaxid',0,1,''),(299,'fullname',0,1,''),(299,'slug',0,1,''),(299,'title',0,1,' new address '),(299,'locality',0,1,''),(299,'dependentlocality',0,1,''),(299,'postalcode',0,1,''),(298,'username',0,1,' janetest '),(298,'reference',0,1,' 3e71b74 '),(298,'skus',0,1,' w4789 x2 '),(298,'lineitemdescriptions',0,1,' product 02 product 02 '),(298,'slug',0,1,''),(304,'countrycode',0,1,' ca '),(300,'organization',0,1,''),(300,'organizationtaxid',0,1,''),(300,'fullname',0,1,' andrei medvedevs '),(300,'slug',0,1,''),(300,'addressline2',0,1,''),(300,'sortingcode',0,1,''),(300,'addressline1',0,1,' 7030 woodbine ave '),(298,'shippingfullname',0,1,' andrei medvedevs '),(301,'slug',0,1,''),(301,'title',0,1,' billing address '),(301,'addressline2',0,1,''),(301,'organization',0,1,''),(301,'postalcode',0,1,' l3r 6g2 '),(301,'locality',0,1,' markham '),(301,'dependentlocality',0,1,''),(300,'countrycode',0,1,' ca '),(300,'administrativearea',0,1,' on '),(300,'locality',0,1,' markham '),(300,'dependentlocality',0,1,''),(300,'postalcode',0,1,' l3r 6g2 '),(301,'organizationtaxid',0,1,''),(301,'fullname',0,1,' andrei medvedevs '),(301,'sortingcode',0,1,''),(301,'addressline1',0,1,' 7030 woodbine ave '),(300,'title',0,1,' shipping address '),(302,'number',0,1,' f94c5194653189c5326b766837fd1064 '),(305,'skus',0,1,' w4789 x1 w4789 x2 w4789 x3 '),(302,'shippingfirstname',0,1,''),(302,'shippinglastname',0,1,''),(302,'shippingfullname',0,1,''),(302,'shortnumber',0,1,' f94c519 '),(302,'transactionreference',0,1,' 37303736 37303736 37303736 '),(302,'username',0,1,' janetest '),(302,'reference',0,1,' f94c519 '),(302,'skus',0,1,' w4789 x1 '),(302,'lineitemdescriptions',0,1,' product 01 product 01 '),(302,'billingfullname',0,1,''),(302,'email',0,1,' jane convergine com '),(302,'billingfirstname',0,1,''),(302,'billinglastname',0,1,''),(303,'slug',0,1,''),(303,'title',0,1,' shipping address '),(303,'organizationtaxid',0,1,''),(303,'fullname',0,1,''),(303,'postalcode',0,1,' l3r 6g2 '),(303,'locality',0,1,' markham '),(304,'slug',0,1,''),(302,'slug',0,1,''),(304,'addressline2',0,1,''),(304,'organization',0,1,' convergine '),(304,'organizationtaxid',0,1,''),(304,'fullname',0,1,''),(304,'sortingcode',0,1,''),(304,'administrativearea',0,1,' on '),(304,'locality',0,1,' markham '),(304,'dependentlocality',0,1,''),(303,'addressline2',0,1,''),(303,'organization',0,1,' convergine '),(304,'addressline1',0,1,' 7030 woodbine ave '),(304,'postalcode',0,1,' l3r 6g2 '),(303,'dependentlocality',0,1,''),(303,'countrycode',0,1,' ca '),(303,'administrativearea',0,1,' on '),(304,'title',0,1,' billing address '),(303,'sortingcode',0,1,''),(303,'addressline1',0,1,' 7030 woodbine ave '),(305,'lineitemdescriptions',0,1,' product 01 product 01 product 02 product 02 product 03 product 03 '),(305,'reference',0,1,''),(305,'username',0,1,' janetest '),(305,'billingfirstname',0,1,''),(305,'billinglastname',0,1,''),(305,'billingfullname',0,1,''),(305,'email',0,1,' jane convergine com '),(305,'number',0,1,' af0a3cb0e207a510b83e8809de9c21d1 '),(305,'shippingfirstname',0,1,''),(305,'shippinglastname',0,1,''),(305,'shippingfullname',0,1,''),(305,'shortnumber',0,1,' af0a3cb '),(305,'transactionreference',0,1,''),(305,'slug',0,1,''),(62,'slug',0,1,''),(307,'locality',0,1,' toronto '),(307,'administrativearea',0,1,' on '),(62,'shippingfirstname',0,1,' andrei '),(307,'organizationtaxid',0,1,''),(290,'number',0,1,' 595ee21d842ef66e3bab30a22ac85c3e '),(307,'addressline2',0,1,''),(309,'addressline2',0,1,''),(306,'countrycode',0,1,' ca '),(307,'title',0,1,' billing address '),(310,'lineitemdescriptions',0,1,' product 01 product 01 '),(310,'reference',0,1,' 99a5d7a '),(310,'skus',0,1,' w4789 x1 '),(310,'username',0,1,' janetest '),(310,'shortnumber',0,1,' 99a5d7a '),(310,'shippinglastname',0,1,' medvedevs '),(310,'number',0,1,' 99a5d7abfad16bb7b691a4be346a017b '),(310,'shippingfirstname',0,1,' andrei '),(310,'billingfullname',0,1,' andrei medvedevs '),(311,'organization',0,1,' test '),(311,'countrycode',0,1,' ca '),(311,'administrativearea',0,1,' on '),(311,'locality',0,1,' markham '),(311,'dependentlocality',0,1,''),(311,'postalcode',0,1,' l3r 6g2 '),(311,'sortingcode',0,1,''),(311,'addressline1',0,1,' 11111 '),(311,'addressline2',0,1,''),(312,'organizationtaxid',0,1,''),(312,'fullname',0,1,' andrei medvedevs '),(312,'slug',0,1,''),(310,'billinglastname',0,1,' medvedevs '),(312,'title',0,1,' billing address '),(312,'administrativearea',0,1,' on '),(312,'locality',0,1,' markham '),(312,'dependentlocality',0,1,''),(310,'billingfirstname',0,1,' andrei '),(311,'title',0,1,' shipping address '),(311,'fullname',0,1,' andrei medvedevs '),(311,'organizationtaxid',0,1,''),(312,'postalcode',0,1,' l3r 6g2 '),(312,'sortingcode',0,1,''),(312,'addressline1',0,1,' 11111 '),(312,'addressline2',0,1,''),(312,'organization',0,1,' test '),(310,'transactionreference',0,1,' 37328554 37328554 37329185 37329185 '),(310,'shippingfullname',0,1,' andrei medvedevs '),(313,'shippingfirstname',0,1,''),(313,'shippinglastname',0,1,''),(313,'shippingfullname',0,1,''),(313,'shortnumber',0,1,' 4368a40 '),(313,'transactionreference',0,1,''),(313,'username',0,1,' janetest '),(313,'reference',0,1,''),(313,'skus',0,1,' w4789 x2 w4789 x3 '),(313,'lineitemdescriptions',0,1,' product 02 product 02 product 03 product 03 '),(313,'number',0,1,' 4368a40415c7ca643d78a82147ccceb7 '),(313,'billinglastname',0,1,''),(313,'billingfirstname',0,1,''),(313,'email',0,1,' jane convergine com '),(313,'billingfullname',0,1,''),(314,'countrycode',0,1,' ca '),(314,'administrativearea',0,1,' on '),(314,'locality',0,1,' markham '),(314,'dependentlocality',0,1,''),(314,'postalcode',0,1,' l3r 6g2 '),(314,'sortingcode',0,1,''),(314,'addressline1',0,1,' 7030 woodbine ave '),(314,'addressline2',0,1,''),(314,'organization',0,1,''),(314,'organizationtaxid',0,1,''),(314,'fullname',0,1,''),(314,'slug',0,1,' temp vzlswcpdmrfmjfgyspkijhoawbaqndgqbbrg '),(314,'title',0,1,' billing address '),(313,'slug',0,1,''),(272,'reference',0,1,''),(315,'shortnumber',0,1,' 292442b '),(315,'shippingfullname',0,1,''),(315,'shippingfirstname',0,1,''),(315,'shippinglastname',0,1,''),(315,'email',0,1,' jane convergine com '),(315,'billingfirstname',0,1,''),(315,'billinglastname',0,1,''),(315,'billingfullname',0,1,''),(316,'slug',0,1,' temp vjuwiilcbkrvdfayrrruxobmslexkppzrpuo '),(316,'organizationtaxid',0,1,''),(316,'fullname',0,1,''),(316,'organization',0,1,''),(316,'administrativearea',0,1,' on '),(316,'locality',0,1,' markham '),(316,'dependentlocality',0,1,''),(316,'postalcode',0,1,' l3r 6g2 '),(316,'sortingcode',0,1,''),(316,'addressline1',0,1,' 7030 woodbine ave '),(316,'addressline2',0,1,''),(316,'countrycode',0,1,' ca '),(315,'username',0,1,' janetest '),(315,'reference',0,1,''),(315,'skus',0,1,' w4789 x1 '),(315,'lineitemdescriptions',0,1,' product 01 product 01 '),(315,'slug',0,1,''),(315,'transactionreference',0,1,''),(315,'number',0,1,' 292442b10a27a0617dbbdbde272dd5c3 '),(316,'title',0,1,' billing address '),(317,'addressline2',0,1,''),(317,'addressline1',0,1,''),(272,'skus',0,1,' w4789 x3 '),(272,'lineitemdescriptions',0,1,' product 03 product 03 '),(317,'organizationtaxid',0,1,''),(317,'fullname',0,1,''),(63,'slug',0,1,''),(317,'administrativearea',0,1,''),(317,'locality',0,1,''),(317,'dependentlocality',0,1,''),(317,'postalcode',0,1,''),(317,'sortingcode',0,1,''),(272,'transactionreference',0,1,''),(317,'slug',0,1,''),(318,'addressline2',0,1,''),(318,'organization',0,1,''),(318,'locality',0,1,' toronto '),(318,'countrycode',0,1,' ca '),(318,'organizationtaxid',0,1,''),(318,'fullname',0,1,' denis piskun '),(318,'slug',0,1,''),(318,'dependentlocality',0,1,''),(318,'postalcode',0,1,' m4m4m4 '),(318,'sortingcode',0,1,''),(318,'addressline1',0,1,' brodie 155 '),(272,'slug',0,1,''),(319,'title',0,1,' billing address '),(319,'organizationtaxid',0,1,''),(319,'fullname',0,1,' denis piskun '),(319,'organization',0,1,''),(319,'administrativearea',0,1,' on '),(319,'locality',0,1,' toronto '),(319,'dependentlocality',0,1,''),(319,'postalcode',0,1,' m4m4m4 '),(272,'billingfullname',0,1,' denis piskun '),(318,'administrativearea',0,1,' on '),(319,'slug',0,1,''),(319,'sortingcode',0,1,''),(319,'addressline1',0,1,' brodie 155 '),(319,'addressline2',0,1,''),(318,'title',0,1,' shipping address '),(317,'organization',0,1,''),(322,'fullname',0,1,' andrei medvedevs '),(320,'lineitemdescriptions',0,1,' product 01 product 01 '),(320,'skus',0,1,' w4789 x1 '),(320,'reference',0,1,' 40e8b70 '),(320,'username',0,1,' janetest '),(320,'transactionreference',0,1,' 37332820 37332827 37332827 '),(320,'shortnumber',0,1,' 40e8b70 '),(320,'shippingfullname',0,1,''),(321,'sortingcode',0,1,''),(321,'addressline1',0,1,' 7030 woodbine ave '),(321,'addressline2',0,1,''),(321,'organization',0,1,''),(321,'organizationtaxid',0,1,''),(321,'fullname',0,1,''),(321,'slug',0,1,' temp sxlxjhtjixxurvsbqijfycwjgrbhwajozkqb '),(321,'title',0,1,' billing address '),(321,'administrativearea',0,1,' on '),(321,'locality',0,1,' markham '),(321,'dependentlocality',0,1,''),(321,'postalcode',0,1,' l3r 6g2 '),(320,'billingfirstname',0,1,''),(320,'billinglastname',0,1,''),(320,'billingfullname',0,1,''),(320,'email',0,1,' jane convergine com '),(320,'number',0,1,' 40e8b705a3b556ac9d484bb2ac6d8687 '),(320,'shippingfirstname',0,1,''),(320,'shippinglastname',0,1,''),(62,'email',0,1,' konstantin convergine com '),(322,'slug',0,1,''),(322,'organization',0,1,''),(322,'organizationtaxid',0,1,''),(322,'addressline2',0,1,''),(322,'locality',0,1,' markham '),(322,'dependentlocality',0,1,''),(322,'postalcode',0,1,' l3r 6g2 '),(322,'sortingcode',0,1,''),(322,'addressline1',0,1,' 7030 woodbine ave '),(323,'slug',0,1,''),(323,'title',0,1,' billing address '),(323,'fullname',0,1,' andrei medvedevs '),(323,'postalcode',0,1,' l3r 6g2 '),(323,'sortingcode',0,1,''),(323,'addressline1',0,1,' 7030 woodbine ave '),(323,'addressline2',0,1,''),(323,'organization',0,1,''),(323,'organizationtaxid',0,1,''),(63,'fullname',0,1,''),(63,'title',0,1,' new address '),(322,'countrycode',0,1,' ca '),(323,'administrativearea',0,1,' on '),(323,'locality',0,1,' markham '),(323,'dependentlocality',0,1,''),(63,'sortingcode',0,1,''),(62,'billinglastname',0,1,' medvedevs '),(62,'billingfirstname',0,1,' andrei '),(321,'countrycode',0,1,' ca '),(63,'addressline2',0,1,''),(324,'slug',0,1,''),(324,'shortnumber',0,1,' f85c89a '),(324,'transactionreference',0,1,' 37336033 37336066 '),(324,'username',0,1,' janetest '),(324,'reference',0,1,' f85c89a '),(324,'skus',0,1,' w4789 x2 w4789 x3 w4789 x1 '),(324,'lineitemdescriptions',0,1,' product 02 product 02 product 03 product 03 product 01 product 01 '),(325,'addressline2',0,1,''),(325,'organization',0,1,''),(325,'organizationtaxid',0,1,''),(325,'fullname',0,1,''),(325,'slug',0,1,' temp ztidxhrkvtdasrrtlzyhnljhwzrnzocubabu '),(325,'administrativearea',0,1,' on '),(325,'locality',0,1,' markham '),(9,'title',0,1,' home '),(325,'title',0,1,' billing address '),(325,'dependentlocality',0,1,''),(325,'postalcode',0,1,' l3r 6g2 '),(325,'sortingcode',0,1,''),(325,'addressline1',0,1,' 7030 woodbine ave '),(324,'shippinglastname',0,1,''),(324,'shippingfullname',0,1,''),(324,'billinglastname',0,1,''),(324,'billingfirstname',0,1,''),(325,'countrycode',0,1,' ca '),(324,'billingfullname',0,1,''),(324,'email',0,1,' jane convergine com '),(324,'number',0,1,' f85c89ab04568ed9eb566d1826dffb1b '),(324,'shippingfirstname',0,1,''),(133,'filename',0,2,' images jpeg '),(133,'extension',0,2,' jpeg '),(133,'kind',0,2,' image '),(133,'alt',0,2,''),(133,'slug',0,2,''),(133,'title',0,2,' images '),(134,'filename',0,2,' readyplayerme avatar jpeg '),(134,'extension',0,2,' jpeg '),(134,'kind',0,2,' image '),(134,'alt',0,2,''),(134,'slug',0,2,''),(134,'title',0,2,' ready player me avatar '),(138,'filename',0,2,' readyplayerme avatar 2023 01 24 094657 ctgd jpeg '),(138,'extension',0,2,' jpeg '),(138,'kind',0,2,' image '),(138,'alt',0,2,''),(138,'slug',0,2,''),(138,'title',0,2,' ready player me avatar '),(139,'filename',0,2,' screenshot 102 png '),(139,'extension',0,2,' png '),(139,'kind',0,2,' image '),(139,'alt',0,2,''),(139,'slug',0,2,''),(139,'title',0,2,' screenshot 102 '),(140,'filename',0,2,' rentalagreement2021 1 pdf '),(140,'extension',0,2,' pdf '),(140,'kind',0,2,' pdf '),(140,'alt',0,2,''),(140,'slug',0,2,''),(140,'title',0,2,' rental agreement2021 1 '),(141,'filename',0,2,' rentalagreement2021 1 pdf '),(141,'extension',0,2,' pdf '),(141,'kind',0,2,' pdf '),(141,'alt',0,2,''),(141,'slug',0,2,''),(141,'title',0,2,' rental agreement2021 1 '),(142,'filename',0,2,' rentalagreement2021 1 2023 01 24 100457 mhxe pdf '),(142,'extension',0,2,' pdf '),(142,'kind',0,2,' pdf '),(142,'alt',0,2,''),(142,'slug',0,2,''),(142,'title',0,2,' rental agreement2021 1 '),(143,'filename',0,2,' rentalagreement2021 1 pdf '),(143,'extension',0,2,' pdf '),(143,'kind',0,2,' pdf '),(143,'alt',0,2,''),(143,'slug',0,2,''),(143,'title',0,2,' rental agreement2021 1 '),(144,'filename',0,2,' rentalagreement2021 1 2023 01 24 101117 yybe pdf '),(144,'extension',0,2,' pdf '),(144,'kind',0,2,' pdf '),(144,'alt',0,2,''),(144,'slug',0,2,''),(144,'title',0,2,' rental agreement2021 1 '),(145,'filename',0,2,' images jpeg '),(145,'extension',0,2,' jpeg '),(145,'kind',0,2,' image '),(145,'alt',0,2,''),(145,'slug',0,2,''),(145,'title',0,2,' images '),(146,'filename',0,2,' rentalagreement2021 1 2023 01 24 101621 bqlv pdf '),(146,'extension',0,2,' pdf '),(146,'kind',0,2,' pdf '),(146,'alt',0,2,''),(146,'slug',0,2,''),(146,'title',0,2,' rental agreement2021 1 '),(147,'filename',0,2,' rentalagreement2021 1 pdf '),(147,'extension',0,2,' pdf '),(147,'kind',0,2,' pdf '),(147,'alt',0,2,''),(147,'slug',0,2,''),(147,'title',0,2,' rental agreement2021 1 '),(148,'filename',0,2,' rentalagreement2021 1 1 pdf '),(148,'extension',0,2,' pdf '),(148,'kind',0,2,' pdf '),(148,'alt',0,2,''),(148,'slug',0,2,''),(148,'title',0,2,' rental agreement2021 1 1 '),(149,'filename',0,2,' rentalagreement2021 1 1 2023 01 24 103310 epak pdf '),(149,'extension',0,2,' pdf '),(149,'kind',0,2,' pdf '),(149,'alt',0,2,''),(149,'slug',0,2,''),(149,'title',0,2,' rental agreement2021 1 1 '),(150,'filename',0,2,' tickets 2ad495957943b0e6a3871721062844f7 2 pdf '),(150,'extension',0,2,' pdf '),(150,'kind',0,2,' pdf '),(150,'alt',0,2,''),(150,'slug',0,2,''),(150,'title',0,2,' tickets 2ad495957943b0e6a3871721062844f7 2 '),(151,'filename',0,2,' rentalagreement2021 1 2023 01 24 103629 ftmt pdf '),(151,'extension',0,2,' pdf '),(151,'kind',0,2,' pdf '),(151,'alt',0,2,''),(151,'slug',0,2,''),(151,'title',0,2,' rental agreement2021 1 '),(152,'filename',0,2,' screenshot 131 png '),(152,'extension',0,2,' png '),(152,'kind',0,2,' image '),(152,'alt',0,2,''),(152,'slug',0,2,''),(152,'title',0,2,' screenshot 131 '),(153,'filename',0,2,' rentalagreement2021 1 1 pdf '),(153,'extension',0,2,' pdf '),(153,'kind',0,2,' pdf '),(153,'alt',0,2,''),(153,'slug',0,2,''),(153,'title',0,2,' rental agreement2021 1 1 '),(154,'filename',0,2,' rentalagreement2021 1 1 pdf '),(154,'extension',0,2,' pdf '),(154,'kind',0,2,' pdf '),(154,'alt',0,2,''),(154,'slug',0,2,''),(154,'title',0,2,' rental agreement2021 1 1 '),(155,'filename',0,2,' rentalagreement2021 1 pdf '),(155,'extension',0,2,' pdf '),(155,'kind',0,2,' pdf '),(155,'alt',0,2,''),(155,'slug',0,2,''),(155,'title',0,2,' rental agreement2021 1 '),(156,'filename',0,2,' rentalagreement2021 1 2023 01 24 104704 kghh pdf '),(156,'extension',0,2,' pdf '),(156,'kind',0,2,' pdf '),(156,'alt',0,2,''),(156,'slug',0,2,''),(156,'title',0,2,' rental agreement2021 1 '),(250,'filename',0,2,' screenshot 2023 06 08 at 1 17 40 pm png '),(250,'extension',0,2,' png '),(250,'kind',0,2,' image '),(250,'alt',0,2,''),(250,'slug',0,2,''),(250,'title',0,2,' screenshot 2023 06 08 at 1 17 40 pm '),(327,'slug',0,1,' home '),(327,'title',0,1,' home '),(328,'slug',0,2,' temp rfqtyhomhhtopoarvfmifdtahdyeqzawixqe '),(328,'title',0,2,' unveiling the ultimate luxury and power of the bmw x5 a journey from its origins to the cutting edge model '),(328,'slug',0,1,' temp rfqtyhomhhtopoarvfmifdtahdyeqzawixqe '),(328,'title',0,1,' unveiling the ultimate luxury and power of the bmw x5 a journey from its origins to the cutting edge model '),(329,'kind',0,2,' image '),(329,'alt',0,2,''),(329,'slug',0,2,''),(329,'extension',0,2,' png '),(329,'filename',0,2,' an image of a sleek bmw x5 gliding throu 512x512 22697904 png '),(329,'filename',0,1,' an image of a sleek bmw x5 gliding throu 512x512 22697904 png '),(329,'extension',0,1,' png '),(329,'kind',0,1,' image '),(329,'alt',0,1,''),(329,'slug',0,1,''),(329,'title',0,1,' an image of a sleek bmw x5 gliding throu 512x512 22697904 '),(329,'title',0,2,' an image of a sleek bmw x5 gliding throu 512x512 22697904 '),(330,'slug',0,2,' temp uxpzousirpnoyfutsoapptupujgbfrfshije '),(330,'title',0,2,' unveiling the allure and innovation of the bmw x5 an in depth analysis of its design and features '),(330,'slug',0,1,' temp uxpzousirpnoyfutsoapptupujgbfrfshije '),(330,'title',0,1,' unveiling the allure and innovation of the bmw x5 an in depth analysis of its design and features '),(319,'countrycode',0,1,' ca '),(317,'title',0,1,' new address '),(331,'alt',0,2,''),(331,'extension',0,2,' png '),(331,'filename',0,2,' screenshot 27 png '),(331,'filename',0,1,' screenshot 27 png '),(331,'extension',0,1,' png '),(331,'kind',0,1,' image '),(331,'alt',0,1,''),(331,'slug',0,1,''),(331,'title',0,1,' screenshot 27 '),(331,'slug',0,2,''),(331,'title',0,2,' screenshot 27 '),(332,'kind',0,2,' audio '),(332,'alt',0,2,''),(332,'extension',0,2,' mp3 '),(332,'filename',0,2,' ringtone mp3 '),(332,'filename',0,1,' ringtone mp3 '),(332,'extension',0,1,' mp3 '),(332,'kind',0,1,' audio '),(332,'alt',0,1,''),(332,'slug',0,1,''),(332,'title',0,1,' ringtone '),(332,'slug',0,2,''),(332,'title',0,2,' ringtone '); /*!40000 ALTER TABLE `searchindex` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `sections` -- LOCK TABLES `sections` WRITE; /*!40000 ALTER TABLE `sections` DISABLE KEYS */; set autocommit=0; INSERT INTO `sections` VALUES (1,NULL,'Home','home','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2022-10-12 19:14:23','2022-10-12 19:14:23',NULL,'f645fd95-4a50-4506-a221-32fd3a14cf7f'),(2,NULL,'Shop','shop','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2022-10-12 19:20:28','2022-10-12 19:20:28',NULL,'4fa4c890-b7b9-4f47-8155-0937a7f47f9b'),(3,NULL,'Blog','blog','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2023-07-03 07:28:46','2023-07-03 07:28:46',NULL,'b9aae130-5820-4b92-9a07-97ebd8b1f88e'); /*!40000 ALTER TABLE `sections` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `sections_sites` -- LOCK TABLES `sections_sites` WRITE; /*!40000 ALTER TABLE `sections_sites` DISABLE KEYS */; set autocommit=0; INSERT INTO `sections_sites` VALUES (1,1,1,1,'__home__','home/_entry',1,'2022-10-12 19:14:23','2022-10-12 19:14:23','cc453590-4b31-495e-8f2b-1b20a37ee6d4'),(2,2,1,1,'shop','shop/index.twig',1,'2022-10-12 19:20:28','2022-10-12 19:21:04','7a65eca3-b5fb-427d-852d-db3bc10eac78'),(3,3,1,1,'blog/{slug}','blog/_entry',1,'2023-07-03 07:28:46','2023-07-03 07:28:46','75eac7a6-112f-47fd-902d-80d612c7ed1c'),(4,3,2,1,'blog/{slug}','blog/_entry',1,'2023-07-03 07:28:46','2023-07-03 07:28:46','c0aa87d3-ca96-401c-9759-29a00a9b0e4b'); /*!40000 ALTER TABLE `sections_sites` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `seo_redirects` -- LOCK TABLES `seo_redirects` WRITE; /*!40000 ALTER TABLE `seo_redirects` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `seo_redirects` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `seo_sitemap` -- LOCK TABLES `seo_sitemap` WRITE; /*!40000 ALTER TABLE `seo_sitemap` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `seo_sitemap` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `sequences` -- LOCK TABLES `sequences` WRITE; /*!40000 ALTER TABLE `sequences` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `sequences` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `shunnedmessages` -- LOCK TABLES `shunnedmessages` WRITE; /*!40000 ALTER TABLE `shunnedmessages` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `shunnedmessages` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `sitegroups` -- LOCK TABLES `sitegroups` WRITE; /*!40000 ALTER TABLE `sitegroups` DISABLE KEYS */; set autocommit=0; INSERT INTO `sitegroups` VALUES (1,'Craft4','2022-05-20 18:56:06','2022-05-20 18:56:06',NULL,'db89d4c0-0df3-4461-80c5-412bb43b4269'); /*!40000 ALTER TABLE `sitegroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `sites` -- LOCK TABLES `sites` WRITE; /*!40000 ALTER TABLE `sites` DISABLE KEYS */; set autocommit=0; INSERT INTO `sites` VALUES (1,1,1,'true','Craft4','default','en-US',1,'$PRIMARY_SITE_URL',1,'2022-05-20 18:56:06','2022-05-20 18:56:06',NULL,'4ad22c3a-9757-4c6c-8c43-59352597c16a'),(2,1,0,'1','Ru','ru','ru-UA',1,'@web/ru',2,'2023-07-03 06:55:08','2023-07-03 06:55:08',NULL,'f25265f7-0983-4a8d-a827-fdce8868cf9f'); /*!40000 ALTER TABLE `sites` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `structureelements` -- LOCK TABLES `structureelements` WRITE; /*!40000 ALTER TABLE `structureelements` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `structureelements` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `structures` -- LOCK TABLES `structures` WRITE; /*!40000 ALTER TABLE `structures` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `structures` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `systemmessages` -- LOCK TABLES `systemmessages` WRITE; /*!40000 ALTER TABLE `systemmessages` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `systemmessages` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `taggroups` -- LOCK TABLES `taggroups` WRITE; /*!40000 ALTER TABLE `taggroups` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `taggroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `tokens` -- LOCK TABLES `tokens` WRITE; /*!40000 ALTER TABLE `tokens` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `tokens` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `usergroups` -- LOCK TABLES `usergroups` WRITE; /*!40000 ALTER TABLE `usergroups` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `usergroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `usergroups_users` -- LOCK TABLES `usergroups_users` WRITE; /*!40000 ALTER TABLE `usergroups_users` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `usergroups_users` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `userpermissions` -- LOCK TABLES `userpermissions` WRITE; /*!40000 ALTER TABLE `userpermissions` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `userpermissions` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `userpermissions_usergroups` -- LOCK TABLES `userpermissions_usergroups` WRITE; /*!40000 ALTER TABLE `userpermissions_usergroups` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `userpermissions_usergroups` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `userpermissions_users` -- LOCK TABLES `userpermissions_users` WRITE; /*!40000 ALTER TABLE `userpermissions_users` DISABLE KEYS */; set autocommit=0; /*!40000 ALTER TABLE `userpermissions_users` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `userpreferences` -- LOCK TABLES `userpreferences` WRITE; /*!40000 ALTER TABLE `userpreferences` DISABLE KEYS */; set autocommit=0; INSERT INTO `userpreferences` VALUES (1,'{\"language\":\"en-US\"}'),(26,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(245,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'); /*!40000 ALTER TABLE `userpreferences` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; set autocommit=0; INSERT INTO `users` VALUES (1,NULL,1,0,0,0,1,'craftAdmin',NULL,NULL,NULL,'konstantin@convergine.com','$2y$13$77lkOrzDR2ewjQugd8W2MeopNy/kM6Bl7V3kiFyvghU01MZj/HBZS','2023-07-05 11:53:03',NULL,NULL,NULL,'2022-11-10 07:13:21',NULL,1,NULL,NULL,NULL,0,'2022-05-20 18:56:07','2022-05-20 18:56:07','2023-07-05 11:53:03'),(26,NULL,1,0,0,0,0,'denis',NULL,NULL,NULL,'denis@convergine.com','$2y$13$JASrC6cd/vbooqjMJ887xOFCRj5Bcs.PzzgHAeOD.Nh1OtQ44eqli','2023-06-22 08:30:31',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2022-10-17 14:32:46','2022-10-17 14:29:14','2023-06-22 08:30:31'),(66,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,'denis1@convergine.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2022-11-10 08:35:00','2022-11-10 08:35:00'),(245,NULL,1,0,0,0,0,'JaneTEST','Jane TEST','Jane','Test','jane@convergine.com','$2y$13$Bi.j2sGryVigR/QNDUvAb.3F7.MEzvm/ps/zj20k.HjfNjP/PKP.e','2023-06-20 15:57:55',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2023-06-19 21:36:54','2023-06-19 21:11:19','2023-06-20 15:57:55'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `volumefolders` -- LOCK TABLES `volumefolders` WRITE; /*!40000 ALTER TABLE `volumefolders` DISABLE KEYS */; set autocommit=0; INSERT INTO `volumefolders` VALUES (1,NULL,1,'OrderFile','','2023-01-23 13:22:00','2023-01-23 13:22:00','7d19cbdb-2adc-4423-8451-6aeef9ecb56e'),(2,NULL,NULL,'Temporary filesystem',NULL,'2023-01-23 13:24:05','2023-01-23 13:24:05','6c6131ce-8165-4370-8342-a44ce88c2d58'),(3,2,NULL,'user_1','user_1/','2023-01-23 13:24:05','2023-01-23 13:24:05','b91657c1-3dcf-424a-aab6-314e7b5e5a0e'),(4,1,1,'files','files/','2023-01-23 13:29:11','2023-01-23 13:29:11','99b2ff3e-6c50-4b6c-9edc-b2b316ecbbc4'),(5,1,1,'137','137/','2023-01-24 09:57:57','2023-01-24 09:57:57','6dfa3381-1800-4ab7-8c04-0cfc964a2500'),(6,1,1,'2023-01-24','2023-01-24/','2023-01-24 10:10:52','2023-01-24 10:10:52','d2ac822b-9cc6-4499-9162-efc276de196f'),(7,1,1,'e60753fe-b850-46cb-99ff-fba79c92d0e4','e60753fe-b850-46cb-99ff-fba79c92d0e4/','2023-01-24 10:43:14','2023-01-24 10:43:14','847e72e8-98dd-4b3b-aa51-f5bc8509b102'),(8,1,1,'2023-01e60753fe-b850-46cb-99ff-fba79c92d0e4','2023-01e60753fe-b850-46cb-99ff-fba79c92d0e4/','2023-01-24 10:45:16','2023-01-24 10:45:16','3b86c95c-d274-40cf-95a2-d4bfc38cb595'),(9,1,1,'2023-01','2023-01/','2023-01-24 10:46:02','2023-01-24 10:46:02','2dbaeb87-008e-4b2b-92b3-3d6eac8a3ee8'),(10,9,1,'e60753fe-b850-46cb-99ff-fba79c92d0e4','2023-01/e60753fe-b850-46cb-99ff-fba79c92d0e4/','2023-01-24 10:46:02','2023-01-24 10:46:02','29b15ba1-7988-432c-af3d-d45f551c8317'),(11,1,1,'2023-06','2023-06/','2023-06-16 10:45:21','2023-06-16 10:45:21','d95c7c71-fe49-4004-9809-1ab77e321c26'),(12,11,1,'e3fa3cea-41ad-4ec6-a9f2-396071ed2d01','2023-06/e3fa3cea-41ad-4ec6-a9f2-396071ed2d01/','2023-06-16 10:45:21','2023-06-16 10:45:21','a5f1af3f-a232-4e08-9c45-36606277c1ee'),(13,9,1,'7f5054ae-b487-4345-b4f8-57755af61c9d','2023-01/7f5054ae-b487-4345-b4f8-57755af61c9d/','2023-06-16 11:14:33','2023-06-16 11:14:33','321f1abe-191b-4adf-a0be-86b241bef888'),(14,11,1,'1a8b4192-9af8-4278-a96b-7ebe22fb918e','2023-06/1a8b4192-9af8-4278-a96b-7ebe22fb918e/','2023-06-16 11:14:34','2023-06-16 11:14:34','d2045d0b-cf60-4f2c-9b3e-b8296880f617'),(15,9,1,'d2e57a83-88ec-4c82-b3fa-8ebd36f7678b','2023-01/d2e57a83-88ec-4c82-b3fa-8ebd36f7678b/','2023-06-19 11:09:59','2023-06-19 11:09:59','1b83a8fe-b9fb-4f67-a772-fe88b4826cf3'),(16,11,1,'333197f6-985e-4b2f-8739-28f511a9a55b','2023-06/333197f6-985e-4b2f-8739-28f511a9a55b/','2023-06-19 11:16:11','2023-06-19 11:16:11','595fe11d-7a2d-4dee-b81b-61805ad1ebc0'),(17,11,1,'d3c6c7c4-4dba-41f8-8dfd-f4a5d6f2ede5','2023-06/d3c6c7c4-4dba-41f8-8dfd-f4a5d6f2ede5/','2023-06-19 11:26:21','2023-06-19 11:26:21','7df5b90e-2362-4d43-a6f6-5bfa6ccd008c'),(18,11,1,'060aadf6-62e8-417b-82e7-d18bb608f23a','2023-06/060aadf6-62e8-417b-82e7-d18bb608f23a/','2023-06-19 11:26:44','2023-06-19 11:26:44','6ce01df3-bb3b-427c-bed7-3ec6cf5a8ccf'),(19,11,1,'6f4730c5-22e3-4c98-beb4-c996ef7167fa','2023-06/6f4730c5-22e3-4c98-beb4-c996ef7167fa/','2023-06-19 12:15:08','2023-06-19 12:15:08','63b2b5b0-76e0-4fcb-83ca-90c1561f41f3'),(20,11,1,'5cef9941-9408-49c7-a251-ad6d468b374c','2023-06/5cef9941-9408-49c7-a251-ad6d468b374c/','2023-06-19 12:16:06','2023-06-19 12:16:06','87e7a3fe-f568-4749-a8a6-a5a09feefcf4'),(21,11,1,'64ddf8ad-ba08-457a-9aa1-7283c567b035','2023-06/64ddf8ad-ba08-457a-9aa1-7283c567b035/','2023-06-19 12:20:40','2023-06-19 12:20:40','e27479be-91dd-4a07-aa7b-35c1e392543c'),(22,11,1,'10c213cb-0070-47b9-909a-8394bb195f28','2023-06/10c213cb-0070-47b9-909a-8394bb195f28/','2023-06-19 12:23:06','2023-06-19 12:23:06','14f3a42b-e2ac-47b3-bf16-188a67d1f53e'),(23,11,1,'69c2b0f9-08c2-4a6b-a303-c52071647f9c','2023-06/69c2b0f9-08c2-4a6b-a303-c52071647f9c/','2023-06-19 16:24:22','2023-06-19 16:24:22','b5689bc2-52c9-45b4-ae87-64612640e3d0'),(24,11,1,'70c4839f-43e8-4593-81eb-ea599daf84d7','2023-06/70c4839f-43e8-4593-81eb-ea599daf84d7/','2023-06-19 21:15:15','2023-06-19 21:15:15','d5124510-7174-4482-87d5-c5898a345073'),(25,11,1,'5caea1d2-90a6-4fdf-b1c1-97d22553b183','2023-06/5caea1d2-90a6-4fdf-b1c1-97d22553b183/','2023-06-19 21:24:42','2023-06-19 21:24:42','5d8d9a80-224e-4a47-bb8f-609ebc3d4ddd'),(26,11,1,'a920403b-8778-43a3-8b5f-668477ef5d00','2023-06/a920403b-8778-43a3-8b5f-668477ef5d00/','2023-06-19 21:27:41','2023-06-19 21:27:41','3de9b783-cfc2-45ca-a3f6-c42e9692d6b1'),(27,11,1,'0e14f6b8-7204-4cc7-b6ea-4e720225e5ee','2023-06/0e14f6b8-7204-4cc7-b6ea-4e720225e5ee/','2023-06-19 21:29:01','2023-06-19 21:29:01','d5868657-2c15-433f-8c44-34b29a076dfd'),(28,11,1,'b1c62ab5-1869-43a7-b99e-61650b563b46','2023-06/b1c62ab5-1869-43a7-b99e-61650b563b46/','2023-06-19 21:29:15','2023-06-19 21:29:15','4739efc6-2eed-4426-b823-7da6b5a9123e'),(29,11,1,'9f9c4168-c8da-4511-aa2c-4a3b3d885cea','2023-06/9f9c4168-c8da-4511-aa2c-4a3b3d885cea/','2023-06-19 21:34:48','2023-06-19 21:34:48','2ef0034d-c6b8-4e0d-9983-32b1d38fc4ec'),(30,11,1,'c26bc847-2d3e-40fa-8251-ac4fa206912e','2023-06/c26bc847-2d3e-40fa-8251-ac4fa206912e/','2023-06-19 21:47:06','2023-06-19 21:47:06','307c4cbc-395b-4e78-9ad3-ac3f369e106e'),(31,11,1,'b39bc3d6-e4f2-422e-8474-9dcbf5757c43','2023-06/b39bc3d6-e4f2-422e-8474-9dcbf5757c43/','2023-06-19 21:49:00','2023-06-19 21:49:00','b70c4837-ff8d-4be4-ba3b-cfdaf22fe566'),(32,11,1,'4ba503ce-e267-491d-bcd4-912bda80c9d2','2023-06/4ba503ce-e267-491d-bcd4-912bda80c9d2/','2023-06-20 02:49:25','2023-06-20 02:49:25','d00f5382-08b1-4228-91cc-361b7450d2cf'),(33,11,1,'877b4294-79d6-4bd2-bf8e-b1d293f845fd','2023-06/877b4294-79d6-4bd2-bf8e-b1d293f845fd/','2023-06-20 02:52:45','2023-06-20 02:52:45','90ee698e-85d2-48ed-b619-054240e56599'),(34,11,1,'f49a04dd-b2a7-4a22-ab86-a8484e63ef90','2023-06/f49a04dd-b2a7-4a22-ab86-a8484e63ef90/','2023-06-20 07:48:05','2023-06-20 07:48:05','5b55d162-4c82-4c9c-853e-bf84f053c341'),(35,11,1,'441c9258-80bf-4d8c-ae62-846024e8a24a','2023-06/441c9258-80bf-4d8c-ae62-846024e8a24a/','2023-06-20 07:49:41','2023-06-20 07:49:41','3610c1cd-7b27-43c7-99be-356c20ee9367'),(36,1,1,'2023-07','2023-07/','2023-07-03 07:32:38','2023-07-03 07:32:38','7ecd6dba-d1f4-4c87-8307-7cd91dc284ee'),(37,36,1,'297aeecc-b616-49f3-b5d5-0006de8f4f3f','2023-07/297aeecc-b616-49f3-b5d5-0006de8f4f3f/','2023-07-03 07:32:38','2023-07-03 07:32:38','048f1ff8-b859-4e6f-abec-16f4494d0e24'),(38,36,1,'c9b92769-9d4a-4fe2-90ce-e5c37234ab05','2023-07/c9b92769-9d4a-4fe2-90ce-e5c37234ab05/','2023-07-03 07:33:37','2023-07-03 07:33:37','85c37b5a-f5d5-4839-ae5a-e7279813ed42'); /*!40000 ALTER TABLE `volumefolders` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `volumes` -- LOCK TABLES `volumes` WRITE; /*!40000 ALTER TABLE `volumes` DISABLE KEYS */; set autocommit=0; INSERT INTO `volumes` VALUES (1,6,'OrderFile','orderfile','local','','','site',NULL,1,'2023-01-23 13:22:00','2023-01-23 13:22:00',NULL,'a2191c11-f670-44d7-9de8-dd4403266481'); /*!40000 ALTER TABLE `volumes` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping data for table `widgets` -- LOCK TABLES `widgets` WRITE; /*!40000 ALTER TABLE `widgets` DISABLE KEYS */; set autocommit=0; INSERT INTO `widgets` VALUES (1,1,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-05-20 18:58:48','2022-05-20 18:58:48','5f5787ec-e909-4b1d-bd8a-975db9e2b2e4'),(2,1,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2022-05-20 18:58:48','2022-05-20 18:58:48','01c9a873-a43e-45ac-ac55-495ac9d10e16'),(3,1,'craft\\widgets\\Updates',3,NULL,'[]',1,'2022-05-20 18:58:48','2022-05-20 18:58:48','b979cfaf-114f-4695-b667-4c682a4ee874'),(4,1,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-05-20 18:58:48','2022-05-20 18:58:48','f1e069a6-7836-437b-b647-193046de1d26'); /*!40000 ALTER TABLE `widgets` ENABLE KEYS */; UNLOCK TABLES; commit; -- -- Dumping routines for database 'craft4_db' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2023-07-05 8:13:52
/srv/users/craft4/apps/craft4-newsite-space/storage/backups/craft4--2023-07-05-121350--v4.4.15.sql